From 52f872ec27fa9bcbcc33f7d97ac4416386316f8f Mon Sep 17 00:00:00 2001 From: Ollie Charles Date: Mon, 23 Nov 2015 14:45:26 +0000 Subject: [PATCH 001/289] services.xserver: Disable Ctrl+Alt+Backspace by default Ctrl+Alt+Backspace is usually enabled by default under X, and is a keyboard shortcut that forcefully kills the current X server. This can lead to data loss by users if accidentally pressed. This commit introduces a new option, services.xserver.enableCtrlAltBackspace, that is *disabled* by default. If set to true, the previous behavior can be restored. A similar decision was made by the Ubuntu team, and is documented here: https://wiki.ubuntu.com/XorgCtrlAltBackspace --- nixos/modules/services/x11/xserver.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index 3348e8d0582..fd862232e07 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -409,6 +409,16 @@ in if possible. ''; }; + + enableCtrlAltBackspace = mkOption { + type = types.bool; + default = false; + description = '' + Whether to enable the DontZap option, which binds Ctrl+Alt+Backspace + to forcefully kill X. This can lead to data loss and is disabled + by default. + ''; + }; }; }; @@ -533,6 +543,7 @@ in '' Section "ServerFlags" Option "AllowMouseOpenFail" "on" + Option "DontZap" "${if cfg.enableCtrlAltBackspace then "off" else "on"}" ${cfg.serverFlagsSection} EndSection From 50a842fb37c6c2cbba0edb8c2b35af451277e94f Mon Sep 17 00:00:00 2001 From: taku0 Date: Sat, 28 Nov 2015 12:00:44 +0900 Subject: [PATCH 002/289] thunderbird-bin: 38.3.0 -> 38.4.0 --- .../mailreaders/thunderbird-bin/default.nix | 2 +- .../thunderbird-bin/generate_sources.rb | 62 +++-- .../mailreaders/thunderbird-bin/sources.nix | 238 +++++++++--------- 3 files changed, 160 insertions(+), 142 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix index 4dd734ed043..388fc418de1 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://download-installer.cdn.mozilla.net/pub/thunderbird/releases/${version}/${source.arch}/${source.locale}/thunderbird-${version}.tar.bz2"; - inherit (source) sha1; + inherit (source) sha256; }; phases = "unpackPhase installPhase"; diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb b/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb index 308e0b71c05..1bf623a4b77 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb @@ -1,43 +1,61 @@ -require "open-uri" - version = if ARGV.empty? "latest" else ARGV[0] end -base_path = "http://archive.mozilla.org/pub/thunderbird/releases" - -Source = Struct.new(:hash, :arch, :locale, :filename) - -sources = open("#{base_path}/#{version}/SHA1SUMS") do |input| - input.readlines -end.select do |line| - /\/thunderbird-.*\.tar\.bz2$/ === line && !(/source/ === line) -end.map do |line| - hash, name = line.chomp.split(/ +/) - Source.new(hash, *(name.split("/"))) -end.sort_by do |source| - [source.locale, source.arch] -end - -real_version = sources[0].filename.match(/thunderbird-([0-9.]*)\.tar\.bz2/)[1] +base_path = "archive.mozilla.org/pub/thunderbird/releases" arches = ["linux-i686", "linux-x86_64"] +arches.each do |arch| + system("wget", "--recursive", "--continue", "--no-parent", "--reject-regex", ".*\\?.*", "--reject", "xpi", "http://#{base_path}/#{version}/#{arch}/") +end + +locales = Dir.glob("#{base_path}/#{version}/#{arches[0]}/*").map do |path| + File.basename(path) +end.sort + +locales.delete("index.html") +locales.delete("xpi") + +# real version number, e.g. "30.0" instead of "latest". +real_version = Dir.glob("#{base_path}/#{version}/#{arches[0]}/#{locales[0]}/thunderbird-*")[0].match(/thunderbird-([0-9.]*)/)[1][0..-2] + +locale_arch_path_tuples = locales.flat_map do |locale| + arches.map do |arch| + path = Dir.glob("#{base_path}/#{version}/#{arch}/#{locale}/thunderbird-*")[0] + + [locale, arch, path] + end +end + +paths = locale_arch_path_tuples.map do |tuple| tuple[2] end + +hashes = IO.popen(["sha256sum", "--binary", *paths]) do |input| + input.each_line.map do |line| + $stderr.puts(line) + + line.match(/^[0-9a-f]*/)[0] + end +end + + puts(<<"EOH") -# This file is generated from generate_nix.rb. DO NOT EDIT. +# This file is generated from generate_sources.rb. DO NOT EDIT. # Execute the following command in a temporary directory to update the file. # -# ruby generate_source.rb > source.nix +# ruby generate_sources.rb > sources.nix { version = "#{real_version}"; sources = [ EOH -sources.each do |source| - puts(%Q| { locale = "#{source.locale}"; arch = "#{source.arch}"; sha1 = "#{source.hash}"; }|) +locale_arch_path_tuples.zip(hashes) do |tuple, hash| + locale, arch, path = tuple + + puts(%Q| { locale = "#{locale}"; arch = "#{arch}"; sha256 = "#{hash}"; }|) end puts(<<'EOF') diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix index bdc989fea22..e07e972bf41 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix @@ -1,126 +1,126 @@ -# This file is generated from generate_nix.rb. DO NOT EDIT. +# This file is generated from generate_sources.rb. DO NOT EDIT. # Execute the following command in a temporary directory to update the file. # -# ruby generate_source.rb > source.nix +# ruby generate_sources.rb > sources.nix { - version = "38.3.0"; + version = "38.4.0"; sources = [ - { locale = "ar"; arch = "linux-i686"; sha1 = "45a8e9613b5d5083b264fb82704bc69c622372c5"; } - { locale = "ar"; arch = "linux-x86_64"; sha1 = "97ea8fa778bd4e5fc65d919f2d0f9f473e00fc38"; } - { locale = "ast"; arch = "linux-i686"; sha1 = "0c535223b5620f249ff32381c53e05c8f5429f1a"; } - { locale = "ast"; arch = "linux-x86_64"; sha1 = "01352d0046fa41d832c7f18c2b8d0c3d74ab95ce"; } - { locale = "be"; arch = "linux-i686"; sha1 = "f496db8690c9a7b61766a235ee1dc204f622fddf"; } - { locale = "be"; arch = "linux-x86_64"; sha1 = "2a62ca92f2dfafa3a58fedbf03304fd6daed01ea"; } - { locale = "bg"; arch = "linux-i686"; sha1 = "02934c4c9dba3fce844159dc790c0575c0202efd"; } - { locale = "bg"; arch = "linux-x86_64"; sha1 = "d8cf360615b05d805b88d6057e4f08527aba6576"; } - { locale = "bn-BD"; arch = "linux-i686"; sha1 = "880434d08155275dc4806d45afa365f62bb58ad0"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "e99dcde6db5bd3178ce58f67191bc3f54f75574a"; } - { locale = "br"; arch = "linux-i686"; sha1 = "7fab50b35a4bcff0e7e1268e3b50f2088209237e"; } - { locale = "br"; arch = "linux-x86_64"; sha1 = "d9d945dc271cf092746f8921f490e0f77359f5e3"; } - { locale = "ca"; arch = "linux-i686"; sha1 = "7f6b5f5523d3b67068e153515629bbbb3e944ee5"; } - { locale = "ca"; arch = "linux-x86_64"; sha1 = "abd73c39a87a2a28063e165941be98994d22f401"; } - { locale = "cs"; arch = "linux-i686"; sha1 = "a80a5e962d0ca4458365cee96715c830681b1ee0"; } - { locale = "cs"; arch = "linux-x86_64"; sha1 = "71096a0d6e8293682638abb9073cf2dc8f905ffb"; } - { locale = "cy"; arch = "linux-i686"; sha1 = "b64f444d523f3dd88f23d491e91193ef0422f664"; } - { locale = "cy"; arch = "linux-x86_64"; sha1 = "e8fdf1acb14801c97a3e48ff49706bd15f3433e6"; } - { locale = "da"; arch = "linux-i686"; sha1 = "73ce38987daf2a145dbca2aa8cd7ca32098598a5"; } - { locale = "da"; arch = "linux-x86_64"; sha1 = "f403094fbb49addc5d7dfe15370fdd612f067256"; } - { locale = "de"; arch = "linux-i686"; sha1 = "f265e65020397b79420691a475adb98f3bcc73a1"; } - { locale = "de"; arch = "linux-x86_64"; sha1 = "267ad171576e57df9a241a22332d15efa882e485"; } - { locale = "dsb"; arch = "linux-i686"; sha1 = "3d8fb2e858ea3210ddb9eb566235ffeddbc23cb6"; } - { locale = "dsb"; arch = "linux-x86_64"; sha1 = "7c50f42a6a0c5172469f37412664306049253637"; } - { locale = "el"; arch = "linux-i686"; sha1 = "732fade73221962dc840d3a97b440753bfda35fc"; } - { locale = "el"; arch = "linux-x86_64"; sha1 = "9e8f4a7698050b506a815af03534395bf6cfda31"; } - { locale = "en-GB"; arch = "linux-i686"; sha1 = "0c0c4f87977c0ca4a70db8ba22dcb35b5276f451"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "0217d912251c52acaf071a6955c725e365d0298b"; } - { locale = "en-US"; arch = "linux-i686"; sha1 = "1ffa88c200b17e4fe8ea647c58e0d479b3e673e2"; } - { locale = "en-US"; arch = "linux-x86_64"; sha1 = "e2a2690e2e7b72eff8944effc6d8a70f4fb2a3e7"; } - { locale = "es-AR"; arch = "linux-i686"; sha1 = "7fddb79300f158ed94c970dd9a0f384093a369fe"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "961e90db7063c5d49c8494ec31761ae1206effec"; } - { locale = "es-ES"; arch = "linux-i686"; sha1 = "69a5ad0cc12d9e8e17d4a47c705d3653106248f5"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "fe84027eef32f4788a8056ea331e2a7a1ecc3c8a"; } - { locale = "et"; arch = "linux-i686"; sha1 = "d1cdd86f79f6bd17a98a1fcaec70af34671f60c6"; } - { locale = "et"; arch = "linux-x86_64"; sha1 = "3ee90372f035ba972aff2bb9e8d592cf007fd2bd"; } - { locale = "eu"; arch = "linux-i686"; sha1 = "d0caf6d75b169a1a420f68210782230bc83d5cfe"; } - { locale = "eu"; arch = "linux-x86_64"; sha1 = "eb4250e4422699d09bb9a8a2b3a539f72a91e4d1"; } - { locale = "fi"; arch = "linux-i686"; sha1 = "37e6d23be510eee3d908a2396eee554c65f24539"; } - { locale = "fi"; arch = "linux-x86_64"; sha1 = "0dc06ca1c164a3f2ca7941e376fb3e085ec29f82"; } - { locale = "fr"; arch = "linux-i686"; sha1 = "a057112a12aa7e214b2fec5cb3a24126fabe1dbf"; } - { locale = "fr"; arch = "linux-x86_64"; sha1 = "392d413e2a4c16391af122c2cbcf264d901e875b"; } - { locale = "fy-NL"; arch = "linux-i686"; sha1 = "207d75317e6257c1eb95e6ba133e3a7229125ffa"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "69e02da4f9473b25f8d3b9cd74602f966899602b"; } - { locale = "ga-IE"; arch = "linux-i686"; sha1 = "5f356a214e32696e8296a7fee3b9cfe3d86b8176"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "bce6441acd9a438ea707f6db1d8f639fa676adb8"; } - { locale = "gd"; arch = "linux-i686"; sha1 = "8a4473b82a10ad3dfefdc381b90a0616d1ecaf6b"; } - { locale = "gd"; arch = "linux-x86_64"; sha1 = "3fdbe0debaf43a741b137eeb549117747dfa08eb"; } - { locale = "gl"; arch = "linux-i686"; sha1 = "235d6b94cf0e44e7bac6e76ae8c13bd5c090865e"; } - { locale = "gl"; arch = "linux-x86_64"; sha1 = "a5f23d30426fb0d78d7840ab2b2ed457785cc6c1"; } - { locale = "he"; arch = "linux-i686"; sha1 = "5b98752dd745d406325682faaaba2d8ce4c34743"; } - { locale = "he"; arch = "linux-x86_64"; sha1 = "2ce82ecdca404f72f033f3752e34122ff97e6006"; } - { locale = "hr"; arch = "linux-i686"; sha1 = "b7e8899d7db51129ef94c2b34bcf950307c0eaa1"; } - { locale = "hr"; arch = "linux-x86_64"; sha1 = "85e0d2ee0591df75754f03566f206085a43e1603"; } - { locale = "hsb"; arch = "linux-i686"; sha1 = "6252d41415ec5ba7841e629b2617fb38f5bfe25f"; } - { locale = "hsb"; arch = "linux-x86_64"; sha1 = "40ef8f4991f9670ded25372805b05cf090ae8419"; } - { locale = "hu"; arch = "linux-i686"; sha1 = "b98b9198d0347ccee4cf1b46405c375ed94d1c79"; } - { locale = "hu"; arch = "linux-x86_64"; sha1 = "8e144f40a677471b411608cca2170c90de122ffc"; } - { locale = "hy-AM"; arch = "linux-i686"; sha1 = "aa4d323f658f4330b13e5883ba8b6e2a3e441add"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "2273f2d4d15a4dc4681a8d21e6f42f2e1ba0772a"; } - { locale = "id"; arch = "linux-i686"; sha1 = "60b9a32ba6b831f851399c6f4ba675bff163aba7"; } - { locale = "id"; arch = "linux-x86_64"; sha1 = "73cda0ab1e1c04e7ab2816642481d2f9b41746e8"; } - { locale = "is"; arch = "linux-i686"; sha1 = "9b61caeaf4f1a7e5153d042f6ec52c7a4c4a5573"; } - { locale = "is"; arch = "linux-x86_64"; sha1 = "a705d9724c2fe246a3a9e96f7304bad73ed9897d"; } - { locale = "it"; arch = "linux-i686"; sha1 = "0fcd397c3a8f6519ec85f7f2d71416b27053813f"; } - { locale = "it"; arch = "linux-x86_64"; sha1 = "6900813562473c64a50087f5d0620666763ceb09"; } - { locale = "ja"; arch = "linux-i686"; sha1 = "786e9aadae199fb2a84b03ac9716f021f118e16e"; } - { locale = "ja"; arch = "linux-x86_64"; sha1 = "8f92502e03e2bdd704d57a3298a5c109be3d3927"; } - { locale = "ko"; arch = "linux-i686"; sha1 = "0d3c52e88f5d0cc329b8bcb3cf3322fb59651dd1"; } - { locale = "ko"; arch = "linux-x86_64"; sha1 = "065a6b448189246d52bee2ea2722d22253c7fcae"; } - { locale = "lt"; arch = "linux-i686"; sha1 = "b667e748814e2d2ea508eac799325aa4d3e6b56f"; } - { locale = "lt"; arch = "linux-x86_64"; sha1 = "174214613317d4ea2c25a6c9cbc61810fe579349"; } - { locale = "nb-NO"; arch = "linux-i686"; sha1 = "669f7f03860c7648bc901120f5bbb43e63424759"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "3cb36ad745d505241bba330e0d832a77d1ba8641"; } - { locale = "nl"; arch = "linux-i686"; sha1 = "7b399deb6e9a8d4db099bbaaadc8e5a000c13293"; } - { locale = "nl"; arch = "linux-x86_64"; sha1 = "1d7391c23da59b9367071c95d43ea2cc870c5388"; } - { locale = "nn-NO"; arch = "linux-i686"; sha1 = "25d80451d59a19339ce8d0e8e9b3fb76c183cca0"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "4af717ad8b7dcc7564bada20b3f28f179d29ae91"; } - { locale = "pa-IN"; arch = "linux-i686"; sha1 = "225eab7baf002da6543918e1682a931fe7cb4493"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "d519eaf04ee57e1ca1fffe2a1dc5cfbe876ce128"; } - { locale = "pl"; arch = "linux-i686"; sha1 = "be4eeed21159601047b59aa832c9adbd54a812dd"; } - { locale = "pl"; arch = "linux-x86_64"; sha1 = "47a7a6f548dfad92a725c56858fb625e42821d9c"; } - { locale = "pt-BR"; arch = "linux-i686"; sha1 = "5e44c5e9e07cbb0ef864a98c17a3e2c744d7eddd"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "e4337edbaee9023b69518f3804459508a5fb693a"; } - { locale = "pt-PT"; arch = "linux-i686"; sha1 = "5ce4e8a2626835c3d17c37a68db6c4cc9f3db5e4"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "f155173b56f3e0302288cb359170615d925d9c12"; } - { locale = "rm"; arch = "linux-i686"; sha1 = "57549fda6d8c9ef67950f6729bb17c8fb79d18cb"; } - { locale = "rm"; arch = "linux-x86_64"; sha1 = "96cbc015ea082bf9c8a2363929bec574c3ba264d"; } - { locale = "ro"; arch = "linux-i686"; sha1 = "85399bb39ddb09b5aedd44c5362bda1a375255d8"; } - { locale = "ro"; arch = "linux-x86_64"; sha1 = "6a4f1f43d188cc0bd817d150fe7c958aec4f0ac6"; } - { locale = "ru"; arch = "linux-i686"; sha1 = "9fdd1b141cde49a5453540f4ceb3d74dc92b05aa"; } - { locale = "ru"; arch = "linux-x86_64"; sha1 = "29537fbb4eacb6a9fc396802d74b35132620613d"; } - { locale = "si"; arch = "linux-i686"; sha1 = "410f15673c95ce3744c84559e5801b4c1cc062b6"; } - { locale = "si"; arch = "linux-x86_64"; sha1 = "383acd5b025d907ed0dee36f1b8fc5bf5234c860"; } - { locale = "sk"; arch = "linux-i686"; sha1 = "86e7b065876b4eb0177e7523bab78d36182f1517"; } - { locale = "sk"; arch = "linux-x86_64"; sha1 = "cdc547aca6dfff934195a69e1ad81a357f37fef4"; } - { locale = "sl"; arch = "linux-i686"; sha1 = "a88a74354e6b481418d8b5aec08a0c1f87693117"; } - { locale = "sl"; arch = "linux-x86_64"; sha1 = "d27b3c018904dcb6862f569b84b4200b05013df0"; } - { locale = "sq"; arch = "linux-i686"; sha1 = "822e117f5a840f46c6b2500ad80efb6c16c2a5de"; } - { locale = "sq"; arch = "linux-x86_64"; sha1 = "349aeab272d702afbe9f249c54a7cf6d17918f6a"; } - { locale = "sr"; arch = "linux-i686"; sha1 = "170c6f23bdb3222e7eb95591a22d09d17ca1b5a2"; } - { locale = "sr"; arch = "linux-x86_64"; sha1 = "eda779e2154ca0ede7c69435ad49fbd541ec21d1"; } - { locale = "sv-SE"; arch = "linux-i686"; sha1 = "63e9eb73d9854e72f93639c1383dd21075626efb"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "a824725919096f53c3372a038d999ce56b242d40"; } - { locale = "ta-LK"; arch = "linux-i686"; sha1 = "5b40dd6b193a92ddc6344825bf6e9c547f58b0a2"; } - { locale = "ta-LK"; arch = "linux-x86_64"; sha1 = "5d6c019b2708b87ac32db16b828966f1b1215e08"; } - { locale = "tr"; arch = "linux-i686"; sha1 = "17c8ccd0c6d08dd00a6267d9c6850ea8a027b4a5"; } - { locale = "tr"; arch = "linux-x86_64"; sha1 = "b5c6a09750d01af1f8428425c9c7af9f73a7e42b"; } - { locale = "uk"; arch = "linux-i686"; sha1 = "6dbfd27fd8efd59cd1af932af3f302f9cc35e314"; } - { locale = "uk"; arch = "linux-x86_64"; sha1 = "690f60f461d958a076af671321b2588607369754"; } - { locale = "vi"; arch = "linux-i686"; sha1 = "84dc2737efcc831a63ea2ceeccfdadb2c065c201"; } - { locale = "vi"; arch = "linux-x86_64"; sha1 = "323be14cf52c7587200856ad31528a93d4f88766"; } - { locale = "zh-CN"; arch = "linux-i686"; sha1 = "9186336bcf83179205b91f51c56ee7972024d59c"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "97f65edfe8cbb419c4eacb54163df629b8fdb9bb"; } - { locale = "zh-TW"; arch = "linux-i686"; sha1 = "239c526df1c25aa4b7f639fb0a88d1969d49e2a1"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "88cf0f7fd1c1f73f1c8bfef0a292eac3158f7b88"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "30383ea1567d2338af99de09f144e4a3cf6c195bc3707c1011171b4c09a885ab"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "0325b8da77e0ec1c97eac81367cbf68c2e4cf62ddd086ab07494cd1705d6134e"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "5e91cb9df7aab8c887dadcdf8d01b0dd2e6427ed570333b66a680c57ff9391b2"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "3e275d4db234f2ce1c226577dbd6289f870c7ac9f3963136eaa6fa097cb7fbef"; } + { locale = "be"; arch = "linux-i686"; sha256 = "74a4dcbcf45e766b3a4b23a0bf4c08d61b8e8e8923b45d27ca23f2785dd4120b"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "52e9c46cb12b4cdb8d6eaa384717572ef5bd845c18a36d8cfd15db39c4d0332f"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "0dde851fee0eba8be214f8f673a5da9924f84cf1b558d3f76aa80f6008e518f1"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "198607f773ddc38ab1c2433500f53578fab38dea817a24ae94849fa8045bbb67"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "a34e8ae21b22cb80b772a31341a7dd5da23aaddf8685c6a1a20be6f8f3c312af"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "03f611a7029002e593175cb4e624b1d3885c12847115a027d89625d3be9247c4"; } + { locale = "br"; arch = "linux-i686"; sha256 = "6c61dcc67472b3fd1b8361d4960e0ec2a190e7a18aa9e05060fa80a7d23b3796"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "f4589f1e31697fd65296f306350558ca9355962182e69d0c6f4b303b62407e5b"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "dd2f59e278a34081c6ac3f1c8dbb61b2e9fe188b23715e6917c7034ac562ae42"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "0f77e01e3a9dda94c8dd7cc34ab2eefbfd4bcacc6d09b3a8563632130c3fb83b"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "389e99cc4b2c56067ea02eef9e2e347ef972fe21a20a094c6d056aa5e7fb65ff"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "c34ee1e3607df27a9edc03faed4476533489a962715a9d7920282044e9af2dd6"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "f77986fb3ab81e82e611247066ba6856518a209694cc71592895c4186ec80607"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "549a0c15bbd298e9d3753782e97a0874bf2bfca607bfed484efe3b9fdce3c9b0"; } + { locale = "da"; arch = "linux-i686"; sha256 = "e56cf65ce0719a3a22d2fdb33ce08113348022afd3a557f2ac39a25e35f632de"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "991b5ff474cff16d106b88ee31ac889c6e0543e15b3bf4340c3c263cd3a3ea4c"; } + { locale = "de"; arch = "linux-i686"; sha256 = "7f28547c9e67c4d76815337d8f5f39e303d1a1055077a77af42ad4162dd3b476"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "4c16d7477792759eb754cb5770be67dc78dab3cdfb47c29bb3bf038dbfe6601e"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "8f5a82f61c80dd9a1358ee43e192364f34dbba0253aeba00ad0c5d1656e57a34"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "7804c72b8c758193fbd45feedc185d01717133bf2fa1b1d0054ea421224c780e"; } + { locale = "el"; arch = "linux-i686"; sha256 = "8128d4330fdfa0c5b0e5b309d1957b7523b337f862bd1e9d2286f50fc652f339"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "1d1f7859cd25aa5bd18222f97b4496c8f661a375b1e0404eb92b0bec3bb60ae7"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "980f494e26c8a2904490d55ff2bdfcf8b3d2c82c4b251a7ade3bce90d1e4632c"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "3f3fd4139c64bbea32c53683a2ba75be24fa4a2024922c42b4647ce28a59457f"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "bca69f68e6296608e50bb798e46e209cc3be9f20b5baacc102f7571316f7f65e"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "e8d9a31537a6db91efec6372106e655d73ab3e55f3c0ff2e42e564e2a4da7781"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "bbb8817ed30f591f54d47066765cc4796786f5fa41cd2ee2dbf59001fcaad4c6"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "06b55c261bc0cfbc257c264e9643088682256aaf739c8905cfbd4cd08f0868bd"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "44a77de45e05ad469cd03d17efa4766a1e2e06bc8e2e7a5d954db3aea17b8407"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "f14c54fc64eb586c8015352d24b392268d3b2ced7312a5647fc1385e14f6d93d"; } + { locale = "et"; arch = "linux-i686"; sha256 = "81b28a75d61d9f8463f18ce48943b0f701f392201655eba4899fa609cb59cd9c"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "974247ffb2e003026d46888b425a5f497b7a6d06213190e5668c085e1c44453d"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "f45344ec704ad5a07639da1076ad2e6b1cad21bb75c9462e5e46abad3e57b588"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "4acba2bb5780f85e45a28f58027b75b2832281a7f001f780b215c564a2da2671"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "74c4d196d31fbc000d541d057ed7dfa31cf713f7964be4bc6fe1c3f80680824d"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "14dfe7b1cf2b1feb8a27628a27d5ef00e64dc401c5aebac1e01e1b94f7d091b6"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "a6749feae77747703f3a07a1c58bc5679c5faaeb207cb5e46f98cbac733294e1"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "201af3653ade9411902e208a2d16a7b0357d2a4a44d5dfcccf59d7939e24e787"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "8521f1f0551531aef107a21ad953fdeaf0b025266f709e9cfd49eab92a3dcaf2"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "195f0f25dab810e4f8a89d01f3ddb837378cd9fd691425b0b6b50653ac9bad73"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "f3f216995781f4ec55346822483d073e4a1c15449df78e56a05acb7743198292"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "ebcbc721eee9020ac52eeee92531307512a8a3f2306eee3952b9343a52381d4b"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "234e5cb13726b1025c96403e8522c2cbb169ba547513c007501230d6fff3face"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "2cffd346a895b520c804d8efc7f92e38ace1256a007d8a95abd5687c6fdebcbc"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "e65afb4d848a4d6922b550888990733046227dd9201c917b161f19d9b5cab232"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "ec85e88f167c195fb1f5ac07adcd4b1ebe538ccb94959a1d2d9ca33406fc2277"; } + { locale = "he"; arch = "linux-i686"; sha256 = "2b6f436f26ab131d6d6e883a16d27f5a5b9570ada883fe8a387462ad6a2e50ea"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "e37020bd431a697b73b88cfc1a9ddee0168009627ce3848684d8de499ad3b053"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "7c005e34cde48c606dbd67d43fa691c96cd8a27ce50b552b1c1b3e114ae112b3"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "b41260a478e8afa2ae530d6b170514a815b8962bbb3bd32431032604868c3d48"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "b4b2e41f9afe8eea8b347bd8fe0ba8d03ac8b9cf9b055469e053e4f72bc1c665"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "b6540fe80976a53828058e91f4a311192a7da37fd1ea8574161c0cfe494d17f2"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "c7b27a351e095353f2f53b50275ed7774faeb9254b980dd6571d48a935b50630"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "d5b014fd679bc475ade1278ba661a97e0a92d0fea8a6351e199677f5185f19f4"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "e6748c7f84a6040e98bb0cb3b1ec1c975f2174f8a89c2cc0ef83921dd56d2b1c"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "ce902a1ecadf1a89ab7f32ed17eef33725c946447fd67bc83cde0492fd65022b"; } + { locale = "id"; arch = "linux-i686"; sha256 = "6f2851c35f8b3fa5187d05d252da8d593f5ec4f9d268dc9c6973b0f87ed0733e"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "1a89f09b6a4c3418fb4a1490430e96742e5e8f5dc8b2613ccd9214950c6e8c80"; } + { locale = "is"; arch = "linux-i686"; sha256 = "e1cdede34db4b9d289596a689e04452813b6c9a83c72513d51c9f356879af9b2"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "eeb91667080edb15bb5e023333ff7410580b70de878628b4e6bbaa3d0db2bdfa"; } + { locale = "it"; arch = "linux-i686"; sha256 = "bd531bf775d991710fd63f1de90b6389c176d6a0c7d7068a8139f70379d6a76b"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "89fe33ffda15340926c727b535b378bf629389edccf8f8627b03b4056284b93b"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "6e22ad0f04be5ce33dfe1d33d4d935e0dce425d80c5e6e07f3b7f2c856f64aee"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "2aaafcb3b5da060458e67f493c10a3f02266e328222f25f96b8229f8dfec37b2"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "7a0a5957bb1cf2724e551fe2f05e06e4493f95ea939812f535a166428d127a25"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "ee62aee7a4b549d95e4bcab696c28ada842f352111bb44f4d39d1fe05a49d970"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "ed13eeea81f3673ae082e92db0cb966889f00cfc14c6f54f4f90677a3adc0fd4"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "22fdb92474591dcb05fae0c6bf65d696bcba718b208224411867a38af187c87a"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "44c999f4f73d02ea3c336ceba5771ddd187ce241fd3dcc027f315bdd935ba1c4"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "04aaf3ce92aaadfc975730956b0e92a3b26b5b1abfb376bbc2e8c35b2b1d5169"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "06b86c4bc4018e5117a8e8a129f81d8ca5fb2781bd06a2f2ec29fcaceba23d58"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "186ee5e191160a72f6f5f99371412cc0cb44fc66184d5a33b0aa8cc480b784c7"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "0ce71ba703d3b307ae66502768c6fe924fbd838570f917e1ab65fc8ffedddfc8"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "4e5f3b1ac34c61ae977d9f346fa04de7a3b21a21756bbf120f5d1bd8f56a98c9"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "7b99742ca9ccca0f5151d4f9ff4b3fffbc9df5f6c8e89c3f2236da84639d6050"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "6e66778a0c318add8d8fdac631400af94a9fff77d90c1c039a91e3b4ae8e66fe"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "7d50ff91e15954c4736309e23425603ae731c9d221936106a67517a5caf8c24d"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "bc224b70b522199e6c3c7012f3aec9a4cd6b31feb8eea23e3701ff891bcd2d77"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "7194b4ef864aa1cfcc00d9ba108cb9436bfcb72fda9a4bf2ff3abbf47877a5f4"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "6a94b5a6448af6c273fa526b3a359f4435482d1f55f9fbd40ef0d7aded98b1ad"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "1a0fab79901d40fe8709e8675a3c8cc6cb6474e10c64730bcda13a3577f94334"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "3672d9b0e9de882ef9f9851e0ecd9deb52053c65b4a747ac8ef0700b53426f5a"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "5f2008f9225ade5e1cff93f804e59b95f998129b1de7910280a3a7f508ea9ca5"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "645d13223d1aaf5ca3768515e6d9ac12a4205834bf1329765fbc6ff0410eed8e"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "582bafffc11ff585860b5af8e8f75d359f4f8e928c794cf35522c083089664ea"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "bf3d9ca3e1ee0d55dd601d25be1b2f2c9ebbe78094a2df725704b060b834eda0"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "3f3ebf446a22176b429cc328b002ffa723e27727ca29def5dfb88eeddef605f7"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "41f17ef5311d0d1cb10893adb68ca312710f16b07c41d64b31695013cfe15cdd"; } + { locale = "si"; arch = "linux-i686"; sha256 = "de99654352ff974fcf0c83d0f6aca669bf6fbfcc6ad534b0a26568d30c650564"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "554e32f4c204a8c7aa1b3d83dd736524abc0595c5fde6c5f58b0b5a644133df1"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "c54c6039343bd0bdbe449e6c8633a8aa18ce187850a4d81912b0751d84769fa4"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "cc38fdc0202da4a7292564f3f30fc01080582991dd5a5fb28860ccb4f4c8d75f"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "a276c5f8d1ce308f79f6ae6f95118164bd8882acc9c2aa8140c544626d1c1960"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "ccbbb0cfd53a9ac5f500e7313111a74d305107578ab94e17bf54175f3366279e"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "ede984ffb03f4a35ee18699a217d1d75492a4e7a372168a9c6ccc8fb7d133922"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "43a3fdb69989c0365d568eb7d7e697fd9d94ce59f0438a3f9b0e615c255e1eb3"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "48ee50e180515633db238d73ec8d50cd3dd5dd79e8ab7050f341a5be73401dd9"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "2a7deb046cd8652e04aafcd88b8d621a2503f7061c6b48cdafcbc763143e88bd"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "e87406cb2503ab7cc0ee8df8ac4ec92c90e5033a0133da72b14fd72e736c5360"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "f6227e1c4442dca0ff7ececf90c03bd711d6a5a83d0f8bf9857dd5c964ed243f"; } + { locale = "ta-LK"; arch = "linux-i686"; sha256 = "758c22dac6d97296ef1543f7eafca7d937a2313dd09ac3ca4bfe401009afe210"; } + { locale = "ta-LK"; arch = "linux-x86_64"; sha256 = "5f1993c3c54cd0ae42cdac9606664d8127de26ef31a94ec4f7da264a233d788e"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "68a3dce3a3c84d111b36dc544a82496364d3b16b411d70ee148bf8f9b8d650a0"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "facf8cc17d37049ce5c48a9aec9ce97a46242c46c18b2b52a2b3d6ca14217f63"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "836cd0eca497cc554da3e68e2274c16c875dc600b8541854a4c11e54e3262b49"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "2fdaafbd212530c309639aa0ee3ebc113c8aeddf7811b5db51e9792a98deeecb"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "9b263fb42a5ed939dc63a452e7cb87c295c6eaf270bfa97d9c858eed2931c0ae"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "b7684a1836b489b5ef8ad9b28ce0837a846fa55305f83d3a998f6722a97c0e65"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "39b0d87388ae8646f7b81d1008e8b9019a3f702031103e497326bb80988559ed"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "c85ad956bb69a97abd116b30ca5e2303fe4aebdffb08a8120ce7fdeda161b117"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "e2f931b5ffbb1d6169e16125bcc40bc432debc01354f193450075d19f0a23a78"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "3d9310cec9c1370e6a9fa8185935c6c48c3029fc17b6f2fcc311e8f8565ac804"; } ]; } From 3f4276369e92a4d60a48add0a89bc727b66dc5e2 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Wed, 9 Dec 2015 10:27:44 +0100 Subject: [PATCH 003/289] dovecot service: refactor module --- nixos/modules/services/mail/dovecot.nix | 292 ++++++++++++++---------- 1 file changed, 172 insertions(+), 120 deletions(-) diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix index fca0d2a7f61..7ca4faae5d4 100644 --- a/nixos/modules/services/mail/dovecot.nix +++ b/nixos/modules/services/mail/dovecot.nix @@ -3,137 +3,178 @@ with lib; let - cfg = config.services.dovecot2; + dovecotPkg = cfg.package; - dovecotConf = - '' - base_dir = /var/run/dovecot2/ + baseDir = "/run/dovecot2"; + stateDir = "/var/lib/dovecot"; - protocols = ${optionalString cfg.enableImap "imap"} ${optionalString cfg.enablePop3 "pop3"} ${optionalString cfg.enableLmtp "lmtp"} + protocols = concatStrings [ + (optionalString cfg.enableImap "imap") + (optionalString cfg.enablePop3 "pop3") + (optionalString cfg.enableLmtp "lmtp") + ]; + + dovecotConf = concatStrings [ '' - + (if cfg.sslServerCert!="" then + base_dir = ${baseDir} + protocols = ${protocols} '' - ssl_cert = <${cfg.sslServerCert} - ssl_key = <${cfg.sslServerKey} - ssl_ca = <${cfg.sslCACert} - disable_plaintext_auth = yes - '' else '' + + (if isNull cfg.sslServerCert then '' ssl = no disable_plaintext_auth = no + '' else '' + ssl_cert = <${cfg.sslServerCert} + ssl_key = <${cfg.sslServerKey} + ${optionalString (!(isNull cfg.sslCACert)) ("ssl_ca = <" + cfg.sslCACert)} + disable_plaintext_auth = yes '') - + '' + '' default_internal_user = ${cfg.user} mail_location = ${cfg.mailLocation} maildir_copy_with_hardlinks = yes + pop3_uidl_format = %08Xv%08Xu auth_mechanisms = plain login + service auth { user = root } + '' + + (optionalString cfg.enablePAM '' userdb { driver = passwd } + passdb { driver = pam args = ${optionalString cfg.showPAMFailure "failure_show_msg=yes"} dovecot2 } + '') - pop3_uidl_format = %08Xv%08Xu - '' + cfg.extraConfig; + cfg.extraConfig + ]; + + modulesDir = pkgs.symlinkJoin "dovecot-modules" + (map (module: "${module}/lib/dovecot") cfg.modules); in - { - ###### interface + options.services.dovecot2 = { + enable = mkEnableOption "Dovecot 2.x POP3/IMAP server"; - options = { - - services.dovecot2 = { - - enable = mkOption { - default = false; - description = "Whether to enable the Dovecot 2.x POP3/IMAP server."; - }; - - enablePop3 = mkOption { - default = true; - description = "Start the POP3 listener (when Dovecot is enabled)."; - }; - - enableImap = mkOption { - default = true; - description = "Start the IMAP listener (when Dovecot is enabled)."; - }; - - enableLmtp = mkOption { - default = false; - description = "Start the LMTP listener (when Dovecot is enabled)."; - }; - - user = mkOption { - default = "dovecot2"; - description = "Dovecot user name."; - }; - - group = mkOption { - default = "dovecot2"; - description = "Dovecot group name."; - }; - - extraConfig = mkOption { - default = ""; - example = "mail_debug = yes"; - description = "Additional entries to put verbatim into Dovecot's config file."; - }; - - configFile = mkOption { - default = null; - description = "Config file used for the whole dovecot configuration."; - apply = v: if v != null then v else pkgs.writeText "dovecot.conf" dovecotConf; - }; - - mailLocation = mkOption { - default = "maildir:/var/spool/mail/%u"; /* Same as inbox, as postfix */ - example = "maildir:~/mail:INBOX=/var/spool/mail/%u"; - description = '' - Location that dovecot will use for mail folders. Dovecot mail_location option. - ''; - }; - - sslServerCert = mkOption { - default = ""; - description = "Server certificate"; - }; - - sslCACert = mkOption { - default = ""; - description = "CA certificate used by the server certificate."; - }; - - sslServerKey = mkOption { - default = ""; - description = "Server key."; - }; - - showPAMFailure = mkOption { - default = false; - description = "Show the PAM failure message on authentication error (useful for OTPW)."; - }; + enablePop3 = mkOption { + type = types.bool; + default = true; + description = "Start the POP3 listener (when Dovecot is enabled)."; }; + enableImap = mkOption { + type = types.bool; + default = true; + description = "Start the IMAP listener (when Dovecot is enabled)."; + }; + + enableLmtp = mkOption { + type = types.bool; + default = false; + description = "Start the LMTP listener (when Dovecot is enabled)."; + }; + + package = mkOption { + type = types.package; + default = pkgs.dovecot22; + description = "Dovecot package to use."; + }; + + user = mkOption { + type = types.str; + default = "dovecot2"; + description = "Dovecot user name."; + }; + + group = mkOption { + type = types.str; + default = "dovecot2"; + description = "Dovecot group name."; + }; + + extraConfig = mkOption { + type = types.str; + default = ""; + example = "mail_debug = yes"; + description = "Additional entries to put verbatim into Dovecot's config file."; + }; + + configFile = mkOption { + type = types.nullOr types.str; + default = null; + description = "Config file used for the whole dovecot configuration."; + apply = v: if v != null then v else pkgs.writeText "dovecot.conf" dovecotConf; + }; + + mailLocation = mkOption { + type = types.str; + default = "maildir:/var/spool/mail/%u"; /* Same as inbox, as postfix */ + example = "maildir:~/mail:INBOX=/var/spool/mail/%u"; + description = '' + Location that dovecot will use for mail folders. Dovecot mail_location option. + ''; + }; + + modules = mkOption { + type = types.listOf types.package; + default = []; + example = [ pkgs.dovecot_pigeonhole ]; + description = '' + Symlinks the contents of lib/dovecot of every given package into + /var/lib/dovecot/modules. This will make the given modules available + if a dovecot package with the module_dir patch applied (like + pkgs.dovecot22, the default) is being used. + ''; + }; + + sslCACert = mkOption { + type = types.nullOr types.str; + default = null; + description = "Path to the server's CA certificate key."; + }; + + sslServerCert = mkOption { + type = types.nullOr types.str; + default = null; + description = "Path to the server's public key."; + }; + + sslServerKey = mkOption { + type = types.nullOr types.str; + default = null; + description = "Path to the server's private key."; + }; + + enablePAM = mkOption { + type = types.bool; + default = true; + description = "Wether to create a own Dovecot PAM service and configure PAM user logins."; + }; + + showPAMFailure = mkOption { + type = types.bool; + default = false; + description = "Show the PAM failure message on authentication error (useful for OTPW)."; + }; }; - ###### implementation + config = mkIf cfg.enable { - config = mkIf config.services.dovecot2.enable { - - security.pam.services.dovecot2 = {}; + security.pam.services.dovecot2 = mkIf cfg.enablePAM {}; users.extraUsers = [ { name = cfg.user; @@ -148,36 +189,47 @@ in } ]; - users.extraGroups = singleton - { name = cfg.group; - gid = config.ids.gids.dovecot2; + users.extraGroups = singleton { + name = cfg.group; + gid = config.ids.gids.dovecot2; + }; + + systemd.services.dovecot2 = { + description = "Dovecot IMAP/POP3 server"; + + after = [ "keys.target" "network.target" ]; + wants = [ "keys.target" ]; + wantedBy = [ "multi-user.target" ]; + + preStart = '' + mkdir -p "${baseDir}/login" + chown -R ${cfg.user}:${cfg.group} "${baseDir}" + rm -f "${stateDir}/modules" + ln -s "${modulesDir}" "${stateDir}/modules" + ''; + + serviceConfig = { + ExecStart = "${dovecotPkg}/sbin/dovecot -F -c ${cfg.configFile}"; + Restart = "on-failure"; + RestartSec = "1s"; + StartLimitInterval = "1min"; }; + }; - systemd.services.dovecot2 = - { description = "Dovecot IMAP/POP3 server"; + environment.systemPackages = [ dovecotPkg ]; - after = [ "network.target" ]; - wantedBy = [ "multi-user.target" ]; - - preStart = - '' - ${pkgs.coreutils}/bin/mkdir -p /var/run/dovecot2 /var/run/dovecot2/login - ${pkgs.coreutils}/bin/chown -R ${cfg.user}:${cfg.group} /var/run/dovecot2 - ''; - - serviceConfig = { - ExecStart = "${pkgs.dovecot}/sbin/dovecot -F -c ${cfg.configFile}"; - Restart = "on-failure"; - RestartSec = "1s"; - StartLimitInterval = "1min"; - }; - - }; - - environment.systemPackages = [ pkgs.dovecot ]; - - assertions = [{ assertion = cfg.enablePop3 || cfg.enableImap; - message = "dovecot needs at least one of the IMAP or POP3 listeners enabled";}]; + assertions = [ + { assertion = cfg.enablePop3 || cfg.enableImap; + message = "dovecot needs at least one of the IMAP or POP3 listeners enabled"; + } + { assertion = isNull cfg.sslServerCert == isNull cfg.sslServerKey + && (!(isNull cfg.sslCACert) -> !(isNull cfg.sslServerCert || isNull cfg.sslServerKey)); + message = "dovecot needs both sslServerCert and sslServerKey defined for working crypto"; + } + { assertion = cfg.showPAMFailure -> cfg.enablePAM; + message = "dovecot is configured with showPAMFailure while enablePAM is disabled"; + } + ]; }; From 7e86e9a048d2b5ee2eb054b52154cd2d48e0e43e Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Sat, 12 Dec 2015 20:32:38 +0000 Subject: [PATCH 004/289] zfs:Always import from /dev/disk/by-id --- nixos/modules/tasks/filesystems/zfs.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix index 675bd3d232a..dedd3f5ca45 100644 --- a/nixos/modules/tasks/filesystems/zfs.nix +++ b/nixos/modules/tasks/filesystems/zfs.nix @@ -214,7 +214,7 @@ in done ''] ++ (map (pool: '' echo "importing root ZFS pool \"${pool}\"..." - zpool import -N $ZFS_FORCE "${pool}" + zpool import -d /dev/disk/by-id -N $ZFS_FORCE "${pool}" '') rootPools)); }; @@ -255,7 +255,7 @@ in }; script = '' zpool_cmd="${zfsUserPkg}/sbin/zpool" - ("$zpool_cmd" list "${pool}" >/dev/null) || "$zpool_cmd" import -N ${optionalString cfgZfs.forceImportAll "-f"} "${pool}" + ("$zpool_cmd" list "${pool}" >/dev/null) || "$zpool_cmd" import -d /dev/disk/by-id -N ${optionalString cfgZfs.forceImportAll "-f"} "${pool}" ''; }; in listToAttrs (map createImportService dataPools) // { From 75d292f173ced7124ac3b2124863ec1b99e9ce9d Mon Sep 17 00:00:00 2001 From: "Matthias C. M. Troffaes" Date: Mon, 14 Dec 2015 15:33:51 +0000 Subject: [PATCH 005/289] gosmore: once more fix broken hash and disable externals for now to prevent further breakage --- pkgs/applications/misc/gosmore/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/gosmore/default.nix b/pkgs/applications/misc/gosmore/default.nix index 67c21aea9e6..e894ace0d45 100644 --- a/pkgs/applications/misc/gosmore/default.nix +++ b/pkgs/applications/misc/gosmore/default.nix @@ -5,10 +5,14 @@ let in stdenv.mkDerivation { name = "gosmore-r${version}"; + # the gosmore svn repository does not lock revision numbers of its externals + # so we explicitly disable them to avoid breaking the hash + # especially as the externals appear to be unused src = fetchsvn { url = http://svn.openstreetmap.org/applications/rendering/gosmore; - sha256 = "0i6m3ikavsaqhfy18sykzq0cflw978nr4fhg18hawndcmr45v5zj"; + sha256 = "0qsckpqx7i7f8gkqhkzdamr65250afk1rpnh3nbman35kdv3dsxi"; rev = "${version}"; + ignoreExternals = true; }; buildInputs = [ libxml2 gtk curl ]; From e6a4acb241a17724935b30dba65d396ca4fd40a7 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 14 Dec 2015 17:36:43 +0100 Subject: [PATCH 006/289] python sqlalchemy: 1.0.9 -> 1.1.10 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fab1d41bcc7..e60fae44b73 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17929,12 +17929,12 @@ in modules // { }; sqlalchemy_1_0 = self.sqlalchemy9.override rec { - name = "SQLAlchemy-1.0.9"; + name = "SQLAlchemy-1.0.10"; doCheck = !isPyPy; # lots of tests fail src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz"; - sha256 = "03mi79s8dcsqpwql98mlvaf6mf4xf5j3fjkv5m6dgibfwc0pbly3"; + sha256 = "963415bf4ea4fa13698893464bc6917d291331e0e8202dddd0ebfed2864ef7e3"; }; }; From 1298fa443d07f121f2af90ef743c9e6758dad43a Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 14 Dec 2015 17:37:13 +0100 Subject: [PATCH 007/289] python pandas: use sqlalchemy_1_0 --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e60fae44b73..c787de88cbe 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12834,7 +12834,7 @@ in modules // { pytz xlrd bottleneck - sqlalchemy9 + sqlalchemy_1_0 lxml # Disabling this because an upstream dependency, pep8, is broken on v3.5. (if isPy35 then null else html5lib) From 556e968924fee9ecc8751ea70a1a0bd7ac02a8f5 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 14 Dec 2015 17:38:08 +0100 Subject: [PATCH 008/289] python blaze: update inputs and fix tests --- pkgs/top-level/python-packages.nix | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c787de88cbe..7bc85683cf3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1695,19 +1695,28 @@ in modules // { buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [ - numpy - pandas - datashape - odo - toolz cytoolz - multipledispatch - sqlalchemy9 # sqlalchemy8 should also work - psutil - numba + datashape + flask h5py + multipledispatch + numba + numpy + odo + pandas + psutil + pymongo + pyyaml + requests2 + sqlalchemy_1_0 + tables + toolz ]; + checkPhase = '' + py.test blaze/tests + ''; + meta = { homepage = https://github.com/ContinuumIO/blaze; description = "Allows Python users a familiar interface to query data living in other data storage systems"; From 5e3d2b83a2f0245f1b53177c36be5d51fa6db94b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 14 Dec 2015 17:38:33 +0100 Subject: [PATCH 009/289] python odo: 0.3.3 -> 0.3.4 and fix tests --- pkgs/top-level/python-packages.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7bc85683cf3..4d8634dff6c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11427,15 +11427,20 @@ in modules // { odo = buildPythonPackage rec { name = "odo-${version}"; - version= "0.3.3"; + version= "0.3.4"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/odo/${name}.tar.gz"; - sha256 = "2499ee86c26c74daa28f21ed235ca331911065950deea5169ebdb7d5dae6ebef"; + sha256 = "77bdb372999ac0d9ef272927d7867a668108a4193e11eb8646bf770370a30725"; }; + buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [ datashape numpy pandas toolz multipledispatch networkx ]; + checkPhase = '' + py.test odo/tests + ''; + meta = { homepage = https://github.com/ContinuumIO/odo; description = "Data migration utilities"; From 88bccd83feffe9643169303c333bfc57f0f5dfec Mon Sep 17 00:00:00 2001 From: michael bishop Date: Tue, 15 Dec 2015 08:45:58 -0400 Subject: [PATCH 010/289] net-snmp: fix mnttab path when built under chroot --- pkgs/servers/monitoring/net-snmp/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/monitoring/net-snmp/default.nix b/pkgs/servers/monitoring/net-snmp/default.nix index efc61b9fd6b..c53f52422cf 100644 --- a/pkgs/servers/monitoring/net-snmp/default.nix +++ b/pkgs/servers/monitoring/net-snmp/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { "--with-logfile=/var/log/net-snmpd.log" "--with-persistent-directory=/var/lib/net-snmp" "--with-openssl=${openssl}" - ]; + ] ++ stdenv.lib.optional stdenv.isLinux [ "--with-mnttab=/proc/mounts" ]; buildInputs = [ autoreconfHook file perl unzip openssl ]; From 074dfbe5165f7709de863ca152464fcfc762ebcd Mon Sep 17 00:00:00 2001 From: obadz Date: Fri, 27 Nov 2015 02:51:31 +0000 Subject: [PATCH 011/289] go/pup: init at 0.3.9 (also required go/color: init at 9aae6aa) --- pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/go-packages.nix | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 986004c5642..792e66ee6e6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1671,6 +1671,8 @@ let go-mtpfs = goPackages.mtpfs.bin // { outputs = [ "bin" ]; }; + go-pup = goPackages.pup.bin // { outputs = [ "bin" ]; }; + googleAuthenticator = callPackage ../os-specific/linux/google-authenticator { }; google-cloud-sdk = callPackage ../tools/admin/google-cloud-sdk { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 70dda19bc8e..d631a7b4950 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3230,4 +3230,27 @@ let ''; }; + color = buildFromGitHub { + rev = "9aae6aaa22315390f03959adca2c4d395b02fcef"; + owner = "fatih"; + repo = "color"; + sha256 = "1vjcgx4xc0h4870qzz4mrh1l0f07wr79jm8pnbp6a2yd41rm8wjp"; + propagatedBuildInputs = [ net go-isatty ]; + buildInputs = [ ansicolor go-colorable ]; + }; + + pup = buildFromGitHub { + rev = "9693b292601dd24dab3c04bc628f9ae3fa72f831"; + owner = "EricChiang"; + repo = "pup"; + sha256 = "04j3fy1vk6xap8ad7k3c05h9b5mg2n1vy9vcyg9rs02cb13d3sy0"; + propagatedBuildInputs = [ net ]; + buildInputs = [ go-colorable color ]; + postPatch = '' + grep -sr github.com/ericchiang/pup/Godeps/_workspace/src/ | + cut -f 1 -d : | + sort -u | + xargs -d '\n' sed -i -e s,github.com/ericchiang/pup/Godeps/_workspace/src/,,g + ''; + }; }; in self From df02ed5696193dde5ba3c09aa20cd1d512802373 Mon Sep 17 00:00:00 2001 From: taku0 Date: Wed, 16 Dec 2015 09:55:39 +0900 Subject: [PATCH 012/289] firefox-bin: 42.0 -> 43.0 --- .../browsers/firefox-bin/sources.nix | 358 +++++++++--------- 1 file changed, 179 insertions(+), 179 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index acbcd075797..5f409d32799 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -4,185 +4,185 @@ # ruby generate_sources.rb > sources.nix { - version = "42.0"; + version = "43.0"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha256 = "f45ceba774989f09e6adb226f0e189c69092d9eccf67722b1876695d94b6a988"; } - { locale = "ach"; arch = "linux-x86_64"; sha256 = "78f64d02e5a1548e0b9b9f9c36f1eb151dbc0212805f09658d61a35c8ef94380"; } - { locale = "af"; arch = "linux-i686"; sha256 = "a3cb08c2d3879d46a2fe6b9567664d4c4a996bf10560079936d221e9588c5b76"; } - { locale = "af"; arch = "linux-x86_64"; sha256 = "c580f19ac9909d28e5f3d55c3347893e088471a0fc7f4cb2e42fb1481218a1d3"; } - { locale = "an"; arch = "linux-i686"; sha256 = "61a4fa6a4c3a8c814d3d81bf51e1780c148e366fe1355e621523f419d5e4c583"; } - { locale = "an"; arch = "linux-x86_64"; sha256 = "2bbc6591669258fbc46944577ce6a4a091772b1cb8a4430d88d3f1b911da770c"; } - { locale = "ar"; arch = "linux-i686"; sha256 = "1aa9e3e21c3d678135f009f8541999a18ea38ade9ae3d21b8da07a60d22eab91"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "eef01a5315eab457073ff01a51382a46200e84a6e87a91a3e38ab865b3304430"; } - { locale = "as"; arch = "linux-i686"; sha256 = "e3949cd85c439f72e8051ece5c22b18f6802e29311b84c5e88b124ea72ced52f"; } - { locale = "as"; arch = "linux-x86_64"; sha256 = "59178756fcd409765ff88324133bccdd0e43d2961a0fa15e2e53f7ed4fea3bac"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "88440f3f572421c0a7c2e95f3517289a33de474766185bacc0b93ef09673f1df"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "ce6fec215b11ecc2e5bd74d2dc47a09de9bcbf3df18e8f270c83967e605985a7"; } - { locale = "az"; arch = "linux-i686"; sha256 = "1b0e3ce4799e4cf3bf6129298895e8aa48c38b6b138c5ebfdd694ae8811e51af"; } - { locale = "az"; arch = "linux-x86_64"; sha256 = "6e0b73fc25a68d57117259043fd5bbd6dfbc8e32ba4090233303c5bf57d858b4"; } - { locale = "be"; arch = "linux-i686"; sha256 = "c50492edb43b2d306c664bb174f89392e68a530eec4fef2aa39335b9d12b0e32"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "2057d21e45538be260d723cf11bb36e32c79d87530fc19852a2f342d825d75cc"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "f87522d234e50d50509ead2800a804131b769235006aada0a379e46d290b6cc1"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "8793acfd7bbcc47e9ee19cfc2cb265a71f7dea5e98222fc541ae66c29bd8c39d"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "d55de132e4d6c49053d2c843f91f7410188f62ee3e4bb56ac8b4370f55475274"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "a5798d40795689f2c92cfd8cc3605c4a30e23e39d8db43a8e7415cb9e4c75a55"; } - { locale = "bn-IN"; arch = "linux-i686"; sha256 = "28fd24e8e3069de9d1f81aff9e3671a806470e56f17ab0193566c8709eb1c268"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "dd5b97f1b3acdb2ab1a2f75b4c236ce2b68365840ea6b3703969e57b2eaaf927"; } - { locale = "br"; arch = "linux-i686"; sha256 = "5dd3132f6543c7dd5bf062d1222782b4bfd38b3f95088e2881c0b6f4362f1e3d"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "69ff22dc400cbaa75e9799929fd2496e8e2db6c5549d848abf642f58e73ad825"; } - { locale = "bs"; arch = "linux-i686"; sha256 = "bfe4feb86124cde6ebd0e2449b5301657f1d62a073e98c888e81307832441b45"; } - { locale = "bs"; arch = "linux-x86_64"; sha256 = "878712c2ff34e27181f8477440b2489c8c4c8b1cd2f6a03724ee4b9b5eabd031"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "a5fd111a60b81a11b233bc2720ca58a307d883a84cb2212644dc07a0acd8ed88"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "c8df6e52d22907615c0198a9c061d5836e43427e66964d9235662d1673ec0573"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "6f0ad2a1ec219a8aef9c762235fafc8113a06754aaab2c141812f9f062c1a0c4"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "d4a1c8becbeb05da17ffb6d1ba8625b7286a1591fc5f141202542ce769c29c13"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "4bae504ae202fbc75244fd476de80857dc33fe6a7dd3da2555e7efba279a5089"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "2133795258e00be82219dbd5f288ab76e5b218a4d298224fedcaf02ddc049b07"; } - { locale = "da"; arch = "linux-i686"; sha256 = "64fbcfa9c645dd0986b85de286347eb223c81db45e405b2e29df47527edfe55a"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "58af00c544e5a2c9a98cc2cb896db80052ee12e31d4215ae4b08862ac3d3caa3"; } - { locale = "de"; arch = "linux-i686"; sha256 = "b8a48b676494ec7c9af8d24678dd1c719871c297887431b9360dea67d9bafb48"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "8d6bc67c1db287c00c8782cb33b03ba0076f1b89064cdd0ddefcb37bffddbc68"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "955968db11698942a86b79a9f5258c4636121e9c3350dfad70eab375f87c08e3"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "f34efb2d427e23ea34a1f24cbbe32d6ce384e1e4055a83afc1d336bb31481095"; } - { locale = "el"; arch = "linux-i686"; sha256 = "bff3a1efcaed403d2e465b92a88076fc0525534593d977423811c30a4abc757a"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "0d83d214eb61c3d248291141fa6b5e29d72f62a030be39dc4ee7c1781424c421"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "593041d5b07665134bd61866b706e11f10168df72c9a033034e95fdecaa6f65c"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "eab33978a3cd15ad3ed86efd72eda53e65f6addfd352f1f372d8133fea7edc6b"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "2c44f8ef07896f3e4c4ee555e35ebe5658f2721fdbdee4c70b153387472b781e"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "e3077ca9aa246154acad2a264489e7cc68864035873e6c6d54b7fb3f9b832fd7"; } - { locale = "en-ZA"; arch = "linux-i686"; sha256 = "8b78e83769d468dd7d5e9964ca99fd745f82341f8a426e7af82671c4515c8e70"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "631da5975f08807bfa4519c1265d082bb6de8ba6b39bbf6c903e08cf5c85b2a3"; } - { locale = "eo"; arch = "linux-i686"; sha256 = "16556716bb0cfcfade4c705bc641317c423dda976f68a1a78bf1b1df08883725"; } - { locale = "eo"; arch = "linux-x86_64"; sha256 = "cb21a5ea8cb9ded9eb729864d20a538275b8f29e9b7a10ea9d9dcb2b7a2368b3"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "3b830fc45a2ad62253d51eb53ae2cf6345bcc2a348e43e5aa19a001506fe3f6e"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "9ede597d11d798c4369b74e74a67564152a793f4d2a655f422176a1e03d0f6f9"; } - { locale = "es-CL"; arch = "linux-i686"; sha256 = "1384df5e31f49f8f647e21f1d5d4f3a2229dce389857219745d2e2e325c894b4"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "e1a56a69687e9fe0979602b9256b5f8f3e05596e8af23fc78b0459ad66950158"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "258a3ded204f66d20370f4ca34d668da38921302ba6844bb6b49525a911ef1f5"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "6563107eaadfad91f29b5d3084068ddf2b2959723f0bf38f8287e9b71dfafe68"; } - { locale = "es-MX"; arch = "linux-i686"; sha256 = "00253b3a1c28f55199c74d1cce9fa1aff5cf6a7b3f77385f18836b36c961cbd1"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "897bfc04b17334ac1499a50c0fede1dda4dd9f667801d50a3c7221409158a39a"; } - { locale = "et"; arch = "linux-i686"; sha256 = "fb4c11f82c492d02f15817c19d4450049ce8532741d6c2733302e06a77ed768a"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "9e4c22e0e430bab1a85d83f8e77245390ecadc2af9c6fc6d408a1ccb388b5c5c"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "4be07916499253dee47572b0fe03318050f601ecd34a2578e3daaa2423ea0223"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "414366c5de7bd58f620a86d69b3fc618b4f2a41103e073197ed6f6326cb34173"; } - { locale = "fa"; arch = "linux-i686"; sha256 = "84dd27e9f3f3736c2364f995b460a401ceccb5df88b9420fc5c4e10bed714ebd"; } - { locale = "fa"; arch = "linux-x86_64"; sha256 = "e1e19b3a13e48ae5db809d781ed94a079dfcc23fef7b084e18589863fdda1e16"; } - { locale = "ff"; arch = "linux-i686"; sha256 = "7de7ded84b96c8208796336b079294cb163e5a1717e7f0263fdbdf061bbd77a2"; } - { locale = "ff"; arch = "linux-x86_64"; sha256 = "0c57b47227db17ec0b5cf05b2c839d01ef09e85e062af145cb063e9b431201a0"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "7bd42dd0dc3f3a9328f41f06f5f4409b611d17e1f3c71dc68b4f87aa1a5403ef"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "32aed7d397353791d0eeb4d64003ddc0206f43308020e4e003877741bbc4246a"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "274fb64798147b96c49117444a55b0d27da1ce58c64d0c72a8f4f2445ef8dcfa"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "17f3af176ce83481678ba5b496a6c576af1ad01a858714cec0c613219ef78105"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "ef2a32e783456b8be56cc2fe16c4c9f80e174f5cbea5fcb0ffaa9dccc498c1bc"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "76742465bfb95935e3f5531ef52f0d13021454887f20b5c60d903142e8bf29b7"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "e23cd7c54f08fd952c40d88811ac0a8be7c54b8c44e8e948961c063bd833d720"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "5f37a8add1753e41a75a1cd8f1edeeae0da89987939684e4f7ef46e139c0f2b6"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "1f65eeaa2e213a9a1bd48e12b978faf21a5cbc4db4e6257edd373c7f08fc63a6"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "25398b31be953a54107a38ea9476047e0ad6de8083d1330594522d261ef4f5de"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "13ec763f279c39b0a0082fde0331cde9cc3d9a3aa5155b8853c7acb92bd18d0b"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "46208cc319062483f85c5d801bc4822869bce916f78d2dd36670592794a266c3"; } - { locale = "gu-IN"; arch = "linux-i686"; sha256 = "fad30f5fdcf5622b80f391bf2e957466e8955f23b91be2022ab5cc550b993d08"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "4ef6713e394c72b5d9a5d49899ef952a4587a2f1e0b52307b5062d6807de8ba0"; } - { locale = "he"; arch = "linux-i686"; sha256 = "211cafe7a39b45ca1cf471b2029f8981a26517114fcad3b40f0c5cd702988ee5"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "ad85f5b69ff0d15f0eb17e81e5976635b3319f583938e0c2dcf59badcea71cc2"; } - { locale = "hi-IN"; arch = "linux-i686"; sha256 = "8ec9ccd458b231d873e4272968be09b50d1629280014deacb2a74a754123208e"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "1c78e8adb1047be3be2bb6bae776d1fb3e32b6bd888877d33abcbd56b858f70b"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "64436c22be8c7a873634de4d7677c93427c9307be40a95fa73dc509d32900a20"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "4485174c761aa49bebc7bbdd5d50ceb2ca70477560406b880181ee4ab5f51b26"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "d5e6eb225d04124a9582e31de8c996512b9816bcaa72c4ef8d373f3cb77536be"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "65642995943763d35a9816a02d95d3ad7c26f388a731749c96446308bad0d13d"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "2e4a1602fe3dc83f99b60df358e809cfc831d0c173d0fb1a0b5d0bcc8d5fd0be"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "39592f757f6066e060446cf9ac051cad58ae5e457dea5d28be8e6573a7712b3b"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "e11c1f746e472855c99706d597107426e4f411ed6ab8f3066417a4bf788f6db7"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "34fb58fc187a4afafe45f8b9463f725404bfc9fbb8374bbccd95fbe6a6127cfa"; } - { locale = "id"; arch = "linux-i686"; sha256 = "33c1870c5be769d051ff52d0512253316357925c4074c9760ffdd7ae5eb38680"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "f10a83c55a7164a88c387cff02d5fbca483901b8bface790fd064dc456637004"; } - { locale = "is"; arch = "linux-i686"; sha256 = "312eb8e2613e6723182f1392b0d654488facd31866922241ec7366be3259b42c"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "d850e5c4e18b1f3daeec9508f3d1a19771109a449a8b40106e20154c3128a43a"; } - { locale = "it"; arch = "linux-i686"; sha256 = "782d2e791c1c241e068a7041244def8d3983c7d65372b8297f54010ed2723db5"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "dcec427d3c22e7081d4657ea336aa3a2d1b728cc2ae917aadd89f1021fa53e44"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "8f36b884b8480a225a68a1f3583408132b58511bd3666a04c21a88d8ab9e1387"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "2727864ae1ebc4e0186214297d59cc531a06306059ccfd4a59d83a084cef81c0"; } - { locale = "kk"; arch = "linux-i686"; sha256 = "50d46466bd31723f3116db503dba0b5d095679233ded63173b8b31740afa8ecc"; } - { locale = "kk"; arch = "linux-x86_64"; sha256 = "5ae23bb07acdbfb45e49eb4afdbb6c84a00331f8c5c9824b9756e2e87f927934"; } - { locale = "km"; arch = "linux-i686"; sha256 = "13e32146820f31f0c87f38b3cb636a6a25c5bdb2dbf3befc909f459b33c0ac71"; } - { locale = "km"; arch = "linux-x86_64"; sha256 = "f81eebb081309200f2cec0cf742ac3aebe06ac09948a05af0961a572bc06b0a1"; } - { locale = "kn"; arch = "linux-i686"; sha256 = "8db58576cbd2cb8f8c61d4278dcd0594c92fa707770255f1397272dacfb420c6"; } - { locale = "kn"; arch = "linux-x86_64"; sha256 = "3a2002a54057c062ef720894147486c68b60e21c4bc57435b2ab1fe0f03f11e7"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "0e0f221ec6917635ea8519473a447ee8a572a439cfd2f5de1e1b4d63cfb1e1a8"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "ea4dfbad71d63702377b6a1641667b88ffa270cf37f77e223a88ed2ed6385f3f"; } - { locale = "lij"; arch = "linux-i686"; sha256 = "92af63912444d8ccc43f4b0fa1ec25ad988db4117dc15e58a31c2b783e2922dd"; } - { locale = "lij"; arch = "linux-x86_64"; sha256 = "c93f0e90125fb58b6f9d3281ac580bf46ce7481bbcb5d0162661c7049e7116e8"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "ff6a933c13e5d0bcab3e09915c09489d441f191f06a915ac5953334ae2a613bb"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "d82c44370c3b86230c86933a91e533e51c1ff6c6e515ee6a2b53d7aca105694c"; } - { locale = "lv"; arch = "linux-i686"; sha256 = "7595254788ecc0845cd98f9524e20ef0dc2ec01c6efc3e8289b7c930b37fc604"; } - { locale = "lv"; arch = "linux-x86_64"; sha256 = "a349ae40d4bd2bc0be0517bcd2f3149796687a1a3bf31527e92d7bae3020e839"; } - { locale = "mai"; arch = "linux-i686"; sha256 = "4ef3e22d7bea09ccf7a75759725cd3db5ffec1b486026f3d0afee06293e01c3f"; } - { locale = "mai"; arch = "linux-x86_64"; sha256 = "2a6c645773c6ec3230ae66f850d151fd8ccbe4d65e5d3b241948341b003c2fe8"; } - { locale = "mk"; arch = "linux-i686"; sha256 = "d50d81cb4eab09166d6636c2964143b5fa7cdf909b5eb2eddb2103679f86ba71"; } - { locale = "mk"; arch = "linux-x86_64"; sha256 = "51a4c986a7b85ad140d0fc0e952426d103307013bce72e395873171afa8d0a8f"; } - { locale = "ml"; arch = "linux-i686"; sha256 = "57d9e6ec5ddbf3eea9e07d85d5d84998e70a764260d73f38d32fe71a55ac3720"; } - { locale = "ml"; arch = "linux-x86_64"; sha256 = "50cf19e1b07ea43dffe37a59fdc969d8e8d46df100c15455e4ac2d4b202a00d7"; } - { locale = "mr"; arch = "linux-i686"; sha256 = "98b4d4ac2148e37b741842386333707d8789b2cfacf7ecd7adab3162c43307d8"; } - { locale = "mr"; arch = "linux-x86_64"; sha256 = "77e825a071f826c5668475e33a6a06f3fe3e49306e045fbc9a0a76843e66eb7d"; } - { locale = "ms"; arch = "linux-i686"; sha256 = "a8c2c8db2ecb76070d54a5cc8cf6c31027a843490a54875e4b66e8e3dd212fa4"; } - { locale = "ms"; arch = "linux-x86_64"; sha256 = "54d387432363074ff79a72f6a517b86b7fd76637caa5389a09f7e3ec11965512"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "a2f14933978e45ab472a85bf6278879617b61273f3358c67e6180171d6e9ab5c"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "578da776b395c07ccf7525f7f7c2a807daf994807a30f2a0c2bee9d2ea6b977c"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "49e079241dcea98a08d27708d918dcc9e530f30368b9b67006f16fc5e24ab29d"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "b165e97cf3408ef9c7d04f25b7b15924954ed65c78e25c853fb33bd98c751bda"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "aad675288be4c1c6e4751b3c32f3e5e569e8348a580e7c2497ab61cbd2fe733b"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "c1128bde1d7030d367cf14833c8a775f1a8790a6a159171cfe55ab369f803b84"; } - { locale = "or"; arch = "linux-i686"; sha256 = "28fc9d508d0f86da87060080bea805fc089cb297a82849d7b75fde1d7c35dea8"; } - { locale = "or"; arch = "linux-x86_64"; sha256 = "f3879c6bc8b24d4cccbd559b4ee480ee42008187aac403c35a82fa3aa67cf733"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "262a496547689093ee22ce31b056cc1727cba9a690ea2fd5729e0694e710e6b5"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "67c9a3db932ee1e890f2b0373b160f7a1db2481263919179f34d24e1bb73869d"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "6b561482f0289c085cccd3d331bf7135cec47bf4e56d5a23c86341191e175484"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "c47b600afa999bc38eaf964def0d8e3e64a6f8dc2ebee14b125885773be37527"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "df1f14d353406d367f7c9a3fbec66544ad8ae8f70cd8cf2b8dedcea40f3acd04"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "fe07b106b9783d3b91f31deb55ddf006cbe51e485d6bbf181025edadce7e587f"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "6a4e39b78336f07463887a712a3b5a11f9d9f3be4d2e1be36970d17a554b9d39"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "1df70f54c4e59625740635c99a900738f25ae67707536c86511d98253a1b7207"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "9e56b6a6831877bf5cf9c3299ab305ec06014044285dc635dc4951403024e1c4"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "2d89a4dc8590db8a54c7f2d9d126222ce152eff831170b497b657b64df1cbef3"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "f7006e2dc8a99c47bafcaae9138f752fd9ee014969ee6db5e440724cf124ce9c"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "6b42002b7ba893675ab6da994c0e43129ab2cb4bd3ed361c0f2a116167960ace"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "b7eef5ad76fdc48894be4b20ccd19d42c966235905c8362b2e262c9da729fac7"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "efde30e2e473b667b134487c2e16459e72eb41a63c916a660cba847ee9c5ee7b"; } - { locale = "si"; arch = "linux-i686"; sha256 = "365eeb713360303af2880362aca5edb62a3370ec0a65eebb1fd72cf11a509543"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "43338a5a36278e07d76316eee4b7e0aa07a99123f1ea124650ea5357288b6daa"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "c552413717efe35a1b70d4745c9ed3ecf50eead210225daf1b922d25022026ee"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "fb92a066a27de4328dd4aa5ae4091513ee021a94167ca7f2174cd1809f311799"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "5ede91c27358d812a7fe0f4cfc4516d5802e516c0c4c3ede44f5535dff04ca87"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "f301a92ea7d165d20c23af0d4004a679f6dc1f7574cd34bd92be4cae7d36eaa6"; } - { locale = "son"; arch = "linux-i686"; sha256 = "816ef59d8ab566967c38944df4884a75e1d15f5906bef59c534e80f1f4d31d1b"; } - { locale = "son"; arch = "linux-x86_64"; sha256 = "0bf5149fdffd060773b82c575dbc981e420deb0719a8f4fff9a03c6ba571d5db"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "3e43a60388d2cceb306d7a70e984ded6dacb0a968b78ed8a4032ac60d7c1cc6c"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "6c0fa8dcf9359e8aa1244512f1d264b8684191f4bfb062c802f21009862c26e6"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "1df63b2753dd55d69d0990f3f34f9574dd34289cb64726da45fcc891b6a83088"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "01dec866a74a56fe8652e5b75731c7f508637e875c62a84805fcc0e4636c9e67"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "6f3f5b62e475ce4128e11f62a556505e00d5b8dfbd374ae747a16d6f161059dd"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "0b3cfbb77d291a7fbb14b61c1bb1936dcec5f66af55c3c0b92e9dd4299c9b897"; } - { locale = "ta"; arch = "linux-i686"; sha256 = "357f182c2df19bdd97834bb714f979253bb4a16029d115a12e66bb7c20ff5a1a"; } - { locale = "ta"; arch = "linux-x86_64"; sha256 = "013d771a256e84d6faf97c84edd5ed25bd5d700712f9aa4aef54ff257b530c21"; } - { locale = "te"; arch = "linux-i686"; sha256 = "59ba28b5c3aefa5455af1f1b549018dda9d544aca4829190af4e361b2eb164f0"; } - { locale = "te"; arch = "linux-x86_64"; sha256 = "e181876679ef2c5a289d5697fefde0acc64c936237b907fab7e6d000cbaee5a4"; } - { locale = "th"; arch = "linux-i686"; sha256 = "57545f48f6c1ff7a5ba2aa43d61446aca4d9e8f5f6f1bf70cdbb75d72d4b9713"; } - { locale = "th"; arch = "linux-x86_64"; sha256 = "e2c70247a333447f100bfb87be9f9f7e6f3398ac22623627b016e046afcd7a26"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "f0d6f1053ffc9396657485f58c3bd33ee616a1b474b72a78e0b14960a0818646"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "101763b31f615b301b1e040df7a0219456446695f9edf75580ce6fbcf061142b"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "d0c5854b736bfc7f263f7a515a477e209c90fe7d5ed0ca64dd7d16f3d68a6671"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "3b78c94708d5b5798e30bbf9956619b694c3484672d0e3f473dbbd8898f3c8c4"; } - { locale = "uz"; arch = "linux-i686"; sha256 = "0870ba372c7abfa95bc9da5d5b7f501b3137208d084f25a3ca88a09c8395ec6b"; } - { locale = "uz"; arch = "linux-x86_64"; sha256 = "87f6ea282450521a786944d516c26ff8cbe14a2f24df11fa80c343aca5dcbd3f"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "088be2a9815914a8637163493636acaae40c0348e1b7f064b1ea5181c114a77e"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "b68fc3fc98ecba457ffac3e191b1ef6c1512b826a9dd1b9a301858b8051453c2"; } - { locale = "xh"; arch = "linux-i686"; sha256 = "83095d26d9a73c3113a98c902f31565a3e358ee1aa4ec37976fb72cbc8470845"; } - { locale = "xh"; arch = "linux-x86_64"; sha256 = "642026251591bc1eb1ca1200db1b232981d019d8664cfa216777e12b591606d4"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "a3289ad36a1a3b5affc721a7a2b509d9151049e50209f62c92592d7cd17c96d8"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "f53e14f1ce29b172acba3d58b5ca6da3ff03a121aaf224949a88a2fed96aaa9d"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "a471944312b7f2a04a0f1df4a897f63c41cd74c0645d890d95bce6d725a2ae2d"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "d0d201cff0b8dcc59224645d4f4ab15fa14fe131a30897242e5692729894abed"; } + { locale = "ach"; arch = "linux-i686"; sha256 = "982ba19766fd7d4a1f795ce6737f87be6b990d2272fce4f867cf3dfddd3a21cb"; } + { locale = "ach"; arch = "linux-x86_64"; sha256 = "d2f09953fa7abd561a660d57ce9b7e8e44537119d09eb0161edd0acd9c9a6e9b"; } + { locale = "af"; arch = "linux-i686"; sha256 = "45fa84f6ee80c781268ae665f8510b00fff7faa77fb52e620e2337d660a24e25"; } + { locale = "af"; arch = "linux-x86_64"; sha256 = "c18a542f753299a192acf70b221b07d7146e0e25b4c417d5af315f6f447b8080"; } + { locale = "an"; arch = "linux-i686"; sha256 = "7552d4f6dd4cf1fb3541ab991b85e76877d038eeaee480d8e4a036c289732877"; } + { locale = "an"; arch = "linux-x86_64"; sha256 = "5493af457fe9ec4a5c4265814610d3227dd491221dbf407f39428b7c6d876d30"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "e543731d752c5b24b1247e8088dae8423d957b199da57f57e02d545885d20083"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "e8bd2be14e44ac51848090ca3f024a4a948742cbf8c5cf3ef46ef91fc3141bf5"; } + { locale = "as"; arch = "linux-i686"; sha256 = "a536eb962a704c63072bca9da947d3b8908dec1c635a7c28e634ed086c116b6f"; } + { locale = "as"; arch = "linux-x86_64"; sha256 = "e69ebae4c9a85a3c6a7c3a0d89361c17ae31330db294e2407363c2c2f9ce0698"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "bcd1139f78453f9bf36d1476e66025301f52122a7e93816abec0c7a8c798a25a"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "7462ce0b7481ca65fc29972c5601862386be5b60ae1da55b955b3bd4b2383286"; } + { locale = "az"; arch = "linux-i686"; sha256 = "75860f86e7f7b558c9ae0de86efc6e4ec26abaf097fccea7d2e220849c76f90d"; } + { locale = "az"; arch = "linux-x86_64"; sha256 = "d3499b08d94980f89aa92a444023014f15f327180171984eb30198bc312b39c3"; } + { locale = "be"; arch = "linux-i686"; sha256 = "125d6fe56fffeec2d13ff4d222552249573490b621f4c4b891f9741e54f4b97f"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "d29b2645fdf3ada8ad1cac6ad72a0184c850d17e0ad13d8495c22185d49d2cc1"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "9f484b9ef919f5e62f5762f46ebba098d87270f263dfffeb1671e4badeb7ce4c"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "4ca360eee75a93ecff0ca75ffc533802b5acdff225c8d494792d57b5a5822674"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "6270cb85d1b11e36a38933d1dd2b1592302844220530bc099cc06ccb9632bf2e"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "7547142fac57bb305c159e9ec63b42e7d47e399418de9ca98ad0e44c189bb13a"; } + { locale = "bn-IN"; arch = "linux-i686"; sha256 = "e17b2c5930666d9a6f7b523dbbbd118e74665b351a1002f92cb979b7e95ff695"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "6e689634aface136ff1ca4af4e51f54b2f116a48aec7b738ca7bb8e7ad0ae714"; } + { locale = "br"; arch = "linux-i686"; sha256 = "e9045c2bfe041eb9e6d69562ebaf170a93d164cc15ea99f6cd4ddc70614b82e4"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "bc9e9bf595aa4f27b275b913756c952dd2d9f6079022b22355ef6f76b67b8b3c"; } + { locale = "bs"; arch = "linux-i686"; sha256 = "2ba45e18275193d0d693fa195e8ccaa7e171dd5d155b4943f6e0aeb1f4ce1664"; } + { locale = "bs"; arch = "linux-x86_64"; sha256 = "d1e39ade01b628df66c1bf106c81a7d7c2f3ed8f81cf21610a78d767f7bd5309"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "32ba458dadb02eddf7b54989bf00bd3484143625b601866a0b1560eeffcd3934"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "3ff4b423e3b524e80c2275a064f35c96612fc8e0d95ec18233941313c1f43305"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "73fd0275d55e396f7c2ae88baa0d6d163ccda3d6ba6a5d9f371058bc7142ff5b"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "cafedf882d49e5f91ab3f31a99b65474a8c9044bc21db7f8a1cd6ce8fd7e9ada"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "1544de88d5388142e256521c268a9aa6c694c0abec483833b889a0a91d13bb19"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "2fffc929b935961eab53eb41bf74af80a152863c87b15f651bc9b63ee287c602"; } + { locale = "da"; arch = "linux-i686"; sha256 = "eb3ae8ddc10da4b6b4d3d0449577db8025d728f17447ea0d75b2538a6de01cc7"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "29670adf7370200052ebfe37457859568e4246e9bebf19424d22aa08bd209b23"; } + { locale = "de"; arch = "linux-i686"; sha256 = "ca070f4a12756f7f524ef286375561239229150d55e418c9911dc0f13a82a8aa"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "3186bae10e7ccd49b2d92f61ac34ff05de88aac497f3823216b119102bcb6505"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "3488156b5c0c1d0832d65e7fe3d9ecfb858cb6bfccaf4eb849b55391be750472"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "73ae802fcef1bce7ee360eebddee7f21624e3949c81f4ca0e5a14234398654f9"; } + { locale = "el"; arch = "linux-i686"; sha256 = "baf75fd4b6bb45e8e2be9a685b38858edaef26fae2e761f11dfa09c0623fbfef"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "eef57f4ff6fd1dc43d80aaf5e20d064dcb53d50031f363901cd249593c6023c6"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "93fd10d7a97b817b94924db0a16eea6932c1858c3bc113231354ff9e1183da49"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "6f6c8d1985b224bf3d6e1c5b5bf7f2b209f3bf4a7c676f9a5d12c97872e9106b"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "e01575f0145514c814c3d9a607a6d633de0fd0782e7e6758405bb745ffe73c35"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "54c84a972c53de4bfc75f126435cf7d7c07710235e6556d1e8214302da6349bc"; } + { locale = "en-ZA"; arch = "linux-i686"; sha256 = "8290bd4d9d22a46240d9c3e7a573a0a79613bfdf6de20a463ccee9cd5630d69c"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "3d639e60082922c330ed45d2caeb0706425e2722d137c18841c9cbce3a1a0360"; } + { locale = "eo"; arch = "linux-i686"; sha256 = "4db791125c5856fb191434df45ee95dc2909525911ca8a503546b6176d80e935"; } + { locale = "eo"; arch = "linux-x86_64"; sha256 = "6feb494c6b1d822084ebc021de6bde1e13263da75cd7a93d7050b727656edf51"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "62c5043ddff9a4f53a98f0be119dbaecc1a67fa6aa2437c7e0d129f152dc4649"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "2f073e925474eff6c323529eec0796ba88d4df118d9f660044af72a7598a115d"; } + { locale = "es-CL"; arch = "linux-i686"; sha256 = "ba865758213094e1bfff0450d464fd8cc04234636889cc3b61aefe5e2ec991d0"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "c4d6201ab240e9448e427ff0c99454d91d85bf83442ed1fbe1b1540921fe299e"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "f9a569785dd6dea163c3218f9f5cbf8ab257aa4e2f54f85ba94cff735ffd3888"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "6895fdc030d92521e157279f07a0f4f45aa09638d6306f3dd14de497ad28ff25"; } + { locale = "es-MX"; arch = "linux-i686"; sha256 = "323eaec354645ed5bcc89dbde31c68024af86c048e09fec8928009fd63c540ff"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "16b44182b8340f55456c101501284237b564a7f8ec7904a747a77812ea36e26e"; } + { locale = "et"; arch = "linux-i686"; sha256 = "93796e0c0998dbdbbeb9774abfde33ffecb2120747de35bdf9a4fe716b5c5c26"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "6959270bbc217a4e6ed574690a1350796601076b66fc5a2d399199fb361724a7"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "b902d0ffa5a8f470258ac32f0d044206353348609b5f7058fb9c919d04dde4d9"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "19144f8b85e1c95a1651e5284ae2bf306dfc0cc44a0479e96e8f8eeb024210b6"; } + { locale = "fa"; arch = "linux-i686"; sha256 = "c2555942a22d4b98b300dc59103c909bf87cff72004fde3898b37a0159c27b1d"; } + { locale = "fa"; arch = "linux-x86_64"; sha256 = "da9c4471ad0ee6d7e251b66cb16c28a17c1eeffb8e5ffc3ba3671b50abb54ba8"; } + { locale = "ff"; arch = "linux-i686"; sha256 = "bff3ed957cd63e9c563fcd9c3d22656ac6ad0249ce1b508ca6c2e2bd704b33ff"; } + { locale = "ff"; arch = "linux-x86_64"; sha256 = "aaff9be56db81c295d979a70bff85d7f714ce2f0cc7c0e6b16641ee2da98e053"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "47fa1bbf54704447f2beb1561895a0c564bf29dd260d6517763d2bc7646a81f5"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "c49d524dd277da165dfe267367b3a05e007e5ce0a71ce68d5d2ee6365307dbf3"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "61c974883e7a6ceedf9c500763db6ea805538389991b1741e34033d7f5a1d803"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "e9afcc65a47aad3c287c9dfa3885c2c64340dc53a95f2cc6f2dc78da71876fe3"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "32cc4754a5415edc0c8ac2a081560ee0b783c4101fce31c63d83489459008748"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "3d5947f09ca893f28d9cb5d5fcc9b052c6e9dfca4af791084ca3ff4480205882"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "8924881fa49579ace5c1421b4c51ee6aff0489d15a2b70d53372af8c10f1d788"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "ca643791c3611b9a266907d03082d51b9b363556cc044f638c8551f523c505fd"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "9fc96c7c11b9a0faf3e19f910a0af03ddfa66f64adbae4a4bef3dec9d9cbcfb2"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "bc129515675937c1db6b90721ce12cb832024f2234d48d8750ff8b78e7d8b48f"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "972dc9dfbc81fe0d541103c17791f3e101c7d5caa4b7fac9f6c6021f2292eb23"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "903aaa2c69984b6270e73c6d64fb9d78e70bbef18fa8abae1c13eb39d5016000"; } + { locale = "gu-IN"; arch = "linux-i686"; sha256 = "fa7e415da478db2431676fdce4f12c1f751644a2e30cf544ddc3222a3b6d2927"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "1373df42590573aabae82990da82f529b9809f7b5221077af4c0f6e2c4f60bf8"; } + { locale = "he"; arch = "linux-i686"; sha256 = "19fd9098441adfd0956c20d5b188e3e621718c9ec7a7d8f45d999c5d216c1008"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "49bef59a55547c3b633a1bf4b60e48d0a28fe0a320218835462086da8d352010"; } + { locale = "hi-IN"; arch = "linux-i686"; sha256 = "af57e15c754c805a90fb0712784f1632dadb59d05e414ec0507e997a7f5e2fb8"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "3fd560f148816ca2d7926eabea8d786fd6e7602266b4620c78cc6515bd307168"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "e955e7d6d97ae6ebec3df7a079ce1f81e007711548dc294ee7372a730411f9ed"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "a49eb1c665736fa48f3411833ebcadf209e316be020e04e0b0cbba194c041de3"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "443be07db7e46c182aef031d96505698cf66db97b5e6537b7b1c4f3d76da7a6f"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "c4ecf15c893bb5d284782daf4ff1f732e8a3d56d21907c8496bb8ed36e9dc36d"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "f8b994f5a243d5c43ffb57911080b88aaf1d2ec453a614aa34c441ea6e432e12"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "a18897a597551eef6976a2c920dbad32c69d8467d21b3a194c56b7234d99c13e"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "6772f390516c4315e434cb4d191282c3f4604e935ab7fa9be9c20251af8feafc"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "4cdfdab611336f2bd2bddfd5d7f3c268321f8837777307f1cbef312857cdba23"; } + { locale = "id"; arch = "linux-i686"; sha256 = "f65a4cd2b3abb198fc1fe911814c1ac6660723740c20b6d3c7db9edc462c5bf7"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "502090306fce236ffa979ed762fbca37fc9fe088bb576d9ad64e96b0814b97a7"; } + { locale = "is"; arch = "linux-i686"; sha256 = "f7a91b3fe7d7ec8f2e06d2c1aa2c018f60e79f0b62cadb09b65be78ee72110db"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "13d183ff7e2944b4ed86013d6f3e9f7016e5ef2bc24bce853ca91e15da4a89c0"; } + { locale = "it"; arch = "linux-i686"; sha256 = "097d8d24721f01c4891c12fe36058b68b37febcd44e29ca7669a5a4939c8d6b7"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "59d045ee4ce4823ce031f870f1f9c4864143bf5dcd49355d0bae3af541d50c65"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "be055054270cdb6487f48355a41e81414a4f4467ee4c057f204ebb854e3c53f5"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "bc69790970be93c0d6eac9f3d9c8f6ba714f398bd0b35313a5ba04b584c18c3e"; } + { locale = "kk"; arch = "linux-i686"; sha256 = "a1450ef10e3901d0a3b10e15cb5b4b53e6500b62342ad9008ef69df0bb3b133c"; } + { locale = "kk"; arch = "linux-x86_64"; sha256 = "175b5326133c4243d0141a892346db1f573ee6be6260fbf79ee16a76c073f3f3"; } + { locale = "km"; arch = "linux-i686"; sha256 = "f75d50c214ae66007dc3a31567f7fd527a4a9753b0bee320883b7e3d7c7585ce"; } + { locale = "km"; arch = "linux-x86_64"; sha256 = "5be1306bcb56a3af227de5fabe2e80bf29403e9fefe6e12c36f9ca16070a341a"; } + { locale = "kn"; arch = "linux-i686"; sha256 = "16676e0d00bc33d15222a56c3bd426708c265c2ac64bb31198c0f75417b917ec"; } + { locale = "kn"; arch = "linux-x86_64"; sha256 = "6002d7dcdb2d927a8dccb035c87b452604d8e284752fdac0766f0a2fd11b9b06"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "e01319a0e2f08c0c7d610696b8820049d22c43efb1a434574d46c52ce69ef5ce"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "f539ab8f0f9d1edbd3d85985f369cc9824d8a19ac8888739f95195b63869239b"; } + { locale = "lij"; arch = "linux-i686"; sha256 = "1afd8f5d8ba61aaf659106f096ab35588e04d7b72f8b159ffc00dec604d3f3ec"; } + { locale = "lij"; arch = "linux-x86_64"; sha256 = "30f1bca8be807a3e12a7caf37da9e0f41d0268e98feb02ea5b58357e8ffc5eaf"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "bfd0e553b91750d42541e0832ee4b3a1e82e4d98691518c4b88fe8307186f1eb"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "64c36d2b1f856fd8c2d980007895d0680ad5193791fb4a40b1791b00418551dc"; } + { locale = "lv"; arch = "linux-i686"; sha256 = "3893e87f6e3f3ced6bcbb05a2fcf35f00c2720bc5c15a6ecbae9e2294e274739"; } + { locale = "lv"; arch = "linux-x86_64"; sha256 = "37b2494ae6ce999d7aa30b44f2d558a7e38465d08add4bd428882886623fe80a"; } + { locale = "mai"; arch = "linux-i686"; sha256 = "a350cab87ee54f2be47897787648cc5f489383b32441966bc9e908d4324d72af"; } + { locale = "mai"; arch = "linux-x86_64"; sha256 = "9e9fe30e4e096b35be58225fe666715954891b685744f3ca1f4a1ef264f15876"; } + { locale = "mk"; arch = "linux-i686"; sha256 = "3675909d4168548f29ece3e5f7612214da8b82715244b7e99adcd3c514ff1638"; } + { locale = "mk"; arch = "linux-x86_64"; sha256 = "8abeb1a0c0a35dac15b4213ffdab7d5c9f6c2e053be96f0cdfa30fc3bef88877"; } + { locale = "ml"; arch = "linux-i686"; sha256 = "52366a36b292d24d5a226119ccb703085a129c9ff8db05cbce45a51d40d062d7"; } + { locale = "ml"; arch = "linux-x86_64"; sha256 = "88ca8b418251df0a862917dfc2e129bc563f5e6f9812cc470460aec745dd7d57"; } + { locale = "mr"; arch = "linux-i686"; sha256 = "af94fb37ecb6aaabba88a987d509b2049a74dff741243608d5126c2a95df17a1"; } + { locale = "mr"; arch = "linux-x86_64"; sha256 = "4f99abcc53d92677c4b0ac59141b5e499d74fc850316ea4a4ffe085b7e7e5259"; } + { locale = "ms"; arch = "linux-i686"; sha256 = "79b6fee1cac2dba877b849f2850fe030995d2b805b1717ffa968979ffb487f89"; } + { locale = "ms"; arch = "linux-x86_64"; sha256 = "6f4b381f5d5d0b99bb3ace8e29fa60289abcffcc0abc2aa2b006b344a5747385"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "182632c120fb86fb0a6b7ab1aa294ae4afb31b886dbc2876257b050fbf625de6"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "41acd3dff5ce040c3efcb7a52910f7332ddc603fafb3e1c4c3a306676d7307cb"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "f04b2f1ee8352293910f99efc27d0bfc1d419844059073d72ba2e807c1006a1d"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "823d167ef1ad2006fdcc460d6212a3d5c1296658445b061b874c548671641acd"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "eb98445046c7a8f47edfab5731b0b11813883afdd9b0254505d24254cf92138e"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "7e649da6fa32382fe8211ca42d0ec182b140672d4666c5b7efc819fd3ccdf669"; } + { locale = "or"; arch = "linux-i686"; sha256 = "b7ed61ccf3c5894b7867389cc1ae7a7d0412f90ce1c0e9a30ce5a15fc6e9a42d"; } + { locale = "or"; arch = "linux-x86_64"; sha256 = "9f704141d9d9f15b043e0dea43b7e916506e654631ca1ef4e17a35aeb7e9bcc6"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "0e18759ce39decd72fe6e61bfa731867ce882cebc4825b8635f5a11a7cc1d1d8"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "da7ce2cccc02524514cebb7829efd5f9be827464d0a481389c3d7dbe706fd19e"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "0a6d86210cd4db00f1d841ee505ca15eca4cd88c99fc1172fcc4ddb1c58b787c"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "24d7c14626243859b3e69733d39566e0f4ab12bd7b92cff84abc74dc22470809"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "82f9d5e5dd7b4898b43f0e7cf02128a985c2b7c320683c088310608eed9d5612"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "ff27814b5b4eccca0d038feb2dfa85c7e88cd8cabd8575fa36d9eabf1a66f518"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "330ce0315724345c94ed58fa6c1c5a6aae5616014c1ffc4713094a26559cf2a5"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "fe0c98295399b31f96b2caf873d72874fbd088679b13c1d01153ad257f8175b4"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "681430fda3ce3ca1da2b12069b7f6062c97a57144667f72f515d2b3e0ac9e97f"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "09d7676c37f46e6668302f36c6435158a8a518220fce3137313f858faf10f9eb"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "43dead80097cb96988f10945c0545714ddccb28ccfb795028807f1c80888f0e5"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "31f4acde5c7173760d9dd242c851cbc7ba36cd420c107d80bd1008cdcc4572ba"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "252151abbcb3af9e9eb7ba7d973903ffd377d06b9211ec267d1a79b71290f803"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "117040737bf87263c0f476871adb2cbd3a35e63aff4e3f4e51c9e587bccec8a4"; } + { locale = "si"; arch = "linux-i686"; sha256 = "1a77467ca7f830dec897fac26f6ca0ababa05b5dbe953bcacc7474be20245841"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "7508411a21b32572f33acca6ba898d43806fe15cbe55759617d1cc5a3cdbd8ff"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "5bb1c4bb6cce5250427cb5aa21a14397d80ca9f7a883b0107c15427015337646"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "1bbec6fe4aee6114b3c26a1b7b2dd51c4110426ef05c03d6d635bf7238fdbb3a"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "a2d2d3c63c7992a06b5860c29d2d1d8dafd4f45379f96d749cfb1b841f392dbc"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "4db1e2b45a8ea66b13dab359034ebacdfa15fcef753eaeb4969271e911c8782f"; } + { locale = "son"; arch = "linux-i686"; sha256 = "bce8f2cff7c86479ae0c60428a4c6fdb228467edeaee95b0fdac6968b1e89f38"; } + { locale = "son"; arch = "linux-x86_64"; sha256 = "2a799848da011fb14eb401e32876afcc8c3fb443008bf4cec9b058925c930777"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "0e6f9bb41ee9bd9898f09f8c71f1c93c646e01a3bf5e8f221673ad1fa102971b"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "feb0d974833e5a51505a25edc6cc20d70e23663b1b1b83f6897f24c42e08ca5a"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "b2cf68237c0508809ee5364fc3b8c9fdf6e3ecade6425af3bbdbdadcaaef05f2"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "ada2a925357962c7a3a65f1dd5d5bc219bd6e34a24c695f3b1d8a51821e9bda0"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "b6354dc50b354a51c6ca71b24ca4d4c382b04f1e45b12669c70a170531c382bd"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "d1141b2e01f58aab45d79ecf18b9116b79e1338e7a06524cf7ec85b6be5234b1"; } + { locale = "ta"; arch = "linux-i686"; sha256 = "bdfede4d8b5594838d5cafc66f7f4895b0e0ca0c9b9c6d2cafc677cd26dbd943"; } + { locale = "ta"; arch = "linux-x86_64"; sha256 = "7e277836132360a58b048ded166e74d5b8f4ea41f8aea3f2c9d2e73f7202808c"; } + { locale = "te"; arch = "linux-i686"; sha256 = "8bd3ce91d690b7f93c409aac981513175b72d291c9d6e0cede3448d8c4a66687"; } + { locale = "te"; arch = "linux-x86_64"; sha256 = "2395676f9e4dcbe6dc09add685190f106c2299fd78fdee747898b85379715e24"; } + { locale = "th"; arch = "linux-i686"; sha256 = "52505a11229622bb2f65c0f8da9a27b0c5c33b6078c89163e65f6ee0b879211f"; } + { locale = "th"; arch = "linux-x86_64"; sha256 = "23cc6ffd71b2efa6f330addf1c901843b3e18569a375571be502c0c16b32e785"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "9bc4e40737e63a57906378f60b5f14720ee212878f13f370565d54047e81a769"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "5c16aa2c664c78e9b11f23fa466e23d99ee35da93b44b1315c37055b2a447233"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "54a46561dc3f10dc15a16f644383026d51369e61e573cc0d63e98549bf6afcd9"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "953a40460342a0e7ebf8e3236e853503042278ba89347c58929b3e7b75c27a54"; } + { locale = "uz"; arch = "linux-i686"; sha256 = "88ac21648110aedd354c9c3ecd66017543cf55bfcb9c1939bc45af984d9bafed"; } + { locale = "uz"; arch = "linux-x86_64"; sha256 = "f25374c2ea2b874a081e1e18618c4cd95f3b47f2242780b476f24550868d54b4"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "edc208611860bceddfa56239793f566375a45c4e56d5e2d366b0f9c9860efb7d"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "0fb1a8b32e9a923e56278001ca515b49e17bcd1455819cabe5d432ed97ef9e09"; } + { locale = "xh"; arch = "linux-i686"; sha256 = "36f88783ff39d9a22708fcec5f442c953061004552052388a54f71ed775b7900"; } + { locale = "xh"; arch = "linux-x86_64"; sha256 = "047897075676154b56134389adc81bc3192e0b61206914aaab9fc744572eb895"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "f91ef1bb954412ad75ae1a17bddc080897f70994a20cca3647ee2e7814f076af"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "87114eaf80a0b9666db5aec0ac13467a1104267436c6c73ee8d6e4b89e799e5d"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "29be9c6dcea74c18f668d6b3535cf8fb642115c2f9f5d41cc136b26fc914e301"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "93af78e3a309a381e352acaa2ebf218c99f858d3fd9ddc40ed15b032745a4ac6"; } ]; } From 95d62e78e3730404c79805411f5bc6917fd1ef05 Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:07:22 -0500 Subject: [PATCH 013/289] mopidy: improve gstreamer plugin support --- pkgs/applications/audio/mopidy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mopidy/default.nix b/pkgs/applications/audio/mopidy/default.nix index 39889973430..91fc9d6f3fc 100644 --- a/pkgs/applications/audio/mopidy/default.nix +++ b/pkgs/applications/audio/mopidy/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pythonPackages, pygobject, gst_python -, gst_plugins_good, gst_plugins_base +, gst_plugins_good, gst_plugins_base, gst_plugins_ugly }: pythonPackages.buildPythonPackage rec { @@ -13,7 +13,7 @@ pythonPackages.buildPythonPackage rec { }; propagatedBuildInputs = with pythonPackages; [ - gst_python pygobject pykka tornado requests2 gst_plugins_base gst_plugins_good + gst_python pygobject pykka tornado requests2 gst_plugins_base gst_plugins_good gst_plugins_ugly ]; # There are no tests From d6def2620162703a4a2c95dffb07316a0f500beb Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:10:07 -0500 Subject: [PATCH 014/289] gst-plugins-good: add icecast support --- .../libraries/gstreamer/legacy/gst-plugins-good/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix index deca854008a..dc39bddc232 100644 --- a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix +++ b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix @@ -1,7 +1,7 @@ { fetchurl, stdenv, pkgconfig, gst_plugins_base, aalib, cairo , flac, libjpeg, zlib, speex, libpng, libdv, libcaca, libvpx , libiec61883, libavc1394, taglib, libpulseaudio, gdk_pixbuf, orc -, glib, gstreamer, bzip2, libsoup, libintlOrEmpty +, glib, gstreamer, bzip2, libsoup, libshout, libintlOrEmpty , # Whether to build no plugins that have external dependencies # (except the PulseAudio plugin). minimalDeps ? false @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { ++ libintlOrEmpty ++ stdenv.lib.optionals (!minimalDeps) [ aalib libcaca cairo libdv flac libjpeg libpng speex - taglib bzip2 libvpx gdk_pixbuf orc libsoup ]; + taglib bzip2 libvpx gdk_pixbuf orc libsoup libshout ]; NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null; From 89c690039a950ae1fa63d41263dab048270cdebc Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:12:52 -0500 Subject: [PATCH 015/289] gst-plugins-ugly: add LAME mp3 encoder support --- .../libraries/gstreamer/legacy/gst-plugins-ugly/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-ugly/default.nix b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-ugly/default.nix index 99ac5a5ec54..8e4e662dc3b 100644 --- a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-ugly/default.nix +++ b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-ugly/default.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, pkgconfig, glib, gstreamer, gst_plugins_base -, libmad, libdvdread, libmpeg2, libcdio, a52dec, x264, orc, libintlOrEmpty }: +, libmad, libdvdread, libmpeg2, libcdio, a52dec, x264, orc, lame, libintlOrEmpty }: stdenv.mkDerivation rec { name = "gst-plugins-ugly-0.10.19"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { }; buildInputs = - [ pkgconfig glib gstreamer gst_plugins_base libmad libdvdread a52dec x264 orc ] ++ libintlOrEmpty; + [ pkgconfig glib gstreamer gst_plugins_base libmad libdvdread a52dec x264 orc lame ] ++ libintlOrEmpty; NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null; From 514b7b932808223d0e99adc1ca4f6461b105272c Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:13:52 -0500 Subject: [PATCH 016/289] mopidy-mopify: 1.5.1->1.5.8 --- pkgs/applications/audio/mopidy-mopify/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mopidy-mopify/default.nix b/pkgs/applications/audio/mopidy-mopify/default.nix index 4792a02f341..b7a1fbf2f08 100644 --- a/pkgs/applications/audio/mopidy-mopify/default.nix +++ b/pkgs/applications/audio/mopidy-mopify/default.nix @@ -3,11 +3,11 @@ pythonPackages.buildPythonPackage rec { name = "mopidy-mopify-${version}"; - version = "1.5.1"; + version = "1.5.8"; src = fetchurl { url = "https://github.com/dirkgroenen/mopidy-mopify/archive/${version}.tar.gz"; - sha256 = "0hhdss4i5436dj37pndxk81a4g3g8f6zqjyv04lhpqcww01290as"; + sha256 = "1gq88i5hbyskwhqf51myndqgmrndkyy6gs022sc387fy3dwxmvn0"; }; propagatedBuildInputs = with pythonPackages; [ mopidy configobj ]; From 47cbbc3abe73b0e30ba89c88e484dccf9601b5a6 Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:19:58 -0500 Subject: [PATCH 017/289] mopidy-youtube: init at 2.0.1 --- .../audio/mopidy-youtube/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/audio/mopidy-youtube/default.nix diff --git a/pkgs/applications/audio/mopidy-youtube/default.nix b/pkgs/applications/audio/mopidy-youtube/default.nix new file mode 100644 index 00000000000..efd1425e255 --- /dev/null +++ b/pkgs/applications/audio/mopidy-youtube/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, pythonPackages, mopidy }: + +pythonPackages.buildPythonPackage rec { + name = "mopidy-youtube-${version}"; + + version = "2.0.1"; + + src = fetchFromGitHub { + owner = "mopidy"; + repo = "mopidy-youtube"; + rev = "v${version}"; + sha256 = "1si7j7m5kg0cxlhkw8s2mbnpmc9mb3l69n5sgklb1yv1s55iia6z"; + }; + + propagatedBuildInputs = with pythonPackages; [ mopidy pafy ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Mopidy extension for playing music from YouTube"; + license = licenses.asl20; + maintainers = [ maintainers.spwhitt ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5917e715c14..802385fff48 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12507,6 +12507,8 @@ let mopidy-mopify = callPackage ../applications/audio/mopidy-mopify { }; + mopidy-youtube = callPackage ../applications/audio/mopidy-youtube { }; + mozplugger = callPackage ../applications/networking/browsers/mozilla-plugins/mozplugger {}; easytag = callPackage ../applications/audio/easytag { }; From 7e7106851086577cc0109bc734a755ec520fb8cd Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:20:41 -0500 Subject: [PATCH 018/289] mopidy-soundcloud: init at 2.0.1 --- .../audio/mopidy-soundcloud/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/audio/mopidy-soundcloud/default.nix diff --git a/pkgs/applications/audio/mopidy-soundcloud/default.nix b/pkgs/applications/audio/mopidy-soundcloud/default.nix new file mode 100644 index 00000000000..c10bb00909a --- /dev/null +++ b/pkgs/applications/audio/mopidy-soundcloud/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, pythonPackages, mopidy }: + +pythonPackages.buildPythonPackage rec { + name = "mopidy-soundcloud-${version}"; + + version = "2.0.1"; + + src = fetchFromGitHub { + owner = "mopidy"; + repo = "mopidy-soundcloud"; + rev = "v${version}"; + sha256 = "05yvjnivj26wjish7x1xrd9l5z8i14b610a8pbifnq3cq7y2m22r"; + }; + + propagatedBuildInputs = [ mopidy ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Mopidy extension for playing music from SoundCloud"; + license = licenses.mit; + maintainers = [ maintainers.spwhitt ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 802385fff48..45bbd5927aa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12509,6 +12509,8 @@ let mopidy-youtube = callPackage ../applications/audio/mopidy-youtube { }; + mopidy-soundcloud = callPackage ../applications/audio/mopidy-soundcloud { }; + mozplugger = callPackage ../applications/networking/browsers/mozilla-plugins/mozplugger {}; easytag = callPackage ../applications/audio/easytag { }; From a03b98271a7c1ac8e7f82d6808e739d7afe80df3 Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:21:26 -0500 Subject: [PATCH 019/289] mopidy-musicbox-webclient: init at 2.0.0 --- .../mopidy-musicbox-webclient/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/audio/mopidy-musicbox-webclient/default.nix diff --git a/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix b/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix new file mode 100644 index 00000000000..e13a1a978fd --- /dev/null +++ b/pkgs/applications/audio/mopidy-musicbox-webclient/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, pythonPackages, mopidy }: + +pythonPackages.buildPythonPackage rec { + name = "mopidy-musicbox-webclient-${version}"; + + version = "2.0.0"; + + src = fetchFromGitHub { + owner = "pimusicbox"; + repo = "mopidy-musicbox-webclient"; + rev = "v${version}"; + sha256 = "0gnw6jn55jr6q7bdp70mk3cm5f6jy8lm3s7ayfmisihhjbl3rnaq"; + }; + + propagatedBuildInputs = [ mopidy ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Mopidy extension for playing music from SoundCloud"; + license = licenses.mit; + maintainers = [ maintainers.spwhitt ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 45bbd5927aa..3b584491b4f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12511,6 +12511,8 @@ let mopidy-soundcloud = callPackage ../applications/audio/mopidy-soundcloud { }; + mopidy-musicbox-webclient = callPackage ../applications/audio/mopidy-musicbox-webclient { }; + mozplugger = callPackage ../applications/networking/browsers/mozilla-plugins/mozplugger {}; easytag = callPackage ../applications/audio/easytag { }; From 1f644d127a50553c55d06399280d65a976f28ca7 Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Tue, 15 Dec 2015 22:29:02 -0500 Subject: [PATCH 020/289] tunigo: init at 0.1.3 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fd8590e3e91..972d0d59493 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20824,6 +20824,25 @@ in modules // { }; }; + tunigo = buildPythonPackage rec { + name = "tunigo-${version}"; + version = "0.1.3"; + propagatedBuildInputs = with self; [ requests2 ]; + + src = pkgs.fetchFromGitHub { + owner = "trygveaa"; + repo = "python-tunigo"; + rev = "v${version}"; + sha256 = "02ili37dbs5mk5f6v3fmi1sji39ymc4zyq44x0abxzr88nc8nh97"; + }; + + meta = { + description = "Python API for the browse feature of Spotify"; + homepage = https://github.com/trygveaa/python-tunigo; + license = licenses.asl20; + }; + }; + screenkey = buildPythonPackage rec { version = "0.2-b3634a2c6eb6d6936c3b2c1ef5078bf3a84c40c6"; name = "screenkey-${version}"; From 4446b078fcb75d6cae991350d8c8008c2b92251e Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Mon, 14 Dec 2015 21:22:04 -0500 Subject: [PATCH 021/289] mopidy-spotify-tunigo: init at 0.2.1 --- .../audio/mopidy-spotify-tunigo/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/audio/mopidy-spotify-tunigo/default.nix diff --git a/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix b/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix new file mode 100644 index 00000000000..ab07b0f1f68 --- /dev/null +++ b/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, pythonPackages, mopidy, mopidy-spotify }: + +pythonPackages.buildPythonPackage rec { + name = "mopidy-spotify-tunigo-${version}"; + + version = "0.2.1"; + + src = fetchFromGitHub { + owner = "trygveaa"; + repo = "mopidy-spotify-tunigo"; + rev = "v${version}"; + sha256 = "0827wghbgrscncnshz30l97hgg0g5bsnm0ad8596zh7cai0ibss0"; + }; + + propagatedBuildInputs = [ mopidy mopidy-spotify pythonPackages.tunigo ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Mopidy extension for providing the browse feature of Spotify"; + license = licenses.asl20; + maintainers = [ maintainers.spwhitt ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3b584491b4f..b729d6ef2a8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12507,6 +12507,8 @@ let mopidy-mopify = callPackage ../applications/audio/mopidy-mopify { }; + mopidy-spotify-tunigo = callPackage ../applications/audio/mopidy-spotify-tunigo { }; + mopidy-youtube = callPackage ../applications/audio/mopidy-youtube { }; mopidy-soundcloud = callPackage ../applications/audio/mopidy-soundcloud { }; From 3bc477e2f2c608dcc623690e378aa588a15b4c5c Mon Sep 17 00:00:00 2001 From: Spencer Whitt Date: Tue, 15 Dec 2015 22:31:42 -0500 Subject: [PATCH 022/289] mopidy module: use buildEnv fixes #11706 --- nixos/modules/services/audio/mopidy.nix | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/nixos/modules/services/audio/mopidy.nix b/nixos/modules/services/audio/mopidy.nix index a7a7e8ae688..9981b065f28 100644 --- a/nixos/modules/services/audio/mopidy.nix +++ b/nixos/modules/services/audio/mopidy.nix @@ -11,17 +11,8 @@ let mopidyConf = writeText "mopidy.conf" cfg.configuration; - mopidyLauncher = stdenv.mkDerivation { - name = "mopidy-launcher"; - phases = [ "installPhase" ]; - buildInputs = [ makeWrapper python ]; - installPhase = '' - mkdir -p $out/bin - ln -s ${mopidy}/bin/mopidy $out/bin/mopidy - wrapProgram $out/bin/mopidy \ - --prefix PYTHONPATH : \ - "${concatStringsSep ":" (map (p: "$(toPythonPath ${p})") cfg.extensionPackages)}" - ''; + mopidyEnv = python.buildEnv.override { + extraLibs = [ mopidy ] ++ cfg.extensionPackages; }; in { @@ -86,7 +77,7 @@ in { description = "mopidy music player daemon"; preStart = "mkdir -p ${cfg.dataDir} && chown -R mopidy:mopidy ${cfg.dataDir}"; serviceConfig = { - ExecStart = "${mopidyLauncher}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)}"; + ExecStart = "${mopidyEnv}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)}"; User = "mopidy"; PermissionsStartOnly = true; }; @@ -96,7 +87,7 @@ in { description = "mopidy local files scanner"; preStart = "mkdir -p ${cfg.dataDir} && chown -R mopidy:mopidy ${cfg.dataDir}"; serviceConfig = { - ExecStart = "${mopidyLauncher}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)} local scan"; + ExecStart = "${mopidyEnv}/bin/mopidy --config ${concatStringsSep ":" ([mopidyConf] ++ cfg.extraConfigFiles)} local scan"; User = "mopidy"; PermissionsStartOnly = true; Type = "oneshot"; From 19f9e46d5708f1b0f8f532fc9c2fcee9b1868b62 Mon Sep 17 00:00:00 2001 From: Antoine Eiche Date: Tue, 15 Dec 2015 21:34:33 +0100 Subject: [PATCH 023/289] pythonPackages.check-manifest: init at 0.30 --- lib/maintainers.nix | 1 + pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 93bd8098f45..f1dce94bf8c 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -165,6 +165,7 @@ lebastr = "Alexander Lebedev "; leonardoce = "Leonardo Cecchi "; lethalman = "Luca Bruno "; + lewo = "Antoine Eiche "; lhvwb = "Nathaniel Baxter "; lihop = "Leroy Hopson "; linquize = "Linquize "; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 802ea500c00..312ede771a8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2199,6 +2199,25 @@ in modules // { buildout = self.zc_buildout; buildout152 = self.zc_buildout152; + check-manifest = buildPythonPackage rec { + name = "check-manifest"; + version = "0.30"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/check-manifest/check-manifest-${version}.tar.gz"; + md5 = "b18f7f0bcd02f52d40148c388ace9290"; + }; + + doCheck = false; + + meta = { + homepage = https://github.com/mgedmin/check-manifest; + description = "Check MANIFEST.in in a Python source package for completeness"; + license = licenses.mit; + maintainers = with maintainers; [ lewo ]; + }; + }; + # A patched version of buildout, useful for buildout based development on Nix zc_buildout_nix = callPackage ../development/python-modules/buildout-nix { }; From e1ff5eb7daf15262b2bf9e0e590939835d3dd95f Mon Sep 17 00:00:00 2001 From: Antoine Eiche Date: Tue, 15 Dec 2015 21:44:33 +0100 Subject: [PATCH 024/289] pythonPackages.devpi-common: init at 2.0.8 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 312ede771a8..db3d915b981 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2218,6 +2218,25 @@ in modules // { }; }; + devpi-common = buildPythonPackage rec { + name = "devpi-common"; + version = "2.0.8"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/devpi-common/devpi-common-${version}.tar.gz"; + md5 = "3739af0f59151d1aaa67035fec8f97c6"; + }; + + propagatedBuildInputs = [ self.requests2 self.py ]; + + meta = { + homepage = https://bitbucket.org/hpk42/devpi; + description = "Utilities jointly used by devpi-server and devpi-client"; + license = licenses.mit; + maintainers = with maintainers; [ lewo ]; + }; + }; + # A patched version of buildout, useful for buildout based development on Nix zc_buildout_nix = callPackage ../development/python-modules/buildout-nix { }; From 3b3be7a74b8bd46711f04b88bbfab37ed325332d Mon Sep 17 00:00:00 2001 From: aaron levin Date: Wed, 16 Dec 2015 23:26:07 +0100 Subject: [PATCH 025/289] link_power_policy_management default to max_performance The kernel default for `link_power_management_policy` is `"max_performance"`. This commit: https://github.com/NixOS/nixpkgs/commit/f169f60575bec7c61626af180cae364d321b4bec set the NixOS default to `"min_performance"`. This issue (https://github.com/NixOS/nixpkgs/issues/11276) details my long journey to discover this after several file system failures incorrectly attributed to `TRIM` and `NCQ` settings. I think we should use the kernel default of `"max_performance"` to assure the best experience for new users with SSDs and to conform to the defaults of the kernel and other distros. --- nixos/modules/config/power-management.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/config/power-management.nix b/nixos/modules/config/power-management.nix index dedc8a3f679..6086f06ca3d 100644 --- a/nixos/modules/config/power-management.nix +++ b/nixos/modules/config/power-management.nix @@ -71,7 +71,7 @@ in # FIXME: Implement powersave governor for sandy bridge or later Intel CPUs powerManagement.cpuFreqGovernor = mkDefault "ondemand"; - powerManagement.scsiLinkPolicy = mkDefault "min_power"; + powerManagement.scsiLinkPolicy = mkDefault "max_performance"; systemd.targets.post-resume = { description = "Post-Resume Actions"; From b67ac40a8230e2e16ed66f5bb01f0e3f94b2780a Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Thu, 17 Dec 2015 09:01:49 +0900 Subject: [PATCH 026/289] erlangR18: 18.0 -> 18.2 --- pkgs/development/interpreters/erlang/R18.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/erlang/R18.nix b/pkgs/development/interpreters/erlang/R18.nix index 670df423a9b..2fc91d6a2db 100644 --- a/pkgs/development/interpreters/erlang/R18.nix +++ b/pkgs/development/interpreters/erlang/R18.nix @@ -19,11 +19,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "erlang-" + version + "${optionalString odbcSupport "-odbc"}" + "${optionalString javacSupport "-javac"}"; - version = "18.0"; + version = "18.2"; src = fetchurl { url = "http://www.erlang.org/download/otp_src_${version}.tar.gz"; - sha256 = "1ahi865ii3iqzd00yyn3nrxjb9qa2by9d7ixssvqw8ag9firvdm0"; + sha256 = "1l1zzf245w1abiylll8pjm0pppqwvvw4fihknqkcybkx62n2ipj3"; }; buildInputs = @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { postInstall = let manpages = fetchurl { url = "http://www.erlang.org/download/otp_doc_man_${version}.tar.gz"; - sha256 = "0wsnp7sp21ydinwkg3rkazyrs382pdzwra9apikkhs70dv1hwkz4"; + sha256 = "0abaqnw6hkr1h1zw6cdqwg2k7rfmj2b9sqqldnqf3qaj0shz759n"; }; in '' ln -s $out/lib/erlang/lib/erl_interface*/bin/erl_call $out/bin/erl_call @@ -73,6 +73,7 @@ stdenv.mkDerivation rec { meta = { homepage = "http://www.erlang.org/"; + downloadPage = "http://www.erlang.org/download.html"; description = "Programming language used for massively scalable soft real-time systems"; longDescription = '' From 1bb68f0a5b8c83c1b3df3f92916736fd879e15ed Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 16 Dec 2015 16:06:55 +0100 Subject: [PATCH 027/289] recordmydesktop: init at 0.3.8-svn602 --- .../video/recordmydesktop/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/video/recordmydesktop/default.nix diff --git a/pkgs/applications/video/recordmydesktop/default.nix b/pkgs/applications/video/recordmydesktop/default.nix new file mode 100644 index 00000000000..95c06d54d6e --- /dev/null +++ b/pkgs/applications/video/recordmydesktop/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchsvn, automake, autoconf, zlib, popt, xorg, libvorbis, libtheora }: + +stdenv.mkDerivation rec { + name = "recordmydesktop-${version}"; + version = "0.3.8.1-svn602"; + + src = fetchsvn { + url = https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk/recordmydesktop; + rev = 602; + sha256 = "1avirkc4ymrd575m616pi6wpgq1i0r5sb3qahps1g18sjpxks0lf"; + }; + + buildInputs = [ automake autoconf zlib popt xorg.libICE xorg.libSM xorg.libX11 xorg.libXext xorg.libXfixes xorg.libXdamage libvorbis libtheora ]; + + preConfigure = ''./autogen.sh''; + + meta = with stdenv.lib; { + description = "Desktop session recorder"; + homepage = http://recordmydesktop.sourceforge.net/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.DamienCassou ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 986004c5642..e05d6ff516e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2860,6 +2860,8 @@ let reaverwps = callPackage ../tools/networking/reaver-wps {}; + recordmydesktop = callPackage ../applications/video/recordmydesktop { }; + recutils = callPackage ../tools/misc/recutils { }; recoll = callPackage ../applications/search/recoll { }; From a911acdfb3cf760ad30c7bf433a947dac837ba11 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Wed, 16 Dec 2015 15:11:24 +0300 Subject: [PATCH 028/289] LXC: make sure configure script does not guess Do not try to install init script. And do not make any assumptions about the distribution. The latter is important when Nix store in not a part of NixOS. Closes #11729. --- pkgs/os-specific/linux/lxc/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix index c35b6bb90e8..43a77f4c828 100644 --- a/pkgs/os-specific/linux/lxc/default.nix +++ b/pkgs/os-specific/linux/lxc/default.nix @@ -36,6 +36,8 @@ stdenv.mkDerivation rec { "--sysconfdir=/etc" "--enable-doc" "--disable-api-docs" + "--with-init-script=none" + "--with-distro=nixos" # just to be sure it is "unknown" ] ++ optional (libapparmor != null) "--enable-apparmor" ++ optional (libselinux != null) "--enable-selinux" ++ optional (libseccomp != null) "--enable-seccomp" From 85375fc5fcce0baebd35e61969a9588a26744f77 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Thu, 17 Dec 2015 11:00:50 +0300 Subject: [PATCH 029/289] git-crypt needs GnuPG --- .../version-management/git-and-tools/git-crypt/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix index c0acb13740a..8e537c32313 100644 --- a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, openssl }: +{ stdenv, fetchFromGitHub, openssl, gnupg1compat, makeWrapper }: stdenv.mkDerivation rec { @@ -12,10 +12,11 @@ stdenv.mkDerivation rec { inherit name; }; - buildInputs = [ openssl ]; + buildInputs = [ openssl makeWrapper ]; installPhase = '' make install PREFIX=$out + wrapProgram $out/bin/* --prefix PATH : ${gnupg1compat}/bin ''; meta = with stdenv.lib; { From 1057249c5daf58b316712ee266ffe47ebc9af052 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 17 Dec 2015 09:21:24 +0100 Subject: [PATCH 030/289] add pythonPackages.rpdb --- pkgs/top-level/python-packages.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 802ea500c00..927274362e6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21627,6 +21627,21 @@ in modules // { }; }; + rpdb = buildPythonPackage rec { + name = "rpdb-0.1.5"; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/r/rpdb/${name}.tar.gz"; + sha256 = "0rql1hq3lziwcql0h3dy05w074cn866p397ng9bv6qbz85ifw1bk"; + }; + + meta = { + description = "pdb wrapper with remote access via tcp socket"; + homepage = https://github.com/tamentis/rpdb; + license = licenses.bsd2; + }; + }; + grequests = buildPythonPackage rec { name = "grequests-0.2.0"; From 84a559393b39d84786f3a4c252665a969ecbe5bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 17 Dec 2015 09:30:02 +0100 Subject: [PATCH 031/289] mnemosyne: add webob dep (fixes #11746) --- pkgs/games/mnemosyne/default.nix | 8 +++----- pkgs/top-level/all-packages.nix | 4 +--- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/games/mnemosyne/default.nix b/pkgs/games/mnemosyne/default.nix index e01999b2ecc..8624e168f92 100644 --- a/pkgs/games/mnemosyne/default.nix +++ b/pkgs/games/mnemosyne/default.nix @@ -2,9 +2,7 @@ , fetchurl , buildPythonPackage , pyqt4 -, matplotlib -, cherrypy -, sqlite3 +, pythonPackages }: let version = "2.3.2"; @@ -14,17 +12,17 @@ in buildPythonPackage rec { url = "http://sourceforge.net/projects/mnemosyne-proj/files/mnemosyne/${name}/Mnemosyne-${version}.tar.gz"; sha256 = "0jkrw45i4v24p6xyq94z7rz5948h7f5dspgs5mcdaslnlp2accfp"; }; - pythonPath = [ + propagatedBuildInputs = with pythonPackages; [ pyqt4 matplotlib cherrypy sqlite3 + webob ]; preConfigure = '' substituteInPlace setup.py --replace /usr $out find . -type f -exec grep -H sys.exec_prefix {} ';' | cut -d: -f1 | xargs sed -i s,sys.exec_prefix,\"$out\", ''; - installCommand = "python setup.py install --prefix=$out"; meta = { homepage = http://mnemosyne-proj.org/; description = "Spaced-repetition software"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e759dba84ee..ac1e29d13f6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14152,9 +14152,7 @@ let libpng = libpng12; }; - mnemosyne = callPackage ../games/mnemosyne { - inherit (pythonPackages) matplotlib cherrypy sqlite3; - }; + mnemosyne = callPackage ../games/mnemosyne { }; mudlet = qt5Libs.callPackage ../games/mudlet { inherit (lua51Packages) luafilesystem lrexlib luazip luasqlite3; From f21a65f719627161acc22407e9ec838893af60a9 Mon Sep 17 00:00:00 2001 From: Antoine Eiche Date: Tue, 15 Dec 2015 21:46:01 +0100 Subject: [PATCH 032/289] devpi-client: init at 2.3.2 --- .../tools/devpi-client/default.nix | 20 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/development/tools/devpi-client/default.nix diff --git a/pkgs/development/tools/devpi-client/default.nix b/pkgs/development/tools/devpi-client/default.nix new file mode 100644 index 00000000000..5db62da06d8 --- /dev/null +++ b/pkgs/development/tools/devpi-client/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pythonPackages, python} : + +pythonPackages.buildPythonPackage rec { + name = "devpi-client-${version}"; + version = "2.3.2"; + + src = fetchurl { + url = "https://pypi.python.org/packages/source/d/devpi-client/devpi-client-${version}.tar.gz"; + md5= "bfc8cd768f983fd0585c347bca00c8bb"; + }; + + buildInputs = [ pythonPackages.tox pythonPackages.check-manifest pythonPackages.devpi-common pythonPackages.pkginfo ]; + meta = { + homepage = http://doc.devpi.net; + description = "Github-style pypi index server and packaging meta tool"; + license = stdenv.lib.licenses.mit; + maintainers = [stdenv.lib.maintainers.lewo]; + + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index efc59b70340..44a4bf27555 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3835,6 +3835,8 @@ let cython = pythonPackages.cython; cython3 = python3Packages.cython; + devpi-client = callPackage ../development/tools/devpi-client {}; + ecl = callPackage ../development/compilers/ecl { }; eql = callPackage ../development/compilers/eql {}; From d6f631f52b939e371ab87fe442d0121e851e54bc Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Thu, 17 Dec 2015 18:26:57 +0900 Subject: [PATCH 033/289] iosevka: 1.0-beta9 -> 1.4.2 --- pkgs/data/fonts/iosevka/default.nix | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/pkgs/data/fonts/iosevka/default.nix b/pkgs/data/fonts/iosevka/default.nix index 6f5c5a1a55d..aded5b1cddf 100644 --- a/pkgs/data/fonts/iosevka/default.nix +++ b/pkgs/data/fonts/iosevka/default.nix @@ -1,24 +1,26 @@ -{ stdenv, lib, fetchurl }: +{ stdenv, lib, fetchFromGitHub }: stdenv.mkDerivation rec { name = "iosevka-${version}"; - version = "1.0-beta9"; - src = fetchurl { - url = "https://github.com/be5invis/Iosevka/releases/download/${version}/${name}.tar.bz2"; - sha256 = "1vw34zh8nh6s2dpyw3a1q44wkgrsin1a8b0vnk7hms8s8fw65734"; + version = "1.4.2"; + + src = fetchFromGitHub { + owner = "be5invis"; + repo = "Iosevka"; + rev = "v${version}"; + sha256 = "1h1lmvjpjk0238bhdhnv2c149s98qpbndc8rxzlk6bhmxcy6rwsk"; }; - unpackPhase = '' - tar xf "$src" - ''; + installPhase = '' fontdir=$out/share/fonts/iosevka mkdir -p $fontdir cp -v iosevka-* $fontdir ''; - buildInputs = [ ]; + meta = with lib; { homepage = "http://be5invis.github.io/Iosevka/"; + downloadPage = "https://github.com/be5invis/Iosevka/releases"; description = '' Slender monospace sans-serif and slab-serif typeface inspired by Pragmata Pro, M+ and PF DIN Mono, designed to be the ideal font for programming. From 4b6dbfc35752f1f997101070f890fb6e44712acc Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 15 Dec 2015 14:37:48 +0100 Subject: [PATCH 034/289] python numpy: 1.10.1 -> 1.10.2 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4045638f3c7..9f83117e86b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11444,11 +11444,11 @@ in modules // { }; in buildPythonPackage ( rec { name = "numpy-${version}"; - version = "1.10.1"; + version = "1.10.2"; src = pkgs.fetchurl { url = "mirror://sourceforge/numpy/${name}.tar.gz"; - sha256 = "8b9f453f29ce96a14e625100d3dcf8926301d36c5f622623bf8820e748510858"; + sha256 = "23a3befdf955db4d616f8bb77b324680a80a323e0c42a7e8d7388ef578d8ffa9"; }; disabled = isPyPy; # WIP From 2d07d00856c5a192cb22ecccfbc8f36e3bd45056 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 14 Dec 2015 23:50:07 +0100 Subject: [PATCH 035/289] python scipy: run correct tests, fix/remove failing tests --- .../scipy-0.16.1-decorator-fix.patch | 487 ++++++++++++++++++ pkgs/top-level/python-packages.nix | 12 +- 2 files changed, 498 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/python-modules/scipy-0.16.1-decorator-fix.patch diff --git a/pkgs/development/python-modules/scipy-0.16.1-decorator-fix.patch b/pkgs/development/python-modules/scipy-0.16.1-decorator-fix.patch new file mode 100644 index 00000000000..0a7f92d9d2e --- /dev/null +++ b/pkgs/development/python-modules/scipy-0.16.1-decorator-fix.patch @@ -0,0 +1,487 @@ +From 8d3cd578f9c0a36d29411c96fa70402a7a56d502 Mon Sep 17 00:00:00 2001 +From: Evgeni Burovski +Date: Sun, 8 Nov 2015 15:27:22 +0000 +Subject: [PATCH] MAINT: update decorators.py module to version 4.0.5 + +This is commit d6abda0 at +https://github.com/micheles/decorator/tree/4.0.5 +--- + scipy/_lib/decorator.py | 380 +++++++++++++++++++++++++++++++++++++----------- + 1 file changed, 293 insertions(+), 87 deletions(-) + +diff --git a/scipy/_lib/decorator.py b/scipy/_lib/decorator.py +index 07d9d21..05f7056 100644 +--- a/scipy/_lib/decorator.py ++++ b/scipy/_lib/decorator.py +@@ -1,48 +1,52 @@ +-########################## LICENCE ############################### +-## +-## Copyright (c) 2005-2011, Michele Simionato +-## All rights reserved. +-## +-## Redistributions of source code must retain the above copyright +-## notice, this list of conditions and the following disclaimer. +-## Redistributions in bytecode form must reproduce the above copyright +-## notice, this list of conditions and the following disclaimer in +-## the documentation and/or other materials provided with the +-## distribution. +- +-## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +-## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +-## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +-## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +-## HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +-## INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +-## BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +-## OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +-## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR +-## TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE +-## USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +-## DAMAGE. ++# ######################### LICENSE ############################ # ++ ++# Copyright (c) 2005-2015, Michele Simionato ++# All rights reserved. ++ ++# Redistribution and use in source and binary forms, with or without ++# modification, are permitted provided that the following conditions are ++# met: ++ ++# Redistributions of source code must retain the above copyright ++# notice, this list of conditions and the following disclaimer. ++# Redistributions in bytecode form must reproduce the above copyright ++# notice, this list of conditions and the following disclaimer in ++# the documentation and/or other materials provided with the ++# distribution. ++ ++# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ++# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ++# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ++# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ++# HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, ++# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, ++# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS ++# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ++# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR ++# TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE ++# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH ++# DAMAGE. + + """ + Decorator module, see http://pypi.python.org/pypi/decorator + for the documentation. + """ ++from __future__ import print_function + +-from __future__ import division, print_function, absolute_import +- +-__version__ = '3.3.2' +- +-__all__ = ["decorator", "FunctionMaker"] +- +-import sys + import re ++import sys + import inspect +-from functools import partial ++import operator ++import itertools ++import collections + +-from scipy._lib.six import exec_ ++__version__ = '4.0.5' + + if sys.version >= '3': + from inspect import getfullargspec ++ ++ def get_init(cls): ++ return cls.__init__ + else: + class getfullargspec(object): + "A quick and dirty replacement for getfullargspec for Python 2.X" +@@ -51,7 +55,6 @@ else: + inspect.getargspec(f) + self.kwonlyargs = [] + self.kwonlydefaults = None +- self.annotations = getattr(f, '__annotations__', {}) + + def __iter__(self): + yield self.args +@@ -59,17 +62,35 @@ else: + yield self.varkw + yield self.defaults + +-DEF = re.compile('\s*def\s*([_\w][_\w\d]*)\s*\(') ++ getargspec = inspect.getargspec ++ ++ def get_init(cls): ++ return cls.__init__.__func__ ++ ++# getargspec has been deprecated in Python 3.5 ++ArgSpec = collections.namedtuple( ++ 'ArgSpec', 'args varargs varkw defaults') + +-# basic functionality + ++def getargspec(f): ++ """A replacement for inspect.getargspec""" ++ spec = getfullargspec(f) ++ return ArgSpec(spec.args, spec.varargs, spec.varkw, spec.defaults) + ++DEF = re.compile('\s*def\s*([_\w][_\w\d]*)\s*\(') ++ ++ ++# basic functionality + class FunctionMaker(object): + """ + An object with the ability to create functions with a given signature. + It has attributes name, doc, module, signature, defaults, dict and + methods update and make. + """ ++ ++ # Atomic get-and-increment provided by the GIL ++ _compile_count = itertools.count() ++ + def __init__(self, func=None, name=None, signature=None, + defaults=None, doc=None, module=None, funcdict=None): + self.shortsignature = signature +@@ -82,22 +103,32 @@ class FunctionMaker(object): + self.module = func.__module__ + if inspect.isfunction(func): + argspec = getfullargspec(func) ++ self.annotations = getattr(func, '__annotations__', {}) + for a in ('args', 'varargs', 'varkw', 'defaults', 'kwonlyargs', +- 'kwonlydefaults', 'annotations'): ++ 'kwonlydefaults'): + setattr(self, a, getattr(argspec, a)) + for i, arg in enumerate(self.args): + setattr(self, 'arg%d' % i, arg) +- self.signature = inspect.formatargspec( +- formatvalue=lambda val: "", *argspec)[1:-1] +- allargs = list(self.args) +- if self.varargs: +- allargs.append('*' + self.varargs) +- if self.varkw: +- allargs.append('**' + self.varkw) +- try: +- self.shortsignature = ', '.join(allargs) +- except TypeError: # exotic signature, valid only in Python 2.X +- self.shortsignature = self.signature ++ if sys.version < '3': # easy way ++ self.shortsignature = self.signature = ( ++ inspect.formatargspec( ++ formatvalue=lambda val: "", *argspec)[1:-1]) ++ else: # Python 3 way ++ allargs = list(self.args) ++ allshortargs = list(self.args) ++ if self.varargs: ++ allargs.append('*' + self.varargs) ++ allshortargs.append('*' + self.varargs) ++ elif self.kwonlyargs: ++ allargs.append('*') # single star syntax ++ for a in self.kwonlyargs: ++ allargs.append('%s=None' % a) ++ allshortargs.append('%s=%s' % (a, a)) ++ if self.varkw: ++ allargs.append('**' + self.varkw) ++ allshortargs.append('**' + self.varkw) ++ self.signature = ', '.join(allargs) ++ self.shortsignature = ', '.join(allshortargs) + self.dict = func.__dict__.copy() + # func=None happens when decorating a caller + if name: +@@ -122,12 +153,15 @@ class FunctionMaker(object): + func.__name__ = self.name + func.__doc__ = getattr(self, 'doc', None) + func.__dict__ = getattr(self, 'dict', {}) +- if sys.version_info[0] >= 3: +- func.__defaults__ = getattr(self, 'defaults', ()) +- else: +- func.func_defaults = getattr(self, 'defaults', ()) ++ func.__defaults__ = getattr(self, 'defaults', ()) + func.__kwdefaults__ = getattr(self, 'kwonlydefaults', None) +- callermodule = sys._getframe(3).f_globals.get('__name__', '?') ++ func.__annotations__ = getattr(self, 'annotations', None) ++ try: ++ frame = sys._getframe(3) ++ except AttributeError: # for IronPython and similar implementations ++ callermodule = '?' ++ else: ++ callermodule = frame.f_globals.get('__name__', '?') + func.__module__ = getattr(self, 'module', callermodule) + func.__dict__.update(kw) + +@@ -140,16 +174,20 @@ class FunctionMaker(object): + raise SyntaxError('not a valid function template\n%s' % src) + name = mo.group(1) # extract the function name + names = set([name] + [arg.strip(' *') for arg in +- self.shortsignature.split(',')]) ++ self.shortsignature.split(',')]) + for n in names: + if n in ('_func_', '_call_'): + raise NameError('%s is overridden in\n%s' % (n, src)) + if not src.endswith('\n'): # add a newline just for safety + src += '\n' # this is needed in old versions of Python ++ ++ # Ensure each generated function has a unique filename for profilers ++ # (such as cProfile) that depend on the tuple of (, ++ # , ) being unique. ++ filename = '' % (next(self._compile_count),) + try: +- code = compile(src, '', 'single') +- # print >> sys.stderr, 'Compiling %s' % src +- exec_(code, evaldict) ++ code = compile(src, filename, 'single') ++ exec(code, evaldict) + except: + print('Error in generated code:', file=sys.stderr) + print(src, file=sys.stderr) +@@ -165,9 +203,9 @@ class FunctionMaker(object): + doc=None, module=None, addsource=True, **attrs): + """ + Create a function from the strings name, signature and body. +- evaldict is the evaluation dictionary. If addsource is true an attribute +- __source__ is added to the result. The attributes attrs are added, +- if any. ++ evaldict is the evaluation dictionary. If addsource is true an ++ attribute __source__ is added to the result. The attributes attrs ++ are added, if any. + """ + if isinstance(obj, str): # "name(signature)" + name, rest = obj.strip().split('(', 1) +@@ -180,37 +218,205 @@ class FunctionMaker(object): + self = cls(func, name, signature, defaults, doc, module) + ibody = '\n'.join(' ' + line for line in body.splitlines()) + return self.make('def %(name)s(%(signature)s):\n' + ibody, +- evaldict, addsource, **attrs) ++ evaldict, addsource, **attrs) + + +-def decorator(caller, func=None): ++def decorate(func, caller): + """ +- decorator(caller) converts a caller function into a decorator; +- decorator(caller, func) decorates a function using a caller. ++ decorate(func, caller) decorates a function using a caller. + """ +- if func is not None: # returns a decorated function +- if sys.version_info[0] >= 3: +- evaldict = func.__globals__.copy() ++ evaldict = func.__globals__.copy() ++ evaldict['_call_'] = caller ++ evaldict['_func_'] = func ++ fun = FunctionMaker.create( ++ func, "return _call_(_func_, %(shortsignature)s)", ++ evaldict, __wrapped__=func) ++ if hasattr(func, '__qualname__'): ++ fun.__qualname__ = func.__qualname__ ++ return fun ++ ++ ++def decorator(caller, _func=None): ++ """decorator(caller) converts a caller function into a decorator""" ++ if _func is not None: # return a decorated function ++ # this is obsolete behavior; you should use decorate instead ++ return decorate(_func, caller) ++ # else return a decorator function ++ if inspect.isclass(caller): ++ name = caller.__name__.lower() ++ callerfunc = get_init(caller) ++ doc = 'decorator(%s) converts functions/generators into ' \ ++ 'factories of %s objects' % (caller.__name__, caller.__name__) ++ elif inspect.isfunction(caller): ++ if caller.__name__ == '': ++ name = '_lambda_' + else: +- evaldict = func.func_globals.copy() +- evaldict['_call_'] = caller +- evaldict['_func_'] = func ++ name = caller.__name__ ++ callerfunc = caller ++ doc = caller.__doc__ ++ else: # assume caller is an object with a __call__ method ++ name = caller.__class__.__name__.lower() ++ callerfunc = caller.__call__.__func__ ++ doc = caller.__call__.__doc__ ++ evaldict = callerfunc.__globals__.copy() ++ evaldict['_call_'] = caller ++ evaldict['_decorate_'] = decorate ++ return FunctionMaker.create( ++ '%s(func)' % name, 'return _decorate_(func, _call_)', ++ evaldict, doc=doc, module=caller.__module__, ++ __wrapped__=caller) ++ ++ ++# ####################### contextmanager ####################### # ++ ++try: # Python >= 3.2 ++ from contextlib import _GeneratorContextManager ++except ImportError: # Python >= 2.5 ++ from contextlib import GeneratorContextManager as _GeneratorContextManager ++ ++ ++class ContextManager(_GeneratorContextManager): ++ def __call__(self, func): ++ """Context manager decorator""" + return FunctionMaker.create( +- func, "return _call_(_func_, %(shortsignature)s)", +- evaldict, undecorated=func, __wrapped__=func) +- else: # returns a decorator +- if isinstance(caller, partial): +- return partial(decorator, caller) +- # otherwise assume caller is a function +- first = inspect.getargspec(caller)[0][0] # first arg +- if sys.version_info[0] >= 3: +- evaldict = caller.__globals__.copy() +- else: +- evaldict = caller.func_globals.copy() +- evaldict['_call_'] = caller +- evaldict['decorator'] = decorator ++ func, "with _self_: return _func_(%(shortsignature)s)", ++ dict(_self_=self, _func_=func), __wrapped__=func) ++ ++init = getfullargspec(_GeneratorContextManager.__init__) ++n_args = len(init.args) ++if n_args == 2 and not init.varargs: # (self, genobj) Python 2.7 ++ def __init__(self, g, *a, **k): ++ return _GeneratorContextManager.__init__(self, g(*a, **k)) ++ ContextManager.__init__ = __init__ ++elif n_args == 2 and init.varargs: # (self, gen, *a, **k) Python 3.4 ++ pass ++elif n_args == 4: # (self, gen, args, kwds) Python 3.5 ++ def __init__(self, g, *a, **k): ++ return _GeneratorContextManager.__init__(self, g, a, k) ++ ContextManager.__init__ = __init__ ++ ++contextmanager = decorator(ContextManager) ++ ++ ++# ############################ dispatch_on ############################ # ++ ++def append(a, vancestors): ++ """ ++ Append ``a`` to the list of the virtual ancestors, unless it is already ++ included. ++ """ ++ add = True ++ for j, va in enumerate(vancestors): ++ if issubclass(va, a): ++ add = False ++ break ++ if issubclass(a, va): ++ vancestors[j] = a ++ add = False ++ if add: ++ vancestors.append(a) ++ ++ ++# inspired from simplegeneric by P.J. Eby and functools.singledispatch ++def dispatch_on(*dispatch_args): ++ """ ++ Factory of decorators turning a function into a generic function ++ dispatching on the given arguments. ++ """ ++ assert dispatch_args, 'No dispatch args passed' ++ dispatch_str = '(%s,)' % ', '.join(dispatch_args) ++ ++ def check(arguments, wrong=operator.ne, msg=''): ++ """Make sure one passes the expected number of arguments""" ++ if wrong(len(arguments), len(dispatch_args)): ++ raise TypeError('Expected %d arguments, got %d%s' % ++ (len(dispatch_args), len(arguments), msg)) ++ ++ def gen_func_dec(func): ++ """Decorator turning a function into a generic function""" ++ ++ # first check the dispatch arguments ++ argset = set(getfullargspec(func).args) ++ if not set(dispatch_args) <= argset: ++ raise NameError('Unknown dispatch arguments %s' % dispatch_str) ++ ++ typemap = {} ++ ++ def vancestors(*types): ++ """ ++ Get a list of sets of virtual ancestors for the given types ++ """ ++ check(types) ++ ras = [[] for _ in range(len(dispatch_args))] ++ for types_ in typemap: ++ for t, type_, ra in zip(types, types_, ras): ++ if issubclass(t, type_) and type_ not in t.__mro__: ++ append(type_, ra) ++ return [set(ra) for ra in ras] ++ ++ def ancestors(*types): ++ """ ++ Get a list of virtual MROs, one for each type ++ """ ++ check(types) ++ lists = [] ++ for t, vas in zip(types, vancestors(*types)): ++ n_vas = len(vas) ++ if n_vas > 1: ++ raise RuntimeError( ++ 'Ambiguous dispatch for %s: %s' % (t, vas)) ++ elif n_vas == 1: ++ va, = vas ++ mro = type('t', (t, va), {}).__mro__[1:] ++ else: ++ mro = t.__mro__ ++ lists.append(mro[:-1]) # discard t and object ++ return lists ++ ++ def register(*types): ++ """ ++ Decorator to register an implementation for the given types ++ """ ++ check(types) ++ def dec(f): ++ check(getfullargspec(f).args, operator.lt, ' in ' + f.__name__) ++ typemap[types] = f ++ return f ++ return dec ++ ++ def dispatch_info(*types): ++ """ ++ An utility to introspect the dispatch algorithm ++ """ ++ check(types) ++ lst = [] ++ for anc in itertools.product(*ancestors(*types)): ++ lst.append(tuple(a.__name__ for a in anc)) ++ return lst ++ ++ def _dispatch(dispatch_args, *args, **kw): ++ types = tuple(type(arg) for arg in dispatch_args) ++ try: # fast path ++ f = typemap[types] ++ except KeyError: ++ pass ++ else: ++ return f(*args, **kw) ++ combinations = itertools.product(*ancestors(*types)) ++ next(combinations) # the first one has been already tried ++ for types_ in combinations: ++ f = typemap.get(types_) ++ if f is not None: ++ return f(*args, **kw) ++ ++ # else call the default implementation ++ return func(*args, **kw) ++ + return FunctionMaker.create( +- '%s(%s)' % (caller.__name__, first), +- 'return decorator(_call_, %s)' % first, +- evaldict, undecorated=caller, __wrapped__=caller, +- doc=caller.__doc__, module=caller.__module__) ++ func, 'return _f_(%s, %%(shortsignature)s)' % dispatch_str, ++ dict(_f_=_dispatch), register=register, default=func, ++ typemap=typemap, vancestors=vancestors, ancestors=ancestors, ++ dispatch_info=dispatch_info, __wrapped__=func) ++ ++ gen_func_dec.__name__ = 'dispatch_on' + dispatch_str ++ return gen_func_dec +-- +2.6.3 + diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9f83117e86b..f800fd0839f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17160,7 +17160,7 @@ in modules // { support = import ../development/python-modules/numpy-scipy-support.nix { inherit python; openblas = pkgs.openblasCompat; - pkgName = "numpy"; + pkgName = "scipy"; }; in buildPythonPackage rec { name = "scipy-${version}"; @@ -17178,8 +17178,18 @@ in modules // { sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py ''; + # First test: RuntimeWarning: Mean of empty slice. + # Second: SyntaxError: invalid syntax. Due to wrapper? + # Third: test checks permissions + prePatch = '' + substituteInPlace scipy/stats/tests/test_stats.py --replace "test_chisquare_masked_arrays" "remove_this_one" + rm scipy/linalg/tests/test_lapack.py + substituteInPlace scipy/weave/tests/test_catalog.py --replace "test_user" "remove_this_one" + ''; + inherit (support) preBuild checkPhase; + patches = [../development/python-modules/scipy-0.16.1-decorator-fix.patch]; setupPyBuildFlags = [ "--fcompiler='gnu95'" ]; meta = { From acf320f691b6b813ff54a662bd72edd2743ee254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 17 Dec 2015 12:29:16 +0100 Subject: [PATCH 036/289] nixos release notes: mention enableCtrlAltBackspace /cc #11228. --- nixos/doc/manual/release-notes/rl-unstable.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml index cf6e4ace413..03eed914e27 100644 --- a/nixos/doc/manual/release-notes/rl-unstable.xml +++ b/nixos/doc/manual/release-notes/rl-unstable.xml @@ -113,6 +113,14 @@ nginx.override { extra X11 options for nvidia and nouveau drivers, respectively. + + + The Ctrl+Alt+Backspace key combination + no longer kills the X server by default. + There's a new option + allowing to enable the combination again. + + From 89ecedcab8b782e7877d2c5e8a8d39578d042c99 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 05:34:15 -0600 Subject: [PATCH 037/289] kde5: don't expose secret top-level attributes --- pkgs/top-level/all-packages.nix | 32 ++++++++++++++------------------ 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ac1e29d13f6..352ebda277d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6860,10 +6860,6 @@ let automake = automake111x; }; - kf517 = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }; - kf5_stable = kf517; - kf5_latest = kf517; - kinetic-cpp-client = callPackage ../development/libraries/kinetic-cpp-client { }; krb5Full = callPackage ../development/libraries/kerberos/krb5.nix { @@ -12221,10 +12217,6 @@ let boost = boost155; }; - kdeApps_15_12 = import ../applications/kde-apps-15.12 { inherit pkgs; }; - kdeApps_stable = kdeApps_15_12; - kdeApps_latest = kdeApps_15_12; - keepnote = callPackage ../applications/office/keepnote { pygtk = pyGtkGlade; }; @@ -14724,10 +14716,6 @@ let numix-gtk-theme = callPackage ../misc/themes/gtk3/numix-gtk-theme { }; - plasma55 = import ../desktops/plasma-5.5 { inherit pkgs; }; - plasma5_stable = plasma55; - plasma5_latest = plasma55; - kde5PackagesFun = self: with self; { fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { }; @@ -14769,14 +14757,22 @@ let }; kde5 = - recurseIntoAttrs - (lib.makeScope qt55Libs.newScope (self: - kf5_stable self // plasma5_stable self // kdeApps_stable self // kde5PackagesFun self)); + let + frameworks = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }; + plasma = import ../desktops/plasma-5.5 { inherit pkgs; }; + apps = import ../applications/kde-apps-15.12 { inherit pkgs; }; + merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self; + in + recurseIntoAttrs (lib.makeScope qt55Libs.newScope merged); kde5_latest = - recurseIntoAttrs - (lib.makeScope qt55Libs.newScope (self: - kf5_latest self // plasma5_latest self // kdeApps_latest self // kde5PackagesFun self)); + let + frameworks = import ../development/libraries/kde-frameworks-5.17 { inherit pkgs; }; + plasma = import ../desktops/plasma-5.5 { inherit pkgs; }; + apps = import ../applications/kde-apps-15.12 { inherit pkgs; }; + merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self; + in + recurseIntoAttrs (lib.makeScope qt55Libs.newScope merged); theme-vertex = callPackage ../misc/themes/vertex { }; From adb2b803b9e7090f9b9c12781bfb0ad557c8c7a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 17 Dec 2015 12:35:15 +0100 Subject: [PATCH 038/289] net-snmp: avoid nested list, /cc #11739 --- pkgs/servers/monitoring/net-snmp/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/monitoring/net-snmp/default.nix b/pkgs/servers/monitoring/net-snmp/default.nix index c53f52422cf..f2533c99b08 100644 --- a/pkgs/servers/monitoring/net-snmp/default.nix +++ b/pkgs/servers/monitoring/net-snmp/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { "--with-logfile=/var/log/net-snmpd.log" "--with-persistent-directory=/var/lib/net-snmp" "--with-openssl=${openssl}" - ] ++ stdenv.lib.optional stdenv.isLinux [ "--with-mnttab=/proc/mounts" ]; + ] ++ stdenv.lib.optional stdenv.isLinux "--with-mnttab=/proc/mounts"; buildInputs = [ autoreconfHook file perl unzip openssl ]; From a685f98627e624c04d7b5db17447b9d4434a68a1 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 05:36:51 -0600 Subject: [PATCH 039/289] calamares: move into kde5PackagesFun All KDE 5 packages must be listed here to be packaged correctly. --- pkgs/top-level/all-packages.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 352ebda277d..f5a5f12099f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1732,13 +1732,6 @@ let ghostscript = null; }; - calamares = callPackage ../tools/misc/calamares rec { - python = python3; - boost = pkgs.boost.override { python=python3; }; - libyamlcpp = callPackage ../development/libraries/libyaml-cpp { makePIC=true; boost=boost; }; - inherit (kf5_stable) extra-cmake-modules kconfig ki18n kcoreaddons solid; - }; - grub = callPackage_i686 ../tools/misc/grub { buggyBiosCDSupport = config.grub.buggyBiosCDSupport or true; automake = automake112x; # fails with 13 and 14 @@ -14718,6 +14711,12 @@ let kde5PackagesFun = self: with self; { + calamares = callPackage ../tools/misc/calamares rec { + python = python3; + boost = pkgs.boost.override { python=python3; }; + libyamlcpp = callPackage ../development/libraries/libyaml-cpp { makePIC=true; boost=boost; }; + }; + fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { }; k9copy = callPackage ../applications/video/k9copy {}; From 97b2b05a24c0720f9f84e376902c268cc80ce6bc Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 05:50:32 -0600 Subject: [PATCH 040/289] calamares: fix Qt dependencies --- pkgs/tools/misc/calamares/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/calamares/default.nix b/pkgs/tools/misc/calamares/default.nix index e2b8c70c6e2..6ca007229bc 100644 --- a/pkgs/tools/misc/calamares/default.nix +++ b/pkgs/tools/misc/calamares/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchgit, cmake, qt5, polkit_qt5, libyamlcpp, python, boost, parted +{ stdenv, fetchgit, cmake, polkitQt, libyamlcpp, python, boost, parted , extra-cmake-modules, kconfig, ki18n, kcoreaddons, solid, utillinux, libatasmart -, ckbcomp, glibc, tzdata, xkeyboard_config }: +, ckbcomp, glibc, tzdata, xkeyboard_config, qtbase, qtquick1, qtsvg, qttools }: stdenv.mkDerivation rec { name = "calamares-${version}"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ - cmake qt5.base qt5.tools libyamlcpp python boost polkit_qt5 parted + cmake qtbase qtquick1 qtsvg qttools libyamlcpp python boost polkitQt parted extra-cmake-modules kconfig ki18n kcoreaddons solid utillinux libatasmart ]; @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { ''; preInstall = '' - substituteInPlace cmake_install.cmake --replace "${polkit_qt5}" "$out" + substituteInPlace cmake_install.cmake --replace "${polkitQt}" "$out" ''; meta = with stdenv.lib; { From d69b5f953351800de37ba8b1025c4863498fc27b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 05:51:09 -0600 Subject: [PATCH 041/289] polkit_qt5: remove The correct version is qt5Libs.polkitQt. --- .../development/libraries/polkit-qt-1/old.nix | 22 ------------------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 24 deletions(-) delete mode 100644 pkgs/development/libraries/polkit-qt-1/old.nix diff --git a/pkgs/development/libraries/polkit-qt-1/old.nix b/pkgs/development/libraries/polkit-qt-1/old.nix deleted file mode 100644 index b887134e5b9..00000000000 --- a/pkgs/development/libraries/polkit-qt-1/old.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ stdenv, fetchurl, cmake, pkgconfig, polkit, automoc4, glib -, qt4 ? null, qt5 ? null, withQt5 ? false }: - -assert (withQt5 -> qt5 != null); assert (!withQt5 -> qt4 != null); - -stdenv.mkDerivation { - name = "polkit-qt-1-0.112.0"; - - src = fetchurl { - url = "mirror://kde/stable/apps/KDE4.x/admin/polkit-qt-1-0.112.0.tar.bz2"; - sha256 = "1ip78x20hjqvm08kxhp6gb8hf6k5n6sxyx6kk2yvvq53djzh7yv7"; - }; - - nativeBuildInputs = [ cmake automoc4 pkgconfig ]; - - propagatedBuildInputs = [ polkit glib ] ++ (if withQt5 then [qt5.base] else [qt4]); - - meta = { - description = "A Qt wrapper around PolKit"; - maintainers = with stdenv.lib.maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f5a5f12099f..1877617f016 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8059,8 +8059,6 @@ let polkit_qt4 = callPackage ../development/libraries/polkit-qt-1 { }; - polkit_qt5 = callPackage ../development/libraries/polkit-qt-1/old.nix { withQt5 = true; }; - policykit = callPackage ../development/libraries/policykit { }; poppler = callPackage ../development/libraries/poppler { lcms = lcms2; }; From 24991034de28026afce456053a610bb5efe9bd27 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Dec 2015 19:33:18 -0600 Subject: [PATCH 042/289] kde5.kiconthemes: default icon theme is breeze --- .../libraries/kde-frameworks-5.17/default.nix | 2 +- .../kiconthemes/default-theme-breeze.patch | 13 +++++++++++++ .../{kiconthemes.nix => kiconthemes/default.nix} | 9 +++++---- .../kde-frameworks-5.17/kiconthemes/series | 1 + 4 files changed, 20 insertions(+), 5 deletions(-) create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default-theme-breeze.patch rename pkgs/development/libraries/kde-frameworks-5.17/{kiconthemes.nix => kiconthemes/default.nix} (53%) create mode 100644 pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/series diff --git a/pkgs/development/libraries/kde-frameworks-5.17/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/default.nix index 3a865b9d404..828faaa631f 100644 --- a/pkgs/development/libraries/kde-frameworks-5.17/default.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/default.nix @@ -70,7 +70,7 @@ let kguiaddons = callPackage ./kguiaddons.nix {}; khtml = callPackage ./khtml.nix {}; ki18n = callPackage ./ki18n.nix {}; - kiconthemes = callPackage ./kiconthemes.nix {}; + kiconthemes = callPackage ./kiconthemes {}; kidletime = callPackage ./kidletime.nix {}; kimageformats = callPackage ./kimageformats.nix {}; kinit = callPackage ./kinit {}; diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default-theme-breeze.patch b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default-theme-breeze.patch new file mode 100644 index 00000000000..5b3b15d5d5b --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default-theme-breeze.patch @@ -0,0 +1,13 @@ +Index: kiconthemes-5.17.0/src/kicontheme.cpp +=================================================================== +--- kiconthemes-5.17.0.orig/src/kicontheme.cpp ++++ kiconthemes-5.17.0/src/kicontheme.cpp +@@ -557,7 +557,7 @@ void KIconTheme::reconfigure() + // static + QString KIconTheme::defaultThemeName() + { +- return QStringLiteral("oxygen"); ++ return QStringLiteral("breeze"); + } + + void KIconTheme::assignIconsToContextMenu(ContextMenus type, diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default.nix similarity index 53% rename from pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default.nix index eb24403169d..b78b25582be 100644 --- a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default.nix @@ -1,13 +1,14 @@ -{ kdeFramework, lib, makeQtWrapper -, extra-cmake-modules, kconfigwidgets, ki18n -, kitemviews, qtsvg +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules, makeQtWrapper +, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg }: kdeFramework { name = "kiconthemes"; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; buildInputs = [ kconfigwidgets kitemviews qtsvg ]; - propagatedBuildInputs = [ ki18n ]; + propagatedBuildInputs = [ breeze-icons ki18n ]; postInstall = '' wrapQtProgram "$out/bin/kiconfinder5" ''; diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/series b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/series new file mode 100644 index 00000000000..ab5cc8a3edb --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/series @@ -0,0 +1 @@ +default-theme-breeze.patch From 8c1770769fb2f68b881c3d1abbe9b43dde114510 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 17 Dec 2015 15:08:03 +0300 Subject: [PATCH 043/289] flashplayer: fix 32-bit version --- .../mozilla-plugins/flashplayer-11/default.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix index 34a06967ed8..d60ae8ea1db 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -44,6 +44,16 @@ let if debug then "32bit_debug" else "32bit" else throw "Flash Player is not supported on this platform"; + + suffix = + if stdenv.system == "x86_64-linux" then + if debug then throw "no x86_64 debugging version available" + else "-release.x86_64" + else if stdenv.system == "i686-linux" then + if debug then "_linux_debug.i386" + else "_linux.i386" + else throw "Flash Player is not supported on this platform"; + in stdenv.mkDerivation rec { name = "flashplayer-${version}"; @@ -58,7 +68,7 @@ stdenv.mkDerivation rec { postUnpack = '' cd */*${arch} - tar -xvzf flash-plugin*.tar.gz + tar -xvzf *${suffix}.tar.gz ''; sourceRoot = "."; @@ -87,5 +97,6 @@ stdenv.mkDerivation rec { homepage = http://www.adobe.com/products/flashplayer/; license = stdenv.lib.licenses.unfree; maintainers = []; + platforms = [ "x86_64-linux" "i686-linux" ]; }; } From b72bcd1e327c93df191b9d26f4f58e550c2c6d40 Mon Sep 17 00:00:00 2001 From: Avery Glitch Date: Thu, 17 Dec 2015 19:42:36 +1100 Subject: [PATCH 044/289] Fixed a syntax error in the buildFHSChrootEnv example. Also, fixed the manual.xml so it actually builds. --- doc/functions.xml | 2 +- doc/manual.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/functions.xml b/doc/functions.xml index e2bc751e140..7f40ba33cd4 100644 --- a/doc/functions.xml +++ b/doc/functions.xml @@ -277,7 +277,7 @@ c = lib.makeOverridable f { a = 1; b = 2; } multiPkgs = pkgs: (with pkgs; [ udev alsaLib - ]) ++ (with []; + ]); runScript = "bash"; }).env ]]> diff --git a/doc/manual.xml b/doc/manual.xml index 1f1f50f75fb..3ffe7fbb068 100644 --- a/doc/manual.xml +++ b/doc/manual.xml @@ -12,7 +12,7 @@ - + From 3cc7e04502ff2ad89ac72b97886f6d168c1b4ad3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 14 Dec 2015 07:30:56 -0600 Subject: [PATCH 045/289] elpa-packages 2015-12-14 --- .../editors/emacs-modes/elpa-packages.json | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.json b/pkgs/applications/editors/emacs-modes/elpa-packages.json index 0572dca56be..9e78fb7c1ca 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.json @@ -201,10 +201,10 @@ "tiny": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/tiny-0.1.tar", - "sha256": "04iyidzjgnm4ka575wxqdak19h8j4dlni2ahf0bkq1q9by79xq1q" + "url": "http://elpa.gnu.org/packages/tiny-0.1.1.tar", + "sha256": "1nhg8375qdn457wj0xmfaj72s87xbabk2w1nl6q7rjvwxv08yyn7" }, - "version": "0.1", + "version": "0.1.1", "deps": [] }, "coffee-mode": { @@ -246,10 +246,10 @@ "org": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/org-20151123.tar", - "sha256": "13ybzjg6k61paldfln6isc6149hvilwsgsnhyirig42bz1z0vjbb" + "url": "http://elpa.gnu.org/packages/org-20151214.tar", + "sha256": "15m9l7p7xfmcrxrcsxbvpp8bq5ajcapknvqblhmk77j7ca3jffi1" }, - "version": "20151123", + "version": "20151214", "deps": [] }, "bug-hunter": { @@ -594,10 +594,10 @@ "hydra": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/hydra-0.13.3.tar", - "sha256": "1il0maxkxm2nxwz6y6v85zhf6a8f52gfq51h1filcnlzg10b5arm" + "url": "http://elpa.gnu.org/packages/hydra-0.13.4.tar", + "sha256": "11msy6n075iv00c2r9f85bzx3srnj403rhlga1rgsl6vsryf21fj" }, - "version": "0.13.3", + "version": "0.13.4", "deps": [ "cl-lib" ] @@ -953,10 +953,10 @@ "swiper": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/swiper-0.5.1.tar", - "sha256": "06kd6r90fnjz3lapm52pgsx4dhnd95mkzq9y4khkzqny59h0vmm6" + "url": "http://elpa.gnu.org/packages/swiper-0.7.0.tar", + "sha256": "1bzzx41zcf3yk6r6csqzlffwwrw9gyk8ab026r55l6416b6rcynx" }, - "version": "0.5.1", + "version": "0.7.0", "deps": [ "emacs" ] @@ -1018,10 +1018,10 @@ "transcribe": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/transcribe-0.5.0.el", - "sha256": "1wxfv96sjcxins8cyqijsb16fc3n0m13kvaw0hjam8x91wamcbxq" + "url": "http://elpa.gnu.org/packages/transcribe-1.0.2.el", + "sha256": "0b0qaq0b3l37h6wfs4j80csmfcbidcd8a8wk6mwn6p4cdi7msr15" }, - "version": "0.5.0", + "version": "1.0.2", "deps": [] }, "websocket": { From 1210eafb8e2b3417d8436fb44e9ca365896e2a0f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 14 Dec 2015 19:46:21 -0600 Subject: [PATCH 046/289] melpa-stable-packages 2015-12-14 --- .../emacs-modes/melpa-stable-packages.json | 22226 ++++++++++++++++ .../emacs-modes/melpa-stable-packages.nix | 42 + 2 files changed, 22268 insertions(+) create mode 100644 pkgs/applications/editors/emacs-modes/melpa-stable-packages.json create mode 100644 pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json new file mode 100644 index 00000000000..503dc20c50d --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json @@ -0,0 +1,22226 @@ +{ + "qiita": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/qiita-el.git", + "sha256": "6e2c9eceaf4d87eff3c4c56508ee71cccd2806da163a16a9f2e21e38ec111f84", + "rev": "33b6d3450bb4b3d0186c2475f6c78269c71fd1ff" + }, + "recipe": { + "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [] + }, + "outorg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/outorg.git", + "sha256": "65b7e7c7e43a8828aa452ed5ccdc8d9909fce69b76bc30d175f5d252e1445ed8", + "rev": "e946cda497bae53fca6fa1579910237e216170bf" + }, + "recipe": { + "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "helm-ls-hg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-ls-hg.git", + "sha256": "aa2dfcc9e42b1215aba74b541f32dec2783b26fe68113af2a411d164623aaac2", + "rev": "fa709b6354d84e1c88ccef096d29410fa16f7f5f" + }, + "recipe": { + "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.7.8", + "deps": [ + "helm" + ] + }, + "color-theme-sanityinc-tomorrow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/color-theme-sanityinc-tomorrow.git", + "sha256": "620d71141c0eab505c328b3bb75f7d8c4dd6c80c37c78a72eab81842f8d69b6c", + "rev": "55db9979397bd66446eb1927e08c5a22df9f0eea" + }, + "recipe": { + "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.16", + "deps": [] + }, + "focus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/larstvei/Focus.git", + "sha256": "0cae0122b49cf478025cb3c8df81fc22fa92e35e894777c43fb777477fc7452a", + "rev": "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9" + }, + "recipe": { + "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "buffer-move": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lukhas/buffer-move.git", + "sha256": "eb96887c75c9c8c67890d1c201a1b63fae91cde3de16bfddfadf82449650572f", + "rev": "9bf3ff940011c7af3fdd172fa3ea2511c7a8a190" + }, + "recipe": { + "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.2", + "deps": [] + }, + "youdao-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/youdao-dictionary.el.git", + "sha256": "d9baf0a7bc4c45c05de784ed7bff9d9c72a6ff775375e86707cd36789cc32600", + "rev": "5b4f716ca41fa0cdb18a4949ac5cdcd470182c57" + }, + "recipe": { + "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "chinese-word-at-point", + "emacs", + "names", + "popup" + ] + }, + "emacsql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "rev": "03d478870834a683f433e7f0e288476748eec624" + }, + "recipe": { + "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [ + "cl-lib", + "emacs", + "finalize" + ] + }, + "help-fns+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help-fns+.el", + "sha256": "0ljciaa0dc09m7xq22z1sad4bshphjpyf0i8hlf6xh7wg1vgavma" + }, + "recipe": { + "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "cmake-ide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atilaneves/cmake-ide.git", + "sha256": "7bf27290c33b017e8cc557dbe11c11f2f1d1156dba4947592a2c2c738fdf6ff4", + "rev": "8d395a5aef72e58dd3256ba3f70c912c0e6d059a" + }, + "recipe": { + "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "jammer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/jammer.git", + "sha256": "70957c1467eb108ac2125f2be1ff5dd6130431eab8e58da312ebd899eaf91b74", + "rev": "1ba232b71507b468c60dc53c2bc8888bef36c858" + }, + "recipe": { + "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "dired-sort-menu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu+.el", + "sha256": "0l19xa7z4015lqw98dzb5i40na32758wxyfka2vdhn7g5iq7qday" + }, + "recipe": { + "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "dired-sort-menu" + ] + }, + "go-eldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-go-eldoc.git", + "sha256": "e9e7523e506148c056950b9a4930b2fb00618ece42ef380332692a6f3fb14ef7", + "rev": "af6bfdcbcf12c240da46412efb381a5ee6c3aec5" + }, + "recipe": { + "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.26", + "deps": [ + "cl-lib", + "go-mode" + ] + }, + "w32browser-dlgopen": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/w32browser-dlgopen.el", + "sha256": "15cjfr8fknlp61mqz6377d4pprv3pddhiqqdhk1lsz2mncw8z9mq" + }, + "recipe": { + "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "cerbere": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/cerbere.git", + "sha256": "1fd732afc839f500571fb33db2f078d56b8fd8e79fc6b40a8bd39c5347c23dc8", + "rev": "11de1e7ec5126083ae697f5a9993facdb9895f9d" + }, + "recipe": { + "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "f", + "go-mode", + "pkg-info", + "s" + ] + }, + "grandshell-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/grandshell-theme.git", + "sha256": "7a1b3d42d1730ac8618324d08254aec9125c7705366c59b4c1e4e4c639770288", + "rev": "6bf34fb1a3117244629a7fb23daf610f50854bed" + }, + "recipe": { + "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "lacarte": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lacarte.el", + "sha256": "1nlras4g3ncp1pcmkkpa2j88zvqjibmn5h6ilahgjry0dwg9qw5j" + }, + "recipe": { + "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "mmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/mmt.git", + "sha256": "6ab354377fbdff7d2b1542bea4e62b613c6543850b8bd373d7b48043bcd67583", + "rev": "e77b809e39b9ab437b662ee759e990163bc89377" + }, + "recipe": { + "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "vimish-fold": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/vimish-fold.git", + "sha256": "6822b3e8e067af5e3713bd68f2946c5c1e2c2bc4f12607d9058c6efdadaefe72", + "rev": "bf10662ff5d2ac2c0d0d84a87577c5425cff7639" + }, + "recipe": { + "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "emacs", + "f" + ] + }, + "stripe-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/stripe-buffer.git", + "sha256": "b3253e702365c2e5df7dc40346240d81b93c1bf9a88866b584e6fd1d58a8be0c", + "rev": "d9f009b92cf16fe2c40cd92b8f842a3872e6c190" + }, + "recipe": { + "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.5", + "deps": [ + "cl-lib" + ] + }, + "web-completion-data": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/web-completion-data.git", + "sha256": "12ff6411fde08135c84c2e4342c2289ca2a398b78e660be4a4997e6a98b6f2f0", + "rev": "3685b8c7eff06a2064b4f4304e7faf00a22a920a" + }, + "recipe": { + "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "slime-company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/anwyn/slime-company.git", + "sha256": "a427294d72206521d40e787fe3e361334b1544b6c3f766129bf0afeaa769b065", + "rev": "b4a770b1c1e9638f13e339e7debbdb3b25217e39" + }, + "recipe": { + "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.1", + "deps": [ + "company", + "slime" + ] + }, + "flymake-php": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-php.git", + "sha256": "470df53714287ec33633235b41bd674cb5ca38b12c0b8a5bce117cf86fc20068", + "rev": "91f867e209011af31a2ca2d8f6874b994403bcb2" + }, + "recipe": { + "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [ + "flymake-easy" + ] + }, + "jade-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianc/jade-mode.git", + "sha256": "7690294b61606fc289fc7f0c8c07153674d4c17687427c4f520810a170682b4f", + "rev": "4e7a20db492719062f40b225ed730ed50be5db56" + }, + "recipe": { + "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "smart-mode-line-powerline-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/smart-mode-line.git", + "sha256": "e1e035913c85c579f28e30a9ee8c0c201dca5a045fa29482c405de062daf747b", + "rev": "d98b985c44b2c771cac1eea758f21e16e169a8a0" + }, + "recipe": { + "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.9", + "deps": [ + "emacs", + "powerline", + "smart-mode-line" + ] + }, + "unfill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/unfill.git", + "sha256": "b1b4d0c819d8c18d21c9d5670e163a111d906e81f3b42d5b28942fc838cc2255", + "rev": "99388d79f971db70c5d18dab4257301f750ed907" + }, + "recipe": { + "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "org-page": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kelvinh/org-page.git", + "sha256": "3e3afa4ce7646ee5238f624ab0ecacb13793ad0a20da52b6bbbc5be97cecc5f2", + "rev": "09febf89d8dcb226aeedf8164169b31937b64439" + }, + "recipe": { + "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.41", + "deps": [ + "ht", + "htmlize", + "mustache", + "org" + ] + }, + "grails-projectile-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yveszoundi/grails-projectile-mode.git", + "sha256": "344865da2d968d540b042c11ad0342c0d7dff4a4bff17918d4e0f854209d66e7", + "rev": "e6667dc737cdb224bbadc70a5fcfb82d0fce6f8f" + }, + "recipe": { + "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [ + "cl-lib", + "emacs", + "projectile" + ] + }, + "inf-clojure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/inf-clojure.git", + "sha256": "60b7dd9e60f99ad342d9cf8bc8017a540b2a562f3ee3f539a42a52d61d68dd52", + "rev": "286b935b90123d5e2dd3c36c804d796413864256" + }, + "recipe": { + "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [ + "clojure-mode", + "emacs" + ] + }, + "git-wip-timemachine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/itsjeyd/git-wip-timemachine.git", + "sha256": "36e2bd2df46cfd280d99c67d879b721c87ae0a68f8e409863adb373cbc77dd56", + "rev": "7da7f2acec0b1d1252d7474b13190ae88e5b205d" + }, + "recipe": { + "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "s" + ] + }, + "shell-pop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyagi/shell-pop-el.git", + "sha256": "85f3f9f2b424025ab6f5af3f36d30c1b65f0a10e760444d96a7beba89ae3fe3b", + "rev": "4531d234ca471ed80458252cba0ed005a0720b27" + }, + "recipe": { + "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.63", + "deps": [ + "emacs" + ] + }, + "j-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zellio/j-mode.git", + "sha256": "710589fed69de40fd735eb9f0cfc1bf40d447cca00b596cdb73864e1e1ba95c4", + "rev": "caa55dfaae01d1875380929826952c2b3ef8a653" + }, + "recipe": { + "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [] + }, + "persistent-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/persistent-scratch.git", + "sha256": "ef823eb46c4790edc8e61afc835a59419cf5196928e9ac21a95722f0464b15f9", + "rev": "52be8e41fe1e23a1f2b912fc119af06cc051bd28" + }, + "recipe": { + "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [ + "emacs" + ] + }, + "map-regexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/map-regexp.git", + "sha256": "2c08cb7762b19d08e6ae7c11ec974cb691e0da44b47e4ef0abab91ccc6d4614e", + "rev": "b8e06284ec1c593d7d2bda5f35597a63de46333f" + }, + "recipe": { + "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib" + ] + }, + "sauron": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/djcb/sauron.git", + "sha256": "38535e28a9d72f049c66aaf8d3e7931483f847d325560128b9eace38d699ecb9", + "rev": "a9877f0efa9418c41d25002b58d1c2f8c69ec975" + }, + "recipe": { + "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10", + "deps": [] + }, + "company-ansible": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krzysztof-magosa/company-ansible.git", + "sha256": "8a28dd2adf97e939723841075054e1124d8a6c28abfb6b4a561a6dd5957a03bf", + "rev": "b9b4b22bc8c109de3ae3a5bb4c6b2be89bd644db" + }, + "recipe": { + "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "company", + "emacs" + ] + }, + "flycheck-ocaml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-ocaml.git", + "sha256": "db31d73b64e42358db30d40c1b2973e39b25578139637d2c08abac6e9516a9df", + "rev": "9b4cd83ad2a87cc94b5d4e1ac26ac235475f1e6c" + }, + "recipe": { + "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "emacs", + "flycheck", + "let-alist", + "merlin" + ] + }, + "eshell-z": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/eshell-z.git", + "sha256": "91c05b97cd3fdd6867661e30429f7bb8978b89d7e93dff066883239d01c43d9d", + "rev": "cc9a4b505953a9b56222896a6f973145aeb154b9" + }, + "recipe": { + "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib" + ] + }, + "fix-word": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/fix-word.git", + "sha256": "e715bb0d7c1720b52cb8f4ba8e1a07b1bcd059963c57b8df0f1ad531b65c34ad", + "rev": "256a87d4b871ead0975fa0e7f76a1ecbaa074582" + }, + "recipe": { + "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "celery": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/emacs-celery.git", + "sha256": "618ec6d27f983c85cfb2326ae004f994d70293080ca55c00cca5f59dd260f7ff", + "rev": "163ebede3f6a7f59202ff319675b0873dd1de365" + }, + "recipe": { + "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [ + "dash-functional", + "deferred", + "emacs", + "s" + ] + }, + "lib-requires": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lib-requires.el", + "sha256": "1s6969kz6hpgjdm3xp18ik116nji43md7vbya600cmq48njk44nk" + }, + "recipe": { + "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "charmap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lateau/charmap.git", + "sha256": "86733a013abf430f73ac97dfd583ea55d91c9806b814cf6a91ca6acb88693633", + "rev": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2" + }, + "recipe": { + "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [] + }, + "parsebib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/parsebib.git", + "sha256": "b4a61e2678a4055f78d9725ff12f8fab6c5e9f0fc04587575ab0652b3de42159", + "rev": "9a1f60bed2814dfb5cec2b92efb5951a4b465cce" + }, + "recipe": { + "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.5", + "deps": [ + "emacs" + ] + }, + "hindent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/hindent.git", + "sha256": "db93ecbe7d46e8efb4bb663c30855d180c14902d3c467bf550bf0c59898eb8db", + "rev": "726c692d234581c853495165472c78f4c7fb9297" + }, + "recipe": { + "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "5.4.3", + "deps": [ + "cl-lib" + ] + }, + "sudden-death": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yewton/sudden-death.el.git", + "sha256": "4b6e884b62cfa51cb5cc051fb1b2c668de9ccec95e6b33a658cfe4eef58ebece", + "rev": "c58fb9a672f306604dde4fbb0ff079e65a5e40be" + }, + "recipe": { + "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "simplenote2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alpha22jp/simplenote2.el.git", + "sha256": "0362bf75d2f0d9b85864826721e9e771f60af1de89336060f9d8cf091f08bc09", + "rev": "9984ad77e63ae8d40e863cf1b0d8339ede986792" + }, + "recipe": { + "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2.2", + "deps": [ + "request-deferred" + ] + }, + "cake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-cake.git", + "sha256": "ea8f3ad857b3397a2f70046ea4f35a306ae676b16fad09d7c9cf5593e92df200", + "rev": "a7c9f3bee71eb3865060123d4d98e5397c2f967e" + }, + "recipe": { + "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.3", + "deps": [ + "anything", + "cake-inflector", + "historyf" + ] + }, + "realgud": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocky/emacs-dbgr.git", + "sha256": "94539ca9d46ecb5ff33ba5c5aa2ed659be06d026bb3aa5dd08db0a4b567bc9e7", + "rev": "0dd37e233f315a5666eefc6a3e9fc088fcc6561f" + }, + "recipe": { + "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [ + "list-utils", + "load-relative", + "loc-changes", + "test-simple" + ] + }, + "js2-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/js2-refactor.el.git", + "sha256": "75404b9b8a9856510931416c8b93c400979ee257b1e833c4ebb1e11439eecd4c", + "rev": "ac3da94a33b714d44d4f0adc670a829fdc522e34" + }, + "recipe": { + "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.1", + "deps": [ + "dash", + "js2-mode", + "multiple-cursors", + "s", + "yasnippet" + ] + }, + "ecb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alexott/ecb.git", + "sha256": "6cffee0f53869780992d5be254f3ba1da5e28d73d2df06efde524b76240e39e9", + "rev": "1e9ddf472d7b6006dc92684b82de22e6148f38b4" + }, + "recipe": { + "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2_24", + "deps": [] + }, + "quickrun": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-quickrun.git", + "sha256": "bdfc73494b00fae2e5ece54c8d5312fc497e28010190a6d97166634a124a300e", + "rev": "31c61de338c7b689bbb78e0aa691bd68f7c20941" + }, + "recipe": { + "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2.6", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "rsense": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/rsense.git", + "sha256": "307f3a3cc652476eff7b12d4a583798f678e3e8d609bcb31255451242cc2d355", + "rev": "e4297052ef32d06237e8bd1534a0caf70a34ad28" + }, + "recipe": { + "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "ocodo-svg-modelines": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ocodo/ocodo-svg-modelines.git", + "sha256": "5cac1b9f8779c32491152339b735615c6cebc3ff91682d9de04d1a66532a5e15", + "rev": "a6c5b9a7536c7a8fa3bd9d9dafdebc8d99903018" + }, + "recipe": { + "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [ + "svg-mode-line-themes" + ] + }, + "jedi-core": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-jedi.git", + "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" + }, + "recipe": { + "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.7", + "deps": [ + "cl-lib", + "emacs", + "epc", + "python-environment" + ] + }, + "dim-autoload": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/dim-autoload.git", + "sha256": "daaabcff114b24356d94278a78b0a686063a3f7f662865e9137b2de6d57c812f", + "rev": "d68ef0d2f9204ffe0d521e2647e6d8f473588fd3" + }, + "recipe": { + "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.4", + "deps": [] + }, + "sentence-highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sentence-highlight.el", + "sha256": "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k" + }, + "recipe": { + "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "pkgbuild-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juergenhoetzel/pkgbuild-mode.git", + "sha256": "194f60a181b339e59157f58543a133049f564172b9bf7eddd17299d968581829", + "rev": "6bb7cb3b0599ac0ae3c1d8d5014aefc1ecff7965" + }, + "recipe": { + "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.14", + "deps": [] + }, + "erc-youtube": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kidd/erc-youtube.el.git", + "sha256": "6d9bbb44731019e23321a00ad847b7a96448845a08a2ffd19a15eb963302325c", + "rev": "3629583031f3a59797a01e29abe9cc061e337294" + }, + "recipe": { + "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0Alpha", + "deps": [ + "erc" + ] + }, + "roguel-ike": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stevenremot/roguel-ike.git", + "sha256": "87ce21c416a8f589770b8548106aabb48cdd654784f62db6241d23a39a493cc0", + "rev": "6d9322ad9d43d0c7465f125c8e08b222866e6923" + }, + "recipe": { + "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "popup" + ] + }, + "name-this-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knl/name-this-color.el.git", + "sha256": "3d9cb5a99a184fa8081a9dccd5ba3403987925c86d908aaf0287448a56ed7c9b", + "rev": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa" + }, + "recipe": { + "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "git-messenger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-git-messenger.git", + "sha256": "78a2ecc97301370c162bbccdf8787686241451b207cba75927fcc8114053dfa5", + "rev": "c45cdd9805d52a82bdd23907bd0f91dc7760d78d" + }, + "recipe": { + "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.16", + "deps": [ + "cl-lib", + "popup" + ] + }, + "maven-test-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rranelli/maven-test-mode.git", + "sha256": "18ee821471b857620e3045ad4e925ea44b93101d5267aa52557146e471385db5", + "rev": "f79409907375591283291eb96af4754b1ccc0e6f" + }, + "recipe": { + "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.5", + "deps": [ + "emacs", + "s" + ] + }, + "help-mode+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help-mode+.el", + "sha256": "1xnlb1sn52dzpwz2hx0wr34682cl83nar7qsacsn70z9h443a30j" + }, + "recipe": { + "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "discover-my-major": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/discover-my-major.git", + "sha256": "3617d6b327669a1f461b7c2afae734a0ae61765865e52bf20f0b53cbe9750bb1", + "rev": "57d76fd21ec54706289cf9396fc871250569951e" + }, + "recipe": { + "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "makey" + ] + }, + "helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm.git", + "sha256": "6e2d8f6da0794c20011078721bd99d7c6d781913bb41631d9801539bcff038a2", + "rev": "97e8ffaed3c5959e9c16e7a0e45cc0702218b2cc" + }, + "recipe": { + "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.9.0", + "deps": [ + "async", + "cl-lib", + "emacs", + "helm-core" + ] + }, + "pastelmac-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmastenbrook/pastelmac-theme-el.git", + "sha256": "fbaa77eb1c048c220b3a2d4d452704fc820a34c515f53b17a6b19dc0272544f3", + "rev": "bead21741e3f46f6506e8aef4469d4240a819389" + }, + "recipe": { + "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "emacs" + ] + }, + "omni-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-scratch.el.git", + "sha256": "9b94338cc888b0d568f185edf63640235d09eff61f57e863de5162b87a2dab77", + "rev": "517b340427d5906002234832a01d0bc1ad27bac5" + }, + "recipe": { + "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "flycheck-hdevtools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-hdevtools.git", + "sha256": "63a24a61e5f085f5ea331720572d204b9f7c22bd5b4b2d23ec582315c46bd58c", + "rev": "fbf90b9a7d2d90f69ac55b57d18f0f4a47afed61" + }, + "recipe": { + "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "flycheck" + ] + }, + "blank-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/blank-mode.el", + "sha256": "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv" + }, + "recipe": { + "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "sly-company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/sly-company.git", + "sha256": "8b18fdc2924a4db9174903c50194c22f5b208ea0d75bfd6a796cc27e9d4fdda6", + "rev": "930e14fee9cdc837ae26299c7f5e379c53cee1af" + }, + "recipe": { + "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "company", + "emacs", + "sly" + ] + }, + "ht": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/ht.el.git", + "sha256": "1023cef7c2bea2f7fdbcb7d3ae0fea049025163110bde867390c21b0d629c498", + "rev": "285c8752b7d3ab4b3d0c53bab6ba05d328577960" + }, + "recipe": { + "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "elisp-slime-nav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/elisp-slime-nav.git", + "sha256": "190432d15eb8f247c2f70494ec6c5e3be322acf3cf37ab1d87abde884f43157d", + "rev": "551a6045969756d4aaee9e82b44cfbcdd0670cea" + }, + "recipe": { + "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "cl-lib" + ] + }, + "vlf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/vlfi.git", + "sha256": "28905e61d18364dad24c84cdb6e16f8b8629f1943246db810c99bd55f2b05450", + "rev": "4eaf763cadac62d7a74f7b2d2436d7793c8f7b43" + }, + "recipe": { + "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.7", + "deps": [] + }, + "recover-buffers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tripleee/recover-buffers.git", + "sha256": "8261f36205282759cc5ce1a53360921ef6c78e025b0d00d9707479a61f49b274", + "rev": "a1db7f084977697081da3497628e3514e032b966" + }, + "recipe": { + "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "evil-args": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wcsmith/evil-args.git", + "sha256": "f8ab4dd53906d144dcd7f9b4ea8bff321e5835fef68bd105b1f464eb89e207da", + "rev": "2a88b4d19953a11227cc1e91973b92149116f44c" + }, + "recipe": { + "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "evil" + ] + }, + "framemove": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/framemove.el", + "sha256": "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7" + }, + "recipe": { + "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "real-auto-save": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chillaranand/real-auto-save.git", + "sha256": "b503ad1809b4e47696453f2733ba25780511122204585f283ff04114b0c045cd", + "rev": "879144ca7e9bfa09a4fb57d5fe92a80250311f1e" + }, + "recipe": { + "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "ebib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/ebib.git", + "sha256": "52070bc8cc4dee4afe52cf317ce9618a7971fa7a74e2477210257eb636d9fb4b", + "rev": "e9f92df575d747992e9ada768b18dee475cfee55" + }, + "recipe": { + "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.5.2", + "deps": [ + "dash", + "emacs", + "parsebib" + ] + }, + "multiple-cursors": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/multiple-cursors.el.git", + "sha256": "55cf8411e303ac0aa66fb79b064515007764ce6b334e2570cfcef747bb4c976a", + "rev": "d17c89e41847cf9292004590ba5b1c8cec0b1c50" + }, + "recipe": { + "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [] + }, + "tss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-tss.git", + "sha256": "2f494cd01294af2b7cf5ac4ebc7121cf0a56c97286b9964afacb4fe895facc9e", + "rev": "1f302deea3d74462c71a9c62031f48b753e8915f" + }, + "recipe": { + "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.0", + "deps": [ + "auto-complete", + "json-mode", + "log4e", + "yaxception" + ] + }, + "isearch+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/isearch+.el", + "sha256": "1cg5rvc16ljncini13fpwmzfhp3zy9rd1jvdd3jxpdkqzw07rnc6" + }, + "recipe": { + "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "espuds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ecukes/espuds.git", + "sha256": "4f911064d51a6c3b2e83a9dbf1dee68d3d82c861462b0bd7b0025dac9a303f2b", + "rev": "1405972873339e056517217136de4ad3202d744a" + }, + "recipe": { + "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.3", + "deps": [ + "dash", + "f", + "s" + ] + }, + "nav-flash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/nav-flash.git", + "sha256": "e9e1539e0cdf380336e1fef5262861cd030c1e485da712159c1b865bc04b2187", + "rev": "9054a0f9b51da9e5207672efc029ba265ba28f34" + }, + "recipe": { + "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "persp-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/projectile.git", + "sha256": "eb88b89c18ca127127e1f2692cfd4fe5670a8058635bc06f3ebd241f78a5f8e8", + "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" + }, + "recipe": { + "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13.0", + "deps": [ + "cl-lib", + "perspective", + "projectile" + ] + }, + "osx-location": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/osx-location.git", + "sha256": "45887a5fb8868effa5ec922e8b6e2e6e1eae8ab8d5a20fc8070cbaa10d0de36d", + "rev": "110aee945b53ea550e4debe69bf3c077d940ec8c" + }, + "recipe": { + "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "unify-opening": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/unify-opening.git", + "sha256": "a0cc3b3d75245449d11d248393559309a8128b325765c26065df04c6b4a9174b", + "rev": "2812e43029cab7183197ce5e3c9577856bfd22c5" + }, + "recipe": { + "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [ + "emacs" + ] + }, + "ghc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kazu-yamamoto/ghc-mod.git", + "sha256": "0e7502f6d4f53fbbe726defd908ecb56d19e51e8de05f9584a933f9c8900f4a1", + "rev": "edfce196107dbd43958d72c174ad66e4a7d30643" + }, + "recipe": { + "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "5.4.0.0", + "deps": [ + "haskell-mode" + ] + }, + "ninja-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/martine/ninja.git", + "sha256": "682b909572969af73598fef130057939dda7edaa050598004ce5c1e15a31587e", + "rev": "484c16336f19bd8970bb6e75322d61b92a229899" + }, + "recipe": { + "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.0", + "deps": [ + "emacs" + ] + }, + "el-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/el-x.git", + "sha256": "be3e1fd3fdecf88972e5a39699e0cc32be17d15d63c9be3066ff7335cc13b04b", + "rev": "e96541c1f32e0a3aca4ad0a0eb382bd898250163" + }, + "recipe": { + "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [] + }, + "migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/migemo.git", + "sha256": "54bf4e6497259bccc4328198dc61dfc9fe59899f9aaaa9baae9c485e3d2c6bb2", + "rev": "97e07796573c4c47f286bfe8eeb6428cb474526e" + }, + "recipe": { + "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.9.1", + "deps": [] + }, + "screenshot": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/screenshot.el", + "sha256": "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw" + }, + "recipe": { + "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "easy-repeat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/easy-repeat.el.git", + "sha256": "d83ec91b67193972bc80ec2c5303ac7e726132d4d4ebf47306b8671cb42d75a1", + "rev": "060f0e6801c82c40c06961dc0528a00e18947a8c" + }, + "recipe": { + "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "emacs" + ] + }, + "doremi-frm": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi-frm.el", + "sha256": "0p2wcyb1cqa6b0lvrc83wj6xwl8gnmfg12k1q36scq2y430qbmdc" + }, + "recipe": { + "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "doremi", + "faces+", + "frame-fns", + "hexrgb" + ] + }, + "pophint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-pophint.git", + "sha256": "052d51374b546e3c41b3776490c6bd7e65f377f4c197a708a53dd50e24d644ee", + "rev": "28dc6a76e726f371bcca3160c27ae2017324399c" + }, + "recipe": { + "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.3", + "deps": [ + "log4e", + "popup", + "yaxception" + ] + }, + "shell-command": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/shell-command.el", + "sha256": "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l" + }, + "recipe": { + "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "filesets+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/filesets+.el", + "sha256": "0vqmz5rac2fgry1mzg3hnp0w65x6va471f982g9i8fn70ws46ww2" + }, + "recipe": { + "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "find-file-in-project": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/find-file-in-project.git", + "sha256": "9825101aa84dbe21ac8e32a3da663deb6f938cbf4d21ff32dace55ecde45b9c6", + "rev": "cb809569bf299663b2dce8501d9faa321484e5c4" + }, + "recipe": { + "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "4.4", + "deps": [ + "emacs", + "swiper" + ] + }, + "paren-face": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/paren-face.git", + "sha256": "d8eb61608b21ddcaa6248c91eaab5e993c842aedcb567bd59ce41a77946f6f0c", + "rev": "835d817295d81e2a6def9beb37f05aaf97870e86" + }, + "recipe": { + "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "writeroom-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/writeroom-mode.git", + "sha256": "79ba5d92c52f0177173ab77bea25d31be1e8451a260074f4138ad0fe8c198f17", + "rev": "48b179879c6614afcae3fc4386fd88b52b2bcc17" + }, + "recipe": { + "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.1", + "deps": [ + "emacs", + "visual-fill-column" + ] + }, + "use-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/use-package.git", + "sha256": "9c0497e725200d62ddde6b5a78f3de03a401c218aad860295a2f85f316787c1f", + "rev": "2b077f6e485e8c5c167413c03246068022b6bc71" + }, + "recipe": { + "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1", + "deps": [ + "bind-key", + "diminish" + ] + }, + "highlight-defined": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-defined.git", + "sha256": "f9d8003c5d13a502e43a8486319b1e8697f88f6dad71dec02fcde66282e29f21", + "rev": "9cc03c7136b56c04ea053fbe08a3a4a6af26b90e" + }, + "recipe": { + "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.5", + "deps": [ + "emacs" + ] + }, + "historyf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-historyf.git", + "sha256": "aab86167c113a0a62554782106f3f0379edfa905996f27155aad6338695cffe7", + "rev": "64ab6c9d2cd6dec6982622bf675326e011373cd2" + }, + "recipe": { + "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.9", + "deps": [] + }, + "ess-smart-underscore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/ess-smart-underscore.el.git", + "sha256": "e4409ae5fe34272139df497b4795119e6843393012f075ee1afc75f26c336bab", + "rev": "ef18a160aeb3b1a7ae5fe93759f8e92147da8746" + }, + "recipe": { + "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.79", + "deps": [] + }, + "autofit-frame": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/autofit-frame.el", + "sha256": "14iajfdf59lc9ik6spv4sq3v0ji1dmhfl1zwhcz2bkypxlbg1v3s" + }, + "recipe": { + "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "fit-frame" + ] + }, + "narrowed-page-navigation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/narrowed-page-navigation.git", + "sha256": "2ad758a65a6aefe32afd4d81f085f34819321ab851978986cb513e5bb64ab3d3", + "rev": "b215adbac4873f56fbab65772062f0f5be8058a1" + }, + "recipe": { + "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "conkeror-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/conkeror-minor-mode.git", + "sha256": "1daa70ef6be34ddadcd1f2d1d952940691b20875dc50a126949c02bb42c7e36b", + "rev": "476e81c27b056e21c192391fe674a2bf875466b0" + }, + "recipe": { + "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.2", + "deps": [] + }, + "pycarddavel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/pycarddavel.git", + "sha256": "21ddbbcb4570eab716489a06f3f117fa22d194f8071c33b463d4abb117a52432", + "rev": "6ead921066fa0156f20155b7126e5875ce11c328" + }, + "recipe": { + "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "emacs", + "helm" + ] + }, + "bookmark+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/bookmark+.el", + "sha256": "1qp84qzywc9nzb8n6j6cl99g7z88355ypw2fr4vpwy6n863a4b7l" + }, + "recipe": { + "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ert-expectations": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ert-expectations.el", + "sha256": "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7" + }, + "recipe": { + "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "multi-eshell": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/multi-eshell.el", + "sha256": "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl" + }, + "recipe": { + "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "emoji-cheat-sheet-plus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/emacs-emoji-cheat-sheet-plus.git", + "sha256": "b37b411b274dae0044b547b6262c69d59c023de5c2a8133d4adbdedd415567e6", + "rev": "96a003127d646a2683d81ca906a17eace0a6413e" + }, + "recipe": { + "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.1", + "deps": [ + "emacs", + "helm" + ] + }, + "helm-proc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/markus1189/helm-proc.git", + "sha256": "3cee3afc60d00121b9816f6ff9b750edc14df3464764d113d12fda62554dd52d", + "rev": "babf86d7d0e1f325f18095a51116c49cda2c5fec" + }, + "recipe": { + "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "helm" + ] + }, + "evil-lisp-state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-lisp-state.git", + "sha256": "7e4b29c5af8da8ddf3c81ae4de191464584aefad3019199b7aab445e45f9c52f", + "rev": "e5792ec68a5615bd07bf2c6e9eb3f49d1bc7810d" + }, + "recipe": { + "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "7.1", + "deps": [ + "evil", + "evil-leader", + "smartparens" + ] + }, + "popwin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/popwin-el.git", + "sha256": "fae0e823054c93634d9c9b066ee34b2527057ba6e329670b4b8c68f8725bd718", + "rev": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304" + }, + "recipe": { + "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "py-isort": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/py-isort.el.git", + "sha256": "9811dcb72ebdcc395c509b4cf461e43c428bda95839c844198983979c4bd9d3e", + "rev": "cfbb576784fe4501909c15299607ce2a2d0bf164" + }, + "recipe": { + "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [] + }, + "paredit": { + "fetch": { + "tag": "fetchgit", + "url": "http://mumble.net/~campbell/git/paredit.git", + "sha256": "7587cd2cf6e5b245678bbca8cbad07db8576ff976a504cd8d6e52fa85cf99f8f", + "rev": "82bb75ceb2ddc272d6618d94874b7fc13181a409" + }, + "recipe": { + "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "24", + "deps": [] + }, + "lispy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/lispy.git", + "sha256": "d531a0386bd43cf9dc07fefba888e123efc5f76191dbc3cdeb402fca03dc4cd4", + "rev": "7756a8fbbadbebbd5e20768569ed92ad6c402c5c" + }, + "recipe": { + "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.26.0", + "deps": [ + "ace-window", + "emacs", + "hydra", + "iedit", + "multiple-cursors", + "swiper" + ] + }, + "request-deferred": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-request.git", + "sha256": "5770398cb264a41fa229e0ad3da7845816b1787ee0211f3e89335bd157730d46", + "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff" + }, + "recipe": { + "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "second-sel": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/second-sel.el", + "sha256": "0ar60sqzlyrhvlg0mxfbc8c824lqglq07gf8lccjabnpwilz3ksd" + }, + "recipe": { + "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ace-flyspell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/ace-flyspell.git", + "sha256": "5b874784db3c741cd4b8011412faa2fd16038c73cb9622e9ab392fdf102df0df", + "rev": "a850fa913b3d1bab4c00bacee41da934929cef52" + }, + "recipe": { + "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "ace-jump-mode" + ] + }, + "list-unicode-display": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/list-unicode-display.git", + "sha256": "9cabc1843adc47260f747119a772c0747b1542509ac3ee86ad04228d5623d616", + "rev": "59770cf3572bd36c3e9ba044846dc420c0dca09b" + }, + "recipe": { + "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "import-popwin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-import-popwin.git", + "sha256": "3c80d5bde60376a0288f8114b70cde44052255e85112bf5441ef88e5386f9a79", + "rev": "34c3b34ffcadafea71600acb8f4e5ba385e6da19" + }, + "recipe": { + "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.09", + "deps": [ + "cl-lib", + "popwin" + ] + }, + "company-tern": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/company-tern.git", + "sha256": "eb6238510b90a088c6274cbbfb3ac89252a6595babbac827311397d97fac34ca", + "rev": "9a2cb8427a1a93c9c5021c01df1b47c69d79e176" + }, + "recipe": { + "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "cl-lib", + "company", + "dash", + "dash-functional", + "s", + "tern" + ] + }, + "lit-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HectorAE/lit-mode.git", + "sha256": "8d8763461bf259d7b73e787c061d0208b2a49ded5f5fe6db0642b6f26c9c2057", + "rev": "c61c403afc8333a5649c5421ab1a6341dc1c7d92" + }, + "recipe": { + "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "w32-browser": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/w32-browser.el", + "sha256": "1cpy3c0aj265wda9bz6b88i73mr9xi8gm1cp0q72ikhz43kszihx" + }, + "recipe": { + "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "miniedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/miniedit.git", + "sha256": "7881377b008565aab55a6b080b7256f8e7163e6e511c024ab61278fa4cfaa0a0", + "rev": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3" + }, + "recipe": { + "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "magit-gh-pulls": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/magit-gh-pulls.git", + "sha256": "5f48eec8bab6112027e780147909eabf1d1ffcdd1892e17b39ea66f5a75038a6", + "rev": "e4a73781e3c1c7e4a09232b25e3474463cdf77b6" + }, + "recipe": { + "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.2", + "deps": [ + "emacs", + "gh", + "magit", + "pcache", + "s" + ] + }, + "highlight-current-line": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-current-line.el", + "sha256": "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c" + }, + "recipe": { + "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "window+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/window+.el", + "sha256": "1mq8nrcypfm8na1qg0dykp6r1mfraix2jp1xc0lkx4wn620mp9cz" + }, + "recipe": { + "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "firestarter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/firestarter.git", + "sha256": "a5440aa9844cb4da97f0cae46f74f405c24e1ddee76214afb47bead50bad1969", + "rev": "4b7428477980e12578ebbbb121115696b352d6b2" + }, + "recipe": { + "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.4", + "deps": [] + }, + "adoc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sensorflo/adoc-mode.git", + "sha256": "ef489ede62f3ab9872e3f0d46476d4bc7465eb329794504cf60570a95498d4ef", + "rev": "b6d54d9007b97f2553c238e0c36586079b666f4f" + }, + "recipe": { + "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.4", + "deps": [ + "markup-faces" + ] + }, + "racer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/racer-rust/emacs-racer.git", + "sha256": "ecbbfd283aaa4b9a9b4c1ef0b70f360f9438aa5203c7a7ace375588500df3df5", + "rev": "9b7b4b1e8b04f630d29f771ad268025ff9380236" + }, + "recipe": { + "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "dash", + "emacs", + "rust-mode", + "s" + ] + }, + "simplezen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/simplezen.el.git", + "sha256": "0b9b25303f7f9249cfab0cfba666d163c5906d056f274fb405ad410a7cfe277e", + "rev": "c0ddaefbb38fcc1c9775434f734f89227d246a30" + }, + "recipe": { + "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "geiser": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jaor/geiser.git", + "sha256": "6797b8641ea3db9c0ba9b1a813b854c4d985c981627ceed24e6ea6d7d895e13d", + "rev": "c6f17b25200e36f80d812684a2127b451fc11817" + }, + "recipe": { + "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.1", + "deps": [] + }, + "tup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/tup-mode.git", + "sha256": "1e1d0b7e88d251cac0cc92dc15d4781c9982bfd6a9a4f074e343ec6289004d2b", + "rev": "945af9c8e6c402e10cd3bf8e28a9591174023d6d" + }, + "recipe": { + "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [] + }, + "voca-builder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yitang/voca-builder.git", + "sha256": "99e71a4a4830c50e16a9b7fba589e88ed7eb02fbefe03cde47fac7547e9cb809", + "rev": "224402532da28e45edd398fda61ecbddb97d22d3" + }, + "recipe": { + "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "replace+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/replace+.el", + "sha256": "0hma5mb2r33yfdlwb1ls1gjnqps00sri6q0hkksngvz67hka9mx4" + }, + "recipe": { + "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "zotelo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vitoshka/zotelo.git", + "sha256": "59e3b6235b3aa83f5c15cf44047a438c5a1f744d4ba5d620abad5514dd5f8d63", + "rev": "56eaaa76f80bd15710e68af4a1e585394af987d3" + }, + "recipe": { + "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "helm-dash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/areina/helm-dash.git", + "sha256": "1173196e72b346f6c8ccad84aaf2ae9afa7641e4d2d009124d6aee642e81e1b3", + "rev": "a0f5d6539da873cd0c51d8ef714930c970a66aa0" + }, + "recipe": { + "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [ + "cl-lib", + "helm" + ] + }, + "vcomp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/vcomp.git", + "sha256": "5d60359b2ac0fb802252a6d0e721ce4477d728e89248b31eb091f1b97d1bbd1d", + "rev": "a12363c3a66576b68955abcadf7280de32eaa051" + }, + "recipe": { + "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [] + }, + "jsx-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jsx/jsx-mode.el.git", + "sha256": "6642871575e4dc2b620102e6adb3ea6b2945fc97e5e1b8d0c473cf8739e80cd8", + "rev": "1ca260b76f6e6251c528ed89501597a5b456c179" + }, + "recipe": { + "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.10", + "deps": [] + }, + "tool-bar+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tool-bar+.el", + "sha256": "1ml95y7275yd2jn4zf96rg0pwxsv8vnwv52mvr9j0j9mqkw1d0d9" + }, + "recipe": { + "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "auto-async-byte-compile": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/auto-async-byte-compile.el", + "sha256": "1c8nm4sz9a67q8w0b1jahg5ldy185zws7nilj9yv3miklg07zq17" + }, + "recipe": { + "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "gradle-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jacobono/emacs-gradle-mode.git", + "sha256": "0a1924a9b90be4ce1c8ab2299c575e97b69e1a708f2642a055d15c1d0ca7cefb", + "rev": "579de06674551919cddac9cfe42129f4fb0155c9" + }, + "recipe": { + "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.5", + "deps": [ + "s" + ] + }, + "redo+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/redo+.el", + "sha256": "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3" + }, + "recipe": { + "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ess-R-data-view": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/ess-R-data-view.el.git", + "sha256": "bd0ca4fdc08c39091bbf7efec921fcf6f5399155ab105e6f182dcf278a5742f9", + "rev": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9" + }, + "recipe": { + "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "ctable", + "ess", + "popup" + ] + }, + "keyfreq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dacap/keyfreq.git", + "sha256": "a9033ddc9e79f5cb19423299a4a31c8b0ab815a6fb645b7d452c3ac2f4ebd9ea", + "rev": "0c0a36a895a34d802614d34d7a3cc986e502ea35" + }, + "recipe": { + "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.7", + "deps": [] + }, + "sourcetalk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/malroc/sourcetalk_emacs.git", + "sha256": "db4aedbdd1c170ef5535037faa3f6439514314306cd0f5c32c69c17c7ca89848", + "rev": "aced89fa8776e6d5e42dad4a863e159959f08de6" + }, + "recipe": { + "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [ + "request" + ] + }, + "archive-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/archive-region.el", + "sha256": "1mhj6x0n2ya3xd7gykmkcf70ji5g8qd8xawz764ykdlcribpsq52" + }, + "recipe": { + "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "kaesar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", + "sha256": "62a355528a4ebc5372e37fe82287322ae8d335ee901da6122370be827bb159bd", + "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" + }, + "recipe": { + "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0", + "deps": [ + "cl-lib" + ] + }, + "image-dired+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-image-diredx.git", + "sha256": "49545268e75f114af06c9a47f7610ffa8b0f7e034dfa1c913a45340a74525ed8", + "rev": "b68094625d963056ad64e0e44af0e2266b2eadc7" + }, + "recipe": { + "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.2", + "deps": [ + "cl-lib" + ] + }, + "anything-sage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/anything-sage.git", + "sha256": "6008694aeeaecbfe1e34dcc9d092272bf4e9c45f73b94c9022aa6cfc6e54e903", + "rev": "8335657d3f0611bd5fc8858160bbe87dfdbaf0f2" + }, + "recipe": { + "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "anything", + "cl-lib", + "sage-shell-mode" + ] + }, + "ignoramus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/ignoramus.git", + "sha256": "f22b83d6fa7e6a7ea0141829aebecf77b68b11e8e8ae17471af01c1324380c25", + "rev": "37536286eb1da6d7bb9590e039485c456fdfd245" + }, + "recipe": { + "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [] + }, + "telephone-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dbordak/telephone-line.git", + "sha256": "f469dfcafb19dfbf0a4abf8eb665b543e92fb6ff807816ed289622f5e3d2b405", + "rev": "70c113bea37719c83961023afd893044398e681d" + }, + "recipe": { + "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "cl-lib", + "eieio", + "emacs", + "s", + "seq" + ] + }, + "ac-php": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xcwen/ac-php.git", + "sha256": "5422b6878294e4887152670078cac5c74583464f88b4916674f6d08bb6a9ec25", + "rev": "64cfba5b405edb864e4146dd7e00aa8c070a544a" + }, + "recipe": { + "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.0", + "deps": [ + "auto-complete", + "emacs", + "f", + "php-mode", + "s", + "xcscope", + "yasnippet" + ] + }, + "helm-ghq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/emacs-helm-ghq.git", + "sha256": "5f78b84edc5f65d423f4c58205a800d7392832a5009f16a393bd95c724a8ad2a", + "rev": "15621d1b2cd37c2ff0f73666c38acf7aae46bbc4" + }, + "recipe": { + "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.0", + "deps": [ + "helm" + ] + }, + "haskell-tab-indent": { + "fetch": { + "tag": "fetchgit", + "url": "https://git.spwhitton.name/haskell-tab-indent", + "sha256": "02786f437bbbbb221c9c810a8d110bb4af172b986733ac35c932b18b38af7201", + "rev": "38d50e9bb8f64ba13ffbd9bcff32db820403a0fc" + }, + "recipe": { + "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "helm-gtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-gtags.git", + "sha256": "92377d12e8acc34107729331986dcf4d2c1fe635a8a982a446724e1731ebf6ab", + "rev": "9131a1439860198d51a9dfa6955c586da4bb60bd" + }, + "recipe": { + "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.1", + "deps": [ + "cl-lib", + "helm" + ] + }, + "company-cabal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/company-cabal.git", + "sha256": "bc468b71cbf701e60ac939f3612bd919bf598f2b0b5c6265a73824cc6832ef14", + "rev": "a570559ff92522598b5ed40e21c4539fffb3e976" + }, + "recipe": { + "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "company", + "emacs" + ] + }, + "idle-highlight-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/idle-highlight-mode.git", + "sha256": "3bb28e320531ef6fec9425bd64956fe298c73469c4dd4f1065b11d9ef50c9c74", + "rev": "c466f2a9e291f9da1167dc879577b2e1a7880482" + }, + "recipe": { + "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.3", + "deps": [] + }, + "highlight-blocks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-blocks.git", + "sha256": "859b45be7a7870c6eb72c1323ef5cf2259f39287083d11a7eb182109c094c530", + "rev": "9c4240a5d16008db430d1a81c76dad474d3deb0c" + }, + "recipe": { + "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.16", + "deps": [ + "emacs" + ] + }, + "simple-httpd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacs-http-server.git", + "sha256": "557c431a225d03402c88b9092f8e0690f4f8f1a6b9dbffa9d823ec63fdeb15e2", + "rev": "b191b07c942e44c946a22a826c4d9c9a0475fd7e" + }, + "recipe": { + "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.6", + "deps": [ + "cl-lib" + ] + }, + "actionscript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/austinhaas/actionscript-mode.git", + "sha256": "637d66175853b07020244a3bb28e67987b731a59d6f70be230b28e0f1164cb7f", + "rev": "fddd7220342d29e7eca734f6b798b7a2849717a5" + }, + "recipe": { + "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "7.2.2", + "deps": [] + }, + "sos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omouse/emacs-sos.git", + "sha256": "fefd31f120c54f8bda92c8bda463860029506364412a7cfe4eacf978c06fae61", + "rev": "c3906ca6872f460c0bdd276410519308626313f1" + }, + "recipe": { + "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "org" + ] + }, + "nasm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/nasm-mode.git", + "sha256": "54fadf6d2f216bb99c902b4e7829f25c48ad48a6c65fa4ee6d5e0d2b40c4e068", + "rev": "6e208d54eabe3339f22cd775f7e6237757f5eb36" + }, + "recipe": { + "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "emacs" + ] + }, + "markup-faces": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sensorflo/markup-faces.git", + "sha256": "d39e729436905b3bdc0555149e201a0f7d4d6906a8feae548099334642cd625a", + "rev": "c43612633c6c161857a3bab5752ae192bb03f5f3" + }, + "recipe": { + "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "better-registers": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/better-registers.el", + "sha256": "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh" + }, + "recipe": { + "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "calfw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-calfw.git", + "sha256": "1618583208d86e37c63f378a4e49c7abf6d55f9d54ea6802168a1d3526d566e7", + "rev": "50e0e0261568f84f31fe7f87c9f863e21d30132f" + }, + "recipe": { + "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5", + "deps": [ + "google-maps" + ] + }, + "tabbar-ruler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/tabbar-ruler.el.git", + "sha256": "ecabc3fcfdaf5dbf1ee44140ac109f0b10a6e162271f39ce4e24fb27923ea6f5", + "rev": "7df2e4814018e84ef9261d04a2ade8168a44e3d7" + }, + "recipe": { + "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.45", + "deps": [ + "tabbar" + ] + }, + "gruber-darker-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rexim/gruber-darker-theme.git", + "sha256": "6d66ed9cda0e2f29dd13e5951b67c389fe6c2e103772897abd834f3b1acb0092", + "rev": "0c08d77e615aceb9e6e1ca66b1fbde275200cfe4" + }, + "recipe": { + "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [] + }, + "orgbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuhito/orgbox.git", + "sha256": "d645666197b200f73a261b9bcde0462a9b83966da279ffb3b2ba561f300b52af", + "rev": "ecaf5a064431cf92922338c974df8fce1a8f1734" + }, + "recipe": { + "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [ + "cl-lib", + "org" + ] + }, + "mew": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kazu-yamamoto/Mew.git", + "sha256": "472471d59703eeead8b196ff50bdabdb4bdd9a74719131cc936dc1dbb22880dc", + "rev": "08289430ce14780a03789b71d2060ff4392fbae6" + }, + "recipe": { + "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "6.7", + "deps": [] + }, + "helm-circe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lesharris/helm-circe.git", + "sha256": "c015b68f0753bedd6fac4c4973624ec808edb758e177d5e54719977f4b6012c7", + "rev": "0b7ecf5380971ee7b6291fca6a2805c320638238" + }, + "recipe": { + "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "circe", + "cl-lib", + "emacs", + "helm" + ] + }, + "ruby-hash-syntax": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ruby-hash-syntax.git", + "sha256": "0620b9025720546eb6d9c3ecba6807400016d06384b892174d43c09cab7b100a", + "rev": "a0362c2dc449a1e67ef75ad736bcf8b03b083226" + }, + "recipe": { + "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "nodejs-repl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abicky/nodejs-repl.el.git", + "sha256": "6c3c0ab8b9e009eb895de250afec27cd9f0040c5d039420c80351c77164ed504", + "rev": "53a0d00d5854ac67d50dcf495e66f49a68e152e7" + }, + "recipe": { + "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [] + }, + "ido-completing-read+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", + "sha256": "2164bd3a82ddc9ec354f3f663139e004fa76cc5298756825acf044d78043ac3b", + "rev": "2e826e3f209cb5d2bc92bdbfd3b189d2c06ff51c" + }, + "recipe": { + "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.9", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "sekka": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiyoka/sekka.git", + "sha256": "a05a8b13447eb5df360340af354ba5d9ecbb0448e8ec0b819b9eda5d242dff1d", + "rev": "2b0facc87e743e21534672aadac6db3164e38daf" + }, + "recipe": { + "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.4", + "deps": [ + "cl-lib", + "concurrent", + "popup" + ] + }, + "auto-complete-exuberant-ctags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/auto-complete-exuberant-ctags.git", + "sha256": "20f7e9df1ebceaf947bed6656c166ecd5581fa3a49f1c2d46fe13983d2f30fbb", + "rev": "ff6121ff8b71beb5aa606d28fd389c484ed49765" + }, + "recipe": { + "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.7", + "deps": [ + "auto-complete" + ] + }, + "full-ack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/full-ack.git", + "sha256": "47b06985e251b76ccb3ce19a8723ae12e003c00d829d6b9e9011c98ed5a1c3a9", + "rev": "0aef4be1686535f83217cafb1524818071bd8325" + }, + "recipe": { + "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "helm-nixos-options": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/travisbhartwell/nix-emacs.git", + "sha256": "8d6225321be7a659bcbeaa9dd350b4fcb60e97d3aa866da224afe0e3decca7d2", + "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" + }, + "recipe": { + "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "helm", + "nixos-options" + ] + }, + "magit-annex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-annex.git", + "sha256": "3ff04fa5497c6f8f330408112edc4d3de9932224d2b73bc7b751118edea9c661", + "rev": "b51962dcc1080a35a91e2667f7c26fb33960c711" + }, + "recipe": { + "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [ + "cl-lib", + "magit" + ] + }, + "matrix-client": { + "fetch": { + "tag": "fetchgit", + "url": "git://fort.kickass.systems/personal/rrix/pub/matrix.el", + "sha256": "0516772e4aae604359bee659d101fb62b73cc9016cbbe0b749c77402954ec341", + "rev": "de09c69d2d5ca604839239fe49b10a2ed5ac2809" + }, + "recipe": { + "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "json", + "request" + ] + }, + "helm-hatena-bookmark": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/emacs-helm-hatena-bookmark.git", + "sha256": "baf5f298936fe6184dbad3f7a002ec23e4efe149badc69e930f52c663c93a408", + "rev": "497d33632f195354eaa24670db0804c846b7261b" + }, + "recipe": { + "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.4", + "deps": [ + "helm" + ] + }, + "emacsql-psql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "rev": "03d478870834a683f433e7f0e288476748eec624" + }, + "recipe": { + "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [ + "cl-lib", + "emacs", + "emacsql", + "pg" + ] + }, + "yaml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshiki/yaml-mode.git", + "sha256": "0d05b3b1e342c2caf3360a6fb67b3c537c3b015d81dcad8bacf5086a0b8837ee", + "rev": "a817e46cc55eb90b7e1dd7cff74e43e080f0f690" + }, + "recipe": { + "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.12", + "deps": [] + }, + "ncl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/ncl-mode.git", + "sha256": "ee518f4a920fa5aca844f3a11ee55a2110d7458a31e9f8a2e52dad3ad29aa868", + "rev": "4a1a3f133c8c74a01b5c527496b56052bacac2ab" + }, + "recipe": { + "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.99a", + "deps": [ + "emacs" + ] + }, + "go-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-go-direx.git", + "sha256": "29c5386d7a7b39db97a068c7cf6f51971836bf430015d379b597499da9c5a9e4", + "rev": "aecb9fef4d56d04d230d37c75c260c8392b5ad9f" + }, + "recipe": { + "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.04", + "deps": [ + "cl-lib", + "direx" + ] + }, + "doremi-cmd": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi-cmd.el", + "sha256": "1wmfkviyr5mp15aqh6qhmi7ykgcii1h85wxmsm7bxg9v2lzyckk2" + }, + "recipe": { + "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "doremi" + ] + }, + "shampoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dmatveev/shampoo-emacs.git", + "sha256": "cf57006de03c3c8d00fad29cba4ba0125113b1c02e839a295ef17ae2ed51e6e1", + "rev": "9bf488ad4025beef6eef63d2d5b72bc1c9b9e142" + }, + "recipe": { + "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [] + }, + "window-purpose": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmag/emacs-purpose.git", + "sha256": "603dd34a67b16a333909e9184156154e7c71e58bcec8ee4f4be6be6b268c6452", + "rev": "7e492cbdd4259a177625a3f47001d7281f295349" + }, + "recipe": { + "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4", + "deps": [ + "cl-lib", + "emacs", + "imenu-list", + "let-alist" + ] + }, + "boxquote": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davep/boxquote.el.git", + "sha256": "0863767f68628f52ebddc7b7abe921b672554c2ec30178d47845b01b2d9dc7e7", + "rev": "4c49b2046647ed187920c885e175ed388f4833dc" + }, + "recipe": { + "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.22", + "deps": [] + }, + "sticky": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sticky.el", + "sha256": "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy" + }, + "recipe": { + "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ein": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/millejoh/emacs-ipython-notebook.git", + "sha256": "c2c5dd3a02ea00e194a376d1d50ee4c0fd52f95b0c219c154eb8cdca094aada3", + "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" + }, + "recipe": { + "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "request", + "websocket" + ] + }, + "magic-filetype": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/magic-filetype.el.git", + "sha256": "e22ae243e841ddb4381ebf7e6cf5ce9e179e62d22769ba8687ff350c0cf18df5", + "rev": "1a3e425ab5b7b6614b7ece5885d23f12f45572f0" + }, + "recipe": { + "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "emacs", + "s" + ] + }, + "py-yapf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/py-yapf.el.git", + "sha256": "cb180d0d36b3b1568a741ea252fc8f942351d2554fd83a9b11fb5f8cf2d6c27e", + "rev": "766e57448639ff95eeb018f6d8bdf09170094218" + }, + "recipe": { + "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "paper-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cadadr/paper-theme.git", + "sha256": "83f357c3044453c03633c7967a905c75d9abb3670a218a18fa59382ad01312ba", + "rev": "551859066afe926380b6fcdc95851db45599944e" + }, + "recipe": { + "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "hexrgb": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hexrgb.el", + "sha256": "04maddrgvijimxc8i942h0f7448snqlgdsj3yc03izh6bimvkhk5" + }, + "recipe": { + "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "finalize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elisp-finalize.git", + "sha256": "2512e83da6a4bff10f56408acc58880743e05d69b03f002874a7da4512440436", + "rev": "72c8eaab3deb150ee2cf7f1473114cecffb5204a" + }, + "recipe": { + "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib", + "eieio", + "emacs" + ] + }, + "paredit-everywhere": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/paredit-everywhere.git", + "sha256": "878c101b8f9164f21156cf1926f382fc00454b4b77f2bb265b3e340813c52a4b", + "rev": "72b7cd5dcdc02233a32e9f1a6c2d21dc30532170" + }, + "recipe": { + "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "paredit" + ] + }, + "eval-in-repl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaz-yos/eval-in-repl.git", + "sha256": "94a9ce1251a57a407f77fc7f1590b510a35101bced6dceb32e80bf04451310e9", + "rev": "c79ba77bdd6f1534f379953fc6e0ec0e1c866151" + }, + "recipe": { + "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "dash", + "paredit" + ] + }, + "helm-perldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-perldoc.git", + "sha256": "dbcef6a645dbb2820af730d2c7929059064efd97e2cff72993eab8ee2e742afe", + "rev": "18645f2065a07acce2c6b50a2f9d7a2554e532a3" + }, + "recipe": { + "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.07", + "deps": [ + "cl-lib", + "deferred", + "helm" + ] + }, + "ttrss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pedros/ttrss.el.git", + "sha256": "cfec017bb5627cffe0aa80fb295166c76916c94e6b014a6ce8b82a959a9e1218", + "rev": "3b1e34518294a1fa6fa29355fd4e141f3fcaf3b6" + }, + "recipe": { + "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.7.5", + "deps": [ + "emacs" + ] + }, + "term-run": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/10sr/term-run-el.git", + "sha256": "63dab270c988b49df7b24b1fd72e486a0f27f876f738cbbf39bdc1f238936e03", + "rev": "9b20497bec2537ca6b36a66322a2d99107030679" + }, + "recipe": { + "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [] + }, + "smooth-scrolling": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aspiers/smooth-scrolling.git", + "sha256": "73eb1acf3991d1ee88c4bb7f3a019117b8e1e84e5f2850f897622c3b161c6e16", + "rev": "0d9b228f952c53ad456f98e2c761dda70ed72174" + }, + "recipe": { + "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.4", + "deps": [] + }, + "flymake-python-pyflakes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-python-pyflakes.git", + "sha256": "30c9c615b19605954b73955c05c2a92e18922109e0ec01cdff4f84766344174b", + "rev": "78806a25b0f01f03df4210a79a6eaeec59511d7a" + }, + "recipe": { + "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "flymake-easy" + ] + }, + "misc-fns": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/misc-fns.el", + "sha256": "1c46iwa6i08wsa0syrm0gxhyndrqlkmqpdj61rss7hbbf1066v86" + }, + "recipe": { + "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flycheck-cask": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-cask.git", + "sha256": "940783353a872ac592bf73616d863889858dec5e1abb1c93db859dc178093245", + "rev": "bad0b7bc25fdfc200ec383db852120aa0fcdba4b" + }, + "recipe": { + "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "el-get": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/el-get.git", + "sha256": "eebdbebb3a1e8a4e20d36c60c3b027caa1a18f94b7182f84d9e57847fc16b99b", + "rev": "bfffd553f4c72b818e9ee94f05458eae7a16056b" + }, + "recipe": { + "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "5.1", + "deps": [] + }, + "markdown-mode+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/markdown-mode-plus.git", + "sha256": "d9246f2221a8b4f7540e2400e37773d7abd3f47fea3e40b87bd380229d19b4a9", + "rev": "f35e63284c5caed19b29501730e134018a78e441" + }, + "recipe": { + "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "markdown-mode" + ] + }, + "feature-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/michaelklishin/cucumber.el.git", + "sha256": "87bf498a2b320331753bb41d7d1e8f4a9241e198f49a8f98491aed02def3b2b3", + "rev": "4bd8f19da816115094beb4b0e085822eb298ac37" + }, + "recipe": { + "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "dired-details+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-details+.el", + "sha256": "119x9mclyhxfp2zr5rmh5jxl2h2wb82phbm8kvlkxa4kcwaiw04y" + }, + "recipe": { + "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "dired-details" + ] + }, + "mouse3": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mouse3.el", + "sha256": "1jxqvhfjsnjdp0c0zndj7p77vxfscs4z4s7csrd8gi9cli8pmgwi" + }, + "recipe": { + "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "unkillable-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/EricCrosson/unkillable-scratch.git", + "sha256": "15e57c8ed17a82e1838a6dc119e23347d59e2018b2d1b127c2cb82eceb035cf0", + "rev": "4451f82eb98f9b159745ca1a79ac60b9d224fd5b" + }, + "recipe": { + "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "crm-custom": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/crm-custom.git", + "sha256": "7273029e19913ed73b54f1d645101f1981d5fc546dd433ec80c82d81292f643d", + "rev": "fbcf8bf3c87f56cb872d840dd79b6727b886e90d" + }, + "recipe": { + "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "ace-link": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/ace-link.git", + "sha256": "fffd40fc00e63aa64906c179f4860b674a3743fa6c551ddf32c13e021a3d22ec", + "rev": "f88b70fda761c235afe8d3f7735ef14bc82226f5" + }, + "recipe": { + "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "ace-jump-mode" + ] + }, + "anaphora": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/anaphora.git", + "sha256": "4d48342cc1ec113a33c08097e7b0a1fda2b6f1baf6d8e9c90951087dcdafcc13", + "rev": "20bf7dcfa502538d23525f0905b4f845d97993d3" + }, + "recipe": { + "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "wc-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/wc-mode.el", + "sha256": "15wz0c0rsn02zl6yr8mpwzy2hvp2146krhdbjpq63l75w4i98w4d" + }, + "recipe": { + "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "csv-nav": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/csv-nav.el", + "sha256": "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva" + }, + "recipe": { + "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "grass-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/tws/grass-mode.el", + "sha256": "0djv2ps2ahw9b1b5i45hgy7l7cch7cgh7rzq601c0r6vi7gm2ac5", + "rev": "aa8cc5eff764" + }, + "recipe": { + "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib", + "dash" + ] + }, + "fish-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wwwjfy/emacs-fish.git", + "sha256": "168c82e9499894fdd9aac5067e162b3de7b48adcee47062a505a2b8f100498ef", + "rev": "ac38e249dc260790ae32a24e101311990d9a84df" + }, + "recipe": { + "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "emacs" + ] + }, + "ercn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/ercn.git", + "sha256": "0011ce6ec929f164be91bca53aa03e1b3c3a6b5f683462e7e00d36e0968d56a6", + "rev": "73b00dadf83b97dd9edd8381a4b27f583c08b7f6" + }, + "recipe": { + "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [] + }, + "jump": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/jump.el.git", + "sha256": "02af5e8dc6e34432999b12a9cb6045a489192892191d6ec3af372db2a69f1aae", + "rev": "fb7355615276f00397b15182076bf472336448a9" + }, + "recipe": { + "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3", + "deps": [ + "findr", + "inflections" + ] + }, + "list-packages-ext": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/list-packages-ext.git", + "sha256": "98cf61b610d9ba668484977d3eaf7783525999480422b6b88355bdcee3c4eca4", + "rev": "344719b313c208c644490f8f1130e21405402f05" + }, + "recipe": { + "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "ht", + "persistent-soft", + "s" + ] + }, + "ert-junit": { + "fetch": { + "tag": "fetchgit", + "url": "https://bitbucket.org/olanilsson/ert-junit", + "sha256": "63a8fb532260f56569ce20f911788054624a7a29f149ed6036d9f997ae0457c3", + "rev": "341c755e7b60f8d2081303951377968b1d1a6c23" + }, + "recipe": { + "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "ert" + ] + }, + "clj-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clj-refactor.el.git", + "sha256": "4f83a8dfec5cffa881549e6809f3790cc3a83fd7f9b4a24f6d7160c256636525", + "rev": "a0a35b6fb0a2f31973d5e5b711f0aac0314d7168" + }, + "recipe": { + "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [ + "cider", + "dash", + "edn", + "emacs", + "multiple-cursors", + "paredit", + "s", + "yasnippet" + ] + }, + "org-autolist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/calvinwyoung/org-autolist.git", + "sha256": "d12aa1c4b5fe20505b1c8a276cf917da774e00c05df3d7006c7bd7b5ffc3ce48", + "rev": "da332fadcd9be4c5eb21c5e98c392b89743750b2" + }, + "recipe": { + "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13", + "deps": [] + }, + "evil-escape": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-escape.git", + "sha256": "c81e8fac620edf194bafe61a644a3eaa0c13bf8248adce22cae5545a001ad58e", + "rev": "befb07d03c0c06ff5c40eb9cdd436c97fc49f394" + }, + "recipe": { + "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.12", + "deps": [ + "cl-lib", + "emacs", + "evil" + ] + }, + "camcorder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/camcorder.el.git", + "sha256": "a6a12faf8631c81462a70aa31648d2bd56cc212fd359a03390c0b142473d226d", + "rev": "a2b5e0629ee3c01ead684e148965ac68e533efbd" + }, + "recipe": { + "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs", + "names" + ] + }, + "make-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/make-color.el.git", + "sha256": "bbef730fb994e9db2bd09d90373d19dc17b1bf002ea1da8a146700e90ff90ffa", + "rev": "b19cb40c0619e267f2948ed37aff67b712a6deed" + }, + "recipe": { + "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "german-holidays": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rudolfochrist/german-holidays.git", + "sha256": "019c482e07a935dd513147977c37e43671f921d8c30439027d949bb634e1840c", + "rev": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc" + }, + "recipe": { + "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "traad": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/traad.git", + "sha256": "1d4f3a933f0200f939ccd2f05fc5f417dbd9856f56ba293be05a849c01202048", + "rev": "8852b4dc2b2113a1597301c0b03712b65f50747f" + }, + "recipe": { + "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "save-sexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/save-sexp.git", + "sha256": "8b3f7a809e341c5a676c952eb4c2d1f712e7d9008c592d4755972151583e09be", + "rev": "dce78d8630af6b2e29e3ec83b819a3d688d37dfc" + }, + "recipe": { + "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "fringe-helper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/fringe-helper.el.git", + "sha256": "afbb216b3f16c9ddd88ebb1446871f85d9bca0121e5a27e41d988b5d37586313", + "rev": "0f10a196c6e57222b8d4c94eafc40a96e7b20f1b" + }, + "recipe": { + "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [] + }, + "bufshow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pjones/bufshow.git", + "sha256": "56868174258e16f4778ff77218915116322c06c1264a7e3b1b193d8cafac8485", + "rev": "d8424e412d63dcc721c64fbd2ddd2420a03b4e8b" + }, + "recipe": { + "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "plsql": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/plsql.el", + "sha256": "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1" + }, + "recipe": { + "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ebal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/ebal.git", + "sha256": "2084ec30b161f996b19f5f8d5be6479e757424bfb2fa55398bfb802292b04c9a", + "rev": "bd8bca3a57d390c22862179db0afca7008831dd7" + }, + "recipe": { + "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "emacs", + "f", + "ido-completing-read+" + ] + }, + "coffee-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/defunkt/coffee-mode.git", + "sha256": "e8ab4c5468b7eedbc5953ca77879e830e96187630df33ad0ec9a7079ef0e2b9f", + "rev": "d19075264dc1f662e2282ca42ce70be0eae61b2a" + }, + "recipe": { + "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "usage-memo": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/usage-memo.el", + "sha256": "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i" + }, + "recipe": { + "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "smartparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/smartparens.git", + "sha256": "b64e03b27e05b8c67d6912f31dfdaf7d67810a1fbc49170a9035612b9328df35", + "rev": "6b9b415b3655ac92631c8c5ca1247eebc68b7110" + }, + "recipe": { + "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.3", + "deps": [ + "cl-lib", + "dash" + ] + }, + "grunt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gempesaw/grunt.el.git", + "sha256": "fc191985f898438a6128abaedeb60871f70c623ecbf03a36bb879a848960ea6b", + "rev": "e27dbb6b3de9b36c7fb28f69aa06b4b2ea32d4b9" + }, + "recipe": { + "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.2", + "deps": [ + "ansi-color", + "dash" + ] + }, + "buffer-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/buffer-utils.git", + "sha256": "be3edaa95e32fa7196e64eebe4c659ed63f038a204497fe637f4a4cbb44c0b2a", + "rev": "b4d325543e25518d725a2122b49cd72a0d6a079a" + }, + "recipe": { + "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "elscreen-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/robario/elscreen-persist.git", + "sha256": "67b1cd5f0daadc0bed867eb4446872c0b4d306dd2eff5a9514ac6dfdd11fc83d", + "rev": "2d7c6c2934e4b5c6f4b125eb5fdfc888c4b647dc" + }, + "recipe": { + "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "elscreen", + "revive" + ] + }, + "pyenv-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/pyenv-mode.git", + "sha256": "f6d072de53846a738cfbd07a1e38c8f073eecfaedd6d0bd766064ef064d5860b", + "rev": "b96c15fa1b83cad855e472eda06319ad35e34513" + }, + "recipe": { + "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "pythonic" + ] + }, + "iplayer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/csrhodes/iplayer-el.git", + "sha256": "660f0f7dc828a941c7ae9e3db4f3fee797512931fe281d1078be7d4464b46d10", + "rev": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a" + }, + "recipe": { + "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "ruby-tools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ruby-tools.git", + "sha256": "abd2a379479429d82892de60b4aa83968e851ae9e1de944ba13e0a9ae1f18613", + "rev": "6e7fb376085bfa7010ecd3dfad63adacc6e2b4ac" + }, + "recipe": { + "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [] + }, + "multi-term": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/multi-term.el", + "sha256": "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim" + }, + "recipe": { + "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "hardcore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/hardcore-mode.el.git", + "sha256": "5486b1bc48f0704d5cb4d64ea2e2724f3ec1f0306686a66874e4bd276cba8622", + "rev": "5ab75594a7a0ca236e2ac87882ee439ff6155d96" + }, + "recipe": { + "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "e2wm-R": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/e2wm-R.el.git", + "sha256": "a48258ed800969ebff2e9052f4ff94e07e1e02d941cb36bae8d987d0ae39b94f", + "rev": "fe17906bf48324032a1beaec9af32b9b49ea9125" + }, + "recipe": { + "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "e2wm" + ] + }, + "fold-this": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/fold-this.el.git", + "sha256": "162a940af9e144455901322628779754c14a6094427ae8912cd41a73fd5d6ab1", + "rev": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a" + }, + "recipe": { + "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [] + }, + "mowedline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/retroj/mowedline.git", + "sha256": "ec66747edd88411037a184ad454a954ca90c5fc773952f7ebf222a840c92f309", + "rev": "c299991ace6f55e9edbf26c1d53b054873899101" + }, + "recipe": { + "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.8", + "deps": [] + }, + "keychain-environment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/keychain-environment.git", + "sha256": "bc7116e1cac43a4002c83c0c45b25a30ae93057ca4e28d80c36c20d678d0061e", + "rev": "40eba65a3d5581473d6a30f3a7abf73e5832b8c8" + }, + "recipe": { + "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2.0", + "deps": [] + }, + "parent-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/parent-mode.git", + "sha256": "d15abdfd5808c0979276b95163f128917f2f4e2f34dd4c31d7a667efe961ab44", + "rev": "db692cf08deff2f0e973e6e86e26662b44813d1b" + }, + "recipe": { + "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3", + "deps": [] + }, + "git-gutter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-git-gutter.git", + "sha256": "5106367b34f9cc9f9f11aea7aa209570cdbed4fce1b44baedca0be76c70bccf3", + "rev": "febe69d909beb407d07dfc1b273ae7b7719fdd7c" + }, + "recipe": { + "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.85", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "highlight-cl": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-cl.el", + "sha256": "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw" + }, + "recipe": { + "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "stylus-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianc/jade-mode.git", + "sha256": "7690294b61606fc289fc7f0c8c07153674d4c17687427c4f520810a170682b4f", + "rev": "4e7a20db492719062f40b225ed730ed50be5db56" + }, + "recipe": { + "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "sws-mode" + ] + }, + "peg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ellerh/peg.el.git", + "sha256": "7660e0ed59cbe62385b850ecdc0a2b0c5bad7466d8e3f7d32615d845203b5f4e", + "rev": "081efeca91d790c7fbc90871ac22c40935f4833b" + }, + "recipe": { + "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [] + }, + "cask": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cask/cask.git", + "sha256": "f5c62c805dd9b801d0dddb23cce334449d857d95c93df8957c948cdbfab6d8a8", + "rev": "8337237449446e186ccd5ade0b0dc8c6ea7bd728" + }, + "recipe": { + "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.4", + "deps": [ + "cl-lib", + "dash", + "epl", + "f", + "package-build", + "s", + "shut-up" + ] + }, + "ace-jump-helm-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/ace-jump-helm-line.git", + "sha256": "7bc9141a395baba7f07eada0f873d5c8958dd470c6e95c30bdbe0d81e5812d67", + "rev": "8259c2bd34486c3929c3425f3354d70cdb478c69" + }, + "recipe": { + "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.3", + "deps": [ + "avy", + "helm" + ] + }, + "puml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skuro/puml-mode.git", + "sha256": "7f6fbbef5db6d7aa9af8133f5b9543415634f35b43f5edcc06e8ceed5cb98295", + "rev": "9d3b5e326d1e68f87711c2ccb0920e2f5db5550b" + }, + "recipe": { + "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.4", + "deps": [] + }, + "ac-html-csswatcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/ac-html-csswatcher.git", + "sha256": "2ec03946eb13fe462a9f8bd4cacefe5a925d843e27169f3a675506e67de7285c", + "rev": "dadc3c595cf1708291096c03987f1981f3cabc6b" + }, + "recipe": { + "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.7", + "deps": [ + "web-completion-data" + ] + }, + "viewer": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/viewer.el", + "sha256": "0lns0ic3zjz1km02674d9hxgnp6wlhk168wyr6h4vhpr8a71x9mb" + }, + "recipe": { + "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "gmail2bbdb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/gmail2bbdb.git", + "sha256": "3d74c42b85a8d8f4dd5c93d6ea08ac1d306e33d5b66e0ed9e9d6143faa28d65c", + "rev": "2043fb8ee90c119b13bc8caf85fdf0a05f494b98" + }, + "recipe": { + "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [] + }, + "flymake-easy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-easy.git", + "sha256": "bc47240a0f4542b365fc9ec65f083bf0990714df032a15370ac0aa964bd2ae2d", + "rev": "2a24f260cdc3b9c8f9263b653a475d90efa1d392" + }, + "recipe": { + "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10", + "deps": [] + }, + "org-repo-todo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/org-repo-todo.git", + "sha256": "29df65e0cbc2df34850fac68fd08af6c4cbba79d758093066d25d1cdbf44880d", + "rev": "904a26089d87db59a40421d6f857b189e70dfbe3" + }, + "recipe": { + "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [] + }, + "anything": { + "fetch": { + "tag": "fetchgit", + "url": "http://repo.or.cz/r/anything-config.git", + "sha256": "86b90766ccb31a492998299092a3d0b892a8ac0bdb8e1833ef75fa6d79c7c721", + "rev": "6b9718fba257e6c2912ba70f9895251ab1926928" + }, + "recipe": { + "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.9", + "deps": [] + }, + "robe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgutov/robe.git", + "sha256": "e539d39b77031e8ee46a51c4bcf47f64354a55c1909e13b5aa483de91e806ffd", + "rev": "c5a0ae6f68c699ec3cdbb73a3e01e76f62d75f48" + }, + "recipe": { + "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.8", + "deps": [ + "inf-ruby" + ] + }, + "git-auto-commit-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ryuslash/git-auto-commit-mode.git", + "sha256": "44c1a10ad5486a133e9a53d6e75367ef4b8075b14b320411e633ef86cce1b016", + "rev": "075e5f9ded66c2035581a7b216896556cc586814" + }, + "recipe": { + "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "4.4.0", + "deps": [] + }, + "company-go": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nsf/gocode.git", + "sha256": "e8463e8d696e0c74212f19452b9f734c46c5a7085bd2be0b558fa996ee4bc5fb", + "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1" + }, + "recipe": { + "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150303", + "deps": [ + "company" + ] + }, + "google-translate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atykhonov/google-translate.git", + "sha256": "62a51789cbbd8eb1bc9ce4949a8de7a9cd7c3aba844d84ac64ac9367a3cf5ddd", + "rev": "e3f3981895d829a05f6f92d4db065c4b46076ff7" + }, + "recipe": { + "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.11.2", + "deps": [] + }, + "batch-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/batch-mode.el", + "sha256": "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p" + }, + "recipe": { + "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "puppet-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/puppet-mode.git", + "sha256": "25ed7a919c57291225bdaaa035913ca255592915f0964e2814625a44a0001913", + "rev": "d943149691abd7b66c85d58aee9657bfcf822c02" + }, + "recipe": { + "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "cl-lib", + "emacs", + "pkg-info" + ] + }, + "live-code-talks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/live-code-talks.git", + "sha256": "7308fdfadbba90d014c2e97343a81ad2fa22e09d25b6957c7dd6c8d1e4371bfa", + "rev": "3a2ecdb49b2651d87999d4cad56ba8f1004c7a99" + }, + "recipe": { + "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "emacs", + "narrowed-page-navigation" + ] + }, + "unicode-fonts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-fonts.git", + "sha256": "bb7c92bbcc216a5c9556adfcfeecd87e43e91eecce2d68d4bf76eefca41da6bc", + "rev": "a36597d83e0248bd0e6b2c1d5fb95bff72add527" + }, + "recipe": { + "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.8", + "deps": [ + "font-utils", + "list-utils", + "pcache", + "persistent-soft", + "ucs-utils" + ] + }, + "eww-lnum": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/eww-lnum.git", + "sha256": "6257b99a0c332bd0884dc946bfe708a5d8fa5512c98825b6615f6ba1475c463f", + "rev": "daef49974446ed4c1001e0549c3f74679bca6bd3" + }, + "recipe": { + "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "mbe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ijp/mbe.el.git", + "sha256": "51544f5e6f4bfec4bbead3dd6f9b274ea2b061154c0a5ebcf28fd9e2a468fc01", + "rev": "b022030d6e26198bb8a93a5b0bfe7aa891cd59ec" + }, + "recipe": { + "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "relative-line-numbers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/relative-line-numbers.git", + "sha256": "0aa8d25c1e14ce6eb731656e34d8e21aa914d3a94bb058c25e796ed18e860ee5", + "rev": "64157db08b0c2f5fada3209fc8d3e4b4c7429978" + }, + "recipe": { + "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [ + "emacs" + ] + }, + "ob-sml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/swannodette/ob-sml.git", + "sha256": "abd8f7fa17db90ee93ea9fafec7027349121dfb3d32276caa65d667ad1a36e40", + "rev": "09b503201be6e06a5ed8d6b52345dc886c202028" + }, + "recipe": { + "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [ + "sml-mode" + ] + }, + "mu4e-alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iqbalansari/mu4e-alert.git", + "sha256": "ca6cd79207129903cb6492f31b62a9f64fddd86f47cc5c7972c1d8cf8e332f73", + "rev": "83e6232b43902c7124fea16145de0da881bfe865" + }, + "recipe": { + "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "alert", + "emacs", + "s" + ] + }, + "ham-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/ham-mode.git", + "sha256": "afec221ea694652de7261f11d786f039b64a813ce2ddf553d0eaa2409faa7d34", + "rev": "3a141986a21c2aa6eefb428983352abb8b7907d2" + }, + "recipe": { + "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.2", + "deps": [ + "html-to-markdown", + "markdown-mode" + ] + }, + "modeline-posn": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/modeline-posn.el", + "sha256": "1c0pkk4jnpqs3r46yjh9srwy3ql6pkjv55m85w49kxvcflmipl9i" + }, + "recipe": { + "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "e2wm-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-direx.git", + "sha256": "2a4aae973518f82e78efb1437f81ebb74d1ff47ba3c18cedd0a4fdc4b2682726", + "rev": "f319625b56c44e601af7c17fc6dbb88e5d70ebae" + }, + "recipe": { + "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "direx", + "e2wm" + ] + }, + "macros+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/macros+.el", + "sha256": "1nf8hgaig26plb7dbn81gw7q4dmnr5gh90lcm82aml8h8z5ab78q" + }, + "recipe": { + "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "multi-web-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/multi-web-mode.git", + "sha256": "cb7c7a0e0951eaf303f6cc0fba1e6ebd14fb6269e594c9cd7effdd23781b3eb5", + "rev": "0517b9e2b3052533ac0cb71eba7073ed309fce06" + }, + "recipe": { + "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [] + }, + "ctags": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/semente/ctags.el", + "sha256": "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf", + "rev": "afb16c5b2530" + }, + "recipe": { + "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [] + }, + "history": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/boyw165/history.git", + "sha256": "618185ca1012fcbf09f62d8205a653f401302769dad09d452168ee830d82a7d1", + "rev": "adef53ecc2f6067bb61f020a2b66c5185a51632d" + }, + "recipe": { + "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "emacs" + ] + }, + "auto-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/auto-dictionary-mode.git", + "sha256": "ae6333ddbb5f6723426199aeb6ce9c4b43adf037044e2f1f42a0201ecf0a2325", + "rev": "0e3567a81f7bb0ad53ed9f20c7d3d1ac40c26ad1" + }, + "recipe": { + "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/auto-complete/popup-el.git", + "sha256": "d12353d7ad8a31d90a050f57bae599c037ce3dc1eab991ce51e757de26934a08", + "rev": "46632ab9652dacad56fd961cd6def25a015170ae" + }, + "recipe": { + "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.3", + "deps": [ + "cl-lib" + ] + }, + "evil-commentary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/linktohack/evil-commentary.git", + "sha256": "aa50444330267f7698e00ccd308a39ff7c8b888ea5f7cc75912828531caa3ee2", + "rev": "122880a6721fcf16479f406c78c6e490a25efab0" + }, + "recipe": { + "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.1", + "deps": [ + "evil" + ] + }, + "shut-up": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cask/shut-up.git", + "sha256": "ef77b4f00b402e7b73ebd5097b707a52bf559a614eed8ffaf9619bc45a34eee8", + "rev": "dccd8f7d6af2dde96718f557b37bc25adc61dd12" + }, + "recipe": { + "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "orglink": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/orglink.git", + "sha256": "27358837b625d751bd9eedce5718e35247124d08df866ee8ace332fde9fa7003", + "rev": "4f3750227b9279f248bc8ee5724d3c27ea97e2e1" + }, + "recipe": { + "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.3", + "deps": [ + "dash", + "org" + ] + }, + "flymake-shell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-shell.git", + "sha256": "c99eef92e5f5cf76baf48079cac84d4053ecfbbe9b06413d06c8cf70197a613c", + "rev": "ec097bd77db5523a04ceb15a128e01689d36fb90" + }, + "recipe": { + "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "flymake-easy" + ] + }, + "rdf-prefix": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/simenheg/rdf-prefix.git", + "sha256": "12d75b5284119befdfa31f1d9c59f4382a3c40b9959c924f4721a30ee2772565", + "rev": "1ab1464172c7563a7dbf1224572e4ffbfc6608e6" + }, + "recipe": { + "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "bs-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/bs-ext.el", + "sha256": "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw" + }, + "recipe": { + "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/helm-migemo.git", + "sha256": "bafb099d717477922dab0b60b7c157a617a739f278059eaebc4028671544a80c", + "rev": "2d964309a5415cf47f5154271e6fe7b6a7fffec7" + }, + "recipe": { + "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.22", + "deps": [ + "cl-lib", + "helm-core", + "migemo" + ] + }, + "gather": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-gather.git", + "sha256": "e6065490459b5f760315f59fcd4509691342e067fabbec38bdcbb04592f82be1", + "rev": "303af57dd2ae0fc1363a3d1a84d475167f58c84a" + }, + "recipe": { + "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "test-simple": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocky/emacs-test-simple.git", + "sha256": "78cd3787dc6f8ea58d97b651dbb955b729dabf70c8f958b3592b46025326ab07", + "rev": "75eea25bae04d8e5e3e835a2770f02f0ff4602c4" + }, + "recipe": { + "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "projectile-rails": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/asok/projectile-rails.git", + "sha256": "eeeca7ba65658f2a34a07304e1ef513ad969ff3d0d6d8b1544068d079fa8051d", + "rev": "dee51e39003489ece8077750d3cf93dee6b373fa" + }, + "recipe": { + "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.7", + "deps": [ + "emacs", + "f", + "inf-ruby", + "inflections", + "projectile", + "rake" + ] + }, + "tabulated-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/tabulated-list.el.git", + "sha256": "ef3cf42c91dcd61c0fcfbaf63c052418d50518957a99193d1b94450f3ad4c120", + "rev": "b547d9b728935102d1c418bc0e978c221c37f6ab" + }, + "recipe": { + "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0", + "deps": [] + }, + "hippie-expand-slime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/hippie-expand-slime.git", + "sha256": "79c1a6513a11db6c45de6dc7e0a4c6cd62bac0ee9983e8f33b5c29369f22f357", + "rev": "de31fbc9f9d55891a006463bcee7670b47084015" + }, + "recipe": { + "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "httpcode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rspivak/httpcode.el.git", + "sha256": "13e7b30753627a9c4aaf71351ae39dc5043b707edce3c89c5ff684e8101a36c1", + "rev": "2c8eb3b5455254ba70fb71f7178886bfc2d3af90" + }, + "recipe": { + "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "keyset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HKey/keyset.git", + "sha256": "b6149b699968327244a0d350c06aa5383bc4e54bda88b3179d83b674a50691d8", + "rev": "25658ef79d26971ce41d9df207dff58d38daa091" + }, + "recipe": { + "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "cl-lib", + "dash" + ] + }, + "editorconfig-fnmatch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/editorconfig/editorconfig-emacs.git", + "sha256": "d5afed5b0b24092c366cb57bcf7205c39f640e27186ff9b4af57b60e5a8d7aed", + "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" + }, + "recipe": { + "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "cl-lib" + ] + }, + "smart-compile": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/smart-compile.el", + "sha256": "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd" + }, + "recipe": { + "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "git-gutter-fringe+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/git-gutter-fringe-plus.git", + "sha256": "c9524466c513f3eb2cae4c0a716dcf27958ce813b5b152661888f7a3ee92f1b0", + "rev": "ce9d594c0189e78d78df26a0c26bbcf886e373cd" + }, + "recipe": { + "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "fringe-helper", + "git-gutter+" + ] + }, + "milkode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/emacs-milkode.git", + "sha256": "5711ac50043143a6d889c838cb9bced63d334fd747d22acae49a89aa7b25e6e1", + "rev": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513" + }, + "recipe": { + "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "palette": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/palette.el", + "sha256": "13k1l2cs45fiwd0zayjfzxxrx1pqds3mkxrflmxy8y0piwx6mr1w" + }, + "recipe": { + "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "hexrgb" + ] + }, + "egg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/byplayer/egg.git", + "sha256": "c8bafd333056af0f212a12dc838f5e41054bcad7aa2d91997b849e3e83ba1064", + "rev": "499894195528203cfcf309228bf7578dd8cd5698" + }, + "recipe": { + "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.9", + "deps": [] + }, + "aok": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/aok.el", + "sha256": "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g" + }, + "recipe": { + "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "tern": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marijnh/tern.git", + "sha256": "79f3f4ccd845f186a2afce2086efc112ff3373718ec6dca8c09696bd2aa6563a", + "rev": "d4803588928d22cb18044b2e20fedd97e2d348ee" + }, + "recipe": { + "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.16.0", + "deps": [ + "cl-lib", + "emacs", + "json" + ] + }, + "helm-swoop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/helm-swoop.git", + "sha256": "812eb2e11a853434780b470c8cd261317a5df3d3a3b6a937ca7d0955d3cf72d2", + "rev": "d834b05538dd3381c68f1260d39d3a7eb6a8f7f7" + }, + "recipe": { + "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.1", + "deps": [ + "emacs", + "helm" + ] + }, + "skeletor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/skeletor.el.git", + "sha256": "013c5f11804d976a736e90fa72d48e6b3751af36963e5249be0059db6c6230aa", + "rev": "253b89e199d0251e3eeb6b268fe60a3337fdf5bb" + }, + "recipe": { + "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.2", + "deps": [ + "cl-lib", + "dash", + "emacs", + "f", + "let-alist", + "s" + ] + }, + "counsel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/swiper.git", + "sha256": "75b1febbf2e1ed9dc88ed2d8e6a3ce9ae842b8588ea0b6f19a526f14e0a050cd", + "rev": "706349fcfae297ee285552af9246bc0cf00d9b7f" + }, + "recipe": { + "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "emacs", + "swiper" + ] + }, + "visual-fill-column": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/visual-fill-column.git", + "sha256": "02187d43ae2604aaf3f4b86cf5a5ed0370ebe51d52c0b99604a50979bd9f29a2", + "rev": "261e27c062fbfd59ab20c9a084c35b99bcec598d" + }, + "recipe": { + "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5", + "deps": [ + "emacs" + ] + }, + "android-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remvee/android-mode.git", + "sha256": "52f94fbda0a39a3a2e2bcae154fe4af7f348744ef440948f67709c10a1a4d00c", + "rev": "146476c5ae958715520bec2b7f8de6b30c48c19f" + }, + "recipe": { + "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [] + }, + "undercover": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sviridov/undercover.el.git", + "sha256": "8a5681728eba3202f7446e2f24b1efa8f9394ea44a145b31d82b06caaef3d6bb", + "rev": "068d39745304a06152c3e68a0b6772394c9e6d39" + }, + "recipe": { + "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [ + "dash", + "emacs", + "shut-up" + ] + }, + "clojure-quick-repls": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/symfrog/clojure-quick-repls.git", + "sha256": "edfca4eb968e22ada89bcfc8affb2ddfafd9b7e78b9a6345eb642474a527836b", + "rev": "90f82e294cfdfb65231adc456177580cd69bfc00" + }, + "recipe": { + "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cider", + "dash" + ] + }, + "rase": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/rase.git", + "sha256": "7d0158108df01dcd9fb769f1209379368ea5b8c6fd36c9e0edba5d3a831926c4", + "rev": "59b5f7e8102570b65040e8d55781c7ea28de7338" + }, + "recipe": { + "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "js2-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/js2-mode.git", + "sha256": "77fa5fa2cfd6e89ca94448e22675a939cfa6845d38e5cf33cab3d1e4800e1505", + "rev": "5c9d8b82dddec2fab370ec8798569c7fc5698093" + }, + "recipe": { + "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150909", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "zones": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/zones.el", + "sha256": "0fr6lbx62qa8acqa4s4wrg0nlga2pm3vy04j17wyhcxdjszan4yd" + }, + "recipe": { + "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "window-end-visible": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/window-end-visible.git", + "sha256": "17e52995dfe349e457d51972dcff24fead1fcce31136582465017e7a98a0a096", + "rev": "bdc3d182e5f76e75f1b8cc49357194b36e48b67c" + }, + "recipe": { + "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "rbenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senny/rbenv.el.git", + "sha256": "f75fbfdfccb073a576191d6e8c0c4d7ff6149b13fdb6351913759b6d29d98625", + "rev": "a613ee1941efa48ef5321bad39ac1ed8ad1540b8" + }, + "recipe": { + "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [] + }, + "org-agenda-property": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/org-agenda-property.git", + "sha256": "ae73db4105d7dcc4323b04a3b0aca0698ac318f8f60fffc66282dd745d352913", + "rev": "2ff628a14a3e758863bbd88fba4db9f77fd2c3a8" + }, + "recipe": { + "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [ + "emacs" + ] + }, + "dart-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/dart-mode.git", + "sha256": "9ab9e6471817ef07837b2eb1c71a3feca72746a799624f9dbdf702e65b4976ee", + "rev": "07edf4d4448ede128d13c27bd76cf06f5ef5bb3b" + }, + "recipe": { + "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.14", + "deps": [ + "cl-lib", + "dash", + "flycheck" + ] + }, + "disk": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/disk.el", + "sha256": "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv" + }, + "recipe": { + "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "navorski": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/navorski.el.git", + "sha256": "3314722d6bcfc0bba4fc3f9e4d583f07a9b3a6c5465b5047795c079d7839c6f8", + "rev": "4546d4e4dfbec20ee8c423c045408a3388a9eab9" + }, + "recipe": { + "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.7", + "deps": [ + "dash", + "multi-term", + "s" + ] + }, + "info+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/info+.el", + "sha256": "1c95876j5ya0na5rf7dlxchhawl85k25bjxh02kqcsrdirc1q86g" + }, + "recipe": { + "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "yasnippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/yasnippet.git", + "sha256": "bdc884416100f3348425ae6bf192c4e193c46aa9374636f87f68bc25c192fdaf", + "rev": "be2f815c43deb74e0f809ed47debc4aa2e67ea1e" + }, + "recipe": { + "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0-a", + "deps": [] + }, + "erc-crypt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atomontage/erc-crypt.git", + "sha256": "5fdb5494dec923210ff033ffe5a2a156aa0c1826d768f2d205793e93a33685f7", + "rev": "1573189240d8b58e65385414d9a9514238c77805" + }, + "recipe": { + "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "log4e": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/log4e.git", + "sha256": "79d89c0be7fecac981473b599748f910759ec45e2105e00dd0c9589e7a18dfef", + "rev": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb" + }, + "recipe": { + "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [] + }, + "graphviz-dot-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ppareit/graphviz-dot-mode.git", + "sha256": "400f68d6ab5b4dfcabf7f60e28868708f4378efe0f57cd42b8247c4f233166fe", + "rev": "7301cc276206b6995d265bcb9eb308bb83c760be" + }, + "recipe": { + "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "pcomplete-extension": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/pcomplete-extension.git", + "sha256": "a6aec98ea424314d9cb00ac8301df7190d275a80ecbb525eedb8818f00231740", + "rev": "839740c90de857e18db2f578d6660951522faab5" + }, + "recipe": { + "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "melpa-upstream-visit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/melpa-upstream-visit.git", + "sha256": "edce5f30431cffe2d6722185233ec23834b4b068f074a78a7bedf27aaf299789", + "rev": "7310c74fdead3c0f86ad6eff76cf989e63f70f66" + }, + "recipe": { + "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "s" + ] + }, + "col-highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/col-highlight.el", + "sha256": "1gs30lb038f01czrr1d95ngwvc53pd6sfq2vhcspq8d12062lx6n" + }, + "recipe": { + "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "vline" + ] + }, + "paxedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/promethial/paxedit.git", + "sha256": "dc36ce89eac555eb6590ce23d726ca837123e701e625cfa79998c515bc1d5bae", + "rev": "7a69ff07d97955fb5412ba1d5259810609e3bca0" + }, + "recipe": { + "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.6", + "deps": [ + "cl-lib", + "paredit" + ] + }, + "e2wm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-window-manager.git", + "sha256": "821047f9a6595307a9a77210577810876ddffba52cc803fee872a581c7ed2e4e", + "rev": "397cb6c110c9337cfc1a25ea7fddad00f168613c" + }, + "recipe": { + "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "drupal-spell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arnested/drupal-spell.git", + "sha256": "3d822e71bc43966200e24b263cf01eae109899ad41772e63ccb97936f77dca7a", + "rev": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae" + }, + "recipe": { + "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [] + }, + "org-ac": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/org-ac.git", + "sha256": "8a8d8051c563335ce70063186fee43ee1476a3386f2421f29b8068d3848d93f5", + "rev": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a" + }, + "recipe": { + "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "auto-complete-pcmp", + "log4e", + "yaxception" + ] + }, + "omnisharp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/OmniSharp/omnisharp-emacs.git", + "branchName": "master", + "sha256": "dfe1c23076c449c53a3c47834ce0fa68d5e4c871f9c65defa2ded21bbdfa5d94", + "rev": "725796278fa8a391e244f2e50676dd6d6b67585d" + }, + "recipe": { + "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.9", + "deps": [ + "auto-complete", + "cl-lib", + "csharp-mode", + "dash", + "flycheck", + "json", + "popup", + "s" + ] + }, + "project-local-variables": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/project-local-variables.el", + "sha256": "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw" + }, + "recipe": { + "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "top-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/top-mode.el", + "sha256": "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn" + }, + "recipe": { + "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "highlight-numbers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-numbers.git", + "sha256": "51b9f792b46afbc833e3bdc20bf685a482d17d8c1e931e1731800c087461d039", + "rev": "e1245b27a732ec43c1562f825533fe147759d24e" + }, + "recipe": { + "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "emacs", + "parent-mode" + ] + }, + "org-toodledo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-toodledo.git", + "sha256": "cc4ef1e544ec8e4b7211846834ff6264ad4570f0a0a9bf27805a934a65d9668f", + "rev": "5473c1a2762371b198862aa8fd83fd3ec57485a4" + }, + "recipe": { + "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.0", + "deps": [] + }, + "js2-highlight-vars": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/unhammer/js2-highlight-vars.el.git", + "sha256": "14a1d10bb1286993acd40d57b23b65763889f00056abd470df0fe091bbfa5a64", + "rev": "bf38d12cf65eebc8b81866fd03f6a0389bb2a9ed" + }, + "recipe": { + "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "js2-mode" + ] + }, + "processing-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ptrv/processing2-emacs.git", + "sha256": "3bee45e8318bd2e4be3c8800d7dbde61dbe0ebba4d02c4a3778b3b58f7526038", + "rev": "228bc56369675787d60f637223b50ce3a1afebbd" + }, + "recipe": { + "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "yasnippet" + ] + }, + "csharp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/josteink/csharp-mode.git", + "sha256": "ae137909e1a2019982e32bb982d3bbc2ee6b38d4909fc357bccc6bda3cf03ba9", + "rev": "0a61f21e499d99962eca907c7f7eab0149febaa1" + }, + "recipe": { + "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.11", + "deps": [] + }, + "all-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/all-ext.el", + "sha256": "10j70bwa28xpmqwigvls76jg6vz0iky88lmkq4pk35bg3rz09r4m" + }, + "recipe": { + "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "all" + ] + }, + "mallard-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jhradilek/emacs-mallard-mode.git", + "sha256": "923546e797da36a160676ff32b39d273e42f453f8b188d6a6f497dfda576e288", + "rev": "152cd44d53c881457fe57c1aba77e8e2fca4d1b0" + }, + "recipe": { + "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [] + }, + "ess-R-object-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/ess-R-object-popup.el.git", + "sha256": "60df192d711bc1315d15fa2f915d885d5f6feb2fcf4e009d89142a6e945a1761", + "rev": "7e1f601bfba72de0fda44d9c82f96028ecbb9948" + }, + "recipe": { + "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "ess", + "popup" + ] + }, + "solarized-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/solarized-emacs.git", + "sha256": "6d9ac8162cd0a643f0b05719aadb54879bfd8ad627993fd0c6bef5cfbdcb605e", + "rev": "210dbef0186f87048d50face41d1d374d6154b3a" + }, + "recipe": { + "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.2", + "deps": [ + "dash" + ] + }, + "osx-trash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/osx-trash.el.git", + "sha256": "658f200965c24fc81da1b2586a45e9a52145878a4d45c0f8d4021bfd9e4bda14", + "rev": "a5ecee69f514ad9ee78fd9d6b20f3dd49512f5b4" + }, + "recipe": { + "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "emacs" + ] + }, + "org-readme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/org-readme.git", + "sha256": "ea00c174f79fa66b8b8a008aef13d829c5d8c636b673aa6b95896eac01770f42", + "rev": "15054e42351b5ec6b629c55760a578516e035355" + }, + "recipe": { + "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130322.926", + "deps": [ + "header2", + "http-post-simple", + "lib-requires", + "yaoddmuse" + ] + }, + "org2jekyll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/org2jekyll.git", + "sha256": "70bf8d119ad989dc63073d5fe6f556353e7411a3d766115108c819ef985ddb7e", + "rev": "a12173b9507b3ef54dfebb5751503ba1ee93c6aa" + }, + "recipe": { + "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.8", + "deps": [ + "dash-functional", + "deferred", + "s" + ] + }, + "bing-dict": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/bing-dict.el.git", + "sha256": "7aaa16adc9f3ce582f9f514f598415b27e640d4410b31feb0cdace5da03a8f26", + "rev": "3d55a306fa50ffad4b374fbf716b5b5200661770" + }, + "recipe": { + "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [] + }, + "ctable": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-ctable.git", + "sha256": "c32bcaf3750bc16e9c6b31937e8bffcaa8218618bfb1d56ffecbf850fd44f88f", + "rev": "08a017bde6d24ea585e39ce2637bebe28774d316" + }, + "recipe": { + "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [] + }, + "typing": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/typing.el", + "sha256": "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31" + }, + "recipe": { + "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ess": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-ess/ESS.git", + "sha256": "5c5030f0ecae91e8205b4161ec2ec570b2eb9f69d1ad93843a44023757d1c810", + "rev": "82d13c36f43efb4ef32fbb515ca58f63b2f0c06e" + }, + "recipe": { + "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "15.09", + "deps": [ + "julia-mode" + ] + }, + "ocp-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/OCamlPro/ocp-indent.git", + "sha256": "1fbff9a43a5fae87cca3ab2c58a9262e16eb9bd9dc9bfcbb25fe59f04ff15c45", + "rev": "e6f15bdf7d5ad6e4addbf24dce74823f953db900" + }, + "recipe": { + "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.2", + "deps": [] + }, + "hoa-pp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hoaproject/Contributions-Emacs-Pp.git", + "sha256": "ac709ddea5e6c3a2b8749def0b2be47025cc1ad7d07d3d0f37bea358e796e12f", + "rev": "a72104a191214fba502653643a0d166a8f5341d9" + }, + "recipe": { + "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "emacs", + "names" + ] + }, + "eldoc-extension": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eldoc-extension.el", + "sha256": "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch" + }, + "recipe": { + "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-w32-launcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/helm-w32-launcher.git", + "sha256": "ce9120037581dbc1933f57fc6593704d6f0d4e853a61ee0814e7947079b2e2b0", + "rev": "01aa370a32900e7521330fba495474f2aa435e19" + }, + "recipe": { + "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.6", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "ac-ispell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-ispell.git", + "sha256": "38f3d3b576924df827b74a32f28d9435ab7b64c89a35dcabc63e4901bc441beb", + "rev": "a8c84f7f0b96dc091abc51b1698f24e9c994e6aa" + }, + "recipe": { + "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.07", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "alect-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/alect-themes.git", + "sha256": "bd768c6f895ecf0a94cdf82a30909256e93c2fbc45e801718c697388679948f3", + "rev": "db7cc6ebf695a71881d803966d672f80fe967da6" + }, + "recipe": { + "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [ + "emacs" + ] + }, + "jira": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/jira.el", + "sha256": "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz" + }, + "recipe": { + "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "dired-k": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-dired-k.git", + "sha256": "216c4ff5dbd2fe19600985090438aeb6573dde7806f94136385834011c4a4bd8", + "rev": "f4f4a1fe3155c35e212d3e16ed5f7c89c0b32282" + }, + "recipe": { + "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.16", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "legalese": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/legalese.el", + "sha256": "0vjf2f5kpmgnw7904jsv2wnn6dcv654v7h1v917wmj72sy941xml" + }, + "recipe": { + "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "project-persist-drawer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/project-persist-drawer.git", + "sha256": "3b9f9a8389df069d7e547a28db72c4b4dae3ce987cf20ad5f42e387b18cfa152", + "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" + }, + "recipe": { + "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "project-persist" + ] + }, + "dos": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dos.el", + "sha256": "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp" + }, + "recipe": { + "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "image-archive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-image-archive.git", + "sha256": "082f3909f9d2ef3b2fc047279e105b40a2daafc3d989fa53682c2425d9efbb46", + "rev": "699e967fa7b1dfcce2bf2ec878e74f4238bb6e45" + }, + "recipe": { + "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.7", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "el-spice": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vedang/el-spice.git", + "sha256": "736d6849712dff42d5bb4b821fe8cd5fc19cec08518357147c3d08e39ae45929", + "rev": "53921ffe9a84d9395eea90709309d3d5529921ea" + }, + "recipe": { + "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [ + "thingatpt+" + ] + }, + "package-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/package-utils.git", + "sha256": "8a93e3ea9776d00042616b08c04059bda9a9896d30b841dc9e8ec85ef101148d", + "rev": "4a56f411f98fd455556a3f1d6c16a577a22057a2" + }, + "recipe": { + "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "epl" + ] + }, + "open-junk-file": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/open-junk-file.el", + "sha256": "1vjmgayksdgg54b46aqmvhd7a9arjx9p3jyrjs2z9262f6r288lj" + }, + "recipe": { + "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "beginend": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/beginend.git", + "sha256": "5a4f1087045590e3a6c0090a753b656a8eb532620866dfeaa903bcf4cc5a1cfe", + "rev": "de3833a1a651532e76df668bd92cfa07893501f1" + }, + "recipe": { + "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "emacs" + ] + }, + "org-if": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/elzair/org-if.git", + "sha256": "dccac99a2e668144209efa19c764640473d9614777bad32b747a245249d53ab7", + "rev": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8" + }, + "recipe": { + "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "tidy": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tidy.el", + "sha256": "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa" + }, + "recipe": { + "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "vimgolf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/timvisher/vimgolf.git", + "sha256": "eeb55f04c955f62b031d36dfce3e4edb64a3781a29161825fc26e5b1099cbe49", + "rev": "9fd8aaf68bc69d1dd628de4c7cbb070e366545a9" + }, + "recipe": { + "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10.0", + "deps": [] + }, + "ac-geiser": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xiaohanyu/ac-geiser.git", + "sha256": "ac74a897e03d3ab03c2be01a4a88e578a9d7167c6c6456fadc0c66eea9e0e959", + "rev": "0e2e36532336f27e3dc3b01fff55ad1a4329817d" + }, + "recipe": { + "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "auto-complete", + "geiser" + ] + }, + "git-dwim": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/git-dwim.el", + "sha256": "074k1r8rkvyhhwnqy4gnyd7shidxgc25l1xq4hmnwjn13nsyqfnv" + }, + "recipe": { + "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "tuareg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ocaml/tuareg.git", + "sha256": "bad0045a9fc7eca014c5b57812d44303fac6cb0a17494aecabf303ed3ae04870", + "rev": "f97b800db79d9856c70b4988bd39bd7aa623158e" + }, + "recipe": { + "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.9", + "deps": [ + "caml" + ] + }, + "twilight-anti-bright-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jimeh/twilight-anti-bright-theme.git", + "sha256": "4eb0ba1e308d302261e7b70e7e76f3004a7d08baa19ad6cbb66df488308efed5", + "rev": "16d4ff2606789b506f0d2f53d12f02d5b1b64f9b" + }, + "recipe": { + "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [] + }, + "octicons": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-octicons.git", + "sha256": "fc21d33f0cceef3f7fbb7ba26f89a5c16a730811480528eed22ec7a84e36cfa5", + "rev": "77bb1a49045f89b3eaf9bcffeefbb9e1abaee556" + }, + "recipe": { + "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "cl-lib" + ] + }, + "loc-changes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocky/emacs-loc-changes.git", + "sha256": "0f4131c707c0753b7629355e6b15c68a0aa79ff5a1be719a6f538bb56693490f", + "rev": "8447baff7cb4839ef8d1d747a14e5da85d0cee5b" + }, + "recipe": { + "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "initsplit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dabrahams/initsplit.git", + "sha256": "8f94b86db5fb616cb531169661279c956ef92de568d5d3317d7faf61141adce5", + "rev": "950bdc568e3fd08e6106170953caf98ac582a431" + }, + "recipe": { + "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6", + "deps": [] + }, + "downplay-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tobias/downplay-mode.git", + "sha256": "ab46acd4a8fd65ed163fa2dd8b760f1b3bc0425ad464e9b44f8ff85d6b679f8d", + "rev": "225a4b3ca09e6f463dfdd54941c98b02be8d574c" + }, + "recipe": { + "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "ruby-compilation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/rinari.git", + "sha256": "e5d04f3d22216ff7a1abedddf324b5d84b6ae74b02d019a5e4c3490e3c5bf9c8", + "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" + }, + "recipe": { + "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.11", + "deps": [ + "inf-ruby" + ] + }, + "thing-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thing-cmds.el", + "sha256": "0216gckb727hhzf230a3m3n9blyaa21djxcc77r4lf7g2h9g0b5m" + }, + "recipe": { + "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "hide-comnt" + ] + }, + "alchemist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/alchemist.el.git", + "sha256": "ca0356af2a1f5b9a49fc6ef6a9d5cfe53018495417008fac66449d12de45cc43", + "rev": "ddc68f52b16b2ced7646f1389ae15eb6c12c6683" + }, + "recipe": { + "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.0", + "deps": [ + "company", + "dash", + "elixir-mode", + "emacs", + "pkg-info" + ] + }, + "pretty-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/akatov/pretty-mode.git", + "sha256": "f5258222d7b2b8ce52fad643e4500253547fbcca01763259296b5010bbd43be0", + "rev": "4ba8fceb7dd733361ed975d80ac2caa3612fa78b" + }, + "recipe": { + "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.3", + "deps": [] + }, + "splitjoin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-splitjoin.git", + "sha256": "aebcfdc27d6fff5c72e6ae3fd2eaa537ebba4e415b2deefd50a3cee98adb691f", + "rev": "0eb91e7beec915065cd6c00ceaca180a64d85cda" + }, + "recipe": { + "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "cl-lib" + ] + }, + "frame-restore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/frame-restore.el.git", + "sha256": "0c094115f3fc0a59aec2ae1bfafc07bd8593b320826ee32757e5b6919130e640", + "rev": "5bfd06e18cdf5031062de5e052e9a877c3953804" + }, + "recipe": { + "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [ + "emacs" + ] + }, + "link": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myrkr/dictionary-el.git", + "sha256": "17f5aff9105f25f1a822a36ae112fc2a3f678128764131b3d90fcb7075b8aed4", + "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" + }, + "recipe": { + "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10", + "deps": [] + }, + "narrow-indirect": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/narrow-indirect.el", + "sha256": "1j50f3kzgrvxf4iznjjwsi4smp7gdp09irz7x3ppv4w2c8apc6j8" + }, + "recipe": { + "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "button-lock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/button-lock.git", + "sha256": "94eb38c8f3ce220f811de948413a82d612b4996bdda2cf6f74c92d9cace91fb2", + "rev": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f" + }, + "recipe": { + "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.2", + "deps": [] + }, + "fill-column-indicator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alpaker/Fill-Column-Indicator.git", + "sha256": "c91797a46d3495d5d2bdbda683c3e1cede5972872653ee0855bc69dc8b87f039", + "rev": "5cbc077083775d4719a294455a8a8a53bb3151f8" + }, + "recipe": { + "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.81", + "deps": [] + }, + "serverspec": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-serverspec.git", + "sha256": "d7c8496483173311871f653468c6ba8b38855b2bb109eca70169483f5dae3c4a", + "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" + }, + "recipe": { + "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.7", + "deps": [ + "dash", + "f", + "helm", + "s" + ] + }, + "butler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AshtonKem/Butler.git", + "sha256": "f9163e1a95db261a85d831a9f2edb0604b9353affd0520155e7584cc963c5488", + "rev": "0e91e0f01ac9c09422f076a096ee567ee138e7a4" + }, + "recipe": { + "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.4", + "deps": [ + "deferred", + "emacs", + "json" + ] + }, + "iflipb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jrosdahl/iflipb.git", + "sha256": "714284d5fd269eab2cc13b595959ce6366f531415a00c0805e1ff064b5f434a3", + "rev": "2e0d1719abeec7982341761ee5dabb01574e6862" + }, + "recipe": { + "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "ido-complete-space-or-hyphen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/doitian/ido-complete-space-or-hyphen.git", + "sha256": "8244b7aed3a1d9b7c2c56eb75f3d1e371724e3ad145eefd78b7c8e608a4a4291", + "rev": "ad9baaec10e06be3f85db97b6c8fd970cf20df77" + }, + "recipe": { + "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "sift": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/sift.el.git", + "sha256": "e5ede66da711928d262225d77ead0a3db89fc2e0107e3cc448de9db67e71257d", + "rev": "02cea9ba11f99b13888ac1842215caf190e3a94b" + }, + "recipe": { + "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "moz": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bard/mozrepl.git", + "sha256": "4cb8eaed3140058efa610ecb02c9cf813b81a5da9f7e56642a0fbf19ac2c6e8d", + "rev": "646208b67e6c9c56d188db1eba999846d518935f" + }, + "recipe": { + "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "timer-revert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/timer-revert.git", + "sha256": "0512bbaaa1969cf9be710277637ec3b534ed6130961072b36f8820891b5054a6", + "rev": "31ad8d94b85807cd9f63fcba0c90c3e9a9515fa2" + }, + "recipe": { + "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "helm-mt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dfdeshom/helm-mt.git", + "sha256": "02bfbe8126eb7a023c17bd45aef7c766b767602dfec1b7671769880c3db3763e", + "rev": "27391022dbf5720cb13ecec8ca8c398c05a7cbf7" + }, + "recipe": { + "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [ + "cl-lib", + "emacs", + "helm", + "multi-term" + ] + }, + "darcula-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fommil/darcula-theme-emacs.git", + "sha256": "27543bdc25a13ee1958758ba067ce68162f8e7b2e29fcf94feb29c7823e38014", + "rev": "202a5affe59a5e1ac1d33a7e518d1df772bf2100" + }, + "recipe": { + "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "cm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/criticmarkup-emacs.git", + "sha256": "201964c9b1cd5e5933bedceba5f35dfe5f7d0a8ae8cfa2cc881a07ba35a316ae", + "rev": "abc5adc7e00e10c388c2a57c9f1d59f164773082" + }, + "recipe": { + "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "dynamic-fonts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/dynamic-fonts.git", + "sha256": "aedeb7c912e76d6ace824ea021c0cff035d6d02c3b205814628dd25a1080a466", + "rev": "d318498b377d8941c7420f51616c78e3440d00f5" + }, + "recipe": { + "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.4", + "deps": [ + "font-utils", + "pcache", + "persistent-soft" + ] + }, + "bbdb2erc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/unhammer/bbdb2erc.git", + "sha256": "7ab5d52daf8adb18fffc47e201a9f96591ab91e447d017b7e41c20ad583b70fe", + "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd" + }, + "recipe": { + "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.3", + "deps": [ + "bbdb" + ] + }, + "whitespace-cleanup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/whitespace-cleanup-mode.git", + "sha256": "e2bd4b7e707fc063a7c6c9f7a542c72a78d8c8eba5fa52b2e3dc74b49687bc76", + "rev": "e1e250aa6f5b1a526778c7a501cdec98ba29c0a4" + }, + "recipe": { + "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10", + "deps": [] + }, + "m-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/m-buffer-el.git", + "sha256": "dce09b1386be536db3baabb2b76ba1240846b03d0ca26a90e4107670eced40cd", + "rev": "ea281db21af0dd48ba08f7f8e0cd2902acdf5a96" + }, + "recipe": { + "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.12", + "deps": [ + "dash", + "emacs" + ] + }, + "marshal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/marshal.el.git", + "sha256": "bb1694a831ac72ac22c611608a5ce74d12640daf459a23f07347c707a5f4316b", + "rev": "2a3d102af4e996536a71ec38ab54e379c30a1ab0" + }, + "recipe": { + "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.3", + "deps": [ + "eieio", + "json" + ] + }, + "zygospore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/louiskottmann/zygospore.el.git", + "sha256": "21e2dc02be0155560938f74f85f8c30d640ee66474a129e7dfbb72e3f754ec0a", + "rev": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8" + }, + "recipe": { + "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [] + }, + "elisp-depend": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/elisp-depend.el", + "sha256": "0khc3gacw27aw9pkfrnla9844lqbspgm0hrz7q0h5nr73d9pnc02" + }, + "recipe": { + "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "scala-mode2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hvesalai/scala-mode2.git", + "sha256": "262959f309c807c099a05933de01ad7cd6785cda0245065c45b69325bdf84cd1", + "rev": "34888c094990bc669347f106dbd516f487e55ae3" + }, + "recipe": { + "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.22", + "deps": [] + }, + "rigid-tabs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wavexx/rigid-tabs.el.git", + "sha256": "65a9da075c651b3c12533d52133c11846ffe74ac50b7757a712692961e27045c", + "rev": "c7c6b726806df7e8cb25a41b213a207850c91cb7" + }, + "recipe": { + "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "emacs" + ] + }, + "theme-changer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hadronzoo/theme-changer.git", + "sha256": "cda38adad5ef5e87992c14c58876e38d5fbfdf143892d03e8ec42692341e6e27", + "rev": "d3d9c9f62a138958262ac5dd61837df427268611" + }, + "recipe": { + "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.0", + "deps": [] + }, + "hl-sentence": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/hl-sentence.git", + "sha256": "ca1533b4a5efce037d5ebca2c95a015336ef67493980c4f2c915b67bdf7af1c1", + "rev": "f88882772f1a29fabb54194cc8aacd80d7f5b085" + }, + "recipe": { + "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3", + "deps": [] + }, + "svg-mode-line-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/svg-mode-line-themes.git", + "sha256": "799ccba2e39013872cfee4385c1d3a0e55fc154b9322b67fbfeedcb932c51b53", + "rev": "80a0e01839cafbd66899202e7764c33231974259" + }, + "recipe": { + "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.3", + "deps": [ + "xmlgen" + ] + }, + "processing-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ptrv/processing2-emacs.git", + "sha256": "3bee45e8318bd2e4be3c8800d7dbde61dbe0ebba4d02c4a3778b3b58f7526038", + "rev": "228bc56369675787d60f637223b50ce3a1afebbd" + }, + "recipe": { + "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "doremi": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi.el", + "sha256": "0b50iwyjxnhny9kzbcqxwqwa5fg5xbldm7l4jzcyl3bmcdbg4w7q" + }, + "recipe": { + "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "grizzl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d11wtq/grizzl.git", + "sha256": "fa87f7c61ec4fca444a7eb3c2d12612175bfe8cf8c6d2f2ab59d90d3d91c07af", + "rev": "c775de1c34d1e5a374e2f40c1ae2396b4b003fe7" + }, + "recipe": { + "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "hyde": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nibrahim/Hyde.git", + "sha256": "1b9aaf59f870db88fada26f83eb6406fa12c7880f0e0a392ef2d3a10e051cdb0", + "rev": "181f9d2f91c2678a22243c5485162fa7999fd893" + }, + "recipe": { + "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "wid-edit+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/wid-edit+.el", + "sha256": "080i3gfvhmpmjq9hbjpkvs8pi88s59ia5dvrng0gg5zd8xrwdc6k" + }, + "recipe": { + "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "pabbrev": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/pabbrev.git", + "sha256": "864341b02b8be0ba8edddcc502fe99637b6f28f11bd661ee3846c92184ba781c", + "rev": "127a8b10cf352b0491fefd2f4178ba78ee587564" + }, + "recipe": { + "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "4.1", + "deps": [] + }, + "auto-indent-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/auto-indent-mode.el.git", + "sha256": "de2cee23927361d1e43d68a783e26a2496df685ac93f39719d82f4db9b7e9ac2", + "rev": "ad7032ee058a74405d04d775b0b384351536bc53" + }, + "recipe": { + "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.126", + "deps": [] + }, + "evil-leader": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/evil-leader.git", + "sha256": "626882de36c100bb8f98f1a64f50a9a5983af10214694e33c09de60906bf9f80", + "rev": "753b01eb4958370ae2226b3780ff31fe157c2852" + }, + "recipe": { + "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.3", + "deps": [ + "evil" + ] + }, + "highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight.el", + "sha256": "01d7khl7d78wz37bz28wjszhdwz81lrq9vm9d4slnj2qg4by6dcy" + }, + "recipe": { + "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "darktooth-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-theme-darktooth.git", + "sha256": "e98f05a9fc745655dc52916eec3d4702d50188eaa6fc2ae4ecd676565d82f1dc", + "rev": "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3" + }, + "recipe": { + "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.37", + "deps": [] + }, + "window-layout": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-window-layout.git", + "sha256": "2efa26f19e4502d0fe4988507f0f9579890554363b07c59a17f20ff057adde4b", + "rev": "9caf5be4ff1b5d1e141783d7133dab7a46424fef" + }, + "recipe": { + "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "edit-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/edit-list.git", + "sha256": "89c150ab37bbf0f9260c4bcd63d40988567733ee6b1b3007fbd1836283870125", + "rev": "f460d3f9e208a4e606fe6ded307f1b011916ca71" + }, + "recipe": { + "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "grapnel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/grapnel.git", + "sha256": "c5f9a8feb571ec64c449eefcd2e308c2b469afb342267a61862ef6f7f10c9275", + "rev": "7387234eb3f0285a490fddb1e06a4bf029719fb7" + }, + "recipe": { + "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.3", + "deps": [] + }, + "ducpel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/ducpel.git", + "sha256": "143ea232a8e2be3d81fb0ce95c7711a702a57dc0650c4a2215f1600da8bcad19", + "rev": "ece785baaa102bd2e9d54257af3a92bacc5757bc" + }, + "recipe": { + "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "elfeed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elfeed.git", + "sha256": "76b58563cc5fc1d87e1326a3d61288746da17e84f370672a23ab86c1c42ad9d7", + "rev": "4c15ed9f9559285df196c9b793bd5168662b6532" + }, + "recipe": { + "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [ + "emacs" + ] + }, + "resize-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dpsutton/resize-window.git", + "sha256": "9f1f5c17fec219ad389c8a34ba0e4dff6852d69be9d89afad26e94ec1c5b1efb", + "rev": "d4aa9e6e950f5e0455b20f4443fda20742ec0403" + }, + "recipe": { + "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs" + ] + }, + "forecast": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cadadr/forecast.el.git", + "sha256": "412c6f4a92e7c2e1ec58c08ad367b51ddb5c337682329f1a9b29ae8a2d4288cb", + "rev": "51526906140700f076bd329753abe7ae31b6da90" + }, + "recipe": { + "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.9", + "deps": [ + "emacs" + ] + }, + "tox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chmouel/tox.el.git", + "sha256": "6960c88af11f9b0e143099625191ce650bb248d00047b46751ea4199513c4198", + "rev": "5c1a7c18cb7f2fd2da2386debf86012e6953e15d" + }, + "recipe": { + "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "init-open-recentf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/init-open-recentf.el.git", + "sha256": "263187542cb19a3d83a9ca943981ba60c03755b151aa6ebe300f79099ddd811b", + "rev": "39da6a50e7f39e6ccd9aada0c20d8b6d501cb487" + }, + "recipe": { + "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "emacs" + ] + }, + "date-field": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-date-field.git", + "sha256": "7cf4bc78c9958b6aaa52381fb2aedd2175c20e7d4f66727192326eeb84b4bcd2", + "rev": "11c9170d1f7b343233f7716d4c0a62be024c1654" + }, + "recipe": { + "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "dash", + "log4e", + "yaxception" + ] + }, + "slamhound": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/slamhound.git", + "sha256": "b35d9a4afdd2c9f617cce3ba54bafaf2d9c2fc9eb80be25e2a99bce96d2ba591", + "rev": "2f896d6ba15d09aae66b5fdecc0d855f6b03abc9" + }, + "recipe": { + "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.4", + "deps": [] + }, + "evil-numbers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/evil-numbers.git", + "sha256": "60b9e039c3c27a5ddb78f8ecf150372db3d7cca7b3a2c5fec8a590456d007a88", + "rev": "8834eb2e8bd93561a706363946701d0d90546a9f" + }, + "recipe": { + "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "switch-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/switch-window.git", + "sha256": "8844b9369dc1864c3fd7a53135734e6dc872f99277fb3fb0a04032af188deefe", + "rev": "cd4b06121aa5bac4c4b13b63526a99008def5f2b" + }, + "recipe": { + "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "helm-robe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-robe.git", + "sha256": "015eccef55fb3ed69ff261909ab8b5b5dc4cf3021b497e2ea48f23bb4daa62a6", + "rev": "7348d0bc0251b51979554ea678b970fd01c0efe9" + }, + "recipe": { + "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [ + "helm" + ] + }, + "ac-capf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-capf.git", + "sha256": "5893816323a627101e6b9f30d49b6343ee1eece266075b16856d98e6ff3789be", + "rev": "17571dba0a8f98111f2ab758e9bea285b263781b" + }, + "recipe": { + "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "lice": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/buzztaiki/lice-el.git", + "sha256": "acff239622bd1446262a456529d698b1957743a2415a2c04d2d9d50fac517c90", + "rev": "69f2d87984f3f3d469db35e241fbbe979384cd03" + }, + "recipe": { + "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "mark-tools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stsquad/emacs-mark-tools.git", + "sha256": "1c178906b07365e7d51e3a118545b1996485eceb7500911a41f6247bfed59e39", + "rev": "0e7ac2522ac84155cab341dc49f7f0b81067133c" + }, + "recipe": { + "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [] + }, + "echo-bell": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/echo-bell.el", + "sha256": "11914ca1q8szqyqihfm2q39cway3p6j1fdggr99lk6848dkf5p1v" + }, + "recipe": { + "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "dedicated": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/dedicated.git", + "sha256": "2410cea419dc4623d070373695d5d18c2895cb34718f7120f65d9f01814e6a5d", + "rev": "8275fb672f9cc4ba6682ebda0ef91db827e32992" + }, + "recipe": { + "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "pixiv-novel-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/pixiv-novel-mode.el.git", + "sha256": "0d0095e3032436b92e632dd1d1df253e8b403f192900d897b03d82d338bbe8f1", + "rev": "4dd9caf749190fab8f0b33862b3894b635de46c5" + }, + "recipe": { + "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [] + }, + "edit-indirect": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/edit-indirect.git", + "sha256": "bacde52461c28ace2844c8d6c6b21e797ac81ef56596e3d23fd9d2d094228881", + "rev": "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0" + }, + "recipe": { + "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "emacs" + ] + }, + "morlock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/morlock.git", + "sha256": "5e7e289e4b4df746ba62c8da9f64bdcdbf586751922f61e73501b5940ee1afd9", + "rev": "804131c7cff5dafa762c666fd66458111e4ee36f" + }, + "recipe": { + "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [] + }, + "auto-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/auto-complete/auto-complete.git", + "sha256": "aa9d97e3565a2b06818481f25855dca01b15b804eb321b65c7a8422a92cd8954", + "rev": "70770b17168c30fe482467d7219cfbe8650c5e1c" + }, + "recipe": { + "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.0", + "deps": [ + "cl-lib", + "popup" + ] + }, + "sparql-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ljos/sparql-mode.git", + "sha256": "79a395765f595f076cbe2154171a18882321d84a93e9b7cbc98e2bb9df318cf7", + "rev": "303858e7f91829ec720141482c777460e66f310b" + }, + "recipe": { + "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.11.2", + "deps": [ + "cl-lib" + ] + }, + "expand-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/expand-region.el.git", + "sha256": "3dc2da684680a0ebfd74f148a67ef7d66aef30a8e517fff0d82a309340ef68ee", + "rev": "90c4e959ac8bf0bbd857dd679f38a121c592bf7a" + }, + "recipe": { + "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10.0", + "deps": [] + }, + "auto-compile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/auto-compile.git", + "sha256": "4f738b9f02c5ff3496f06bd9415e6d179285869e5b066031b39d51f2159a761f", + "rev": "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29" + }, + "recipe": { + "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [ + "dash", + "emacs", + "packed" + ] + }, + "redpen-paragraph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/karronoli/redpen-paragraph.el.git", + "sha256": "e9cad6d38d8ed4ddc278d14630084c263ff5d0ce2ff7480bd2ce584bd6cc85a5", + "rev": "e942c41c0308d8fbac1f145387d4f6ea1091e26b" + }, + "recipe": { + "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.22", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "r-autoyas": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/r-autoyas.el.git", + "sha256": "af729ee67b50903c0b8380ee20f373f3d4a47a7ae2de06ad3b437b4ced6f6d09", + "rev": "563254f01ce530ca4c9be1f23395e3fd7d520ff9" + }, + "recipe": { + "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.28", + "deps": [] + }, + "buffer-stack": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/buffer-stack.el", + "sha256": "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r" + }, + "recipe": { + "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "frame-fns": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/frame-fns.el", + "sha256": "0vh3k8wjvf78r5gv6sn468a4gxfxf4f63csk54izgyspyv6mj9c7" + }, + "recipe": { + "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "search-web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomoya/search-web.el.git", + "sha256": "11d8de35caac0a45a51ba3852852ec1ac7cf74e40014f88146ff4449d431cc23", + "rev": "c4ae86ac1acfc572b81f3d78764bd9a54034c331" + }, + "recipe": { + "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "clips-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/grettke/clips-mode.git", + "sha256": "4debfaa48232426ba3e957f70603080b03044ac8dcd084b1423b2da27391da44", + "rev": "a3ab4a3e958d54a16544ec38fe6338f27df20817" + }, + "recipe": { + "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [] + }, + "kivy-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kivy/kivy.git", + "sha256": "ad3e966b86f786d3fd5cc5e46cf378c3d14e555901d5605b1dd29356f30a5e57", + "rev": "7c5b1dc7c50a67079a41f27b1cea1a652119a7bc" + }, + "recipe": { + "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.9.0", + "deps": [] + }, + "mpv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kljohann/mpv.el.git", + "sha256": "6f019a5015fbfcb88530aaa3bb9cdf2615ccfe315419859be8b478c7255b1d87", + "rev": "059135de3979e044f14503806047476d9be9f0e8" + }, + "recipe": { + "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "emacs", + "json", + "names", + "org" + ] + }, + "apropos-fn+var": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/apropos-fn+var.el", + "sha256": "0q1b2x4z0ds4y45gy7sxc68xyai3g8kmqnssnhdina4x20sgm2vf" + }, + "recipe": { + "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "concurrent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-deferred.git", + "sha256": "b9e17749d71e0431744da74a59b72d42a6e65540ca2599dfcdb1441b8097a900", + "rev": "5ef948e9b4c29a1c02d3f1613b21cd0d6d7ef476" + }, + "recipe": { + "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [ + "deferred" + ] + }, + "grep+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/grep+.el", + "sha256": "03a4mmhbkwj2bq48525jba6wiczs943lmlhvy5vz8x4hb47rlmc3" + }, + "recipe": { + "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-zhihu-daily": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/helm-zhihu-daily.git", + "sha256": "fa2f6985f9bafef96d3a2230809f574608498bc032c5793699f4a3bb7add100f", + "rev": "fcc534bb42c81070063b28d3d939a53af0fa9a7c" + }, + "recipe": { + "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "vector-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/vector-utils.git", + "sha256": "ff65d76b011cab6f357dea8bbd33f2114094499b7f2936dc2e97b5fc2b7c9c07", + "rev": "2bd63c8ade1a2b6f8aac403c5f25adda2215a685" + }, + "recipe": { + "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [] + }, + "bongo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dbrock/bongo.git", + "sha256": "d9ba33b4bac199d6fee44f1373d5805f1fcb9698c24a13d9814d1860b7d07ce0", + "rev": "c5280a11fe8ff39fba4b09ec4a39b0f799d2b59c" + }, + "recipe": { + "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "ac-dabbrev": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ac-dabbrev.el", + "sha256": "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh" + }, + "recipe": { + "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "caskxy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/caskxy.git", + "sha256": "9f91ec7d29ede8e624c55321e59f352df982f71ac448ff866130c84fe4389876", + "rev": "279f3ab79bd77fe69cb3148a79896b9bf118a9b3" + }, + "recipe": { + "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "log4e", + "yaxception" + ] + }, + "aurora-config-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bdd/aurora-config.el.git", + "sha256": "48a86805e9bc533dc5997293526123e8a6a442d8cd90b4e7908bab302fec415b", + "rev": "0a7ca7987c3a0824e25470389c7d25c337a81593" + }, + "recipe": { + "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [] + }, + "twittering-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hayamiz/twittering-mode.git", + "sha256": "e4dcd4db555773f2199d07dad365f86cc41a0a2074f1499049a51e613f76cc29", + "rev": "27e7f3aab238bd0788fd3b471c645c3ceceb0f13" + }, + "recipe": { + "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.0.0", + "deps": [] + }, + "rtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Andersbakken/rtags.git", + "sha256": "40f8d8987341fa3dc1c5ea96d8d4049044843a7bda3624187457c929b7fb1cee", + "rev": "ba85598841648490e64246be802fc2dcdd45bc3c" + }, + "recipe": { + "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "skewer-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/skewer-mode.git", + "sha256": "c9a189bf7dae904b358dbb2098733f22ed15bbe965233fca52a518ac32ce5e14", + "rev": "8a3a22ef4fe4d9d0831e82fde08c6355d0b19ed4" + }, + "recipe": { + "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.2", + "deps": [ + "emacs", + "js2-mode", + "simple-httpd" + ] + }, + "yesql-ghosts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/yesql-ghosts.git", + "sha256": "4d63dc03994b48adbc2d622680bc6f6ef8cca880875599d68c4c92162b3d7f7b", + "rev": "bd834e97f263f9f981758c1462bc6297a83ca852" + }, + "recipe": { + "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cider", + "dash", + "s" + ] + }, + "latex-extra": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/latex-extra.git", + "sha256": "43eb81b85e81a1c0e7a48e99a3cc3146a4ad187a47d1145670782b70fa6326e7", + "rev": "455b7873de095cbce6aa256f33cf64dba3dbaa29" + }, + "recipe": { + "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.11", + "deps": [ + "auctex", + "cl-lib" + ] + }, + "transpose-frame": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/transpose-frame.el", + "sha256": "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4" + }, + "recipe": { + "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "travis": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/emacs-travis.git", + "sha256": "26bf68efccaea65eb21fc67596369a02724de30b30b3c33e5685cfb8542c7e43", + "rev": "c8769d3db10ed4604969049e3bd276afa0a0138e" + }, + "recipe": { + "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.0", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "project-explorer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/project-explorer.git", + "sha256": "7fbf7de574bc33a2a931671e7e5d2532e55e878de5646cf9719db9dcb4cf7864", + "rev": "7c2cc86a81f679dda355110f916366b64893a5d4" + }, + "recipe": { + "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.14.3", + "deps": [ + "cl-lib", + "emacs", + "es-lib", + "es-windows" + ] + }, + "sequential-command": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sequential-command.el", + "sha256": "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk" + }, + "recipe": { + "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ac-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/ac-helm.git", + "sha256": "7a3ee9d691b6af01768cb8dc9c96d28de5b5beb90d44cf063c42cc7322277e89", + "rev": "f2110576b0eb35850a7f638c1a991a9fa0c8da3a" + }, + "recipe": { + "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1", + "deps": [ + "auto-complete", + "helm", + "popup" + ] + }, + "rainbow-delimiters": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/rainbow-delimiters.git", + "sha256": "965e575a21c16265ef2e8d59ee9b8206c305b1e6daca49671aec847fa00e28a9", + "rev": "0823d0c67f935a4c36a1c945e93051102963c7fb" + }, + "recipe": { + "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.1", + "deps": [] + }, + "pp+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pp+.el", + "sha256": "1997hkxnnhrhkszzxmhabkh8ifb07bzr0w9svx8yynn22j0s5dmh" + }, + "recipe": { + "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "genrnc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-genrnc.git", + "sha256": "d6022dca2a25cecd8deb23c9e6244c118dbf40b29785ab055e70cd22940b9c21", + "rev": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a" + }, + "recipe": { + "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "concurrent", + "deferred", + "log4e", + "yaxception" + ] + }, + "unicode-progress-reporter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-progress-reporter.git", + "sha256": "554f17dfeea7bedc4807d163d9f79f0a0d88ae9f2277c2cc6fd1acd80329f15a", + "rev": "f4705332412b12fc72ca868b77c78465561bda75" + }, + "recipe": { + "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.4", + "deps": [ + "emacs", + "pcache", + "persistent-soft", + "ucs-utils" + ] + }, + "fm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/fm.git", + "sha256": "9b09fd145c5fc3342870a154c2bd525c78f3ab7cafafdb81e1dc761fd1105264", + "rev": "6266840de17ac396dd7275a71da72cd5120c35a6" + }, + "recipe": { + "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "company-anaconda": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/company-anaconda.git", + "sha256": "eab07dd62470c4495ecf4c6a520bbb5d6a8ec46bab3ae0ccd954ec54dba3610e", + "rev": "137ba58960a5feeb23aff34c9225fdf161f49f98" + }, + "recipe": { + "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "anaconda-mode", + "cl-lib", + "company", + "dash", + "s" + ] + }, + "inlineR": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/inlineR.el.git", + "sha256": "2dde319ab1cf78ec1e64ecb69e49119417538b586abe98aae3c087db1318383e", + "rev": "29357186beca825e3d0451b700ec09b9ed65e37b" + }, + "recipe": { + "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "evil-tutor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-tutor.git", + "sha256": "3a81b3e27d0cdac2e7c9c751ab6af7a2bd96915d21e42c72d1780f3aa5b224f5", + "rev": "909273bac88b98a565f1b89bbb13d523b7edce2b" + }, + "recipe": { + "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "evil" + ] + }, + "flycheck-dmd-dub": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atilaneves/flycheck-dmd-dub.git", + "sha256": "0f50c15973c93116207359548e75629ffce546d5e4ead637f5ae8855654a9a64", + "rev": "e8744adaba010415055ac15c702f780dd6e13e14" + }, + "recipe": { + "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "flycheck" + ] + }, + "evil-visualstar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/evil-visualstar.git", + "sha256": "92a4e73ac25c1432b55ca0c47ca4bbbcd8632d3d01dbf8b1462c69d3e6034cd8", + "rev": "de939b4013f52a19d1e413c601bbcea88f0233ac" + }, + "recipe": { + "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "evil" + ] + }, + "rainbow-identifiers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/rainbow-identifiers.git", + "sha256": "30fb159bbc2d473f6614eaab59e6a167fc91f6b04e3144a4a642eadfeb952016", + "rev": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e" + }, + "recipe": { + "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [ + "emacs" + ] + }, + "demangle-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/liblit/demangle-mode.git", + "sha256": "753c6f92e038e0246e18c2889733718da6e91ae853f782b33d69832f7a87b643", + "rev": "07e62a7f976f6c7366b4b0475bbb5cff881452b8" + }, + "recipe": { + "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "github-clone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgtized/github-clone.el.git", + "sha256": "28129f5bcb0f6341918516ab991b16a460ccccf50358224e443a409d64414d61", + "rev": "ab048cf49d9ebda73acae803bc44e731e629d540" + }, + "recipe": { + "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "emacs", + "gh", + "magit" + ] + }, + "shrink-whitespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jcpetkovich/shrink-whitespace.el.git", + "sha256": "e491b49323a15df9486f26f47212c7a902e06df65cc26dd55a54c7d980b53d7d", + "rev": "24518d58e8e692fa98a73d5e7cd44c1536ab4e42" + }, + "recipe": { + "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [] + }, + "hi2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nilcons/hi2.git", + "sha256": "8ed6b5dd7aaa8cf6865e6a623c6bf9c737a3996e41833635a6a9ec02d7d308e8", + "rev": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8" + }, + "recipe": { + "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "deferred": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-deferred.git", + "sha256": "b9e17749d71e0431744da74a59b72d42a6e65540ca2599dfcdb1441b8097a900", + "rev": "5ef948e9b4c29a1c02d3f1613b21cd0d6d7ef476" + }, + "recipe": { + "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [] + }, + "bind-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/use-package.git", + "sha256": "9c0497e725200d62ddde6b5a78f3de03a401c218aad860295a2f85f316787c1f", + "rev": "2b077f6e485e8c5c167413c03246068022b6bc71" + }, + "recipe": { + "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1", + "deps": [] + }, + "bbdb-": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/bbdb-.git", + "sha256": "d75213f2dd7a00de66f41161dd38d3dd6c880d8569d6237242d7d80fdeb4cb9e", + "rev": "2839e84c894de2513af41053e80a277a1b483d22" + }, + "recipe": { + "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "bbdb", + "log4e", + "yaxception" + ] + }, + "ace-pinyin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/ace-pinyin.git", + "sha256": "79a67c04e64c1c0f76e1f5f74c8eb4d83abe970bd1aab2bc0bf887d89e0ec082", + "rev": "10f66ba2355bed78ef0a1ad24edb00972a0dbe02" + }, + "recipe": { + "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.3", + "deps": [ + "ace-jump-mode", + "avy" + ] + }, + "prop-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/prop-menu-el.git", + "sha256": "7b7f28aa1d412cfec0d5f2adbfe27176fd28d45d8507f9ed2256eb66611d8774", + "rev": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3" + }, + "recipe": { + "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "swbuff": { + "fetch": { + "tag": "fetchcvs", + "url": ":pserver:anonymous@emhacks.cvs.sourceforge.net:/cvsroot/emhacks", + "module": "emhacks/swbuff.el", + "sha256": "c579839fb395f1f778683324269269ca3d916995177804ca5dff3548007ec4b5" + }, + "recipe": { + "sha256": "1p4jj2ikhfp56d9iai1n1x2ggf1nsfkrhfnggbvk4zb0d2wy3l44", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "bbcode-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/bbcode-mode.git", + "sha256": "7ec29cbb692c60a6682c8f0a1f9fab81880d6eeb7dab182751a7d03475fa7df7", + "rev": "e693ab09c3f34cabfd185e7c249c0b5403f0a7e0" + }, + "recipe": { + "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [] + }, + "fold-dwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/fold-dwim.git", + "sha256": "461c17827f94d7ea8544b1cb44b7eff617f65cc36f8ab0e9a978775a23181fcd", + "rev": "4764b0246a722d37eb8ec9f204ffaccaad1755d0" + }, + "recipe": { + "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [] + }, + "cake-inflector": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-cake-inflector.git", + "sha256": "07b48d2f9b0868a1818d5ef3f38be7571ac95da6c8e24fabd039fc737e6f7e0b", + "rev": "40bf11890842ba305954528694e1c39a8b73737b" + }, + "recipe": { + "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [ + "s" + ] + }, + "purescript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dysinger/purescript-mode.git", + "sha256": "323e5f8ecba85f946ab6f7965752ec1eb33aa15d2d0a5fc811610dd127dfa1cc", + "rev": "6a4d4bdd178c65183a715c7729941a0b8fe5f253" + }, + "recipe": { + "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "13.10", + "deps": [] + }, + "centered-cursor-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/centered-cursor-mode.el", + "sha256": "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl" + }, + "recipe": { + "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "rectangle-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/rectangle-utils.git", + "sha256": "7587bc0b940809c3643631ccb3620f00caf9f0a2cb9b92cd26dc70025a961711", + "rev": "9328291ad043fdf617cd2191692f13fba5f9a9bb" + }, + "recipe": { + "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "hippie-namespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/hippie-namespace.git", + "sha256": "cd90684612f10d4c49939556f51e3add4b846e02a0b6ef4423954c294f19cf8e", + "rev": "79a662dfe9e61341e071b879f4f9101ca027ad10" + }, + "recipe": { + "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.8", + "deps": [] + }, + "sbt-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hvesalai/sbt-mode.git", + "sha256": "1a98d6e449809a89a33004f88ce77ee5b13e8eddbbc9b9cf1963969f7bd8b5e8", + "rev": "be70372bb0890a4f8bec1b6ef10b30ed2e3f5236" + }, + "recipe": { + "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "scala-mode2" + ] + }, + "shpec-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shpec/shpec-mode.git", + "sha256": "439d3e3e69e415ee72e9e6df26dabc2cf6eb863517a0fe33e7ae7727aff1524e", + "rev": "76bccd63e3b70233a6c9ca0798dd03550952cc76" + }, + "recipe": { + "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "anything-replace-string": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/anything-replace-string.git", + "sha256": "93108f9a50fa2e0d244c382e44928b7e508a7844ec5eeb9a568de8b785f464a0", + "rev": "1962f24243d6013bcef7e8d23136277d42e13130" + }, + "recipe": { + "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.2", + "deps": [ + "anything" + ] + }, + "novice+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/novice+.el", + "sha256": "1lv911k9s0607g8mrhc42zb7s1cw0zqqafqbrk6w17j4hr53n897" + }, + "recipe": { + "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "discover": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mickeynp/discover.el.git", + "sha256": "283c8e229566e5b7abf84b774495f68d9099298bfe65aac0eab0339a3f18bc63", + "rev": "bbfda2b4e429985a8fa7971d264c942767cfa816" + }, + "recipe": { + "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "makey" + ] + }, + "ledger-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ledger/ledger.git", + "branchName": "next", + "sha256": "0155b2e2244ed392b2d25847b7cae7226f94f18d9f3776555d27eb8d1ab187ea", + "rev": "7eacf5130849b4d53948d4750e11bd08f8a97a27" + }, + "recipe": { + "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.1", + "deps": [] + }, + "eshell-autojump": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/eshell-autojump.git", + "sha256": "6c578729e54f7de25f3048c3e237d4f8d9418dd8e367db85072513213ae7755a", + "rev": "c0866d7f2789831665ebb01b812bae89d085bff0" + }, + "recipe": { + "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "company-restclient": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/company-restclient.git", + "sha256": "c486a2ed92644fb7c708f6469fe7335d52df99ea007e37deb08f72bc69812e44", + "rev": "98e4b2af0e84ba4192c16288123aed96541c6401" + }, + "recipe": { + "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "company", + "emacs", + "know-your-http-well", + "restclient" + ] + }, + "ac-cake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-ac-cake.git", + "sha256": "cccc6fe7abdcf650f6908ca83a588fc0b675fea9ecfe5df0025ec2930eb6e88b", + "rev": "f01b3da7e2d20ea5a62daf62412c7dc1ad0130ff" + }, + "recipe": { + "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "auto-complete", + "cake" + ] + }, + "el-swank-fuzzy": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/el-swank-fuzzy.el", + "sha256": "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn" + }, + "recipe": { + "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "org-transform-tree-table": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jplindstrom/emacs-org-transform-tree-table.git", + "sha256": "23c4d1b765be0a4558d16c4ef032d3cf617ebb2714c8da2e5abaafbcf1f3e990", + "rev": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52" + }, + "recipe": { + "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "dash", + "s" + ] + }, + "asilea": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/asilea.git", + "sha256": "be5357d5a5d92dbaae94492e741b403b5e772ecc90532842aa16573a9075fc85", + "rev": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f" + }, + "recipe": { + "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "icomplete+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/icomplete+.el", + "sha256": "1vcv3ssmn5wwjnz6wcc0lsb0awxgqk5pn9p8zgwnj8qbag31b4ky" + }, + "recipe": { + "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-package.git", + "sha256": "2a66ecae3428577456ba6ccbb4b927b7bb6acb1690eef464565bfe2408cb921f", + "rev": "117f5f26c96c0854aadaf9c52aaec961195d5798" + }, + "recipe": { + "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [ + "cl-lib", + "helm" + ] + }, + "mmm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/mmm-mode.git", + "sha256": "71840270a7d0cb96016fed7841dd1ffab923da9ec3a3fb12bfd8fa5af4c65a13", + "rev": "4085494df67e0a3207839a175ac62673dfd0acc1" + }, + "recipe": { + "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.4", + "deps": [] + }, + "git-lens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/git-lens.git", + "sha256": "50c7f45624361835b1047cf1e9c1103e61897ec975b985fa3e04ab17f56b2a68", + "rev": "1feacc217c58fd4a41f9378eb09658f664036509" + }, + "recipe": { + "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "emacs" + ] + }, + "emacs-setup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/echosa/emacs-setup.git", + "sha256": "c8dfb9cc7e8025d1af11965cf66a4373205538fe059a3657c4bfb21dc2528396", + "rev": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2" + }, + "recipe": { + "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "dummy-h-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dummy-h-mode.el", + "sha256": "0zq94x4br3sk6n4chrfnw7hpnsicxa02fcpk8hw1hfsaq3327n6v" + }, + "recipe": { + "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "highlight-quoted": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-quoted.git", + "sha256": "4bcada744da3b74dd475408ce425b6446b4f8df63f8acb01bff218ad3f4e0faa", + "rev": "cdd7164f9ad3a9929387c08af641ef6f5f013f4f" + }, + "recipe": { + "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "emacs" + ] + }, + "wordsmith-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/wordsmith-mode.git", + "sha256": "1ab2459d921b35a580b9f0fa4e06e8692dce7603bc593aaf1eb6c5285d957568", + "rev": "41b10f2fe3589da9812395cb417c3dcf906f0969" + }, + "recipe": { + "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "makey": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mickeynp/makey.git", + "sha256": "59c5f9db97357c8a6e46918546c4874e284409d5c83beb0a10914d0ac6df5f2b", + "rev": "a61781e69d3b451551e269446e1c5f624ab81137" + }, + "recipe": { + "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "cl-lib" + ] + }, + "stumpwm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.savannah.nongnu.org/stumpwm.git", + "sha256": "f5e3b0fdbdb1c747c40f7b6746de195e37bd4caccdcc05c6aa14124f29e71428", + "rev": "4d0603e52b5bab993b3be63e3654c74f641e677d" + }, + "recipe": { + "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.8", + "deps": [] + }, + "magit-gitflow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jtatarik/magit-gitflow.git", + "sha256": "75b9e6b356b97b925c8bcaec49996b7d85fdeb423c8cab44743d269e4bf3041e", + "rev": "58c0f83b0fd02db0f6f4a0cb6101a710029caaeb" + }, + "recipe": { + "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [ + "magit" + ] + }, + "wsd-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/josteink/wsd-mode.git", + "sha256": "b6eec2bb80f6ffa2a1a67e6985580183bca73a0502b70e4cba5e3e570cb50e83", + "rev": "2065f07cb813041719aabb1e92fa98aebb2c6ae6" + }, + "recipe": { + "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [] + }, + "rubocop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/rubocop-emacs.git", + "sha256": "38f9631cfdbb02a256f50792c38ca58ae9c862545145367101ac0351c295b281", + "rev": "405e0fd4c57adb125e3d04208bc86081e3e78d4c" + }, + "recipe": { + "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [ + "dash", + "emacs" + ] + }, + "ert-runner": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ert-runner.el.git", + "sha256": "7769e5db9f8c9d7acc6430f29d5d94e035b7c0bfbb736a68068d98a3262ccddd", + "rev": "00056c37817f15b1870ccedd13cedf102e3194dd" + }, + "recipe": { + "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "ansi", + "commander", + "dash", + "f", + "s", + "shut-up" + ] + }, + "zenburn-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/zenburn-emacs.git", + "sha256": "9b9757092b7b6f2ff71aa36f6aeb229c43f286fce7a2976332696cfff8c557ff", + "rev": "ae42a7f3ec9491ddec001a2e57c7eb2f38d421cd" + }, + "recipe": { + "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2", + "deps": [] + }, + "web-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fxbois/web-mode.git", + "sha256": "6ca47f32ac75196831723c243b7c28db269e4f455de00c011f7f2320aafce40a", + "rev": "ee276c14f086c8f3b8b47e895b9593fd5d74acc8" + }, + "recipe": { + "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "13", + "deps": [] + }, + "gitconfig-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/git-modes.git", + "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [] + }, + "mwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/mwim.el.git", + "sha256": "c125bee0e8eeaa276424342972b04d3ff15b628c10e40885d65b0b3c02cc24ac", + "rev": "dc1b5c358e0bfe607527f1b7c082188105fe6c75" + }, + "recipe": { + "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "transmission": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/holomorph/transmission.git", + "sha256": "bba824bcd540b8b3a109b7c6bb4e60ed3a19d055790ae1c4017bf8ecd47ddf91", + "rev": "2769c9b17fa464e0634ac03046be74cefdb28880" + }, + "recipe": { + "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [ + "emacs", + "let-alist" + ] + }, + "dyalog-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/harsman/dyalog-mode", + "sha256": "0ghxnzi2iy1g633fshl9wdpg2asrcl0v5rkk61gqd6axm7fjaxcj", + "rev": "ce795beb8747" + }, + "recipe": { + "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "cl-lib" + ] + }, + "character-fold+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/character-fold+.el", + "sha256": "1lr1gzabaw7jpxazyjq7pkmy1cljna8v4150jkpndzzb1anb9xxy" + }, + "recipe": { + "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "notmuch": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.notmuchmail.org/git/notmuch", + "sha256": "fd2669401c276af12b6c9b739e835ee76b7910bba34bf850e4909c00e79adbd4", + "rev": "bf511cb6979ede33d17d9da6f46f71ea287461d8" + }, + "recipe": { + "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.21", + "deps": [] + }, + "nixos-options": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/travisbhartwell/nix-emacs.git", + "sha256": "8d6225321be7a659bcbeaa9dd350b4fcb60e97d3aa866da224afe0e3decca7d2", + "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" + }, + "recipe": { + "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "emacs", + "json" + ] + }, + "pythonic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/pythonic.git", + "sha256": "d2d72d2b2591fafb4a9fb7686407a3ec9d93a0a38be77adf89026de2570c2ae4", + "rev": "959b3f5d5607eb41ef26ad61d7ec15ceecb8e37a" + }, + "recipe": { + "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "dash", + "emacs", + "f", + "s" + ] + }, + "auto-capitalize": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/auto-capitalize.el", + "sha256": "1lk9zwng7wkjvb8hprlgyrab1s56n8a61xjva931h0bgypwl1dfi" + }, + "recipe": { + "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "emms-mode-line-cycle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/emms-mode-line-cycle.git", + "sha256": "6824d92b2ca19f38d0bc2b28cd1949d9f25b49c8cb76a39122cf7d58f6eee2df", + "rev": "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295" + }, + "recipe": { + "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.4", + "deps": [ + "emacs", + "emms" + ] + }, + "go-errcheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dominikh/go-errcheck.el.git", + "sha256": "63a254c6c720ef40fbc483df2baba4e1574dbbbbb2b51601c41545bd47eba6ba", + "rev": "1b0cd6af048a8b2074ace14ab51fb6c987beb430" + }, + "recipe": { + "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.2", + "deps": [] + }, + "minimal-session-saver": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/minimal-session-saver.git", + "sha256": "92a6468ec3bc988283c03d8c84fd563bc2225fb70b2bcfec1c09f3798018eecc", + "rev": "aaba48a8525e1310b221eeb96763304c22e9a4b4" + }, + "recipe": { + "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.2", + "deps": [] + }, + "popup-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-popup-complete.git", + "sha256": "7c960dc4eff365940310d2947b02bb264ac4bba512513559caa9c7b96649053d", + "rev": "e362d4a005b36646ffbaa6be604e9e31bc406ca9" + }, + "recipe": { + "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [ + "popup" + ] + }, + "cake2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-cake2.git", + "sha256": "7177a82eff2163dfd461e4e3dfe445ce82c580078f558fd68b4f142b9fb81bd1", + "rev": "0a9d0b3a1c49ba1730088416f50507f53221c70b" + }, + "recipe": { + "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.0", + "deps": [ + "anything", + "cake-inflector", + "dash", + "f", + "historyf", + "ht", + "json", + "s" + ] + }, + "async": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/emacs-async.git", + "sha256": "b7cddb682702a034dd416e26afd9318f0574b7f55f717b4f1e522ae23e55217d", + "rev": "c25bf17b34a1608da45e8a1ca02e1c89a34acd34" + }, + "recipe": { + "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gotest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/gotest.el.git", + "sha256": "1dc860bf805572ba4821e661690b851d48f5609f05e59da3883f3fea2e46b415", + "rev": "46bd21634430808a6eb29776a2898f28b09bddac" + }, + "recipe": { + "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.0", + "deps": [ + "emacs", + "f", + "go-mode", + "s" + ] + }, + "floobits": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Floobits/floobits-emacs.git", + "sha256": "7d1791e9315d81ad4fb19108bb3316d1d1a436cb9c0db53401a77248bc35cc56", + "rev": "08b3b5a3c3a178b8f21f1baf5e1f0eb0cf1fb855" + }, + "recipe": { + "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.1", + "deps": [ + "highlight", + "json" + ] + }, + "annoying-arrows-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/annoying-arrows-mode.el.git", + "sha256": "02fc94d96b4dddc3ad65040d5f7d41422fa4e52aa6485e4f7e4ec8fff51cf8de", + "rev": "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3" + }, + "recipe": { + "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "mode-icons": { + "fetch": { + "tag": "fetchgit", + "url": "git://ryuslash.org/mode-icons.git", + "sha256": "b7afff1d8fb0b3f044d266af479df51fbb6021ff433628a9dc669695c1ddae40", + "rev": "cbf412d0c47dfdbeac7587a0c12c96f58f546467" + }, + "recipe": { + "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "weibo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/austin-----/weibo.emacs.git", + "sha256": "1b1a19ed36d4b1c00beb8487f983dc184db58695ee8eeea093b7f242be7b7593", + "rev": "a8af467e5660a35342029c2796de99cd551454b2" + }, + "recipe": { + "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "stan-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stan-dev/stan-mode.git", + "sha256": "b168aa58354ec69fa61f58bd95c133d14b862dc3c774bfb7dac05094bbb31c15", + "rev": "3a1b9a714ae7a547638a449f5a9ac487003c55b8" + }, + "recipe": { + "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "7.1.0", + "deps": [] + }, + "edts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tjarvstrand/edts.git", + "sha256": "3cb76a6815d0445dc3c62f3a45c5200663f6e30d9ad69e9f3d643c0f2d2a66ae", + "rev": "61855db6f1315ea45f97ed95b47a3f182ec4c6be" + }, + "recipe": { + "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "avy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/avy.git", + "sha256": "13d54de07f7c19303c3df6a8ecc6c22de5f1829095b7332b1b1a6be2757dae97", + "rev": "44d76b9d2aad5477521675747a5c769f3f9a69a0" + }, + "recipe": { + "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "marmalade": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/marmalade.git", + "sha256": "b885e4175d3f92a0080c8eaf2f05430b68c13c1a26f00043c2553f151849aae3", + "rev": "01d6ddf5f0e822d6df393aa4546b069b2d6545d7" + }, + "recipe": { + "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "furl" + ] + }, + "per-buffer-theme": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/inigoserna/per-buffer-theme.el", + "sha256": "1rh87jf0a15q35a8h00bx6k5wa931rb6gh600zbs7j4r3y8qsylf", + "rev": "2b82a04b28d0" + }, + "recipe": { + "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [ + "cl-lib" + ] + }, + "zop-to-char": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/zop-to-char.git", + "sha256": "26911714138a5cee7915e71fc15081901e4b4747b475e9d47b02df8dbe1add48", + "rev": "7888bb6f09ae24e8e10bd3095edd31940e6a1c46" + }, + "recipe": { + "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "cl-lib" + ] + }, + "connection": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myrkr/dictionary-el.git", + "sha256": "17f5aff9105f25f1a822a36ae112fc2a3f678128764131b3d90fcb7075b8aed4", + "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" + }, + "recipe": { + "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10", + "deps": [] + }, + "gmail-message-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/gmail-mode.git", + "sha256": "8fc111674fe229115a7d4b30663ccf5b2d888c2cfe8d82d8b58d87f686577748", + "rev": "2e0286e4a3c80889692f8da63a3b15d7a96abdea" + }, + "recipe": { + "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.2", + "deps": [ + "ham-mode" + ] + }, + "bug-reference-github": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arnested/bug-reference-github.git", + "sha256": "1bdccc0396c0ac6e5c8499a7a9fea65f71855c7165aca76b25bacba150795f1e", + "rev": "671d32083aad5cf813a5e61075b70889bc95dec5" + }, + "recipe": { + "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "clojure-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clojure-mode.git", + "sha256": "dc4a2e8d35b68bc06ee8a0ad9faa7833c7b5522776da356abeb4c8ef01ef3489", + "rev": "8b01df6c881929540b59444a54b37c03ffe6fc17" + }, + "recipe": { + "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "5.0.1", + "deps": [ + "emacs" + ] + }, + "utop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/diml/utop.git", + "sha256": "833f7e075155fbf54ca5c2cb768669a69bca88542bbfd31b5ae8419e714bf8b1", + "rev": "59f5b9c3fcc3fa8102e8a892e21ff8a477f80872" + }, + "recipe": { + "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.18.1", + "deps": [ + "emacs" + ] + }, + "with-editor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" + }, + "recipe": { + "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.1", + "deps": [ + "async", + "dash", + "emacs" + ] + }, + "evil-jumper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/evil-jumper.git", + "sha256": "f7f5cce2cc49c5e43f9b73b8a2831478dbc262f62cf9db361b0b4f7cc0da8112", + "rev": "ab87e865a1ffd815f937c98c2ecf70bf13510715" + }, + "recipe": { + "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "evil" + ] + }, + "lingr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lugecy/lingr-el.git", + "sha256": "da4f57b9770cdab3e400c50743ffc50e79d99770da7b1061bd7e8355fe205c87", + "rev": "c9c20dd9b4967aa2f8873d6890d6797e6a498d23" + }, + "recipe": { + "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "auto-complete-sage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/auto-complete-sage.git", + "sha256": "9caddef2218b3d2405da369b7c9c945372b947674469181285e2c23cfc50d4d3", + "rev": "a61a4e58b14134712e0737280281c0b10e56da93" + }, + "recipe": { + "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "auto-complete", + "sage-shell-mode" + ] + }, + "rich-minority": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/rich-minority.git", + "sha256": "a3d72cfbffc5896821fa40fb68ae3af61e5bef8855679e0d3f4074557c721c86", + "rev": "311ac8ee54078f95b7279e532da6cf5a2afb4125" + }, + "recipe": { + "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "cl-lib" + ] + }, + "marcopolo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/marcopolo.git", + "sha256": "ec14182129292c0f2c61ba3614953b59cf2440e7038cdca3109397062d138fa6", + "rev": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e" + }, + "recipe": { + "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "el-mock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/el-mock.el.git", + "sha256": "2eb7f7731f29f0547bbb327371c9b50eedf00dff37d2ad6423f81526475a3679", + "rev": "3069931de75bb6704ecf565af5390009dc4dae00" + }, + "recipe": { + "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.25.1", + "deps": [] + }, + "hydra": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/hydra.git", + "sha256": "ee50c89853b10b97f04bf3a272d2d41b78b539aaee0c2a99719efde869493c22", + "rev": "4bf7f1c9e46fb819c673e55d8a1891774e139f98" + }, + "recipe": { + "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13.3", + "deps": [ + "cl-lib" + ] + }, + "browse-kill-ring": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/browse-kill-ring/browse-kill-ring.git", + "sha256": "def280462d07dcca627c580a3a87a9b5e8eabf7440522db6243161dbf7d309cd", + "rev": "2a7acf98c348c4f405a6b2ab216224ca14915be8" + }, + "recipe": { + "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [] + }, + "auto-shell-command": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/auto-shell-command.git", + "sha256": "aae68a4687f79a0b073bf5d6f8f7a4912d0a99b178d299fcd490eb8a2a6b21a3", + "rev": "59d4abce779a3ce3e920592bf5696b54b2e192c7" + }, + "recipe": { + "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.2", + "deps": [ + "deferred", + "popwin" + ] + }, + "shelldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-shelldoc.git", + "sha256": "22ab3f9f59768dad0c674cfe34cf5ae588f4b6a8b9b73d8a474b194021a5658b", + "rev": "1d40c73969347586906ca1dde2adb50afcd73b1b" + }, + "recipe": { + "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "cl-lib", + "s" + ] + }, + "malabar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m0smith/malabar-mode.git", + "sha256": "16edd53bb2d7f326de44706eb6c48777ecbd7bc2ea85d854a95126be06a85552", + "rev": "4c5fde559f518509763a55040fdb0e4b6b04856a" + }, + "recipe": { + "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140303.946", + "deps": [ + "fringe-helper" + ] + }, + "fullframe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomterl/fullframe.git", + "sha256": "14a20c3f48833c183aeb9ac4984fdb8b1ca32d2233f8166a080305c5ca8fac87", + "rev": "b9c3e54c8928c5ba994c55de7794b5f739b43ced" + }, + "recipe": { + "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib" + ] + }, + "cperl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jrockway/cperl-mode.git", + "sha256": "2c28d3f8d34a0ff157ee0ea0daad76f7dcfcc4065dbc3a7d924cdbc333107172", + "rev": "06f5668653a114991836139344dbe8f0674577af" + }, + "recipe": { + "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "6.3", + "deps": [] + }, + "highlight-chars": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-chars.el", + "sha256": "14gx9fri2qbgii828dd42aw02rskshbyyymd68aqh2dll7cbw6mf" + }, + "recipe": { + "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flymake-cursor": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/flymake-cursor.el", + "sha256": "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr" + }, + "recipe": { + "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "comment-dwim-2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remyferre/comment-dwim-2.git", + "sha256": "fa8ab7fc1415fc111cddd5463496f456ac6ac5a8348b38ed688731e0abd8f44f", + "rev": "8cedecde018b5872195bfead6511af822776a430" + }, + "recipe": { + "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.2", + "deps": [] + }, + "ctags-update": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jixiuf/helm-etags-plus.git", + "sha256": "763f0e0884aa0de6d8ea36b33a5c007f2fbf4e9ac55cf829e27fa4347a8244f7", + "rev": "d3f3162d5a3291d84b15fd325859c87e1a374923" + }, + "recipe": { + "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "pcsv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-pcsv.git", + "sha256": "3fb8e07a3d078c7f8332edf0c6bc7314b2f34a64e8216ad7f643931a33ec630e", + "rev": "91599aaba70a8e8593fa2f36165af82cbd35e41e" + }, + "recipe": { + "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.6", + "deps": [] + }, + "helm-unicode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shosti/helm-unicode.git", + "sha256": "40f9d9e737bf4806308da199da1daacb628ef5db8b7b3aacbed1b69ef46e8b92", + "rev": "e68cc60f7efd93b410844f3722bc6681dc65e2fd" + }, + "recipe": { + "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "emacs", + "helm" + ] + }, + "chm-view": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/chm-view.el", + "sha256": "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8" + }, + "recipe": { + "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "company-quickhelp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/expez/company-quickhelp.git", + "sha256": "bbbbf56ef56ecf2dfd8fb6131174a7f44cb9a56f03ad2577e7af1a76c7ec9a66", + "rev": "05e0ee9b854f90ff2b007b3e19446a02513f43dc" + }, + "recipe": { + "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [ + "company", + "emacs", + "pos-tip" + ] + }, + "fxrd-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/msherry/fxrd-mode.git", + "sha256": "2b4939ad9cc32b7a3fcc3c29a71486e7372525f001246cec6ea024f7f9c77100", + "rev": "122afe6b7edeff117edf92dab1ba011ae71a5910" + }, + "recipe": { + "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "s" + ] + }, + "gnus-desktop-notify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wavexx/gnus-desktop-notify.git", + "sha256": "dc6fdbd32d3fb7d0dae00f235aa6dae6033e4a1810356416c04997af22e84822", + "rev": "210c70f0021ee78e724f1d8e00ca96e1e99928ca" + }, + "recipe": { + "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4", + "deps": [ + "gnus" + ] + }, + "js-comint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/js-comint.git", + "sha256": "39263da6c8036dbb4c89aa22a50f49a78e3cffd1e4cbca5dca1ff9b8498ec6bd", + "rev": "69c8475573f1ef1f59331027a0fe445161b51000" + }, + "recipe": { + "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [ + "nvm" + ] + }, + "qml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/qml-mode.git", + "sha256": "f4c3ba100a35f31f2af8199324f03f103c48c6356d988bd55eabb2cad55d3019", + "rev": "a69ee2d23e079dbedab22fde85181a8320af2222" + }, + "recipe": { + "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "org-journal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bastibe/emacs-journal.git", + "sha256": "1fee380fc81fe5fde3077e88279e7b49dc678863e8871cb98095bfdd5a0eeaed", + "rev": "68974d86f1ef518defb3085e415d882ba4575714" + }, + "recipe": { + "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10.2", + "deps": [] + }, + "selectric-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rbanffy/selectric-mode.git", + "sha256": "ec37be24ed230b32e0c5e96b470510237bd49229954a0d36e06d37dd682fff30", + "rev": "0dd7ef28a9d9d6fbb95fdeeab6b576ad8762ad16" + }, + "recipe": { + "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "circe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/circe.git", + "sha256": "617bc77c6fca10d815581e4a598e498c617c863604d30659b8fed4ebfdb8f9b6", + "rev": "ac1cddf946e0af90ab453dd816f7173e0d4000e5" + }, + "recipe": { + "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1", + "deps": [ + "cl-lib" + ] + }, + "evm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/evm.el.git", + "sha256": "9ef30d1f034f47c4f68a89e2a9c9204586c684ef0eabb4709d5e97084dda7c3f", + "rev": "d0623b2355436a5fd9f7238b419782080c79196b" + }, + "recipe": { + "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.2", + "deps": [ + "dash", + "f" + ] + }, + "truthy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/truthy.git", + "sha256": "503a3c9695d59e9c9df9968016867c9d416ed78fb355e565475732fce6d6ff27", + "rev": "276a7e6b13606d28e4f2e423bb1ea30904c5def3" + }, + "recipe": { + "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.8", + "deps": [ + "list-utils" + ] + }, + "php-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/php-mode.git", + "sha256": "5c4a63b593d5737ed238c3996b79be0eebe75ca36440390a5064e5ff8fc11a3e", + "rev": "f3201eebfebf1757cf6a636fe3c7a3b810ab6612" + }, + "recipe": { + "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.17.0", + "deps": [] + }, + "sotlisp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/speed-of-thought-lisp.git", + "sha256": "f3648f4ab2e5ea35e160759b99dce419ef47276928401d5d3cb09f0ccfa94988", + "rev": "6e0ebc97000dc505f72ad9cc793ac857b0585f5a" + }, + "recipe": { + "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.1", + "deps": [ + "emacs" + ] + }, + "helm-spaces": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-spaces.git", + "sha256": "84485ea38d7a4b595bac0be033e2308f7ab3d1ba22ca3c0a4deed841aedbe04f", + "rev": "8b4f5a1e3cb823ceee1e341ce45f9b18a1b8057c" + }, + "recipe": { + "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "helm", + "spaces" + ] + }, + "logito": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/logito.git", + "sha256": "b9a7433417eafc5bc158f63dddf559b2044368eb3061f0264169de319c68fe4a", + "rev": "824acb89d2cc18cb47281a4fbddd81ad244a2052" + }, + "recipe": { + "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "eieio" + ] + }, + "org-tracktable": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tty-tourist/org-tracktable.git", + "sha256": "1d4fe6a82d3e5a6d471e97abed1235d2aa4f468b54ec7cf0f7f1264ccd707c14", + "rev": "28ef6772cdcf436cf38095f15c6bb681473180ce" + }, + "recipe": { + "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "showtip": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/showtip.el", + "sha256": "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql" + }, + "recipe": { + "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "electric-operator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidshepherd7/electric-operator.git", + "sha256": "86bd1e680208ed787f370d8ad82b81fb0007bf8be67e78a27941e938bce185f2", + "rev": "3d34101e065396389cfbb8fec333c78641a71dc6" + }, + "recipe": { + "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "dash", + "emacs", + "names" + ] + }, + "owdriver": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/owdriver.git", + "sha256": "e8bdef48d90b5325063f39038e1f6dac1db59f3002273b6b97a225b056e60194", + "rev": "0479389d9df9e70ff9ce69dff06252d3aa40fc86" + }, + "recipe": { + "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6", + "deps": [ + "log4e", + "smartrep", + "yaxception" + ] + }, + "message-x": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/message-x.el", + "sha256": "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf" + }, + "recipe": { + "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "spotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remvee/spotify-el.git", + "sha256": "fccf20d35c389ddac87a13d4a5b9105a519de3a381c4b84ae6575ff5cdeec817", + "rev": "07a44ecdbdaa93977e97f2a2e5d280ef0b2e8545" + }, + "recipe": { + "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [] + }, + "http-post-simple": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/http-post-simple.el", + "sha256": "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my" + }, + "recipe": { + "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "mustache-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mustache/emacs.git", + "sha256": "13c61a2d3c8d76e65e035f37219b9ae092484112ed4324357db9840b4123fc95", + "rev": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f" + }, + "recipe": { + "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "persistent-soft": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/persistent-soft.git", + "sha256": "4ac0d4b17b39ae3e6fe681a55cbc35da9793f862e386aafd210b11b891939232", + "rev": "a1e0ddf2a12a6f18cab565dee250f070384cbe02" + }, + "recipe": { + "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.10", + "deps": [ + "list-utils", + "pcache" + ] + }, + "key-combo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/uk-ar/key-combo.git", + "sha256": "d8d0e38ad9917e6e5badb62d39b27896d94899a637427f8e27b23ab67db43292", + "rev": "0bc0cf6466a4257047a21a6d01913e92e6862165" + }, + "recipe": { + "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6", + "deps": [] + }, + "magit-filenotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-filenotify.git", + "sha256": "0404870e67798670c879e2d5779eec78b0489d7548c72fc126899ae64726a663", + "rev": "575c4321f61fb8f25e4779f9ffd4514ac086ae96" + }, + "recipe": { + "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "emacs", + "magit" + ] + }, + "xterm-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atomontage/xterm-color.git", + "sha256": "5dc8de0d26c060930acf3667df41b5aab041c510a5bbd3fd248cef478c21b2fd", + "rev": "380cc8c6c6969f8a262ad4ddc61117691db7f4d1" + }, + "recipe": { + "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "phpunit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/phpunit.el.git", + "sha256": "bef01490d1dd27a12a1e5135b1d60466e0438e9b416a256cef7edb663a14c288", + "rev": "d9e9092d664463b7cc8e0a433a76b8c9598ab2c9" + }, + "recipe": { + "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "f", + "pkg-info", + "s" + ] + }, + "pastebin": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pastebin.el", + "sha256": "17br64snqby465bjb0l1hzw0pcms5m2knrvb6y9gn3kir4sdi6kn" + }, + "recipe": { + "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "org-gcal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-gcal.el.git", + "sha256": "cb619c6d37a8a2bc9197764b487c8eca02b4f0689d427fe74a6e503119ad0aaf", + "rev": "badd3629e6243563c30ff1dd0452b7601f6cc036" + }, + "recipe": { + "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "alert", + "cl-lib", + "emacs", + "org", + "request-deferred" + ] + }, + "helm-rubygems-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/neomantic/helm-rubygems-org.git", + "sha256": "2096b3ee03c19844e452e6e029f2a69ab47340a05118905c67bc42ffd444cee9", + "rev": "6aaed984f698cbdf9f9aceb0221404563e28764d" + }, + "recipe": { + "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "ag": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/ag.el.git", + "sha256": "7792c562958d7bf9f708f2e732115a06b88caffca593379c3d32b4947394512b", + "rev": "12f22a4a9f4ff3c8a0b6f089b8cf6d85a3f8b7eb" + }, + "recipe": { + "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.46", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "smartscan": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mickeynp/smart-scan.git", + "sha256": "a455d112f2113a2418bf67bba0825493577c16e97d906b3bc9bb9210126ca7e9", + "rev": "13c9fd6c0e38831f78dec55051e6b4a643963176" + }, + "recipe": { + "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "el-init": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HKey/el-init.git", + "sha256": "a0dd080afe34bf2c6cf2949ea257875922e7784be5820c71f50b076c90fd8fdb", + "rev": "25fd21d820bca1cf576b8f70c8d5a3bc76792597" + }, + "recipe": { + "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "anaphora", + "cl-lib", + "emacs" + ] + }, + "alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/alert.git", + "sha256": "4638ce5d228a9e4763a052f2eeba61664f228b386f9138a9ceac990a081eecee", + "rev": "b301478e34a5c8bd27c17fc7605e6dd576e97935" + }, + "recipe": { + "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [ + "gntp", + "log4e" + ] + }, + "slime-ritz": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pallet/ritz.git", + "sha256": "2bbac9f46c148eb12ef67f1deb96db6fed4032ffcd1f27975d8e3c87d52d947f", + "rev": "1cc6faedae26323994ea8dd1a4f555db8acbf244" + }, + "recipe": { + "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.0", + "deps": [] + }, + "buffer-flip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/killdash9/buffer-flip.el.git", + "sha256": "7f06d63187d569d0342007ea2de3513485fa32a2bdf295b918cc27897e686632", + "rev": "2bbf74fac037ace991d03336c515c499a8e69c95" + }, + "recipe": { + "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "key-chord" + ] + }, + "point-undo": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/point-undo.el", + "sha256": "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz" + }, + "recipe": { + "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "frame-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/frame-cmds.el", + "sha256": "1p7ry940wgjpg2vq3m1nr1bs86cc4mhbpzj64znlmlnjgwa4bk2a" + }, + "recipe": { + "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "frame-fns" + ] + }, + "yaoddmuse": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/yaoddmuse.el", + "sha256": "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4" + }, + "recipe": { + "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "tern-django": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/tern-django.git", + "sha256": "d92beb58d914c47d47673f53748f2c60d2fc7e1b9b5db6926b62eca6699de253", + "rev": "6d616c5f802d3432c4065dc306d7977d254df49f" + }, + "recipe": { + "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs", + "f", + "tern" + ] + }, + "shell-history": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/shell-history.el", + "sha256": "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r" + }, + "recipe": { + "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ido-ubiquitous": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", + "sha256": "2164bd3a82ddc9ec354f3f663139e004fa76cc5298756825acf044d78043ac3b", + "rev": "2e826e3f209cb5d2bc92bdbfd3b189d2c06ff51c" + }, + "recipe": { + "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.9", + "deps": [ + "cl-lib", + "emacs", + "ido-completing-read+" + ] + }, + "merlin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/the-lambda-church/merlin.git", + "sha256": "590bc08a6476a92c16aaa6b173bd3440fc144970cff7e92cb781a9b432674622", + "rev": "6f9915e0d87bf721ea2859ffa17d3fbeeabcfb9d" + }, + "recipe": { + "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.1", + "deps": [] + }, + "org-multiple-keymap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-multiple-keymap.el.git", + "sha256": "80c03f90333f8b642ed2130266841ab93f3776ae2adacfa941d9a15bad5a910a", + "rev": "20eb3be6be9f0abbad9f0d007e40cb00c8109201" + }, + "recipe": { + "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs", + "org" + ] + }, + "vagrant": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ottbot/vagrant.el.git", + "sha256": "e3a1a6696187c6b9d6935978313ae4c509987b9c7d64407444a9e9513f4fea94", + "rev": "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c" + }, + "recipe": { + "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.2", + "deps": [] + }, + "windsize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/grammati/windsize.git", + "sha256": "347ae1a31d4203f9c1673c937fcddb546d2324720f6269dd241a07325a079bb8", + "rev": "014b0836f9ffe45fa7e0ccc84576fbef74815a59" + }, + "recipe": { + "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "unbound": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/unbound.el", + "sha256": "0i5km1naxprd4lj20097ph50mjs2364xwxcdw0j3g5569mk5nc06" + }, + "recipe": { + "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "anti-zenburn-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/anti-zenburn-theme.git", + "sha256": "afa90bbd8fea9c3b69c00aaa6e974a1ddf9991ca908d091fad3a4eba63490461", + "rev": "9a33476a0dad3c6dd2d5c0a0ff75e30aa5eacb01" + }, + "recipe": { + "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3", + "deps": [] + }, + "sws-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianc/jade-mode.git", + "sha256": "7690294b61606fc289fc7f0c8c07153674d4c17687427c4f520810a170682b4f", + "rev": "4e7a20db492719062f40b225ed730ed50be5db56" + }, + "recipe": { + "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "ibuffer-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ibuffer-projectile.git", + "sha256": "6cffceb631a956b1dbbe84c34c6acfe280e9224c89eca1ed9ee2b2c482b996fd", + "rev": "8b225dc779088ce65b81d8d86dc5d394baa53e2e" + }, + "recipe": { + "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "projectile" + ] + }, + "lentic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/lentic.git", + "sha256": "74c4c8b041a2672e6560feb60714236fa8254aba95c94f5f9be7eb7daa68b439", + "rev": "8885bfcde8c6b60b79e7f07cf84c95578107491f" + }, + "recipe": { + "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10", + "deps": [ + "dash", + "emacs", + "f", + "m-buffer", + "s" + ] + }, + "ubuntu-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocher/ubuntu-theme.git", + "sha256": "4c60e44d91f4cc4e4ccd0bd85d0b98c46fe82af414deec9e85633f691687814c", + "rev": "41f09ca6c203da93bdadb2077556efd48e3b5d5a" + }, + "recipe": { + "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "04b", + "deps": [] + }, + "lfe-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rvirding/lfe.git", + "sha256": "79a8dc4a0dbfb0daa287f6109187949804fb030920f14b3a0b4853aa18f60d02", + "rev": "d7bc80da04aedd0a607f17d8d149eba363872b4b" + }, + "recipe": { + "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10.1", + "deps": [] + }, + "ascii": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ascii.el", + "sha256": "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75" + }, + "recipe": { + "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "nyan-prompt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PuercoPop/nyan-prompt.git", + "sha256": "777ae6ed685c2611742f0f910f5cbb030522e113cd4aa745d8a70d88bcbcfa2d", + "rev": "b5137f2ee9afe640f59786eed17b308df6356c73" + }, + "recipe": { + "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "keymap-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/keymap-utils.git", + "sha256": "fadbbaed0b24fb3c12d1cb6ab5ccd5eb7bc21dffcb1f7018cf0c86b33b9e5219", + "rev": "dd396093899a3792ef88742657e799339fd8aed5" + }, + "recipe": { + "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.2", + "deps": [ + "cl-lib" + ] + }, + "xcscope": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dkogan/xcscope.el.git", + "sha256": "e7961d73b903ef3529617a839e170482b23f254b0eb2cca5c54291ab70d535d8", + "rev": "4775aae4ce4caa92fb8b752907d7b66b96ccbe03" + }, + "recipe": { + "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "weechat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/the-kenny/weechat.el.git", + "sha256": "ffa147f18ffbbd0e583fb635603aa95b2a00ee1d056647965ddaba0e36050d77", + "rev": "f01cdd4d874cf09fee5a78d7b29eb96bc21be2be" + }, + "recipe": { + "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [ + "cl-lib", + "emacs", + "s", + "tracking" + ] + }, + "psci": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/emacs-psci.git", + "sha256": "e330e5713a3b53fb4a3586f17e5e386131dfe3e5919bc33441c0df7628cffd71", + "rev": "8c2d5a0ba604ec593f83f632b2830a87f41f84d4" + }, + "recipe": { + "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6", + "deps": [ + "dash", + "deferred", + "f", + "purescript-mode", + "s" + ] + }, + "go-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shosti/go-scratch.el.git", + "sha256": "f5a2a714ab96abe9ad967f71c501d2af60cadd19a8657e83594ed9c7b778dba8", + "rev": "3f68cbcce04f59eb8e83af109164731ec0454be0" + }, + "recipe": { + "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "emacs", + "go-mode" + ] + }, + "finder+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/finder+.el", + "sha256": "01rkp2fa4h9pippa7q3702hn9bqgbdg7ml4w6dn72l8nj4vnrwmn" + }, + "recipe": { + "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "plenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/karupanerura/plenv.el.git", + "sha256": "f4ebb1275c16c4482ab079ecbbbbe9b83d279862626c9ec6f78e11fca867b273", + "rev": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2" + }, + "recipe": { + "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.32", + "deps": [] + }, + "git-gutter+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/git-gutter-plus.git", + "sha256": "e08ba774438788ef8160d8621a2a82fbbd4cd511f925a4c51b5b8ea99a30f3a6", + "rev": "f8daebb6569bb116086d8653da3505382e03d940" + }, + "recipe": { + "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "git-commit" + ] + }, + "wrap-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/wrap-region.git", + "sha256": "53effb0d885a46e080b9344218d75c11879e112bbf9639ffb0fd47b7477f86b6", + "rev": "5a910ad23ebb0649e644bf62ad042587341da5da" + }, + "recipe": { + "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.3", + "deps": [ + "dash" + ] + }, + "flymake-gjshint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/flymake-gjshint-el.git", + "sha256": "caaf8af6f05880a08084b7fd4b51656c17e19d85fc89a5f6fa5e3ab72d2156b1", + "rev": "71495ee5303de18293decd57ab9f9abdbaabfa05" + }, + "recipe": { + "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6", + "deps": [] + }, + "rnc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TreeRex/rnc-mode.git", + "sha256": "bc4b7628df4ec4e9e9c810da75befb516ef541bf522a7b90996f9fdf9d1a9797", + "rev": "b39dc23218213336b55f28e12a1d0e49ef7c1e21" + }, + "recipe": { + "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.6", + "deps": [] + }, + "pangu-spacing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/pangu-spacing.git", + "sha256": "bec459054b69833ca33dc68e15afa45a91272e564309e95fc0e782e79ffaad3e", + "rev": "034b4ef8a1b29bf7bfed6a916380941506ed26ed" + }, + "recipe": { + "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "protobuf-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/google/protobuf.git", + "sha256": "e000a50e04fe5b30fe6a12c989f851d8792c061df1922ebe1c3e6bd1f747ae0d", + "rev": "bba83652e1be610bdb7ee1566ad18346d98b843c" + }, + "recipe": { + "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.6.1", + "deps": [] + }, + "metaweblog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/punchagan/metaweblog.el.git", + "sha256": "64ad9529d66e021c252a63cd075333a99759488605ec2b039efa80f5c96aab1a", + "rev": "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb" + }, + "recipe": { + "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "xml-rpc" + ] + }, + "imenus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/imenus.el.git", + "sha256": "b0a1cb702360584cb425e2b216b99c836a8a02914c34c04490b477a4f08cd3c6", + "rev": "7409021864a4e74a237a00d1e1d2597dc80ef7f0" + }, + "recipe": { + "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "systemd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/holomorph/systemd-mode.git", + "sha256": "e9d9f5747d9816721c1eff318cc436f68e6eecf862df406dbd884f80499eba2b", + "rev": "aa9f4f64e99d5912153eef0726e26fd4dfb4d7c3" + }, + "recipe": { + "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [ + "emacs" + ] + }, + "list-processes+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/list-processes+.el", + "sha256": "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a" + }, + "recipe": { + "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "hippie-exp-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hippie-exp-ext.el", + "sha256": "1jkjg7zxpc06plzlyvj1a8dcvj8ijqzhkxwlsd12cgkymvp411yl" + }, + "recipe": { + "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "recentf-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/recentf-ext.el", + "sha256": "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l" + }, + "recipe": { + "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ov": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/ov.el.git", + "sha256": "bb92b9f10b1b69b35c4e157ce1420238c8124ad01fafd85a68a052896ec8fd1d", + "rev": "4e1c254d74bc1773c92f1613c3865cdcb4bc7095" + }, + "recipe": { + "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.6", + "deps": [ + "emacs" + ] + }, + "ibuffer-vc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ibuffer-vc.git", + "sha256": "de3ad9481a5aa5f8f3e964f17301e1c56986ab99820c058003f014ce330a1c71", + "rev": "b2bac7aa69335933ebb2e6f34259fa96d2c8d46a" + }, + "recipe": { + "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10", + "deps": [ + "cl-lib" + ] + }, + "servant": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/servant.el.git", + "sha256": "b544061f1bc383761404a1204381b50a7a6f976ac6f1e48b7a8c012ab272891f", + "rev": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134" + }, + "recipe": { + "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "ansi", + "commander", + "dash", + "epl", + "f", + "s", + "shut-up", + "web-server" + ] + }, + "moz-controller": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/RenWenshan/emacs-moz-controller.git", + "sha256": "a0a11f02dc080796967f9880fc123c1a490f07efc38b485e90353d39290b31f0", + "rev": "42fd842039620de7fb122f7e4ffc1ab802ee97c5" + }, + "recipe": { + "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "moz" + ] + }, + "dired-efap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juan-leon/dired-efap.git", + "sha256": "dd8b414bf8bc4598b94bbdfdf93df2f4eaac7999bce779b968a8d1e977be7413", + "rev": "2b849bc5c09d0b752a177495ea1b851ee821f5bf" + }, + "recipe": { + "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [] + }, + "form-feed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/form-feed.git", + "sha256": "02aecef2b119007e0ea8a8acf601b328c6670c4b336a5723c351ac308cb2329c", + "rev": "eac6724c093458745e9ae0e37221077fa2ad0ff6" + }, + "recipe": { + "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [] + }, + "auto-complete-nxml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/auto-complete-nxml.git", + "sha256": "a68a0e5f7305c0b04895f4cdd4f248b6c6a34c277e93aff814311a11cc53a5ed", + "rev": "ac7b09a23e45f9bd02affb31847263de4180163a" + }, + "recipe": { + "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [ + "auto-complete" + ] + }, + "time-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/time-ext.el", + "sha256": "0kxgzjwgd979aypjak07k8ss6hnm3x9f96z1rz2zsz2i3vvh6sqv" + }, + "recipe": { + "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ws-butler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/ws-butler.git", + "sha256": "0ecddba9e263cba41a191d7d01f08fe2a0cea5b714fac200f5dddc4c8fa060d3", + "rev": "106d313c0dad532c2da3cc78770a8a2f0396aa85" + }, + "recipe": { + "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "nsis-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/nsis-mode.git", + "sha256": "547f7686371acb7dae09d0dc6b5df80389cea045f833305851d61732d6729830", + "rev": "f1bf701c37680553c8f51462e0829d0dd6c53187" + }, + "recipe": { + "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.44", + "deps": [] + }, + "punctuality-logger": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/elzair/punctuality-logger.git", + "sha256": "fea22e9fc260da054ab2c081a709ad6b6d63b06391e935bc5f3c671ccf8888ec", + "rev": "708cae8e67dbae293c7c4be0ca5e49d76fac6714" + }, + "recipe": { + "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [] + }, + "less-css-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/less-css-mode.git", + "sha256": "c63413fb5345555348285558bdb587bf35a04ddcf3dd29c038595e8b381526bd", + "rev": "d59a3ff4031ae75fbbe77b6cfce7843205394c28" + }, + "recipe": { + "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.20", + "deps": [] + }, + "python-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wavexx/python-x.el.git", + "sha256": "79a9393609c3ddfc9baa61b51d3d2152700c49ec089c3185a0e5889309632702", + "rev": "e606469aafec2e6beda8c589540b88a5a6f6f33f" + }, + "recipe": { + "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "folding", + "python" + ] + }, + "ruby-test-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/r0man/ruby-test-mode.git", + "sha256": "0e2d5a6ff2a5f3411a44ca554974bf5a976ab5e96f9a775a07b032f172921f01", + "rev": "7d3c04b60721665af93ffb4abc2a7b3191926431" + }, + "recipe": { + "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "font-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/font-utils.git", + "sha256": "21a426b301cdbdf4b923423c289f7f1c37dbb426fb7b1dc32d03d395fd56616f", + "rev": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3" + }, + "recipe": { + "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.8", + "deps": [ + "pcache", + "persistent-soft" + ] + }, + "digistar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/retroj/digistar-mode.git", + "sha256": "4642f8cdbb64eee8dfbefc368bec3577b05cb40faf8d0693bfc640ac7754fc4b", + "rev": "0dcde58ec6e473042e55d4f283b223554546de5b" + }, + "recipe": { + "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "yatex": { + "fetch": { + "tag": "fetchhg", + "url": "https://www.yatex.org/hgrepos/yatex/", + "sha256": "1n38fn6hcsl5ilq8vdaakv6id426lr7hdnvccqy6jdplqymgj7h6", + "rev": "5b49aea3810d" + }, + "recipe": { + "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0", + "deps": [] + }, + "dired-sort": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-sort.el", + "sha256": "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z" + }, + "recipe": { + "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "pandoc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/pandoc-mode.git", + "sha256": "a71770df1bb3a8889f1792846906ea32f1d08cd231beeef69c668b1b14d8cc51", + "rev": "067f9aa8ba27bd50b602dbfdaa155e2f381c7139" + }, + "recipe": { + "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.13.3", + "deps": [ + "dash", + "hydra" + ] + }, + "highlight-parentheses": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/highlight-parentheses.el.git", + "sha256": "4a15287f4b94cde9aa46a232d086f32264f966f29ace1d647438d2b5a1b78308", + "rev": "5aa800a68e3795716de1e7f2722e836781190f31" + }, + "recipe": { + "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "elx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/elx.git", + "sha256": "8f12627cbded8035bb19660b5d06c2900ca9d7ea0047abcb6a6c528689d85b8b", + "rev": "8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb" + }, + "recipe": { + "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10.0", + "deps": [ + "emacs" + ] + }, + "hyai": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/hyai.git", + "sha256": "59ac0bfd83ef3f1c9969edd53bf49c8a54f5a7705a7b299db39fa38accc22a24", + "rev": "7c644d31f62943c75ccf5a772e43450b462cc08f" + }, + "recipe": { + "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "hackernews": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clarete/hackernews.el.git", + "sha256": "04a9d19989d519c8ca2bd5636d704a373464ce2da948359d732fbd6a691ad3b9", + "rev": "97b178acfa26b929fc23177b25fb0c62d2958e32" + }, + "recipe": { + "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "json" + ] + }, + "powerline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/powerline.git", + "sha256": "f925c31f90d03b30d9f6d8e4f2f4e07d4a5c42253d08de45a96f1a118958a3db", + "rev": "240bad5ebea4c7298e86ed76bd44c45d9062cb33" + }, + "recipe": { + "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2", + "deps": [ + "cl-lib" + ] + }, + "helm-sage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/helm-sage.git", + "sha256": "b55e09e921dd73d30e0842276609eb7e553c9a2dd2c99af3cf86bacd2c95b784", + "rev": "b42b4ba5fd1b17c4b54c30376a053281686beeb8" + }, + "recipe": { + "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "cl-lib", + "helm", + "sage-shell-mode" + ] + }, + "skewer-less": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/skewer-less.git", + "sha256": "63636337aafb0cc1846514233afe1dd4d8eb80fc89044e3b74565e73da55ba3c", + "rev": "593001930f1d68c85233f34c5f6fb04173fc98d6" + }, + "recipe": { + "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "skewer-mode" + ] + }, + "eimp": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eimp.el", + "sha256": "024qyipwlj3g0fff06cgq357blkh3hyr14vpmkqsv15x6gb9snir" + }, + "recipe": { + "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flymake-perlcritic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/illusori/emacs-flymake-perlcritic.git", + "sha256": "38cf37d7020f0ce4ab233c543b44e136c2076e6c8ea34653ad534257a0402987", + "rev": "0692d6ad5495f6e5438bde0a10345829b8e1def8" + }, + "recipe": { + "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.3", + "deps": [ + "flymake" + ] + }, + "dired-single": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-single.el", + "sha256": "1ys38kjnqvks8w207jv6y5yh30rarmib0p78ak761k9sldgd6wvx" + }, + "recipe": { + "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "oneonone": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/oneonone.el", + "sha256": "1810acc61dwdq80jwn5diwg9djzag3n1l9lql72bjkq21my320k5" + }, + "recipe": { + "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "hexrgb" + ] + }, + "emamux": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-emamux.git", + "sha256": "b12d2c36f5a12a5a629c6b13ffc64dbdec905a888c049085ce28e0c64892bdbb", + "rev": "53177ca59ed2824cc0837677af5a13a580691a71" + }, + "recipe": { + "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "kill-or-bury-alive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/kill-or-bury-alive.git", + "sha256": "14c2fc7d5ce2c8ea044cf818ae9a40d4e01b6f60d4eddf50a726b0d67b728db0", + "rev": "6e0d1ff08889d9cf3f89e366e327d9de930cf67c" + }, + "recipe": { + "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "ggtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoliu/ggtags.git", + "sha256": "14cdddb7ba43622b64858868917f1ad096c1840f74d2a668c90df4436a22dfe7", + "rev": "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731" + }, + "recipe": { + "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.11", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "move-text": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/move-text.el", + "sha256": "0azda60cbz3kpvy6zd7pvlj40iwvj1zjdxv1brzqa6yfa4kyixv2" + }, + "recipe": { + "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ac-cake2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-ac-cake2.git", + "sha256": "9b738f3f0f1c7bb8dfad1f501fdd5ba67e772592d72ee4034a1f099d68839556", + "rev": "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a" + }, + "recipe": { + "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "auto-complete", + "cake2" + ] + }, + "cfengine-code-style": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cfengine/core.git", + "sha256": "5625440ba13ae29d7eaf4fff54e764107fa290d15db95196db851e0595953a9f", + "rev": "afed90c14a2b30bc36595626b959522c34a6565f" + }, + "recipe": { + "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.8.0b1", + "deps": [] + }, + "corral": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nivekuil/corral.git", + "sha256": "9d1917289f677dbd57731b42f78ab70716d81dce030781eca3148225c29dec3e", + "rev": "bcd1d90b2280f93ed139e4aa82838a8e62a4bac9" + }, + "recipe": { + "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "look-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/look-mode.el", + "sha256": "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp" + }, + "recipe": { + "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "cacoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-cacoo.git", + "sha256": "4f7fcda583e31efdd767a11a71ff7e0a4a4d5ee8c47fbe0e191c25e1446dc48a", + "rev": "c2e6a8830144810cd4e51de3646cb8200bcebbc6" + }, + "recipe": { + "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.2", + "deps": [ + "concurrent" + ] + }, + "sprintly-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sprintly/sprintly-mode.git", + "sha256": "70f39254a69befab2cd4c069310dc51a92b566bece821fd2ed43b1f951e0a920", + "rev": "6695892bae5860b5268bf3ae62be990ee9b63c11" + }, + "recipe": { + "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "furl" + ] + }, + "multi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kurisuwhyte/emacs-multi.git", + "sha256": "fbf4cfc3df12c5500b1c877a3b026a86fcc5f8bb673290ac8919b68b8f5eea87", + "rev": "884203b11fdac8374ec644cca975469aab263404" + }, + "recipe": { + "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.1", + "deps": [ + "emacs" + ] + }, + "json-reformat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/json-reformat.git", + "sha256": "c1dc4b00ab7dcf8df82606986fcdf84f11c515888ef1818ce0370f36b2524660", + "rev": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716" + }, + "recipe": { + "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6", + "deps": [] + }, + "unicode-whitespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-whitespace.git", + "sha256": "ef8ae47608207b2aa885d3ec1e539235a764b6215e2ce258e36e5fccb19de5aa", + "rev": "6d29f25d46b3344c74ce289fc80b3d4fc17ed6db" + }, + "recipe": { + "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.4", + "deps": [ + "pcache", + "persistent-soft", + "ucs-utils" + ] + }, + "kakapo-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/listx/kakapo-mode.git", + "sha256": "80d4998bd5cf67a1e3b08ee3d15e5d42bd58f87512aadbc3271bd86c2172ca2c", + "rev": "fe3d579867f7465cd3ad04f29b4b2b3b820edc01" + }, + "recipe": { + "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [ + "cl-lib" + ] + }, + "pretty-lambdada": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pretty-lambdada.el", + "sha256": "0qda87pz137ki2527v2ji74nibazwxh8ykqv26315z6pz0q1dkin" + }, + "recipe": { + "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "omni-tags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-tags.el.git", + "sha256": "d0553e602917a69f8283d456c299060881f3c22ff7c2b79d4e3191ab4944bd15", + "rev": "a7078bfbc9a6256efd0e57530df9fd7808bc2185" + }, + "recipe": { + "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "cl-lib", + "pcre2el" + ] + }, + "hcl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-hcl-mode.git", + "sha256": "b3c699f37bdefe740a30cc42ffff6292a6429652d24e45927fd4a5f67ba3c2e4", + "rev": "f9757d4122d75ffdff92c97ec9e75694506caba5" + }, + "recipe": { + "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "cl-lib" + ] + }, + "tfs": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tfs.el", + "sha256": "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v" + }, + "recipe": { + "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "page-break-lines": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/page-break-lines.git", + "sha256": "77be7733c259b3f0fc0dacb9952c940a9026f656a8ce8be6e0a27b79fb59e228", + "rev": "36d3f93a23b767e7558b9c90f3631b03ce9fbdce" + }, + "recipe": { + "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10", + "deps": [] + }, + "rope-read-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marcowahl/rope-read-mode.git", + "sha256": "30717ad1cfa268a145632463ce28794d8602c76382d85630af146af81a8b6e8c", + "rev": "cb550afeedd369c80d1ccb54bb48494d170a5569" + }, + "recipe": { + "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [] + }, + "desktop+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ffevotte/desktop-plus.git", + "sha256": "aa9b0d7f94e1e13b815d0766b245cb6c767bf4d85d7cd1c43dd4e5e83fc214dc", + "rev": "a484d24ca673c7536387368729421dad9dde5059" + }, + "recipe": { + "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "bash-completion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/szermatt/emacs-bash-completion.git", + "sha256": "a10f5796a43389206dea92e3d456ec23f32d8f0456ec5d6914df9535721639cf", + "rev": "9588a9c0ddf18f9869d4145a67e6446a4b66eba2" + }, + "recipe": { + "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [] + }, + "angular-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omouse/angularjs-mode.git", + "sha256": "b2c0268d5ed6746718b31e199949e6efbd9f9ba8673ac26a54318486ab9a1e7e", + "rev": "7c0fb37f59dfd9e69f00b50e90a0e88c4e25d8c2" + }, + "recipe": { + "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "ctxmenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-ctxmenu.git", + "sha256": "8b1340e36d68e5adcbc6083b6c8e151525e512cf7a53262634e069cc631599ca", + "rev": "5c2376859562b98c07c985d2b483658e4c0e888e" + }, + "recipe": { + "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "log4e", + "popup", + "yaxception" + ] + }, + "python-environment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-python-environment.git", + "sha256": "35d9b16085dcfc957ea189dadc6a3a4fbdf1ec6787c1b1228f90e973c8621c2a", + "rev": "401006584e32864a10c69d29f14414828909362e" + }, + "recipe": { + "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "deferred" + ] + }, + "gotham-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/gotham-theme.git", + "sha256": "10717add291b66e3e09292454eedc48a41bf74de5642705c483e274e4d89bf5f", + "rev": "d41b0ea37ad5a4d0060ea05e25d80581f113b662" + }, + "recipe": { + "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.5", + "deps": [] + }, + "evil-quickscope": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/blorbx/evil-quickscope.git", + "sha256": "e7a4256a7c47f86def529dad058a90af1b94da74a850ac42c7f0430182cfa57b", + "rev": "d2f512fa4bd0b0603529a441e474ca551f621650" + }, + "recipe": { + "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.3", + "deps": [ + "evil" + ] + }, + "hl-line+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hl-line+.el", + "sha256": "023l9f74kmg66j2rj5h39b4l6svdd48i4h3bdvq8lwy0lz58g889" + }, + "recipe": { + "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "xbm-life": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/xbm-life.git", + "sha256": "e598c88c14b4fb9255e218b4eeaf2385ea53a02031ad083382ff95d0dff1f0a5", + "rev": "1f0b9863e33ba68c29e02c5fa8c29ec032e6772c" + }, + "recipe": { + "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [] + }, + "elpa-mirror": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/elpa-mirror.git", + "sha256": "0ab91234502a62610271347718f0769982e41e6265c1082055c3683a87dd55c2", + "rev": "6c32875c2317736e590e067820996010b21acb1d" + }, + "recipe": { + "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.1", + "deps": [] + }, + "edit-server": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stsquad/emacs_chrome.git", + "sha256": "e1d51992cb04b45cddd3ad048e658d164f4228e3e3534d08f74b6c57e6dec5af", + "rev": "f0db18f0d6e9885e4aef3ace8342fd6f635fadf6" + }, + "recipe": { + "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.13", + "deps": [] + }, + "dynamic-ruler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocher/dynamic-ruler.git", + "sha256": "79512de4980dbcaa48d50df25929f5e58ccbeacb46dbb42606971f9ba17ee717", + "rev": "2d69a7aec21d3d9dbc8ae7520e5c513e98d64ebb" + }, + "recipe": { + "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [] + }, + "fontawesome": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-fontawesome.git", + "sha256": "fe5d3a7c1e00d2ffac37ddcc6e7d2fc97b228e574a2d5fc75c3cca1e76bb3811", + "rev": "ccb03b8329daa3130491c9c4d285b325dbeb5cc7" + }, + "recipe": { + "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [ + "cl-lib", + "helm-core" + ] + }, + "o-blog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/renard/o-blog.git", + "sha256": "e839c4d86e153c74ef07c9fcf551460b701d9c6c15317ed3f164b8c022e76108", + "rev": "5db9594c6e3439c000b183551d7975c2e29131f4" + }, + "recipe": { + "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "love-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/love-minor-mode.git", + "sha256": "f33aa4c7ef81e42b3ac9dea7a86e521bee02a03dc98b8843a53fbd4eb097c587", + "rev": "1634ff3a8b657c63a5cffd9a937812a289f2c954" + }, + "recipe": { + "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "erc-hl-nicks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/erc-hl-nicks.git", + "sha256": "184a95d6ed5d0bf1a8c57f1a33c8d1a9ffdfc3fef579775952e693ce820e872d", + "rev": "f7e9c378072ecc689f2a0ef66d73db8bbcc07d87" + }, + "recipe": { + "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [] + }, + "dash-functional": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/dash.el.git", + "sha256": "e34780da0a976138dc2031f468a9c77aa0f0a18c30baf4681f3e183c8146406b", + "rev": "fec6f5480d0ce03ead0e6117ac77dc7e757e76f8" + }, + "recipe": { + "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.12.1", + "deps": [ + "dash", + "emacs" + ] + }, + "pdf-tools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/politza/pdf-tools.git", + "sha256": "f5100845c4afd507f2dfb09e3c6e98e907e930a40ced8eb1ea05242cb7789296", + "rev": "0107f80dcf268d08ac075b01729820062c0fbd67" + }, + "recipe": { + "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.70", + "deps": [ + "emacs", + "let-alist", + "tablist" + ] + }, + "image+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-imagex.git", + "sha256": "c16830b0405e241cc6db87f1ddfa52d125c0d04bece26601f10fcc1b0ea84f1e", + "rev": "967508a6c151e6ab6e97d3ac332dc5599011830d" + }, + "recipe": { + "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.2", + "deps": [ + "cl-lib" + ] + }, + "dockerfile-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/spotify/dockerfile-mode.git", + "sha256": "38db9adb524d2c5c8590ca6c35debd32471c30ef086e9a20d58dba25f3ae258e", + "rev": "9a75fcd119c5b2a1d723d440bbe4b1db56df90cc" + }, + "recipe": { + "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [] + }, + "telepathy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/telepathy.el.git", + "sha256": "8c690fc860b1bdec9d2d6424c5b72b557f6066af0036914bd33ec44fc90d799a", + "rev": "211d785b02a29ddc254422fdcc3db45262582f8c" + }, + "recipe": { + "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "flycheck-haskell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-haskell.git", + "sha256": "2e30919e8ac2cf14e89ae317ce7318a6b1278c9bdce0a00209b352c54ca8cd5c", + "rev": "57756b8f0e4e0a775a702a1b8f2a4be7bb0088cc" + }, + "recipe": { + "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.2", + "deps": [ + "dash", + "emacs", + "flycheck", + "haskell-mode", + "let-alist" + ] + }, + "evil-iedit-state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-iedit-state.git", + "sha256": "5aa699537838d52937a09d86ca8e6692325239509724f229da7d148bbe48e1c0", + "rev": "0bf8d5d1777f1e8a3c46b6a1c7dceb082fcc6779" + }, + "recipe": { + "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "evil", + "iedit" + ] + }, + "unicode-enbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-enbox.git", + "sha256": "3421f1cd186e616490bee841a2bd838fcd00945db3a8d8493bdf0da39530f4dc", + "rev": "ff313f6778bb96481c0ee3291b07a7db46f21ff5" + }, + "recipe": { + "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [ + "pcache", + "persistent-soft", + "string-utils", + "ucs-utils" + ] + }, + "flycheck-pos-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-pos-tip.git", + "sha256": "aa849fac9428d8026b5c095fcb92e664e03c085375ed7891af2e8a27efd8a82b", + "rev": "0c2b31b615fa294f329f3cc387b464525ce3392d" + }, + "recipe": { + "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "dash", + "flycheck", + "pos-tip" + ] + }, + "ac-dcd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atilaneves/ac-dcd.git", + "sha256": "b672dc0768e1eac27ab668ab134f481894a279d5bf6c01bdd182716d01427a28", + "rev": "4cb14b1e9fcfc4bf4a084765bc1eb10abfbbbd49" + }, + "recipe": { + "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "auto-complete", + "flycheck-dmd-dub" + ] + }, + "es-windows": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/es-windows.git", + "sha256": "956a6e59a56c0d38e2a2540b377c33d7a5b78c42323482087e692d09b029193f", + "rev": "7ebe6c6e0831373847d7adbedeaa2e506b54b2af" + }, + "recipe": { + "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "find-by-pinyin-dired": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/find-by-pinyin-dired.git", + "sha256": "8f5da5d686f91604254d5d6e1934b5629e5a4f6a8b726ea7a626340959eff92d", + "rev": "3137c367d58958858daa6d3dee1993b2eb9dd9b4" + }, + "recipe": { + "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [] + }, + "smart-mode-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/smart-mode-line.git", + "sha256": "e1e035913c85c579f28e30a9ee8c0c201dca5a045fa29482c405de062daf747b", + "rev": "d98b985c44b2c771cac1eea758f21e16e169a8a0" + }, + "recipe": { + "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.9", + "deps": [ + "emacs", + "rich-minority" + ] + }, + "apu": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/apu.el", + "sha256": "1g70yzfsn4wg077biwf2ja6gj1qv728s2map3a1njy664ga3r1k4" + }, + "recipe": { + "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "live-py-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/donkirkby/live-py-plugin.git", + "sha256": "fe5d1e2e5d5b0b93276081805ca0eb1680e683f6faaf5761d2766e76c8a04a7b", + "rev": "75c27e0110257e3138e24dc2de2a19244635a0bf" + }, + "recipe": { + "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.8.1", + "deps": [] + }, + "pos-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pitkali/pos-tip.git", + "sha256": "63409684b48b55c45a717bf19c720fa3a74e26071aa2709bc5e1a069afb60b71", + "rev": "1b81694d1dc29253db0e855b82563f84a32b38d4" + }, + "recipe": { + "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.6", + "deps": [] + }, + "helm-gitlab": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/emacs-gitlab.git", + "sha256": "dc9bbfff48235cbef8cdb76045ce6d8abe7b8e0815ed4fa3719873d425afec00", + "rev": "90be6027eb59a967e5bbceaa5f32c098472ca245" + }, + "recipe": { + "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "dash", + "gitlab", + "helm", + "s" + ] + }, + "jabber": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.code.sf.net/p/emacs-jabber/git", + "sha256": "af89d7052e555c7b5efb0c21387a50699056659fb83698691b70e75c88e4cd34", + "rev": "2999f58619dd9c20cc6cac8060c4c850a504cbbd" + }, + "recipe": { + "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.92", + "deps": [] + }, + "magit-gerrit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/terranpro/magit-gerrit.git", + "sha256": "6b75d69bfa1fba5032c022c8c02c926fc9fd13586c29047cfe0430d3e423a27a", + "rev": "699c5c39c6dbdc8d730721eaf1491f982dd78142" + }, + "recipe": { + "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "magit" + ] + }, + "org-pomodoro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lolownia/org-pomodoro.git", + "sha256": "bcdee69ec59fd5a8742a1759b9eee7fec43d405bcff4521b5c2598218efa4dba", + "rev": "26452a3d070f4814b191a9de9e3493a54161b910" + }, + "recipe": { + "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.3", + "deps": [ + "alert", + "cl-lib" + ] + }, + "monokai-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/oneKelvinSmith/monokai-emacs.git", + "sha256": "7ffb3a138f316d28eed15277c2bfd0616924943543112f9b221725433499870b", + "rev": "9a6f126e1f02ec49d41fe2ee79670ca96a563f1a" + }, + "recipe": { + "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "kurecolor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/kurecolor.git", + "sha256": "df89f5e24502aadd6bf615129221f523ca95ded779d775b889006fe36ef24435", + "rev": "c8c72cea04e51f57701d2dd9be7dba5f3412e2f3" + }, + "recipe": { + "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.2", + "deps": [ + "emacs", + "s" + ] + }, + "flymake-haml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-haml.git", + "sha256": "0ba58405ab0e49edd9501ba4505e70212d738e05b925698b567ef5331729e6c1", + "rev": "343449920866238db343d61343bc845cc8bc5e1b" + }, + "recipe": { + "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "flymake-easy" + ] + }, + "highlight-indentation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antonj/Highlight-Indentation-for-Emacs.git", + "sha256": "f3805451aaf4c37b15527f28983c17d9663bf49091d06f3f50444c5cce248502", + "rev": "cd6d8168ccb04c6c0394f42e9512c58f23c01689" + }, + "recipe": { + "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [] + }, + "monroe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sanel/monroe.git", + "sha256": "d576b1160ecf8e7525f1ef73d92bfb6b1ca18e69b2ae32c16a92853d1dda17a8", + "rev": "2f8aed286de47f5c4f65b352b6e4f72b47cac279" + }, + "recipe": { + "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "names": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/names.git", + "sha256": "b950d0f5c31b3a2b745f88e26b3ebf2863ea593422dc7e5b87fecc92b430446e", + "rev": "a6865f901dd94f92ae23af8aef3f6ae863901855" + }, + "recipe": { + "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150723.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "log4j-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/log4j-mode.git", + "sha256": "73a68146f5c71c639cd6f13842a8704d3009632af69014d1531f30569bacb591", + "rev": "ec3de92cfe60dd3d0de613e9062476196dea0faf" + }, + "recipe": { + "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "gnus-x-gm-raw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/gnus-x-gm-raw.git", + "sha256": "346648168091866ce0f7a8250006be79c05a45ee735dfd546185262afa316ec4", + "rev": "978bdfcecc8844465b71641c2e909fcdc66b22be" + }, + "recipe": { + "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "log4e", + "yaxception" + ] + }, + "dropdown-list": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dropdown-list.el", + "sha256": "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a" + }, + "recipe": { + "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "docker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/docker.el.git", + "sha256": "dd8cbf88ac190650b2a5a0dace15fc8d56351c94a93a42604a87d63443366b1b", + "rev": "77f646cc10909403a945d188cf9d81abd3bfc2a0" + }, + "recipe": { + "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "dash", + "emacs", + "magit-popup", + "s" + ] + }, + "fuzzy-format": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fuzzy-format.el", + "sha256": "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7" + }, + "recipe": { + "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "auto-package-update": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rranelli/auto-package-update.el.git", + "sha256": "77fb8ba9f88c9e3fe508428e122e18a2521c372ffdbdaf61f91a20f5aee83a76", + "rev": "cdef79f9fc6f8347fdd05664978fb9a948ea0410" + }, + "recipe": { + "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.1", + "deps": [ + "dash", + "emacs" + ] + }, + "map-progress": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/map-progress.git", + "sha256": "e7a0895adb3da353358bb486f6bcfc3782c5590efa389854af7ccdf8409571ba", + "rev": "6b8ef6b60626772082b2e80ec54d1f1275e1a1b8" + }, + "recipe": { + "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [] + }, + "omni-log": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-log.el.git", + "sha256": "873f9f41578b55f53ee15bc5b99acc73cf64ace65c1fdfeaf8648defa79407d6", + "rev": "7eb30e42cc89064abb7acbec63cb9644c2ad7c9b" + }, + "recipe": { + "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "dash", + "emacs", + "ht", + "s" + ] + }, + "zombie-trellys-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/zombie-trellys-mode.git", + "sha256": "dcf550053b59a865ddbf0a7b8f5ebaf049ff4d1b83afde20e396be4ae422ab4a", + "rev": "9e99d444a387dd1634cab62ef802683f5bf5d907" + }, + "recipe": { + "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "emacs", + "haskell-mode" + ] + }, + "karma": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/karma.el.git", + "sha256": "5a86cb2eb129e30fb7ba7cc87bba140015c6b79c77e59bad0ae9e158989162b9", + "rev": "f4ee856e7f59649e9d9021c46f872f9b4f5b7e6e" + }, + "recipe": { + "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "imenu-anywhere": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vitoshka/imenu-anywhere.git", + "sha256": "26381e7e06aba0ca8e3db4c2d556344b22b59838808fb37f575ddde3ca358961", + "rev": "a090132492a3a98b6547240babe0bc0fa6154bb2" + }, + "recipe": { + "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0", + "deps": [ + "cl-lib" + ] + }, + "js3-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thomblake/js3-mode.git", + "sha256": "7559b1c4ed70982e8babaac425ff6c31bc9be69220645ddf595e9d8d814bd43b", + "rev": "5ccda46ba39998a74bd724fdffb34634be5b6563" + }, + "recipe": { + "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "aproject": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vietor/aproject.git", + "sha256": "21f0f2e7073585f66126223f5da5ba9779d78721e207263ad6144d8742e3d8da", + "rev": "3c7d23c341862dfd77fd0a64775df12ddb44ab54" + }, + "recipe": { + "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "helm-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/projectile.git", + "sha256": "eb88b89c18ca127127e1f2692cfd4fe5670a8058635bc06f3ebd241f78a5f8e8", + "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" + }, + "recipe": { + "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13.0", + "deps": [ + "cl-lib", + "dash", + "helm", + "projectile" + ] + }, + "ahk-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ralesi/ahk-mode.git", + "sha256": "48297d6746b2ac0d50adc798ccc94df706e20d4e102e71c99e740dc66c7219e3", + "rev": "7b47b40952708ea4e9a0f1969f00caa92700513a" + }, + "recipe": { + "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.5", + "deps": [] + }, + "requirejs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joeheyming/requirejs-emacs.git", + "sha256": "8a4166316c65ddcfa07807e9163361fcf74201a3f3c80fb3c935a7734e1603ad", + "rev": "7d73453653b6b97cca59fcde8d529b5a228fbc01" + }, + "recipe": { + "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "cl-lib", + "js2-mode", + "popup", + "s" + ] + }, + "pastehub": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiyoka/pastehub.git", + "sha256": "4133a47bbabbd8e15a42f8182997f4a6e00003d8cc80adfad0d6ca5f166fc516", + "rev": "37b045c67659c078f1517d0fbd5282dab58dca23" + }, + "recipe": { + "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.2", + "deps": [] + }, + "langtool": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-langtool.git", + "sha256": "897ac3e506ca90af0bd99a72d51171982a85dfc5cd6d596f92d0742dfafd746a", + "rev": "443b3804f9e33e6d96ee8e15ddede7f152ece378" + }, + "recipe": { + "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.0", + "deps": [ + "cl-lib" + ] + }, + "gnus-spotlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/gnus-spotlight.el", + "sha256": "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4" + }, + "recipe": { + "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "uzumaki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/geyslan/uzumaki.git", + "sha256": "ba219e5da5ae66ce5e09ef87210d99295a997bd443dd808d3be8d2a771b2a37c", + "rev": "a75956e1757f4b98aad3384a4616481aede70cb1" + }, + "recipe": { + "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "fvwm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theBlackDragon/fvwm-mode.git", + "sha256": "a92314bf63c063d6ebfc1f18e3a10fcc52eb36d410a7d037a36fe5f245668a2b", + "rev": "d48a309bb7db21f5404b6619c6ee861fe0457704" + }, + "recipe": { + "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.4", + "deps": [] + }, + "factlog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/factlog.git", + "sha256": "a48a989df1713afdc9593eed113a0c40d138e2100163b034c5486645fb6fd3b1", + "rev": "c834fdab81ec5b1bdc0ee2721a12cecb48a319bf" + }, + "recipe": { + "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [] + }, + "kaesar-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", + "sha256": "62a355528a4ebc5372e37fe82287322ae8d335ee901da6122370be827bb159bd", + "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" + }, + "recipe": { + "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0", + "deps": [ + "kaesar" + ] + }, + "boon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jyp/boon.git", + "sha256": "6c21f4bf038291745e4387609ab4440b478f3fced5b347f6a4731933241385f7", + "rev": "2430cf5bb509961142f68bfa34c1723a22917ddf" + }, + "recipe": { + "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "emacs", + "expand-region" + ] + }, + "inflections": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/jump.el.git", + "sha256": "02af5e8dc6e34432999b12a9cb6045a489192892191d6ec3af372db2a69f1aae", + "rev": "fb7355615276f00397b15182076bf472336448a9" + }, + "recipe": { + "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3", + "deps": [] + }, + "todochiku": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/todochiku.el", + "sha256": "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5" + }, + "recipe": { + "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "color-theme-sanityinc-solarized": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/color-theme-sanityinc-solarized.git", + "sha256": "5468eb6d549d5a09c62f4473f4239fdd609d51d2391a75e48fe547e12bf79cab", + "rev": "554e941131d009c0a5d7129ed96796182b4cc590" + }, + "recipe": { + "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.29", + "deps": [] + }, + "ido-yes-or-no": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/ido-yes-or-no.git", + "sha256": "e5a469d437bd139ab3edfe2abc8188021158c83cb9faad879af36a225a4a8513", + "rev": "ff9d28ca86c8cbfe2fbeb3ee1a60e3983aa776e4" + }, + "recipe": { + "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [] + }, + "mode-line-debug": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/mode-line-debug.git", + "sha256": "410383b7838054b573f79c318a38893960c80b7225a46e4d3edb684bad4d7cd2", + "rev": "da44422eeb6a1f055b4ec2f822962c5162fce001" + }, + "recipe": { + "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.2", + "deps": [] + }, + "helm-mode-manager": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/helm-mode-manager.git", + "sha256": "f35f85c2ca073578a149fa7bd2a61d7933e83ad3a661af8e55fff4a4812b3deb", + "rev": "1fc1d65a27bc57d3a5bbd359f3eb77a6353fa4a5" + }, + "recipe": { + "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "helm" + ] + }, + "helm-aws": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/helm-aws.git", + "sha256": "5bc6c04bd2e5cc49378356c424872371ed297937fd995471409d94f6b52eb704", + "rev": "172a4a3427d31c999e27e9ee06aa8e3822364a8c" + }, + "recipe": { + "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "helm" + ] + }, + "pcache": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/pcache.git", + "sha256": "48b9b58d79fee288baff3d2930174a11c0aff83a2edb20d2de3047da1ac26b75", + "rev": "4b090f46182fd2ed1f44905dc04acc3121bcf622" + }, + "recipe": { + "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [ + "eieio" + ] + }, + "fuzzy-match": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fuzzy-match.el", + "sha256": "1q2qvw2inizw9r47nff7ikvjzfsx1f8n6yf0j31fxvaawcdf91nq" + }, + "recipe": { + "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "reverse-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-reverse-theme.git", + "sha256": "d0bc0fb317a93165b8939e468ba4d393ec103ecdb1f21a6bec9a0b111df9b697", + "rev": "3105c950bcb51c662c79b59ca102ef662c2b0be0" + }, + "recipe": { + "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [] + }, + "menu-bar+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/menu-bar+.el", + "sha256": "1vdqhn9srd8ihp0yjjj6lr0zl4n858wri0h3jzxmk3axc688lks7" + }, + "recipe": { + "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "perspective": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/perspective-el.git", + "sha256": "784c10983791e9742d1ce2b64dff1a39acd5a9d9ff42c3b2129465ed61ce8289", + "rev": "3a8d59045a6370fae1ec2011865190a7465d707f" + }, + "recipe": { + "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.12", + "deps": [ + "cl-lib" + ] + }, + "offlineimap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jd/offlineimap.el.git", + "sha256": "ebe4a1a09edf95ccec425d8cabb501d2baf74e15ba302fe9dd9ca8fd1ca5e42b", + "rev": "646482203aacdf847d57d0a96263fddcfc33fb61" + }, + "recipe": { + "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1", + "deps": [] + }, + "es-lib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/es-lib.git", + "sha256": "212b21084ced61f6990b77c02ac3ee148811aefe120163405cea1a482cfa7d46", + "rev": "753b27363e39c10edc9e4e452bdbbbe4d190df4a" + }, + "recipe": { + "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "cl-lib" + ] + }, + "sqlplus": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sqlplus.el", + "sha256": "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d" + }, + "recipe": { + "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "pt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/pt.el.git", + "sha256": "7c16f66b195fd34cc14166005c82d1a0801a9202516b54fb423c9a04c13913dc", + "rev": "a539dc11ecb2d69760ff50f76c96f49895ce1e1e" + }, + "recipe": { + "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [] + }, + "gitignore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/git-modes.git", + "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [] + }, + "mb-depth+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mb-depth+.el", + "sha256": "02dszzkcqa2zwnafxyd6avsjgdrmb6c80j9qx0bgdkwm7yii090q" + }, + "recipe": { + "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "fold-dwim-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/fold-dwim-org.git", + "sha256": "bc53fd2557b7e0746c973a17998c202dec4b2b7ee8eea4c1e2646f0ed55c5b92", + "rev": "c09bb2b46d65afbd1d0febc6fded7495be7a3037" + }, + "recipe": { + "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [ + "fold-dwim" + ] + }, + "ac-mozc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/igjit/ac-mozc.git", + "sha256": "0a7acdbe1a589e1ace18cf25d111abc9a5820718c32821cc5afeff527d06f738", + "rev": "4c6c8be4701010d9362184437c0f783e0335c631" + }, + "recipe": { + "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "auto-complete", + "cl-lib", + "mozc" + ] + }, + "logalimacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/logaling/logalimacs.git", + "sha256": "914ea957aa321e0bada3ccb62be66065f716469e825e3e1d1fcdb1f750a0e2e5", + "rev": "cfd7aaa925934f876eee6e8c550cf6e7a239a2ac" + }, + "recipe": { + "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "company-nixos-options": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/travisbhartwell/nix-emacs.git", + "sha256": "8d6225321be7a659bcbeaa9dd350b4fcb60e97d3aa866da224afe0e3decca7d2", + "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" + }, + "recipe": { + "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "cl-lib", + "company", + "nixos-options" + ] + }, + "face-remap+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/face-remap+.el", + "sha256": "13a439ipxy28l91c9gy6skq54xy2m3hj2qgqdjjqbinnhngg7ffi" + }, + "recipe": { + "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flymake-json": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-json.git", + "sha256": "064aef39b5c1b996c06631bb0b24141f0c0a5aeb743ecac6efc62a42a9037ca0", + "rev": "ad8e482db1ad29e23bdd9d089b9bc3615649ce65" + }, + "recipe": { + "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "flymake-easy" + ] + }, + "sass-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/sass-mode.git", + "sha256": "68ec20a25190f04abb6a1a76f84f5a0a1706e8e460291cb2c1f74d369e66571b", + "rev": "26a66e331b507fb420e3bb7d0a6a8fbb04294343" + }, + "recipe": { + "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.0.18", + "deps": [ + "haml-mode" + ] + }, + "string-edit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/string-edit.el.git", + "sha256": "bcdd15928f06feac800eb30589889934ea7e3addbf50ff46b4ca4eec189d3148", + "rev": "9f9c9cd659156fd2217be814eb4e91da48d44647" + }, + "recipe": { + "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "dash" + ] + }, + "showkey": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/showkey.el", + "sha256": "0fbpwqjgi15l1mk2p1m9apfj9a50566gi97wkin5hrc8zhm41k5r" + }, + "recipe": { + "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flymake-haskell-multi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-haskell-multi.git", + "sha256": "6876a0e8793c26af02282909133aef966609ed324182da52ec82979d9032c1c9", + "rev": "d2c9aeffd33440d360c1ea0c5aef6d1f171599f9" + }, + "recipe": { + "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "flymake-easy" + ] + }, + "git-timemachine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/git-timemachine.git", + "sha256": "5a99eb89819eb281789dc16088c7d6260622bd55e6643b3d8cb6cdccef8172f2", + "rev": "bde589fbeb3b5326e89573cbb9a6fd08d832d073" + }, + "recipe": { + "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.7", + "deps": [] + }, + "evil-search-highlight-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juanjux/evil-search-highlight-persist.git", + "sha256": "92ce9e360c2e386702bba7f55c604c8fed7d3f75ac2a5d28a60949f1ec831ca1", + "rev": "c563a05de36bb06f5385848aa3b1dae5ebd3d2cd" + }, + "recipe": { + "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6", + "deps": [ + "highlight" + ] + }, + "edn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/expez/edn.el.git", + "sha256": "1691dbf8c20bb27abc2ebc79cfd89a144db6b11abea8bb12123498d92228c5ed", + "rev": "bb035dcbeccccdb2c899d2cce8e81486764d0ad7" + }, + "recipe": { + "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.2", + "deps": [ + "cl-lib", + "dash", + "emacs", + "peg", + "s" + ] + }, + "isearch-prop": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/isearch-prop.el", + "sha256": "190dlmrqk1g7ak5a3p6i97kwxk4lgz8y0kxf9ql75qis3hc4cl09" + }, + "recipe": { + "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "org-table-comment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/org-table-comment.el.git", + "sha256": "977bb21fca41c5cf63b4c8a75973e024485d470de47bdf8f5dc5b36d54fb3079", + "rev": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e" + }, + "recipe": { + "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "hl-sexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/hl-sexp.git", + "sha256": "7c9a33cee9837215f78bf4e0dd53a20f66bc05bedb33a7bbb3e5335c59925ebb", + "rev": "0606100422321c18db51ceda80f25cd7717c2e01" + }, + "recipe": { + "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "avy-migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/avy-migemo.git", + "sha256": "a32d2628b9c93b978b0ffb6e3b63a82478d749b946322547eab25926169e0b25", + "rev": "f2498ed4a476a554c84716f5a8131f9b78a45185" + }, + "recipe": { + "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.11", + "deps": [ + "avy", + "emacs", + "migemo" + ] + }, + "crosshairs": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/crosshairs.el", + "sha256": "0m2qggd8q3r32c8ipnp14093p0hbdd7i66nrv3q739wid7j98s8b" + }, + "recipe": { + "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "col-highlight", + "hl-line+", + "vline" + ] + }, + "osx-browse": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/osx-browse.git", + "sha256": "515731c2d6275a74981d4731fcbb6e4a41a25812232943b81e1f4af52d52c897", + "rev": "6186a6020e143e90d557c8d062c44fcdba0516c7" + }, + "recipe": { + "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.8", + "deps": [ + "browse-url-dwim", + "string-utils" + ] + }, + "helm-orgcard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/helm-orgcard.git", + "sha256": "632ec2288b0b78b18d0cc54d320ebec2f71a9d1e57eccfb0ecdd1ed572eed2ff", + "rev": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d" + }, + "recipe": { + "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "helm-core" + ] + }, + "phpcbf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nishimaki10/emacs-phpcbf.git", + "sha256": "58d57f6efb8bd201dd6eef6345eda1b0d1a04d45ce0eae12062b86452fa9707e", + "rev": "b556b548ceb061b002389d6165d2cc63d8bddb5d" + }, + "recipe": { + "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.2", + "deps": [ + "s" + ] + }, + "dispass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ryuslash/dispass.el.git", + "sha256": "d4d2ea781b22c6e74efa7971114bec37d5b464c52c3c89dae4665bc3f80a2aac", + "rev": "38b880e72cfe5e65179b16791903b0900c73eff4" + }, + "recipe": { + "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.2", + "deps": [] + }, + "ac-inf-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ac-inf-ruby.git", + "sha256": "55fba20ab7482cbea6658465d28bd2a5075972fe9d6916ffdeafe954ec0895a9", + "rev": "3e22b66d3d3e2712a0fe783b5cdd0583a0d4c318" + }, + "recipe": { + "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "auto-complete", + "inf-ruby" + ] + }, + "cider-eval-sexp-fu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/cider-eval-sexp-fu.git", + "sha256": "5225d62e374c2c2f9fe0ae1b198409247e87bd42bfb4e344ddd95132df5932f5", + "rev": "dbe6a19c835ea42b099dd17f040db0baf9774aaf" + }, + "recipe": { + "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "emacs", + "eval-sexp-fu", + "highlight" + ] + }, + "wn-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/luismbo/wn-mode.git", + "sha256": "df22db01f4185a30728333bbec9a5b4957919c98f6d752e1c6e4b5980619261b", + "rev": "6e7029b0d5773a79914a289937be068784931cad" + }, + "recipe": { + "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4", + "deps": [ + "emacs" + ] + }, + "goto-last-change": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/camdez/goto-last-change.el.git", + "sha256": "e59710be1894faac74782478467008a0ed5317b8d2a7b383faf1b4a3f6a61fb8", + "rev": "58b0928bc255b47aad318cd183a5dce8f62199cc" + }, + "recipe": { + "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.1", + "deps": [] + }, + "flymake-css": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-css.git", + "sha256": "25fb26439cadc5694166f34e45fe71d0274a40c749f068b846dd9e768192a295", + "rev": "3e56d47d3c53e39741aa4f702bb9fb827cce22ed" + }, + "recipe": { + "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "flymake-easy" + ] + }, + "auto-yasnippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/auto-yasnippet.git", + "sha256": "b8ddb6d6eafb2160713776764967f65f59cffc2d1e12248e167e6936903c7958", + "rev": "5cc54edbe03c0061bf69883a3e39d3bb16019e0f" + }, + "recipe": { + "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "yasnippet" + ] + }, + "emacsql-sqlite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "rev": "03d478870834a683f433e7f0e288476748eec624" + }, + "recipe": { + "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [] + }, + "haskell-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/haskell/haskell-snippets.git", + "sha256": "c619b88d3087f574a5516f3bbacd0512bd9fde07143aac42b99aed8d773e6d2c", + "rev": "bcf12cf33a67ddc2f023a55072859e637fe4fa25" + }, + "recipe": { + "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "yasnippet" + ] + }, + "typed-clojure-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/typedclojure/typed-clojure-mode.git", + "sha256": "199dab92d6bc3033f5ccd2b8a6c8f2b323706b5d6535729ebb6658a2c601e947", + "rev": "00bc20db78901204a67722ab47482660e36d0463" + }, + "recipe": { + "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cider", + "clojure-mode" + ] + }, + "vim-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/emacs-vim-region.git", + "sha256": "a935f83c55fa7257b30c93cef5eb70463059b6a3ab74a850552b565f4c7fa09c", + "rev": "e5359cc584a0cfa9270a76866a5eff7d3f44eb3d" + }, + "recipe": { + "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "expand-region" + ] + }, + "hideshowvis": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hideshowvis.el", + "sha256": "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6" + }, + "recipe": { + "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "tumble": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/febuiles/tumble.git", + "sha256": "fea19a7c6970a71b315e8f6819992064f0afef19690260065dbefcce0b971246", + "rev": "a1db6dac5720b9f468a79e0efce04f77c0a458e3" + }, + "recipe": { + "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5", + "deps": [] + }, + "aurel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/aurel.git", + "sha256": "f2caf606144e0d18bf755d4d490515d438ac465209077176de0fbc02dcb05df9", + "rev": "3458214e0d2942b03c2926de67ca06cbe42b37d0" + }, + "recipe": { + "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [] + }, + "anaconda-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/anaconda-mode.git", + "sha256": "106ab7fe82ae79f3247d0a175da4a092e659c0c7aa269073e03db5959a0e1634", + "rev": "2ad7c1ee5b786d900154982270e4c68a4fe5b404" + }, + "recipe": { + "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "dash", + "emacs", + "f", + "pythonic", + "s" + ] + }, + "js2-closure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jart/js2-closure.git", + "sha256": "8a40e9ad3574c56de369ef489c1652da94350caebd1505bf023c27501fc55034", + "rev": "e1b3e7db13285e63c3c428d87c018289352bd043" + }, + "recipe": { + "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4", + "deps": [ + "js2-mode" + ] + }, + "drag-stuff": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/drag-stuff.git", + "sha256": "4cea54bcfe3d760a6bd738e40a5409789bd0072df661458ca0bcebe5fe4846a8", + "rev": "3265e4fe93323bc9089d12db3d466d49bc44a99d" + }, + "recipe": { + "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "clocker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/clocker.el.git", + "sha256": "773e6b16e868ae6988510a33a8ebdd5dfa846b1ff739efa9200af7afd2cc75c0", + "rev": "6faf5a23dc9cbe506f21a11fae4f6c4bbb1d4b01" + }, + "recipe": { + "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.10", + "deps": [ + "dash", + "projectile" + ] + }, + "hl-spotlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hl-spotlight.el", + "sha256": "1mvcvd8401w0xw8kjq6rwmmqa41npgdxgpghf4nxl6rghza77nwh" + }, + "recipe": { + "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "instapaper": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jfm/emacs-instapaper", + "sha256": "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8", + "rev": "8daa0058ede7" + }, + "recipe": { + "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.5", + "deps": [] + }, + "tracking": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/circe.git", + "sha256": "617bc77c6fca10d815581e4a598e498c617c863604d30659b8fed4ebfdb8f9b6", + "rev": "ac1cddf946e0af90ab453dd816f7173e0d4000e5" + }, + "recipe": { + "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1", + "deps": [] + }, + "findr": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/findr.el", + "sha256": "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q" + }, + "recipe": { + "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "whitaker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/whitaker.git", + "sha256": "64956ae44a8e645555894001f9613d40f2c4a8bb03584f18cfec8a145d86dc05", + "rev": "28172edce0f727f0f7f17d8ba71d5510d877bb45" + }, + "recipe": { + "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "dash" + ] + }, + "company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/company-mode/company-mode.git", + "sha256": "e02f89af12f8425fa23c5d9ee0874cc241308bb052286efcb3dd706ab4c91a5a", + "rev": "e085a333867959a1b36015a3ad8e12e5bd6550d9" + }, + "recipe": { + "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.12", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "macro-math": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/macro-math.el.git", + "sha256": "8db36fd45ba8bad70377e4b826432ac2c6f96a103d38baa260048ad678e0ec04", + "rev": "105e03c80290d1b88984b2d265a149a13d722920" + }, + "recipe": { + "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "elscreen-mew": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/elscreen-mew.git", + "sha256": "48f717202e8261d8786b41d47847f54d4552c02a032659d733c7a038586dfcb8", + "rev": "f66a2a5a8dd904791ede5133fdd183522b061bba" + }, + "recipe": { + "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "elscreen" + ] + }, + "helm-backup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antham/helm-backup.git", + "sha256": "baeec59b5472d8ac4d86b36791ca65dc609ffbe64930e2d0f4a824816b487dc3", + "rev": "184026b9fe454aab8e7730106b4ca494fe307769" + }, + "recipe": { + "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "helm", + "s" + ] + }, + "dired-sort-menu": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu.el", + "sha256": "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi" + }, + "recipe": { + "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "rinari": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/rinari.git", + "sha256": "e5d04f3d22216ff7a1abedddf324b5d84b6ae74b02d019a5e4c3490e3c5bf9c8", + "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" + }, + "recipe": { + "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.11", + "deps": [ + "inf-ruby", + "jump", + "ruby-compilation", + "ruby-mode" + ] + }, + "seq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/seq.el.git", + "sha256": "34530414c3bf71a8d9466e9378ad6963540573acf45dfe13408b50e9abfab053", + "rev": "ff8083a29b7e0a3686ded17d35c2aa839e8489e4" + }, + "recipe": { + "sha256": "1a4ldmaqsd0jjgcyqwpyklj306xlnfqh2gg44vjlwp95m4aqv58l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.11", + "deps": [] + }, + "ucs-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/ucs-utils.git", + "sha256": "b595e2a4f08ca3fec2e7fb03bf5e91a57c9766d1156c527765fcd5ab1e7fedba", + "rev": "cbfd42f822bf5717934fa2d92060e6e24a813433" + }, + "recipe": { + "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.4", + "deps": [ + "list-utils", + "pcache", + "persistent-soft" + ] + }, + "string-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/string-utils.git", + "sha256": "635852a6853573c0a066dfbf4e0ce8f82c6d7c720ebbf5705bdfda85575ca6d7", + "rev": "3ae530143899f533a9ef5e1f26f28b577ebe72ee" + }, + "recipe": { + "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.2", + "deps": [ + "list-utils" + ] + }, + "nose": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/durin42/nosemacs", + "sha256": "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm", + "rev": "194d7789bf79" + }, + "recipe": { + "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "egison-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/egisatoshi/egison3.git", + "sha256": "87323240534725aa4dc723685346c8f198a45007e15ebb311da4e3a8b192d7bf", + "rev": "6debb5f36074811a1b2f9c9741dc8c1f3bd869de" + }, + "recipe": { + "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.5.10", + "deps": [] + }, + "ido-occur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danil/ido-occur.git", + "sha256": "201119e1fafbf8bb68a1f0416b496df2a05fad249175d5a58438591b7d5e68f7", + "rev": "13dc79ac2bb148b9fcbb470509a06ad1cb7008bb" + }, + "recipe": { + "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "dash", + "ido-vertical-mode" + ] + }, + "cus-edit+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cus-edit+.el", + "sha256": "0qqfxnsy124nk61iqgb8rjwziyj6h4nvx0gdpsj03z1zh7gqms9s" + }, + "recipe": { + "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "outshine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/outshine.git", + "sha256": "d4c6610a0c2e63434b38868e5b0c191909b205083f4250c0f6fde1c2023fefe2", + "rev": "cf1097692b3ea0367d3c821769399fec5831e200" + }, + "recipe": { + "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "ack-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chumpage/ack-menu.git", + "sha256": "f76d463f0dbe41a65c85aacd063ebb33f642d5ff262070d6bf9d7e250a803818", + "rev": "37e9979eb65e3803fc00829377397b4e6f2bd059" + }, + "recipe": { + "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.3", + "deps": [] + }, + "golden-ratio": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/golden-ratio.el.git", + "sha256": "276af59970a0fcf2655aea7688c9d4e02d9073227445a71c32e97a16005aeb5e", + "rev": "79b1743fc1a2f3462445e9ddd0a869f30065bb6d" + }, + "recipe": { + "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "evil-mark-replace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/evil-mark-replace.git", + "sha256": "d23ac7591ffca8079c6a16021cca7c9b32725b3622e9e8c6f3cbe3c30572d212", + "rev": "56cf191724a3e82239ca47a17b071c20aedb0617" + }, + "recipe": { + "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.4", + "deps": [ + "evil" + ] + }, + "helm-ag": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-ag.git", + "sha256": "fe494f3515f8d4f4e8b509739390ebd9525a81dafa2c76fbf35678a4e11563dd", + "rev": "47aca7f291eccd81f1b1a4a8f96b8d8caec5242e" + }, + "recipe": { + "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.48", + "deps": [ + "cl-lib", + "helm" + ] + }, + "direx-grep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/direx-grep.git", + "sha256": "b0b822f61e4ec1bc51d5c455ab319740392848446034a1ccd6325eeb31808d6b", + "rev": "1109a512a80b2673a70b18b8568514049017faad" + }, + "recipe": { + "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "direx" + ] + }, + "muttrc-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/muttrc-mode.el", + "sha256": "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis" + }, + "recipe": { + "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "cmds-menu": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cmds-menu.el", + "sha256": "1dfnvvdlyb8jlrj6zkmry075vmax77kyjnk5mjsfz2wwyk5lsfb5" + }, + "recipe": { + "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "cmake-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Kitware/CMake.git", + "sha256": "22770d107b8e17d8360f8f57ec45b1c2a0a7770d4cb9489c635ac17a109ac03a", + "rev": "fd7180f0c0c2554c31afda235469df986a109fe4" + }, + "recipe": { + "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.4.1", + "deps": [] + }, + "eyedropper": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eyedropper.el", + "sha256": "1bs8239sv3mjyj2dw72wrl7yp1ds7gs3cs4a9ds7hlzzz7qw9s6s" + }, + "recipe": { + "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "hexrgb" + ] + }, + "interleave": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rudolfochrist/interleave.git", + "sha256": "721d21a98b52285b18b5ed2e389f0ef4a126d32e7d86dbc81fdcb2af137180f6", + "rev": "d7bfe03dfdfbdd2abd0a96174cacd2ef1ecd2041" + }, + "recipe": { + "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "eyebrowse": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/eyebrowse.git", + "sha256": "47e108da168fe02e2d186f98ac2b10ca36ec682762a8eb0bf409b109c5e68549", + "rev": "6d75409a81a6447765ad2171e3d0b5a272e1f207" + }, + "recipe": { + "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.9", + "deps": [ + "dash", + "emacs" + ] + }, + "delight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/delight.el", + "sha256": "1gap2icsqi7cryfvcffh41zqg2ghl4y7kg9pngzdfjrc3m7sf635" + }, + "recipe": { + "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "speech-tagger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cosmicexplorer/speech-tagger.git", + "sha256": "f4073504fe97f141710263a970242076a4dbdc5e7e886c6aeaf62a2c7070ee2a", + "rev": "e6595bd0eea93ede1534c536c1746c9cf763b73c" + }, + "recipe": { + "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.0", + "deps": [] + }, + "whole-line-or-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/whole-line-or-region.git", + "sha256": "2d30e199cdd52d3ad438df540340274c13f7bbf289f1f77147a836b2f0dce046", + "rev": "a60e022b30c2f4d3118bcaef1adb77b90e0ca941" + }, + "recipe": { + "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [] + }, + "git-link": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sshaw/git-link.git", + "sha256": "1fac6cb1bc50a7bc4ddcb29c32f79ae0c1aedce2754c6a29f3698b1cfa463c9c", + "rev": "8ed8f209fe40b3852613691bd968484d6da79e5b" + }, + "recipe": { + "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [] + }, + "evil-nerd-commenter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/evil-nerd-commenter.git", + "sha256": "7b486a366a536fc2fa6e879bda4a9a76cef552e673879c2056e4361b9f644c33", + "rev": "770981cffd7e8d967e6291c738534a04bcd7f753" + }, + "recipe": { + "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2", + "deps": [] + }, + "aes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sauermann/emacs-aes.git", + "sha256": "1ff74e70eea1b566cc45c5c330d03b68c307bae9703c96714a1bacdfde4e837a", + "rev": "d78796facc034b09f379cda5f27090f3139305ec" + }, + "recipe": { + "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [] + }, + "orgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/orgit.git", + "sha256": "e1665631714e9d84f9341d3ec21945862b93db4418411ba4b404ec125781f934", + "rev": "731c5cb4f1c7e2ee5b819ca159c0c01e2b306c73" + }, + "recipe": { + "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "dash", + "emacs", + "magit", + "org" + ] + }, + "jump-to-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/jump-to-line.git", + "sha256": "7a6057656a200f741cdaf7c8c694d4f4838f3dd0d3e25e84b9a10e315ea537e9", + "rev": "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8" + }, + "recipe": { + "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "pkg-info": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/pkg-info.el.git", + "sha256": "05e8680852c3ad9d0566bb23cb3bb6a49c3e675a1bf72a5b5f50ef0a97f0d50e", + "rev": "f9bb471ee95d1c5fe9adc6b0e98db2ddff3ddc0e" + }, + "recipe": { + "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [ + "epl" + ] + }, + "evil-space": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/linktohack/evil-space.git", + "sha256": "33e36e204effe277eae7a8579f14b2732fdf2e6d089864bae939e10db65590e5", + "rev": "f77860fa00662e2def3e1885adac777f051e1e61" + }, + "recipe": { + "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6", + "deps": [ + "evil" + ] + }, + "wcheck-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tlikonen/wcheck-mode.git", + "sha256": "356171bba2026d943c826723a147decafa7cf12a94c1e789acd0b5ed539922d1", + "rev": "866954f040217059607633cf4c0f5e8a1ff5fd9a" + }, + "recipe": { + "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2015.11.29", + "deps": [] + }, + "overseer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/overseer.el.git", + "sha256": "8a582f4a661ab11cb7300c7a568a97fe6fc3a8fcfbc526d1e1de7fd69e8bf9b8", + "rev": "cf532a4e373e3da2077ccbaa48d4bfacd14661ba" + }, + "recipe": { + "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "dash", + "emacs", + "pkg-info" + ] + }, + "pp-c-l": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pp-c-l.el", + "sha256": "0czz6qakz55776ji5472clvw13y32k3jvq8w5k9rdlmyxnc2vafd" + }, + "recipe": { + "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "win-switch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/genovese/win-switch.git", + "sha256": "7efc05e7e7315d63e8cf0e8e020b2ae1b211d3ce7e7d2584ddbd7dc86214cd4b", + "rev": "a0da96c23e8775a2dfdbe55ed3ec5b57f1ebb26a" + }, + "recipe": { + "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "nrepl-sync": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/lein-sync.git", + "sha256": "68865267e6eadbac115128960110dfc8ad4e2f35bbd78e190a24a35a6d5beb6a", + "rev": "471a08df87687a3eab61b3b8bf25a2e0962b5d5b" + }, + "recipe": { + "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "cider" + ] + }, + "erefactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-erefactor.git", + "sha256": "313db0762385e6a74ffb52f8c63e729a1f2a5c61ec2e036b9c3e83eaec31259e", + "rev": "fde3fd42c815c76e8015f69518a92f6bfcfde990" + }, + "recipe": { + "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "cl-lib" + ] + }, + "identica-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gabrielsaldana/Emacs-Identica-mode.git", + "sha256": "47664da51942255bb81207362c4da74e36190b6a83be33859df273ab1bc1c29b", + "rev": "cf9183ee11ac922e85c7c908f04e2d00b03111b3" + }, + "recipe": { + "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [] + }, + "mentor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skangas/mentor.git", + "sha256": "1d4e392c0c241512df945907939bb8e0be2b382f7642dfebf8414149b1dd4b1b", + "rev": "bd8e4b89341686bbaf4c44680bbae778b96fb8f0" + }, + "recipe": { + "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "etags-table": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/etags-table.el", + "sha256": "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf" + }, + "recipe": { + "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ac-alchemist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-alchemist.git", + "sha256": "703766c49a96deaee2b3141da5bd95b6a1ab22b64af1c09124e3f32b8ec01442", + "rev": "31114f3e1e7cc1e101d0b81819d7876d8861df92" + }, + "recipe": { + "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "alchemist", + "auto-complete", + "cl-lib" + ] + }, + "jvm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/martintrojer/jvm-mode.el.git", + "sha256": "036952c019f79cc09f3b236d524ca98bd76f76ee5c4435fda5a1d460b6b6059d", + "rev": "16d84c8c80bb214367bae6ed30b08756521c27d6" + }, + "recipe": { + "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "dash", + "emacs" + ] + }, + "replace-symbol": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmastenbrook/replace-symbol-el.git", + "sha256": "2e0f5f9f06bab79ffc2ee42801d4f540e36c9cf99c16b80bbcb1e5c73c1cff6a", + "rev": "153197a4631a1ed0c3485d210efb41b4b727326c" + }, + "recipe": { + "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "which-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/justbur/emacs-which-key.git", + "sha256": "966381db690345e6e7aceee095b37de26fbd18394ac9c681da8061cc95260372", + "rev": "777c28444a2497733a2fb62308fa5e2ef434f427" + }, + "recipe": { + "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [ + "emacs" + ] + }, + "esxml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tali713/esxml.git", + "sha256": "17355d533a4ee874430af42bc57622faf576a5855de598a3b35ac03117c59b4c", + "rev": "cd096242fadbf878d9428786306e54ed60522b43" + }, + "recipe": { + "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "kv" + ] + }, + "fwb-cmds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/fwb-cmds.git", + "sha256": "755678b6cbad8999c37fb907b7d680abbb4aba70f3faf0248768a44252f61623", + "rev": "93504c2022799a84cc14d598e1413f8d9df4ee0e" + }, + "recipe": { + "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [] + }, + "notmuch-labeler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/notmuch-labeler.git", + "sha256": "4042f18604b37bace249928115b040dcbb99b0fa500f95b0abe31220eb484345", + "rev": "d65d1129555d368243df4770ecc1e7ccb88efc58" + }, + "recipe": { + "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "notmuch" + ] + }, + "helm-c-yasnippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/helm-c-yasnippet.git", + "sha256": "2ef985f43c054e17002c5fab4b904bbb2c3fff18c36dd7266ef1355517410581", + "rev": "1fa400233ba8e990066c47cca1e2af64bd192d4d" + }, + "recipe": { + "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.7", + "deps": [ + "cl-lib", + "helm-core", + "yasnippet" + ] + }, + "codic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-codic.git", + "sha256": "bba3722e294d452a6aaece2665b2de49e4f5aa61fe5c2069bb0b7ecf55c3af12", + "rev": "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557" + }, + "recipe": { + "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "spaceline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TheBB/spaceline.git", + "sha256": "b3d6e4aec5eacc2f489b9170c22043e08882ab480643d14860ad45f9e6809e39", + "rev": "3990442b0b1f4f5975ae1bba3248fd89d4b5dff8" + }, + "recipe": { + "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "cl-lib", + "dash", + "emacs", + "powerline", + "s" + ] + }, + "auto-complete-clang-async": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Golevka/emacs-clang-complete-async.git", + "sha256": "5fbafb006c891827a05306a500b04efe68a369d68433bd882291ffb90dc10ccc", + "rev": "a5114e3477793ccb9420acc5cd6a1cb26be65964" + }, + "recipe": { + "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [] + }, + "gscholar-bibtex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/gscholar-bibtex.git", + "sha256": "13f709143302e9840486acbc9a4801a2ae63815d9b5e4e3262e0bf248c10cdb5", + "rev": "00b32521de3aa689bc58516ae10ba7f3ef1b6c92" + }, + "recipe": { + "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [] + }, + "anyins": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antham/anyins.git", + "sha256": "3845cb0352860e1402a476b5a29f35ae3cdcc969a87dc7916ca467e3ff416896", + "rev": "1ff4673ca197c9bf64c65f718573bf7d478fc562" + }, + "recipe": { + "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "d-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode.git", + "sha256": "66f36dfcd8e643efa275b320e67448c9dee14db9ce7b84f1d5e842c92f33ef2a", + "rev": "9b22a9373fc38cf3bc1ea9a814bcd8191d4c6626" + }, + "recipe": { + "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.6", + "deps": [] + }, + "google-this": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/emacs-google-this.git", + "sha256": "d9a1d487a8444e1f3a4df204949ce3f4a7a2b624bb327de7e225fc71b89e835c", + "rev": "879ab00f6b5584cfe327eb1c04cd9ff2323b3b11" + }, + "recipe": { + "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10", + "deps": [ + "emacs" + ] + }, + "goto-chg": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/goto-chg.el", + "sha256": "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij" + }, + "recipe": { + "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "dired-fdclone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/dired-fdclone.el.git", + "sha256": "005be73159ffda7f811c8f6c88b7f4885c761892d0082a4b3fe7c12710202c53", + "rev": "8144c013d46c55b0471f31cdc3b5ead303286cbf" + }, + "recipe": { + "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.2", + "deps": [] + }, + "package-safe-delete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/package-safe-delete.git", + "sha256": "2d9fcfbf1a808d9167cdf283d87e0122fcaed5dfcc2787e5bb5596ba4c33bbdd", + "rev": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194" + }, + "recipe": { + "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.7", + "deps": [ + "emacs", + "epl" + ] + }, + "emacsc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/emacsc.git", + "sha256": "92f8550024d3349d4356e13684218e7db463a5663dff83cfb2bf4ce6cebacce4", + "rev": "69607bdc3a0c070e924a3bcac93180f917992368" + }, + "recipe": { + "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.20131027", + "deps": [] + }, + "fuzzy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/auto-complete/fuzzy-el.git", + "sha256": "5ae7426af9e7edc1fa90f5dadb51d8f0bef298e506292eef78dcb2a260f2f5bc", + "rev": "939f4e9a3f08d83925b41dd3d23b2321f3f6b09c" + }, + "recipe": { + "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "evil-snipe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hlissner/evil-snipe.git", + "sha256": "2f9648b97305fdcf46c1713ab2a94ee63e20256cae25e8ed5bad65b9f67d7490", + "rev": "9df049eb83789ea5711632672e077cebf4c54e14" + }, + "recipe": { + "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "jedi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-jedi.git", + "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" + }, + "recipe": { + "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.7", + "deps": [ + "auto-complete", + "emacs", + "jedi-core" + ] + }, + "cask-package-toolset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/cask-package-toolset.el.git", + "sha256": "f0dcebf81debbe5d2137b72aba544f1f0bf3b283104f545cc45488b840022e1b", + "rev": "27467a52e243f3ba4024ce19d8e1f4dbd5dd7c0b" + }, + "recipe": { + "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.1", + "deps": [ + "ansi", + "cl-lib", + "commander", + "dash", + "emacs", + "f", + "s", + "shut-up" + ] + }, + "wc-goal-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bnbeckwith/wc-goal-mode.git", + "sha256": "fcd4a50ddc14002f5a03b18e18288b21e5c64ad6b560669281b22ba4bd98ce56", + "rev": "a8aa227b1a692dd6399855add84b5e37f6c5d9cb" + }, + "recipe": { + "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1", + "deps": [] + }, + "grin": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/dariusp686/emacs-grin", + "sha256": "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2", + "rev": "f541aa22da52" + }, + "recipe": { + "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "window-numbering": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/window-numbering.el.git", + "sha256": "de22abd1050ecf9930e9a91b8d7adc4bc261902cb996ef71f4d0b4c6b797a82b", + "rev": "653afce73854d629c2b9d63dad73126032d6a24c" + }, + "recipe": { + "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.2", + "deps": [] + }, + "company-math": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vspinu/company-math.git", + "sha256": "7e4a48e63736c1de5e5fd363beb4267b3fffd16673477dbe07d6bda7c1052e01", + "rev": "e82c91d960f9418774959f299d0e064fcb6ba0ad" + }, + "recipe": { + "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "company", + "math-symbol-lists" + ] + }, + "window-number": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/window-number.el", + "sha256": "1as3qbvj6d171qp2s8ycqqi16bgqm47vfk3fbxrl9szjzaxh9nw6" + }, + "recipe": { + "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "minibuffer-complete-cycle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/minibuffer-complete-cycle.git", + "sha256": "d3951a23cacadd51805ef40315fedfdd35c9d6ae20f6636f3bf337de0733cbff", + "rev": "3df80135887d0169e02294a948711f6dfeca4a6f" + }, + "recipe": { + "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.25.20130814", + "deps": [] + }, + "imgix": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/imgix/imgix-emacs.git", + "sha256": "0896e37823f0458605d3241487c0064f1cf7fe0501f0fc60d61f4eb0009c26a9", + "rev": "cf3994f69b34a36f627e9ceaf3e6f4309ee9ec30" + }, + "recipe": { + "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib", + "dash", + "ht", + "json", + "s" + ] + }, + "bog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyleam/bog.git", + "sha256": "a47d1a691743a6edaf001b6f863e251db0c4113656865beee1b33fac34433a1a", + "rev": "19c70efa3e4e9bd27308f68bdae62dff16852c0f" + }, + "recipe": { + "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib" + ] + }, + "fixmee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/fixmee.git", + "sha256": "69aa279b81af9eac7a9c3283238249bb651cb96b447b4989c274b2efb8a6746d", + "rev": "aa3be8ad9fcc9c0c7ff15f70cda4ba77de96dd74" + }, + "recipe": { + "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.6", + "deps": [ + "back-button", + "button-lock", + "nav-flash", + "smartrep", + "string-utils", + "tabulated-list" + ] + }, + "thesaurus": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thesaurus.el", + "sha256": "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq" + }, + "recipe": { + "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "relax": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/relax.el.git", + "sha256": "c6c86243ef3c1d6012d19c56b3cd3b144c4aa57fc0e570d3d664211722870b53", + "rev": "6e33892623ab87833082262321dc8e1977209626" + }, + "recipe": { + "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "json" + ] + }, + "omni-kill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-kill.el.git", + "sha256": "0b76288138867c098c55dd666567a5b7eccf7783d181aef968c9cbb6fe8ded5a", + "rev": "8a1145b58b4736c9163bcd5b28c8fea80b2ea97b" + }, + "recipe": { + "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.3", + "deps": [] + }, + "git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/git.el.git", + "sha256": "7ae1a96861dfc809f2c0218ad5fe0ead974d25752d3948ebc029f29c9b3a2e3b", + "rev": "8b7f1477ef367b5b7de452589dd9a8ab30150d0a" + }, + "recipe": { + "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "dash", + "f", + "s" + ] + }, + "operate-on-number": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/operate-on-number.el.git", + "sha256": "abdd6093b640c9564b31c520a90f24f1a547e43834ab5761a0d0ecc7da4c008b", + "rev": "6a17272e2b6e23260edb1b5eeb01905a1f37e0a6" + }, + "recipe": { + "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "thumb-frm": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thumb-frm.el", + "sha256": "1zyx30awgdvhfbr7fzgizm7gl93j0hqckiafp2jmlaarl8s2i36i" + }, + "recipe": { + "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "frame-cmds", + "frame-fns" + ] + }, + "browse-url-dwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/browse-url-dwim.git", + "sha256": "38ab7b880e6ab926f6d95fc0197998b59e6d5219ac169fa32d327c56e91dd48c", + "rev": "11f1c53126619c7ef1bb5f5d6914ce0b3cce0e30" + }, + "recipe": { + "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.8", + "deps": [ + "string-utils" + ] + }, + "emmet-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/smihica/emmet.git", + "sha256": "97a30c99cc4763805a2e5da53125f5a059898ee3b95e6d940d6b0fdd7fdaa9e0", + "rev": "bf76d717c60f33d223cdac35513105e9f9244885" + }, + "recipe": { + "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.8", + "deps": [] + }, + "edbi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-edbi.git", + "sha256": "3aad067e7805c47c47a9dd9467d1b94b8813d86e19642e03d2431d1291c1c377", + "rev": "39b833d2e51ae5ce66ebdec7c5425ff0d34e02d2" + }, + "recipe": { + "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "concurrent", + "ctable", + "epc" + ] + }, + "markdown-toc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/markdown-toc.git", + "sha256": "2d82c36f88564b6c2c4795b48eeb6a3b16423783f932381cb11c2542e3fcc7f1", + "rev": "30b9cb4b79b210e150c4e2774ce2ef1a6c5230e4" + }, + "recipe": { + "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.8", + "deps": [ + "dash", + "markdown-mode", + "s" + ] + }, + "ac-html": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/ac-html.git", + "sha256": "43464e45c5da6071edd5ae6a0a593727e655ac368b0591bf26c08252bd0041c6", + "rev": "415a78c3b84855b0c0411832d21a0fb63239b184" + }, + "recipe": { + "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.31", + "deps": [ + "auto-complete", + "web-completion-data" + ] + }, + "swiper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/swiper.git", + "sha256": "75b1febbf2e1ed9dc88ed2d8e6a3ce9ae842b8588ea0b6f19a526f14e0a050cd", + "rev": "706349fcfae297ee285552af9246bc0cf00d9b7f" + }, + "recipe": { + "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "emacs" + ] + }, + "eldoc-eval": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/eldoc-eval.git", + "sha256": "73c7137585afacafec8da5f4a98ef86afcaf88798c7a5d89e7f3b3644c6f09ba", + "rev": "deca5e39f31282a06531002d289258cd099433c0" + }, + "recipe": { + "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "helm-descbinds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-descbinds.git", + "sha256": "77c9fd1ae420adadf73826a11e7a73cddb53ffc2d1cc42aae0a20709b8daa2b2", + "rev": "5d8e84e6c047ce8a042fdcd827abb421f4848ac7" + }, + "recipe": { + "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.08", + "deps": [ + "helm" + ] + }, + "wispjs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/wispjs-mode.git", + "sha256": "d56c52ca1757ed777470ca389a175936c7162aec25106242cf2b9b75ff27dc1b", + "rev": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f" + }, + "recipe": { + "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "clojure-mode" + ] + }, + "neotree": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jaypei/emacs-neotree.git", + "sha256": "db74bef5fc7295191f5aea67dc5b572796a73d8a49383d9a760a5ce56ca439c8", + "rev": "c4f32b489fb1f5f00897a7dbb58a27ee704f5493" + }, + "recipe": { + "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [] + }, + "magit-topgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-topgit.git", + "sha256": "636089034ec8e55e4b01c77c8c44ee723eb258f340bdaac44c7f5b78f7404136", + "rev": "732de604c31c74e9da24616428c6e9668b57c881" + }, + "recipe": { + "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.1", + "deps": [ + "emacs", + "magit" + ] + }, + "express": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/express.git", + "sha256": "1311be097f5bdd16d2fdccf6e1fd7fac6af8a58b2420a1c23c6b114616f37f61", + "rev": "e6dc9abdc395ef537408befebeb4fd3ed4ee5c60" + }, + "recipe": { + "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.0", + "deps": [ + "string-utils" + ] + }, + "company-web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/company-web.git", + "sha256": "b9fc754c76b45fac12bcbb321c67c7115f6d0f492d46cc5643040ef27239132c", + "rev": "ffb6b969813041d2d90680a7696a9e0208eaed61" + }, + "recipe": { + "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "cl-lib", + "company", + "dash", + "web-completion-data" + ] + }, + "helm-recoll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-recoll.git", + "sha256": "01c2710f5024844700c111b5bf148b0e06ea0e0c28d80705fcf69d8d7bd57c99", + "rev": "957a099b9425b91d1c6a1fc43110aa5fc834e2e1" + }, + "recipe": { + "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "helm" + ] + }, + "sr-speedbar": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sr-speedbar.el", + "sha256": "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i" + }, + "recipe": { + "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "emr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/emacs-refactor.git", + "sha256": "05c1737bd3a3f0fcae7cf73e133fe4aec0c1cbe7ebceb870eb3ba5d82c86d349", + "rev": "fd20fc1887e2ebcf752f0170b1f3bf697043fd4b" + }, + "recipe": { + "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.6", + "deps": [ + "cl-lib", + "dash", + "emacs", + "list-utils", + "paredit", + "popup", + "projectile", + "redshank", + "s" + ] + }, + "emacs-eclim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senny/emacs-eclim.git", + "sha256": "305d13f0849c092a0f78e09df2a56d50d67375c66ea98ffcd6894b4ffe40bbf4", + "rev": "c5c7272ae30e5017ebd08d4e03508abc6b23bf4c" + }, + "recipe": { + "sha256": "0lj91lfhiy6hwglv62bzqk2qjqg3dvwv0nff6cbv0za3zdwdj5yv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "dash", + "json", + "popup", + "s" + ] + }, + "typo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/typoel.git", + "sha256": "621610add50d3dc6e0ddf691b78884e5d746e0d3cbf1ee9f083f16c8f2230dca", + "rev": "e72171e4eb0b9ec80b9dabc3198d137d9fb4f972" + }, + "recipe": { + "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "foreman-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/foreman-mode.git", + "sha256": "89538f300cc0086d7c3ae0ea23c34c020954e7488897ccadc3dcef25dcf233a5", + "rev": "e90d2b56e83ab914f9ba9e78126bd7a534d5b8fb" + }, + "recipe": { + "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "dash", + "dash-functional", + "emacs", + "f", + "s" + ] + }, + "timesheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tmarble/timesheet.el.git", + "sha256": "e4845d4a0dbac894dca4cdfe632b134260c5c644d25f1edbdb7a2adf5e1f9ffa", + "rev": "354131b1216ccca51a68da74e9491b5518fd7820" + }, + "recipe": { + "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "auctex", + "org", + "s" + ] + }, + "slideview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-slideview.git", + "sha256": "d3c976b63e9dacc9b024c46b22b712d1c2ac3e38af663e399ca2e016aa126166", + "rev": "ec2340e7b0e74201206d14e3eaef1e77149f122d" + }, + "recipe": { + "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [] + }, + "direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/direx-el.git", + "sha256": "6e1c6b01dd9f4becc5bd0abd580e023b970ccb1e716c7d436d31a0fc24140c5d", + "rev": "423caeed13249e37afc937dc8134cb3c53e0f111" + }, + "recipe": { + "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "yaxception": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/yaxception.git", + "sha256": "088d3adc32c3aef876de4a66b324a28e4791b5b671eef8daf5ec2edc2c322fc3", + "rev": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875" + }, + "recipe": { + "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.3", + "deps": [] + }, + "haskell-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/haskell/haskell-mode.git", + "sha256": "4a34e6cacdefa5c114f667f2602c2260aed0fa1ed9b03fcac50cd45ad7d3e898", + "rev": "ea81bbb966a839527a786739b7628fd9cd777456" + }, + "recipe": { + "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "13.16", + "deps": [ + "cl-lib" + ] + }, + "icicles": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/icicles.el", + "sha256": "1vr4wp808rv8kiq324ph2jfbqdw1wzii41rca45v5w21gway169s" + }, + "recipe": { + "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "linum-relative": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/linum-relative.git", + "sha256": "4c33a1dac10f605afc3500cd869c397bb5bc9f896d1e4bdd2d407766d2228fd4", + "rev": "1074e12904d08e00dda438d9700f2a3bff238bd5" + }, + "recipe": { + "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "flymake-jslint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-jslint.git", + "sha256": "31fb74daad79a05d70721bc0e98b45841df5a206384ad3b041436b8af9a8f303", + "rev": "30693f75059bab53a9d2eb676c68751f4d8b091c" + }, + "recipe": { + "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.23", + "deps": [] + }, + "org-bullets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/org-bullets.git", + "sha256": "1ce0cbfaa8541518c6c079db12ef59d97a1ff73553d56736a50b5be7a426d982", + "rev": "b70ac2ec805bcb626a6e39ea696354577c681b36" + }, + "recipe": { + "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.4", + "deps": [] + }, + "wimpy-del": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/wimpy-del.el", + "sha256": "05gmqx9qj95fd4lryvpp7rk93f1ibsvl3lqanraph0s73ir48x3z" + }, + "recipe": { + "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "help+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help+.el", + "sha256": "0vdga10l8vslsicrspl3wyhf6a5jxdwzqb7r8g07fbd4f09d57a4" + }, + "recipe": { + "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "org-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/IvanMalison/org-projectile.git", + "sha256": "cd2769c56ed01b544c11c2f35a434d5e448a9db8be064049039521da618a6b01", + "rev": "c2141ac997f4af49257595bab88adb9dd7b9b700" + }, + "recipe": { + "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "dash", + "projectile" + ] + }, + "doremi-mac": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi-mac.el", + "sha256": "1zlb6r5qy46yf5x499gzk6kvdy427qf3s9gzmpf5mzszcy6rzsfx" + }, + "recipe": { + "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flyspell-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/flyspell-popup.git", + "sha256": "2c3ae892b4c4ecbaf22a23da8b64b741348b9271cb2ab260a64a034aa37667e6", + "rev": "a3890c9272c0cfa1e2cde6526f7d6280ad4af00c" + }, + "recipe": { + "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "popup" + ] + }, + "pyvenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/pyvenv.git", + "sha256": "da4d1a78fe1ed7ab82164befcfc2c697925dfc5d39bc6156374c6ec7c6acf1f5", + "rev": "5c48de2419ddf10c00e38f5940ed97a84c43f1ce" + }, + "recipe": { + "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.9", + "deps": [] + }, + "persp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Bad-ptr/persp-mode.el.git", + "sha256": "eb606912f03b1e0d7e56daa7280fa713d105e12cd1fb9be7912567f255a12c89", + "rev": "00e5f345f13b2b9e615082ac9ccbfd076592cc22" + }, + "recipe": { + "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.7", + "deps": [] + }, + "replace-from-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/replace-from-region.el", + "sha256": "1clxkzxqsm91zbzv8nffav224ldr04ww5lppga2l41xjfl6z12qb" + }, + "recipe": { + "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "fuel": { + "fetch": { + "tag": "fetchgit", + "url": "git://factorcode.org/git/factor.git", + "sha256": "b348e285923e480fe696f888783c95becb392a6e05abc553d8be649987c7d190", + "rev": "905ec06d864537fb6be9c46ad98f1b6d101dfbf0" + }, + "recipe": { + "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.96", + "deps": [] + }, + "mic-paren": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mic-paren.el", + "sha256": "1ibim60fx0srmvchwbb2s04dmcc7mv7zyg1vqavas24ya2gmixc5" + }, + "recipe": { + "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-core": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm.git", + "sha256": "6e2d8f6da0794c20011078721bd99d7c6d781913bb41631d9801539bcff038a2", + "rev": "97e8ffaed3c5959e9c16e7a0e45cc0702218b2cc" + }, + "recipe": { + "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.9.0", + "deps": [ + "async", + "cl-lib", + "emacs" + ] + }, + "wonderland": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kurisuwhyte/emacs-wonderland.git", + "sha256": "ecfed5679ebd26cfcdad6288984809c27ba5a3bc48e8d433e3037cf45b191905", + "rev": "28cf6b37000c395ece9519db53147fb826a42bc4" + }, + "recipe": { + "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "dash", + "dash-functional", + "emacs", + "multi" + ] + }, + "plsense": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-plsense.git", + "sha256": "e44451c0abe549496c023c904914e5fc19c299cdee2115fd10e5a7ccaaaae6ab", + "rev": "f6fb22607a5252b2556d2e7fa14f1bcab5d9747a" + }, + "recipe": { + "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.7", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "synonyms": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/synonyms.el", + "sha256": "1vqsi13ygbzjh3a6hdzidjy1p1xjxxvbisax8lcppy99l2cymr20" + }, + "recipe": { + "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "save-load-path": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/save-load-path.el", + "sha256": "1p8p5b85sdnq45rdjq5wcr3xz7c22mr5bz41a21mkabc4j4fvd3z" + }, + "recipe": { + "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "fic-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fic-mode.el", + "sha256": "110h0ff7bkwx7icph0j997hq53zpyz426dji4vs89zf75cf1nl7s" + }, + "recipe": { + "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "dionysos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/dionysos.git", + "sha256": "44ab211ad157d2f901397351e0c189c34928ad73ae6a6ca4351781bc29461bf3", + "rev": "92578e813b92c8aae12948b44e0c7757cc9b3d9b" + }, + "recipe": { + "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "dash", + "libmpdee", + "pkg-info", + "s" + ] + }, + "graphene": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/graphene.git", + "sha256": "961ff5be2e0aa1fe05befc9293a5c8022134ddf29b4e6c12f6225ddbb2a29f54", + "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" + }, + "recipe": { + "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.5", + "deps": [ + "company", + "dash", + "exec-path-from-shell", + "flycheck", + "graphene-meta-theme", + "ido-ubiquitous", + "ppd-sr-speedbar", + "smartparens", + "smex", + "sr-speedbar", + "web-mode" + ] + }, + "flycheck-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flycheck-package.git", + "sha256": "1d2a7426c8438728fb4dd86d6968df624712946ecc67b7799c62f762de427671", + "rev": "ff93e8986a1021daf542c441c1fd50436ee83cba" + }, + "recipe": { + "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "cl-lib", + "emacs", + "flycheck" + ] + }, + "org-mac-iCal": { + "fetch": { + "tag": "fetchgit", + "url": "git://orgmode.org/org-mode.git", + "sha256": "868656dc794d05db566b6ae0052f148a635a737c625d965d89dc036fdd12ccbf", + "rev": "592dc2ee7e4c80b9b61efb77117c8dc22d6cefd1" + }, + "recipe": { + "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "7.9.3e", + "deps": [] + }, + "annotate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bastibe/annotate.el.git", + "sha256": "1a0c56181a476323596c8eda5f6d6064befe3ed16dd1a52cbeb87df4c3b6d1a2", + "rev": "a1690384317ce366e5a33aec916949e3328a0117" + }, + "recipe": { + "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.4", + "deps": [] + }, + "zerodark-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/zerodark-theme.git", + "sha256": "cc6d516fbf738ebe96cb5a252d43f67a3d771c3a7f2effe22c71c4765434bedf", + "rev": "5f7e16b35b2b42e4a286ca0cece4766a69cd7321" + }, + "recipe": { + "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "flx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/flx.git", + "sha256": "51cca17135995086f8b482d82de9cb5ad3b9be939fe6404740274d4579604a20", + "rev": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c" + }, + "recipe": { + "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "cl-lib" + ] + }, + "hardhat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/hardhat.git", + "sha256": "5eabdfcb353d8ad55a3cde14d146f27164389979ee85af13d5b7e5a28b0144c5", + "rev": "fa42fa4a07dc59f253950c5a8aa5257263a41cdf" + }, + "recipe": { + "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.4", + "deps": [ + "ignoramus" + ] + }, + "pinyin-search": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/pinyin-search.el.git", + "sha256": "e0fc1d7f197fafd58280447910bd7e64d486524bb418294b334a4ce6de6c508a", + "rev": "5895cccfa6b43263ee243c5642cc16dd9a69fb4e" + }, + "recipe": { + "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "mouse+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mouse+.el", + "sha256": "1l29smg3r2b2b08869wsrwyr5239gznd88xwf40q7qi350cj8fwy" + }, + "recipe": { + "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "sexp-move": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/elzair/sexp-move.git", + "sha256": "7564a95c172eae85ce9b69ad3bd11c136f3daf4a4cc88f1f6107605e9ff80586", + "rev": "117f7a91ab7c25e438413753e916570122011ce7" + }, + "recipe": { + "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.6", + "deps": [] + }, + "mc-extras": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/mc-extras.el.git", + "sha256": "c116350ee989d65b83cd1ba26bed085060656a7bc35ee0dd87d2344d70e3a208", + "rev": "71cf966be06d9c74e781a87bb30fa4cf657ee852" + }, + "recipe": { + "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.1", + "deps": [ + "multiple-cursors" + ] + }, + "desktop-registry": { + "fetch": { + "tag": "fetchgit", + "url": "git://ryuslash.org/desktop-registry.git", + "sha256": "7c7727dd1d63be98e428700bfe340f2c4e7ff713fcc9b2b743a3366d786ae02d", + "rev": "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd" + }, + "recipe": { + "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [] + }, + "test-kitchen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jjasghar/test-kitchen-el.git", + "sha256": "b63de5a6d586ec1dc76405bcdcfc8504e48bfc90668764fb233a1fae4625770b", + "rev": "9464c7dda14020099053218e959971117396091e" + }, + "recipe": { + "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [] + }, + "thrift": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/apache/thrift.git", + "sha256": "a132e886758ffb4c72cacaea5833a97eebd24f45c354fb438642121425193ef7", + "rev": "53dd39833a08ce33582e5ff31fa18bb4735d6731" + }, + "recipe": { + "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.3", + "deps": [] + }, + "better-defaults": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/better-defaults.git", + "sha256": "1508575387f1290ef308bb096f6e5d9c38a49109e63cd76be51221ac6c1b9625", + "rev": "c286d55528f148733c696fe07eb01073dc412fb8" + }, + "recipe": { + "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [] + }, + "plsense-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/plsense-direx.git", + "sha256": "410606f05b1ef21eb65bcb2dc70d01835c5cd71585c83e428858198ff1b26468", + "rev": "8a2f465264c74e04524cc789cdad0190ace43f6c" + }, + "recipe": { + "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "direx", + "log4e", + "plsense", + "yaxception" + ] + }, + "cygwin-mount": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cygwin-mount.el", + "sha256": "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw" + }, + "recipe": { + "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "stgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://repo.or.cz/stgit.git", + "sha256": "12c5df549d653c8ec3476ed271a4e9a4065a61a467229c070bb2e6295e285e16", + "rev": "48e5cef14cea5c810833d119900cd484c2a6ca85" + }, + "recipe": { + "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.17.1", + "deps": [] + }, + "ac-html-bootstrap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/ac-html-bootstrap.git", + "sha256": "641652bf1b99ef486340437500e4e9ad97321446e6cbb56e27cad22741ff7fce", + "rev": "591e1e996c820da218ea1eee0a500c556769f128" + }, + "recipe": { + "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.3", + "deps": [ + "web-completion-data" + ] + }, + "julia-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/JuliaLang/julia.git", + "sha256": "c45b5c254ebb09537ad61b409bcfe46793b0910b60a677b9930f25f3bca21716", + "rev": "bb73f3489d837e3339fce2c1aab283d3b2e97a4c" + }, + "recipe": { + "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.2", + "deps": [] + }, + "flycheck-status-emoji": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/liblit/flycheck-status-emoji.git", + "sha256": "2458c64fb30fcfaa74416a6157baa7f9ea002a8d7f819593f45f0e4a5ce79be1", + "rev": "37ed04b76b7338afd2237d3a11487bef3970ff0f" + }, + "recipe": { + "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "emacs", + "flycheck", + "let-alist" + ] + }, + "gitlab": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/emacs-gitlab.git", + "sha256": "dc9bbfff48235cbef8cdb76045ce6d8abe7b8e0815ed4fa3719873d425afec00", + "rev": "90be6027eb59a967e5bbceaa5f32c098472ca245" + }, + "recipe": { + "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "highlight-tail": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-tail.el", + "sha256": "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg" + }, + "recipe": { + "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "common-lisp-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/common-lisp-snippets.git", + "sha256": "1aa6265fb02b2a91bb2eb5c8c752ffa4571daeb1c4e5dc6e73019c88b3c433f9", + "rev": "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284" + }, + "recipe": { + "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "yasnippet" + ] + }, + "apples-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tequilasunset/apples-mode.git", + "sha256": "c45cd8fab7b9f7eb10001a18373c179d5a97d57bd6f807f9f7555083512f2771", + "rev": "fac47b6255e79a373c5d5e1abe66ea5d74588e9f" + }, + "recipe": { + "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [] + }, + "reveal-in-osx-finder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaz-yos/reveal-in-osx-finder.git", + "sha256": "5bac2fcfa9a9bb5a4921e76a433c6f8f0b3f3c5774298236b6f073f2ef6323e0", + "rev": "5710e5936e47139a610ec9a06899f72e77ddc7bc" + }, + "recipe": { + "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.3", + "deps": [] + }, + "minitest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arthurnn/minitest-emacs.git", + "sha256": "763f79991eb0797db89c0e73ee1018ccf419a966a27afea516f1e9ec61f5e8b2", + "rev": "2bed01262b0d888473468b5c7bd7d73694d31320" + }, + "recipe": { + "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.0", + "deps": [ + "dash" + ] + }, + "evil-matchit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/evil-matchit.git", + "sha256": "90ab83764c00c926081508f8d41d10dfe111558a0113c2b85ae5f3fbd48bd6c3", + "rev": "8b80b3df9472217d55962981025539f2da603296" + }, + "recipe": { + "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.2", + "deps": [] + }, + "sqlup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/trevoke/sqlup-mode.el.git", + "sha256": "b37f1c7a10eac786efa5a5c4d9450b361b87f47b41d70447443adc128d835416", + "rev": "7a51e34685c65952cd0635c3d35a36337fde361b" + }, + "recipe": { + "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.3", + "deps": [] + }, + "flycheck-gometalinter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/favadi/flycheck-gometalinter.git", + "sha256": "37acb536623a5cb224deb506e146bf6353dddf7d1a4d650b7d9b72934027eafa", + "rev": "554a806e9ad6ddb6299bcfe469dd7d20cf98b473" + }, + "recipe": { + "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs", + "flycheck" + ] + }, + "ir-black-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jmdeldin/ir-black-theme.el.git", + "sha256": "beee6c020fded073b7d25542b97924ee31e63056cd0f82adadf11eeec748d80c", + "rev": "b1ca1d0778e3e6228ff756e7fdaf5f5982000fa2" + }, + "recipe": { + "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [] + }, + "password-store": { + "fetch": { + "tag": "fetchgit", + "url": "http://git.zx2c4.com/password-store", + "sha256": "f71d0b36570983c35e08b6672c186b5c308b57536a96a747f09665bab794be30", + "rev": "1aac79d9617431bbaf218f9a9d270929762d2816" + }, + "recipe": { + "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.5", + "deps": [ + "dash", + "f", + "s" + ] + }, + "subr+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/subr+.el", + "sha256": "16k141aikvwg5dsw8mfkv222ikjdch0178dm8w58km0mjj7j81wk" + }, + "recipe": { + "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "extend-dnd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/extend-dnd.git", + "sha256": "74226cea94d4361a0aa566002866e6a84c607799842d14f5c6ee75af5d2d0ecb", + "rev": "a1923d57f8f5e862cc66c189b5e6627bc84a2119" + }, + "recipe": { + "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [] + }, + "ac-haskell-process": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ac-haskell-process.git", + "sha256": "81281a4b2377a45976daa01dcdcc442a6c64eb9ea7dfea58d467f8e163da6354", + "rev": "0362d4323511107ec70e7165cb612f3ab01b712f" + }, + "recipe": { + "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [ + "auto-complete", + "haskell-mode" + ] + }, + "flx-ido": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/flx.git", + "sha256": "51cca17135995086f8b482d82de9cb5ad3b9be939fe6404740274d4579604a20", + "rev": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c" + }, + "recipe": { + "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "cl-lib", + "flx" + ] + }, + "helm-open-github": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-open-github.git", + "sha256": "1f63975d65cc1bbbb984cdbc7cc6dc9b8ed064729f9e7cbfa2c9b0c3722e1652", + "rev": "95140bbacc66320a032d3cdd9e1c31aeb47eb83d" + }, + "recipe": { + "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.14", + "deps": [ + "cl-lib", + "gh", + "helm-core" + ] + }, + "nvm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/nvm.el.git", + "sha256": "a297ebf755b1297421ba6918803505a462a91fbda80e6f1823c5583bfc3b9445", + "rev": "d18b13e8275a57ee6c55dc71b671f02a8e6522ad" + }, + "recipe": { + "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "dash", + "dash-functional", + "f", + "s" + ] + }, + "editorconfig-core": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/editorconfig/editorconfig-emacs.git", + "sha256": "d5afed5b0b24092c366cb57bcf7205c39f640e27186ff9b4af57b60e5a8d7aed", + "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" + }, + "recipe": { + "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "cl-lib", + "editorconfig-fnmatch" + ] + }, + "imenu-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmag/imenu-list.git", + "sha256": "2c612c4ae40526bafac23bd3a66cc3f1af2ba4743baa9e964baaf0e9551c51a4", + "rev": "1324cffd571df5e35113efc57e1cdc8490068f9c" + }, + "recipe": { + "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "cl-lib" + ] + }, + "minor-mode-hack": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/minor-mode-hack.el", + "sha256": "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0" + }, + "recipe": { + "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "flymake-less": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-less.git", + "sha256": "95062e781f49a4b6a23cf7ff6ed0f56fb2fe7fce59028c1a171092fe8a46dadf", + "rev": "8cbb5e41c8f4b988cee3ef4449cfa9aea3540893" + }, + "recipe": { + "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "less-css-mode" + ] + }, + "malinka": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/LefterisJP/malinka.git", + "sha256": "95d36927c70689216d37d8effdb3839d72c2e179d3496284051798662d8d0fa4", + "rev": "81cf7dd81fbf124ceda31ee963cce8c3616f28f1" + }, + "recipe": { + "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "cl-lib", + "dash", + "f", + "projectile", + "rtags", + "s" + ] + }, + "aggressive-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/aggressive-indent-mode.git", + "sha256": "3379a4c259b62e0fbbab52365b34d1bb0fad093ef1e00800069e62f4b3115a5b", + "rev": "970c5e3bd4519deed8b8b604a5a96269166bf697" + }, + "recipe": { + "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "helm-pt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ralesi/helm-pt.git", + "sha256": "3b2fb3e9c6912a8fa4f594db4887de50700bfbc015403b43ad93342fadb5a64a", + "rev": "03e35e2bb5b683d79897d07acb57ee67009cc6cd" + }, + "recipe": { + "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "helm" + ] + }, + "subemacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kbauer/subemacs.git", + "sha256": "1d991faf26aade9b28d6b7b182a9e5f1350736f5d9566917527a92c44dc0ebff", + "rev": "24f0896f1995a3ea42a58b0452d250dcc6802944" + }, + "recipe": { + "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "magit-find-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bradleywright/magit-find-file.el.git", + "sha256": "67c9ea64736ffcb18e38571b8350a6e9dc0e3a0a14bc056a06449812d9883979", + "rev": "035da838b1a19e7a5ee135b4ca8475f4e235b61e" + }, + "recipe": { + "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.0", + "deps": [ + "dash", + "magit" + ] + }, + "awk-it": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/awk-it.el", + "sha256": "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw" + }, + "recipe": { + "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ace-isearch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tam17aki/ace-isearch.git", + "sha256": "a91ecfb998618a2a19c9d378801ebbe2f2e729330188b3a12f5ec32f4c546308", + "rev": "7e041d058492c5c35ec70de0e7c5586043e7e5ec" + }, + "recipe": { + "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [ + "ace-jump-mode", + "avy", + "emacs", + "helm-swoop" + ] + }, + "sparkline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/woudshoo/sparkline.git", + "sha256": "de9e32d6eef90b32ac34472d567229d4af4c9bdd444c6c6815ffd2deffacb5be", + "rev": "e44498cf1a58fb165991198fe5104d51c92ea904" + }, + "recipe": { + "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.2", + "deps": [ + "cl-lib" + ] + }, + "slime-volleyball": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fitzsim/slime-volleyball.git", + "sha256": "2303f2a7c5f45d650df2af0ee3d0ca423d7f650bc566c2e744cd394500ac6403", + "rev": "159b5c0f40b109e3854e94b89ec5383854c46ae3" + }, + "recipe": { + "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "emms-player-simple-mpv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/emms-player-simple-mpv.git", + "sha256": "588b4e8c26e3d85ca026aa30a53c17af28b9fd218a4b9d5d5e25732aae436b95", + "rev": "ae4c0032d4d2d0b069ee147b19f962e6a8a73c79" + }, + "recipe": { + "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "emacs", + "emms" + ] + }, + "ta": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kuanyui/ta.el.git", + "sha256": "73ffa3802cce1263812dc00ff89d4b0253a00235f337d05314bb683e506fd626", + "rev": "9226afbe7abbefb825844ef3ba4ca15f1934cfc2" + }, + "recipe": { + "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "enlive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/enlive.git", + "sha256": "c36c7103247446f602b679e53d61a69eac25fb86632e159a223e23bfd3594622", + "rev": "60facaf8bc48b660d209551c0ce4d17e5c907ab8" + }, + "recipe": { + "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [] + }, + "rake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/asok/rake.git", + "sha256": "917cabbe0f0854f0595587541dc909096e9df793b9b75a04ca509aca055b5391", + "rev": "a9e65cb23d3dc700f5b41ff365153ef6a259d4f0" + }, + "recipe": { + "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [ + "cl-lib", + "dash", + "f" + ] + }, + "slim-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/slim-template/emacs-slim.git", + "sha256": "e7e90c997aba0e11141e5fea65ef7415104980ae12ce404749eab019665588b2", + "rev": "fe8abb644b7b9cc0ed1e76d9ca8d6c01edccbdb8" + }, + "recipe": { + "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "mu4e-maildirs-extension": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/agpchil/mu4e-maildirs-extension.git", + "sha256": "dd83e8d67adb06c3a3f48d258883cff08b58006ecfe045f9372058aed845cdd3", + "rev": "8b384b0bbda46c473dea3ee7dc68c2b3f2548528" + }, + "recipe": { + "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [] + }, + "header2": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/header2.el", + "sha256": "04gp3km2d163cw8gqzb02dj3kq23s96ncip5c03whpja2sj9ji6f" + }, + "recipe": { + "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "move-dup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wyuenho/move-dup.git", + "sha256": "7dee5a2856d9126512fc4fa60d37855df91251547e4d2ba30fea7d53211292f1", + "rev": "4df67072eebac69d6be7619335b03f56f9960235" + }, + "recipe": { + "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [] + }, + "stash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vermiculus/stash.el.git", + "sha256": "dbe5b7ccd2e0c9d4091ce9b6ac1ef54e1ac3ec3fb4fccbaf3b453413161912e7", + "rev": "638ae8a4f6d33af54fe77d57c2c0eb1800dd2e19" + }, + "recipe": { + "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.1", + "deps": [] + }, + "autopair": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/autopair.git", + "sha256": "d81ea0125a65a725846190b9b93ccb28357df794e5c26504afea470e7268d33c", + "rev": "2d1eb81d12f71248ad305e70cceddf08d4fe2b39" + }, + "recipe": { + "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "cl-lib" + ] + }, + "chinese-word-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/chinese-word-at-point.el.git", + "sha256": "c37a27f8c28d536a287ac8d3f569b88395bc5bd3625e9477a5a63fd29862c764", + "rev": "36a03cce32fe059d2b581cb2e029715c0be81074" + }, + "recipe": { + "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.3", + "deps": [ + "cl-lib" + ] + }, + "key-seq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vlevit/key-seq.el.git", + "sha256": "0dc5cafd836164af6fbedb7ef7da378d3fad6464dc11f54b570823209b396d3d", + "rev": "e29b083a6427d061638749194fc249ef69ad2cc0" + }, + "recipe": { + "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "key-chord" + ] + }, + "ox-pandoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/ox-pandoc.git", + "sha256": "497825b3a7df60f0dfc4f9939a67f940523df6cdc2e453b54987ee93a8bb8940", + "rev": "035f1d60a0139349232c382cfd23a96902b7003d" + }, + "recipe": { + "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.150707", + "deps": [ + "dash", + "emacs", + "ht", + "org" + ] + }, + "helm-ghc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/helm-ghc.git", + "sha256": "a7141edd983871ee53b4fae9d5fad8b5f78ca376fbad6430e888edd2dfd1c6eb", + "rev": "d3603ee18299b789be255297dc42af16dd431869" + }, + "recipe": { + "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "emacs", + "ghc", + "helm" + ] + }, + "projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/projectile.git", + "sha256": "eb88b89c18ca127127e1f2692cfd4fe5670a8058635bc06f3ebd241f78a5f8e8", + "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" + }, + "recipe": { + "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13.0", + "deps": [ + "dash", + "pkg-info" + ] + }, + "fabric": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/fabric.el.git", + "sha256": "bd5cbee2b608c56ad1196cb74f96cc5d210955dced3bc7b4ad4f3ea62c086f96", + "rev": "004934318f63d8cf955022f87b2c33eb97ada280" + }, + "recipe": { + "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "sage-shell-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/sage-shell-mode.git", + "sha256": "1c61b8c3125c9c029452b9a05fcefa3215a65646f5ab60df46023c9c8e3ca5ce", + "rev": "8e659438ff419f7f1fddd1b56fb706dbecf9e469" + }, + "recipe": { + "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.8.9", + "deps": [ + "cl-lib", + "deferred" + ] + }, + "flycheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck.git", + "sha256": "f945da0f043a220fd0dd78d22366cc79a9a60bb80b25f3e51c2b7f17e0e9ef61", + "rev": "efaf2e3894428fec065ac6ab0b204db66dbdaa85" + }, + "recipe": { + "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.25.1", + "deps": [ + "cl-lib", + "dash", + "emacs", + "let-alist", + "pkg-info", + "seq" + ] + }, + "cuda-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chachi/cuda-mode.git", + "sha256": "5d728e7b073f3959c550a986742b891bb466cdca87f00fc1967356850ef8db77", + "rev": "c8cf7d92b8039cdd0bd525c258ab42f49a0f91cf" + }, + "recipe": { + "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "dired+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired+.el", + "sha256": "0nizzrahz0fm2w9qfnx34l3jy8nwp9vxjk3xn5sj44k7p2j11m8s" + }, + "recipe": { + "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "mocker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/mocker.el.git", + "sha256": "02769eb735b52f2a0f96f992d659685522813c42f922bcd5ebc3ec40aa3a5bd1", + "rev": "55b078b53ea49e48bd1821d96f0fb86f794fdc6c" + }, + "recipe": { + "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "eieio", + "el-x" + ] + }, + "hide-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hide-region.el", + "sha256": "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval" + }, + "recipe": { + "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "pungi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mgrbyte/pungi.git", + "sha256": "f55917cbfe377b1c4088a5f4169e8977f106a7f483ef80b48d1b529ee1d95404", + "rev": "41c9f8b7795e083bfd63ba0d06c789c250998723" + }, + "recipe": { + "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "jedi", + "pyvenv" + ] + }, + "colorsarenice-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/colorsarenice-theme.git", + "sha256": "2aca79f4bc2c2e01cf18e86dda2d76bea71b066d2f1bd2e7a2d251fefda91fa2", + "rev": "3cae55d0c7aeda3a8ef731ebc3886b2449ad87e6" + }, + "recipe": { + "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.20", + "deps": [ + "emacs" + ] + }, + "browse-kill-ring+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/browse-kill-ring+.el", + "sha256": "0av8fv2xf8b3qs32hxv90pglv9a90z2865rlja21hsyi5isw8vca" + }, + "recipe": { + "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "browse-kill-ring" + ] + }, + "ace-jump-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/ace-jump-buffer.git", + "sha256": "fa652b2e228226c215e09fcc391984ce0afd58cfc7eb8babd2359895295002fd", + "rev": "41f8bb0744cdf9c219d25b417f2ffbd0883469e7" + }, + "recipe": { + "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "ace-jump-mode", + "dash" + ] + }, + "find-dired+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/find-dired+.el", + "sha256": "1x0zn9kpnvxhgljp4ii4f11hgncj9smdkn64ihih00w7qgg7sif2" + }, + "recipe": { + "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ac-octave": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/ac-octave.git", + "sha256": "aef1b37cddecb17d908001fd2d031f4f9114f8ce9e2470a4d31679f3db86c899", + "rev": "eb6463631a69dfd06fe750c1c155594d11de0590" + }, + "recipe": { + "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "auto-complete" + ] + }, + "ansi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ansi.git", + "sha256": "cc8e3a51e192745f9d738cb5e5f23a72713cc118db5d13afdd61367bc8b04e16", + "rev": "a042c5954453bab9a74177e2b78ad17a824caebc" + }, + "recipe": { + "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.1", + "deps": [ + "dash", + "s" + ] + }, + "ido-describe-bindings": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danil/ido-describe-bindings.git", + "sha256": "389e0aa707e366d878f1fa16a3c82ffea086999739d7a3ca5b8e5cab549e90a5", + "rev": "a4048d5d1a6aad93c0206dbe4f34f4edb21a04d2" + }, + "recipe": { + "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "dash", + "ido-vertical-mode" + ] + }, + "birds-of-paradise-plus-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jimeh/birds-of-paradise-plus-theme.el.git", + "sha256": "5acd6d3cbd05bf6d8d480c5994f1a2e6fb59bb13bfa30ffb30067915084effbf", + "rev": "ba2c4443388a73f2c5e2de0c24d3106676aeb6fa" + }, + "recipe": { + "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "elixir-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/elixir-lang/emacs-elixir.git", + "sha256": "89ab5d3eb060ba3c2cadc5605eab0976ec331b6621d777e47bf8a998b72fdb1b", + "rev": "bfc95d9d444bf4002d340d37ad30954dd86c0e94" + }, + "recipe": { + "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2.8", + "deps": [ + "emacs", + "pkg-info" + ] + }, + "hookify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/hookify.git", + "sha256": "0c1a84847e65a4cf3e5c3bf21852efb14c5c6f7f2e69e39a86fdda034b4b7ffb", + "rev": "e76127230716f7fab6662410c03c3872d17a172b" + }, + "recipe": { + "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "dash", + "s" + ] + }, + "gntp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tekai/gntp.el.git", + "sha256": "6af8626fba745e8b7a159551b81aad14657da206e95d467cbf35e6e6a5947edb", + "rev": "767571135e2c0985944017dc59b0be79af222ef5" + }, + "recipe": { + "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "github-browse-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osener/github-browse-file.git", + "sha256": "e814a5b24d59275e690f08f5604e292b443f08997d38b8071c6f4d605db56f1f", + "rev": "fa5cc00a40869430fb44596792961a4cddf9c265" + }, + "recipe": { + "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [ + "cl-lib" + ] + }, + "diminish": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/diminish.git", + "sha256": "09a8ac18ded366d54941d415e2b77b3adf6d8d5c931cdedfeef82257fee15043", + "rev": "b50752d7e2ed87e2c729ccbb82f418c2145b3983" + }, + "recipe": { + "sha256": "03sskxgvkj8zrkh1p6kc993609r6261q4ww9hr78kr2f2a98lj88", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.44", + "deps": [] + }, + "easy-kill-extras": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/easy-kill-extras.el.git", + "sha256": "20aee5587b635e522b0d0c9bbe5dde8b84e2017e8037a7389ac1a4997ea7cda1", + "rev": "242844bc95b9015396405d84c4335338037968c3" + }, + "recipe": { + "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.4", + "deps": [ + "easy-kill" + ] + }, + "projekt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tekai/projekt.git", + "sha256": "08fd5f68bbbfc87f36dd8cc476da7141fc7be1a46c9a11e4e179aceb042f85e7", + "rev": "107232c191375b59d065354470d0af83062e2a4c" + }, + "recipe": { + "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "emacs" + ] + }, + "naked": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/naked.el", + "sha256": "0fr7l8ab6wmffyjs7vc38x6ca37w8c00fjhi3br3g7cgi0bna0wi" + }, + "recipe": { + "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ranger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ralesi/ranger.el.git", + "sha256": "288588d875c4a38106af55b08b4c7a971c86faed68e670c52119ac0c6e42723a", + "rev": "4b778da7aafe1dc4077a3c891ae918eae929fae6" + }, + "recipe": { + "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.7", + "deps": [ + "emacs" + ] + }, + "yascroll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/yascroll-el.git", + "sha256": "1fb71ec47cd5db6b84762efa31cee68bc138a8b151bc034711f3b467f819e800", + "rev": "0a8b531b3a3c8afe7235c8c212e08bfe2021a629" + }, + "recipe": { + "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "date-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/date-at-point.el.git", + "sha256": "e9ba32c149a949cec5834a61f3b82ef58b66d84d489f53a2c2252426787e75a5", + "rev": "662f8350a83311503dc0aae47a28752f9f1270c9" + }, + "recipe": { + "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "flycheck-ledger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flycheck-ledger.git", + "sha256": "66b10443c2b728a856c19f5aeeb3a77991ab8dd8d251fa992bd523340bd7badd", + "rev": "9401b6c83f60bfd29edfc62fee76f75e17a3a41e" + }, + "recipe": { + "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "flycheck" + ] + }, + "killer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/killer.git", + "sha256": "d420457dda39d440224a4a33271b5f679fb983b2fa4ef4c6dafb5f1e15a3be46", + "rev": "52256640aebbb8c25f8527843c2425b848031cd8" + }, + "recipe": { + "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [] + }, + "flycheck-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/flycheck-tip.git", + "sha256": "03f13fadd0b9c4547d6212f05610e612579a59381016e657e05c848bcd8e5a61", + "rev": "0bfddf52ae4ec48d970324f8336a5d62986bbc9e" + }, + "recipe": { + "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [ + "emacs", + "flycheck", + "popup" + ] + }, + "iedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/victorhge/iedit.git", + "sha256": "e240bd5d73807651ea9a04208b20e6d83b5d4154b66d9bfec7449e184104445f", + "rev": "b95c35107a429d63b99f888b52eb0f74105d0da0" + }, + "recipe": { + "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.9", + "deps": [] + }, + "term-alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CallumCameron/term-alert.git", + "sha256": "fb08773ac2d47cc4c4397a9db227c81a4dd689568ce4678b2b977f34eb652890", + "rev": "879ea638120639299aae602f06c46d9c27312ff1" + }, + "recipe": { + "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "alert", + "term-cmd" + ] + }, + "org-vcard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flexibeast/org-vcard.git", + "sha256": "c47bd23b8776fe466110de600193b99e6ae2c06dc583d84ec7c18bf034bec4e1", + "rev": "5c4e17c166fb0406d5dfdc8876b0e182ba7af8fd" + }, + "recipe": { + "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "eide": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.tuxfamily.org/gitroot/eide/emacs-ide.git", + "sha256": "3f41ade3332a3f1dc5cfb0b33077396feb7b683b2cf2c235b7a5f07f0b2e3271", + "rev": "524494fd2b23217c6807b30b43bb95b5724f809e" + }, + "recipe": { + "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.1", + "deps": [] + }, + "simple+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/simple+.el", + "sha256": "0y1c87288cj7kwdq5ww6rvd4g4afssw22b7d0wa5ihl85nnf21kv" + }, + "recipe": { + "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "strings" + ] + }, + "weather-metno": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ruediger/weather-metno-el.git", + "sha256": "3d9baeea5611b478eb1c447ffca1269bf98fe83b1130e80743715de3f8e43ea3", + "rev": "b59680c1ab908b32513954034ba894dfb8564dd8" + }, + "recipe": { + "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gitconfig": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/gitconfig.el.git", + "sha256": "9b10b3d62ce88daa8831594bcb589d0320e4de1fdc0331dbe9f5aa08b9371c48", + "rev": "6c313a39e20702ddcebc12d146f69db1ce668901" + }, + "recipe": { + "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "auth-password-store": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/auth-password-store.git", + "sha256": "066ba82c4c5061bc11c1d390bfbacded48d91e6ccabd9328c8e09aaeb287e063", + "rev": "d7fc1f026c3f43190cacedfa6eff8da916e607f5" + }, + "recipe": { + "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.3", + "deps": [ + "cl-lib", + "emacs", + "password-store", + "seq" + ] + }, + "cpputils-cmake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/cpputils-cmake.git", + "sha256": "c484cc2f6d0334b4db9d28b40bba28cde8ce15ede3812cc869a6d7b4d36a7f9d", + "rev": "d11e5496a0bf885900e7d0d004decc66f95dda3f" + }, + "recipe": { + "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.2", + "deps": [] + }, + "anzu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-anzu.git", + "sha256": "f4f3f307cc0cd85d544782557d703ce2224420042aaf9f04e89befb683f5364d", + "rev": "6fded24b366efc4cf27166104c1928f7d1fedaa7" + }, + "recipe": { + "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.59", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "format-sql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/format-sql.el.git", + "sha256": "adb8870c0f12e930843a7b5455a8f9c03d1d0e57680fc910b0b565b2f0be44bc", + "rev": "97f475c245cd6c81a72a265678e2087cee66ac7b" + }, + "recipe": { + "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "writegood-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bnbeckwith/writegood-mode.git", + "sha256": "2b0c3987112ed453007aec5b32b5cba812c0c9559c52e6dddf1b266372b0d2da", + "rev": "4302169c1563cab9319745083f9b9a7f5f4af0bd" + }, + "recipe": { + "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.2", + "deps": [] + }, + "simpleclip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/simpleclip.git", + "sha256": "cbd26ff22ff3360b12e1690ab3fed6335146a4981298774297b7dea3994447b1", + "rev": "eba19a21da2e4d1e11abdc158f72d6513afaa669" + }, + "recipe": { + "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "pallet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/pallet.git", + "sha256": "dbedee607b66db70fe1c49c2cdc3f3c8bcc69726889d2cd2daba07c8849c7ebb", + "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" + }, + "recipe": { + "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.2", + "deps": [ + "cask", + "dash", + "f", + "s" + ] + }, + "org-sync": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arbox/org-sync.git", + "sha256": "0e7defe6571bc6697dfb7c6c1e351fbed36ed13c79af8ff2ad08f74610366bb7", + "rev": "8c65dceaa2f3d436f83ed591916f22556a6e7f91" + }, + "recipe": { + "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "emacs", + "org" + ] + }, + "rcirc-styles": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aaron-em/rcirc-styles.el.git", + "sha256": "76f7fa9563766606fd159ad52a3217aca64cffa0b7a2c4100f5825ee55ae8ff8", + "rev": "37cc85b6f3608db08b59d158d87da544b1a5a41e" + }, + "recipe": { + "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "cl-lib" + ] + }, + "key-chord": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/key-chord.el", + "sha256": "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg" + }, + "recipe": { + "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "yatemplate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mineo/yatemplate.git", + "sha256": "481b34908818b9a3c20994241cd59604aa8152921d6f88f4c583f87c8f54f4fa", + "rev": "a49a218b6fcfbbf6e51021be78aee6d3b220e3f6" + }, + "recipe": { + "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "yasnippet" + ] + }, + "nginx-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ajc/nginx-mode.git", + "sha256": "68383ec0f80d1a797def7f0af17b6d56acaee6fdc842e401151df4bcc0f47721", + "rev": "8a296e30b01adbc40d1aa9ccde369a972ac5ceab" + }, + "recipe": { + "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.4", + "deps": [] + }, + "emoji-fontset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/emoji-fontset.el.git", + "sha256": "393ff52a3d1632495bc3ea893750aa2e5d7604f3804d8415acc35a955fb82762", + "rev": "3b8c2204284b95934383836b5b36efeefb65663b" + }, + "recipe": { + "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "ergoemacs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ergoemacs/ergoemacs-mode.git", + "sha256": "d04116072b6b4eaeeb9aee59c8b1dddecea67c833112e1667045fe6e9adbd954", + "rev": "295ce7a4a5341d9e144a06e91befeebfac1239d9" + }, + "recipe": { + "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "5.14.7.3.1", + "deps": [ + "emacs", + "undo-tree" + ] + }, + "cyphejor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/cyphejor.git", + "sha256": "51a549c4e6140d896060d9e6603f7af1aa7e3bf06b5ba4ef1498afda67026c6a", + "rev": "1025d82a9abaca132f5855e72d56c0c2ccc0eef4" + }, + "recipe": { + "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs" + ] + }, + "guide-key-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/guide-key-tip.git", + "sha256": "a39777308865e3d00de50254daf310cbaeb07a3e37be1b38baef3d21a1631510", + "rev": "e08b2585228529aeaae5e0ae0948f898e83a6200" + }, + "recipe": { + "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "guide-key", + "pos-tip" + ] + }, + "apache-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/apache-mode.el", + "sha256": "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik" + }, + "recipe": { + "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ac-racer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-racer.git", + "sha256": "8d70ad5e88997bc6204eceda076111598f40f380eecf7b9fa26b3dd7508a17fb", + "rev": "2708b0a49afc89fb99a6d74a016cff6b94138ed0" + }, + "recipe": { + "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "auto-complete", + "cl-lib", + "racer" + ] + }, + "nemerle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rsdn/nemerle.git", + "sha256": "e8c7798e8a4b02040e5b5a055bb41fc3f07bf0743dfb2004268074a3d8e2fb34", + "rev": "556270ce8b97668a65e9ec20a05f78c3dffeac60" + }, + "recipe": { + "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [] + }, + "haskell-emacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knupfer/haskell-emacs.git", + "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.1.2", + "deps": [] + }, + "terraform-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-terraform-mode.git", + "sha256": "768dadff0ed54515f9608800f513542f98d7f75044d4a5ef4b3aa0d9b5e42214", + "rev": "86e661cfcdc56677d7f4935a187ed72d208b9140" + }, + "recipe": { + "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [ + "cl-lib" + ] + }, + "elpa-audit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/elpa-audit.git", + "sha256": "7de472b1c16b50d2ac81845df3d21a9b790f71916a868ee0eeac01e801809d50", + "rev": "a7a1806278c73ea6cb6d235714e7bc8088971df5" + }, + "recipe": { + "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "ruby-block": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ruby-block.el", + "sha256": "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq" + }, + "recipe": { + "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "inline-crypt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sodel-the-Vociferous/inline-crypt-el.git", + "sha256": "e6bbefa731000bdf9779889ce712d6394031e75afd95462a52621042906e374a", + "rev": "497ce9dc29a8ccac0b6dd6854f5d120514350282" + }, + "recipe": { + "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [] + }, + "fsharp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rneatherway/emacs-fsharp-mode-bin.git", + "sha256": "e33f9218a55ef0461e9a7cdaea2ce3bf6996faf6c96486e5fd097c2311586e8c", + "rev": "21ec2209cf0aa33f6046735e2455fe58490b7406" + }, + "recipe": { + "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.7.1", + "deps": [ + "auto-complete", + "dash", + "popup", + "pos-tip", + "s" + ] + }, + "mmm-mako": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/pjenvey/mmm-mako", + "sha256": "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr", + "rev": "5c9ff92137b5" + }, + "recipe": { + "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "mmm-mode" + ] + }, + "auto-complete-pcmp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/auto-complete-pcmp.git", + "sha256": "46c81ffdb423e2f7110a631ca3730bc3d85775ea4ef897a1722a79384072c2c1", + "rev": "2595d3dab1ef3549271ca922f212928e9d830eec" + }, + "recipe": { + "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "macrostep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joddie/macrostep.git", + "sha256": "eeaf77cc89002d23c35b3e01ee99879c3a35ac3d12d7469ab7a07a99e357c24a", + "rev": "8950313a4e6e3e4bc1d9b0ce4ad4e3bf2f3eb73a" + }, + "recipe": { + "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [] + }, + "keydef": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/keydef.git", + "sha256": "7b43cf0aaa3d43dd4dafd2a51528a5588cb9d1dfe671a13f438bf45857286c36", + "rev": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0" + }, + "recipe": { + "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.15", + "deps": [] + }, + "flymake-coffee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-coffee.git", + "sha256": "0ba81f88c646b0f2cd8b910150eaedbf2b0dce9811d82b803ce6a18fa3247ee9", + "rev": "d4ef325255ea36d1dd622f29284fe72c3fc9abc0" + }, + "recipe": { + "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.12", + "deps": [ + "flymake-easy" + ] + }, + "magit-svn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-svn.git", + "sha256": "c85c3590b4a58a6dcc2469edf1438e4011e92738e34a0a293729363434c01fbd", + "rev": "c6222981d4aae088d658cce5e58a14efea8590d6" + }, + "recipe": { + "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.1", + "deps": [ + "emacs", + "magit" + ] + }, + "hl-defined": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hl-defined.el", + "sha256": "19pvwdkw833c84j9ynn2x8s8lv1bi98gkkmppn01v08yyzi3kr7y" + }, + "recipe": { + "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "diffview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mgalgs/diffview-mode.git", + "sha256": "e60f691a7eb49bfda1d8e7279b8d9d5768489e77e7c0aec532e344407d7d22b2", + "rev": "471dc36af93e68849bf2da0db991e186283b3546" + }, + "recipe": { + "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "tree-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tree-mode.el", + "sha256": "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx" + }, + "recipe": { + "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-cscope": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alpha22jp/helm-cscope.el.git", + "sha256": "2c9d13a87a81c59e1c6ccbae2f4672f511d6516b07b947cb0ea40af1099bd876", + "rev": "b82db54071bd2d1c77db2e648f8b4e61b1abe288" + }, + "recipe": { + "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "emacs", + "helm", + "xcscope" + ] + }, + "cil-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ForNeVeR/cil-mode.git", + "sha256": "a1119e63ab9ebe52b74ebc8e19e070626fc5c9ada1b95464781a674308501ef0", + "rev": "1cacd8bca125dbdeb97fdf156e32c2b74bac2186" + }, + "recipe": { + "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "babel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juergenhoetzel/babel.git", + "sha256": "39b6b01990badd4b937bb9e462f4d39e44a179fef719e87304eb846ba53ef0fa", + "rev": "65b55ad89017c9b3a1c8c241ac4b4541eabdaf5f" + }, + "recipe": { + "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4", + "deps": [] + }, + "hide-lines": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hide-lines.el", + "sha256": "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2" + }, + "recipe": { + "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-firefox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-firefox.git", + "sha256": "44e25977368189a7f1ca1a1e9778b810da20db759ad3b01c7f920af1a7b3fc77", + "rev": "8be9312e8751dce73c7cdbd33a525bbbbff1736f" + }, + "recipe": { + "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "engine-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hrs/engine-mode.git", + "sha256": "5c1bec4cf6afad4a22f64d9db176cf50913c3ec23b55c0576b40dc98461e4ab7", + "rev": "9e8b10b029f63bc0399f8975a28247eaa78dfcbc" + }, + "recipe": { + "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "textmate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/defunkt/textmate.el.git", + "sha256": "58e075cee06e236462beda466363f565ed6f36a4d31856563ca36517ce8598cc", + "rev": "484845493a3c9b570799aea5195a5435a5a01b76" + }, + "recipe": { + "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1", + "deps": [] + }, + "flycheck-clojure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/squiggly-clojure.git", + "sha256": "ed89d95e003327c50c9f78713236b626ad4f6afad681909cbe0d99c7f59dfb2a", + "rev": "9e07fd2526ab6e2c4db7d7d6b8c9e44be6e90298" + }, + "recipe": { + "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.3", + "deps": [ + "cider", + "emacs", + "flycheck", + "let-alist" + ] + }, + "modeline-char": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/modeline-char.el", + "sha256": "0z3izd0wvnqh3r8535rzxi0xab6hz46njw4m24nl6xps2n7fcwmi" + }, + "recipe": { + "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "el-autoyas": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/el-autoyas.el.git", + "sha256": "9640fb6be024cc1d1dbf4cd8f739288fe3bfa88b84a1d2723d958d94fe177735", + "rev": "bde0251ecb504f585dfa27c205c8e312655310cc" + }, + "recipe": { + "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [] + }, + "system-specific-settings": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/emacs-system-specific-settings.git", + "sha256": "2ffc62b6e1232bf3189693186ffc8be4943d1e116f9660bd0d05cc15642893d6", + "rev": "0050d85b2175095aa5ecf580a2fe43c069b0eef3" + }, + "recipe": { + "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "haskell-emacs-base": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knupfer/haskell-emacs.git", + "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.1.2", + "deps": [ + "haskell-emacs" + ] + }, + "windata": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/windata.el", + "sha256": "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz" + }, + "recipe": { + "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ert-async": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ert-async.el.git", + "sha256": "89290775f84a76ef9802584e9ee104e0afd5ed2092db9d6068123a5b0089c942", + "rev": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526" + }, + "recipe": { + "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [] + }, + "textmate-to-yas": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/textmate-to-yas.el.git", + "sha256": "87fb26aeceb8d5b15d4dcddf878fd6428b0592d2af30451e194e7b65cfba4a3a", + "rev": "8805e5159329e1b74629b7b584373fc446f57d31" + }, + "recipe": { + "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.21", + "deps": [] + }, + "dracula-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenorocha/dracula-theme.git", + "sha256": "7b30a4c99e4d2d6d11bcf4d1ce1d9678b3ff51ca5872c8bf10c2a5888bf4f0f4", + "rev": "ee065fed126eecdfe33a1a578d9f1e20687d2f3a" + }, + "recipe": { + "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [ + "emacs" + ] + }, + "elixir-yasnippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hisea/elixir-yasnippets.git", + "sha256": "3fcf57d4937e80032d25b658c4a70e17965e529c18db2ec35d8231e6f480a537", + "rev": "6b55c88ce483932f226b6bca0212b589d1d393ea" + }, + "recipe": { + "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "yasnippet" + ] + }, + "misc-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/misc-cmds.el", + "sha256": "0akrb0gd4ywrib9bg3q5qjf991gnkggivmg1nsn9snc6il8yjaxq" + }, + "recipe": { + "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "drupal-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arnested/drupal-mode.git", + "sha256": "debf980d5421a33089434d488631504641a3b81110bb9f44b3bb998a79acb264", + "rev": "cf0364cbaf727bcd21ab7c2a14cc987c49fd97d0" + }, + "recipe": { + "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "php-mode" + ] + }, + "company-jedi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-company-jedi.git", + "sha256": "79622ef1df065fd2af7524b46be9695b039693045b6d22d87d455aa81b0f0742", + "rev": "5533e12d6895be1d0909c73374f704e7dd13c055" + }, + "recipe": { + "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [ + "cl-lib", + "company", + "emacs", + "jedi-core" + ] + }, + "termbright-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmastenbrook/termbright-theme-el.git", + "sha256": "e4acb7b0ffd4e4bbee976e41a4f044e32d84ae4fc9634cddbd1b0b6cbafe5426", + "rev": "bec6ab14336c0611e85f45486276004f16d20607" + }, + "recipe": { + "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "emacs" + ] + }, + "list-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/list-utils.git", + "sha256": "d4df944deb07788d680ec83df1f2f977944faa0f2d91e87d132c191ac0f5ac2c", + "rev": "ecd6c91c71e37734af9ff4df003cb96b9d236a97" + }, + "recipe": { + "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.2", + "deps": [] + }, + "helm-ack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-ack.git", + "sha256": "a40a1b043251c0fa83902e4f18d8ee583e57235f575d82bf4144450547e586ae", + "rev": "5982f3cb6ec9f460ebbe06ec0ce7b3590bca3118" + }, + "recipe": { + "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.13", + "deps": [ + "cl-lib", + "helm" + ] + }, + "packed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/packed.git", + "sha256": "91d93518b6a8dea48516e82e85bce0779700364b2cb51f42ca6870b90905b44c", + "rev": "478613da38b0a47f4419acc50017ac871433b13c" + }, + "recipe": { + "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [ + "cl-lib", + "dash" + ] + }, + "guide-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kai2nenobu/guide-key.git", + "sha256": "c40fd6d06cdf9fcdda09394c0f2558b240e93aceb66f054b8d88d6b1a0f71501", + "rev": "626f3aacfe4561eddc46617570426246b88e9cab" + }, + "recipe": { + "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.5", + "deps": [ + "popwin" + ] + }, + "pip-requirements": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/pip-requirements.el.git", + "sha256": "7a8f5664aac4eae210e96c5d1c7287ec1bc0f400de921b519bd0555342224fb7", + "rev": "733ec3e4c30875944601b566e9dba6ef05812fcd" + }, + "recipe": { + "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "dash" + ] + }, + "cliphist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/cliphist.git", + "sha256": "634ff318460a740fb524aa96349778d9a1b6c47469b20e504adff7fa8b58d1e6", + "rev": "c0db2da95fa3d3a58160f465c636989bb4b251d5" + }, + "recipe": { + "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "popup" + ] + }, + "haskell-emacs-text": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knupfer/haskell-emacs.git", + "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.1.2", + "deps": [ + "haskell-emacs" + ] + }, + "synosaurus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rootzlevel/synosaurus.git", + "sha256": "02ca926eeb8bf0dcb98281634980ab6e21ca60ba5b1424d7ece75e9aa9932242", + "rev": "56efdc38952b9bd56a445591fcdeb626aede8678" + }, + "recipe": { + "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib" + ] + }, + "flycheck-color-mode-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-color-mode-line.git", + "sha256": "3d8b41cf124b25b20620ea11b3367b8fc77a6d0ed4fe27addb54ad8e936e470f", + "rev": "c85319f8d2579e770c9060bfef11bedc1370d8be" + }, + "recipe": { + "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "ph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gromnitsky/ph.git", + "sha256": "6acf0fbdc61d5541617afa9858b70ec2f6ce76e958d54309b424efb864489834", + "rev": "ed45c371642e313810b56c45af08fdfbd71a7dfe" + }, + "recipe": { + "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs" + ] + }, + "es-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dakrone/es-mode.git", + "sha256": "53c27c18e729bcf01b2dfa811fb291d3e1b9cfacb296ec6628692ada7e6cbe80", + "rev": "bee766109b8da1bba925d6998ef288b8a55f3c8f" + }, + "recipe": { + "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "4.0.0", + "deps": [] + }, + "flymake-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-ruby.git", + "sha256": "a55cd028a0fae7e4f52df164fd3a0cf5353ef30d219831e1f0e3388aad420d31", + "rev": "e14e8e2abda223bd3920dbad0eefd5af5973ae6d" + }, + "recipe": { + "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "flymake-easy" + ] + }, + "commander": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/commander.el.git", + "sha256": "c4dff12a535a110fd209b5babd0692f51215e9ec27e7eace0b57bcb494849a2c", + "rev": "2c8a57b9c619e29ccbe2d5a85921b9c689e95bf9" + }, + "recipe": { + "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [ + "cl-lib", + "dash", + "f", + "s" + ] + }, + "olivetti": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rnkn/olivetti.git", + "sha256": "3019cd51f9d186f80c5cb9a60ea98d7eb488a18ae693453140d1252b9e3f49e6", + "rev": "26f3db0bc37324444e41a1d4797056b61b56b004" + }, + "recipe": { + "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [] + }, + "gmpl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/gmpl-mode.git", + "sha256": "61938c80449fa09a326120975bbb0a4f635048cfcad4923d9ee2cce916490a74", + "rev": "25d20f9d24594e85cb6f80d35d7c73b7e82cbc71" + }, + "recipe": { + "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "back-button": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/back-button.git", + "sha256": "06c5fd0c252700985d76841f7cb00121074033d97d80fad40e98fa6fcb21e7ca", + "rev": "c7b50a3e087a8dc5588d7292379cd387a1afff87" + }, + "recipe": { + "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.6", + "deps": [ + "nav-flash", + "pcache", + "persistent-soft", + "smartrep", + "ucs-utils" + ] + }, + "ox-twbs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marsmining/ox-twbs.git", + "sha256": "c922adbbf9140e17b6a08524bbbc025f448c5803707b4c06c9760028eb87ba82", + "rev": "b54058ae4e26e8ce2318c36e5b7369cbbed7c4b1" + }, + "recipe": { + "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.3", + "deps": [] + }, + "mediawiki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hexmode/mediawiki-el.git", + "sha256": "3b16a0831d2c765ed84bdac324d86ca3961a0688425a4ebe6e1c6aadf0899691", + "rev": "f8f95722193cb74da2f6a01a0e558707c9b8c46d" + }, + "recipe": { + "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2.5", + "deps": [] + }, + "helm-pydoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-pydoc.git", + "sha256": "870f16c968f4a252251058dcf2dc96891d476705de5dea41980117dde4fb57f1", + "rev": "30f1814b5b16db0413ffe74b0d0420b38e153df9" + }, + "recipe": { + "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.07", + "deps": [ + "cl-lib", + "helm-core" + ] + }, + "org-pdfview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/markus1189/org-pdfview.git", + "sha256": "929aaf570e20d37d9067aca6cd0cd24b46702aa52758ed1ace4c7e9afd839a92", + "rev": "c1ca137ef90e442592ce88ef16437dc7dfa9c5dd" + }, + "recipe": { + "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "org", + "pdf-tools" + ] + }, + "pushbullet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theanalyst/revolver.git", + "sha256": "23634cf3c651f1d7e50aad79308265f1395436d059d7de95ee2b65c2e4f5ca80", + "rev": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445" + }, + "recipe": { + "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.2", + "deps": [ + "grapnel", + "json" + ] + }, + "vline": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/vline.el", + "sha256": "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj" + }, + "recipe": { + "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "artbollocks-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sachac/artbollocks-mode.git", + "sha256": "40ace8470ac6dc6212023887548c9c2e9b0c8ee5558f5efc96e7560348bc510a", + "rev": "583c7048a1b09cd79554423d5115f5ddd129d190" + }, + "recipe": { + "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.2", + "deps": [] + }, + "org-elisp-help": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/org-elisp-help.git", + "sha256": "1446224783e61a7d83acd53f477369fb6f1a20ca5343f2d3a9ca4dcca461a8a3", + "rev": "0ead4f715b0a8fd21428f763cfc502177d82b3db" + }, + "recipe": { + "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "org" + ] + }, + "elpy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/elpy.git", + "branchName": "release", + "sha256": "b56fa2c4336daa907c3f472b659a9544aaab06e7d028fa604fee24ff29d63edc", + "rev": "96fa05708629600fd79c4b0fcafe63ec97f5ce07" + }, + "recipe": { + "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10.0", + "deps": [ + "company", + "find-file-in-project", + "highlight-indentation", + "pyvenv", + "yasnippet" + ] + }, + "fcitx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/fcitx.el.git", + "sha256": "3da89ffffefbe218b44138afd53f743cfda15f85d8b6f4179941e236ffa81dac", + "rev": "bdcbccc04934766e6d3fc54b2bccfe38c25859c1" + }, + "recipe": { + "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "avy-zap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/avy-zap.git", + "sha256": "098cf9fa52b9dabba5b7c4c5a82d11287fe8bccb94f0119d39b0e1142f19bb52", + "rev": "67fed60d0dfe9087ca4fe3332f4a78e775b8d239" + }, + "recipe": { + "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [ + "avy" + ] + }, + "inf-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/inf-ruby.git", + "sha256": "5fd6d528dcc7528a84cb9734c62052c6ae064e67a4355446c4ce325f76befa87", + "rev": "d130ede56a1203d0aa1c8e5bca5fedbfb14e7ce8" + }, + "recipe": { + "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.4.0", + "deps": [] + }, + "dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myrkr/dictionary-el.git", + "sha256": "17f5aff9105f25f1a822a36ae112fc2a3f678128764131b3d90fcb7075b8aed4", + "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" + }, + "recipe": { + "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10", + "deps": [] + }, + "backup-each-save": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/backup-each-save.el", + "sha256": "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7" + }, + "recipe": { + "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "cl-lib-highlight": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/cl-lib-highlight.git", + "sha256": "9c152f4d82e166f5c5a98d1ade78f20e66eaec78e931f9ecef7474165b896f8b", + "rev": "c117451df8455769701af6c8e92a8fb29c05e1fa" + }, + "recipe": { + "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib" + ] + }, + "ob-http": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/ob-http.git", + "sha256": "cd0e118c4e826786693a58b8594ac00e00ef7642a3def528253c563649687b66", + "rev": "89ba18b22cf6b8533358a9c76a82326343391f0b" + }, + "recipe": { + "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [ + "cl-lib", + "s" + ] + }, + "wiki-nav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/button-lock.git", + "sha256": "94eb38c8f3ce220f811de948413a82d612b4996bdda2cf6f74c92d9cace91fb2", + "rev": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f" + }, + "recipe": { + "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.2", + "deps": [ + "button-lock", + "nav-flash" + ] + }, + "ac-clang": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yaruopooner/ac-clang.git", + "sha256": "12b0c782dc28657a40c4169b02a5fa7eb18fdbb595b776668d25bae780ac48b2", + "rev": "610ff778697eb5499394be3fc3652756d0bfb772" + }, + "recipe": { + "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.0", + "deps": [ + "auto-complete", + "cl-lib", + "emacs", + "pos-tip", + "yasnippet" + ] + }, + "stekene-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/stekene-theme.git", + "sha256": "eec242ed6ea1369ee35834b251279b588451de7e1c699b689a1d7a8d7035335e", + "rev": "5a5ed0aed5c6c6c56aa1e59516a40c697b04a673" + }, + "recipe": { + "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.15", + "deps": [ + "emacs" + ] + }, + "checkbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/camdez/checkbox.el.git", + "sha256": "f4ecf1068bcb02814ae76d3026d3cdf2355757e79f52ea88362666c149e66aae", + "rev": "2afc2011fa35ccfa0ce9ef46cb1896911fa340d1" + }, + "recipe": { + "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "color-theme-modern": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/replace-colorthemes.git", + "sha256": "1cd3cfe06fc887baf08a4df7fcc75bfff79db3a927f64e297edf25146094773b", + "rev": "0a804c611da57b2d7c02c95f26eb8a7fc305f159" + }, + "recipe": { + "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "emacs" + ] + }, + "opam": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/opam.el.git", + "sha256": "c8e7fda52940759e314bf09eb6f1b2650d60543e07a01c775b853bf2de993785", + "rev": "83fb2850d29ec792754e0af18b015e089aad2695" + }, + "recipe": { + "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "emacs" + ] + }, + "ycmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/emacs-ycmd.git", + "sha256": "143753f1866721ab82dbadd5242e3b9fa4769235e7fe98674eee6791a4797e85", + "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" + }, + "recipe": { + "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "dash", + "deferred", + "emacs", + "f", + "popup" + ] + }, + "zone-nyan": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/zone-nyan.git", + "sha256": "5e3e539355f66c16a3eb87c37c55e941ca9424877042add9c9716db65d8e2fd3", + "rev": "e36875d83ad3dce14f23864688959fa0d98ba410" + }, + "recipe": { + "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.2", + "deps": [ + "esxml" + ] + }, + "cursor-chg": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cursor-chg.el", + "sha256": "1mvfg2m3wq5rbbxs2a84pd69yb82dag4g5mpzr16xi0gn6ybj4s7" + }, + "recipe": { + "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "gitattributes-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/git-modes.git", + "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [] + }, + "emojify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iqbalansari/emacs-emojify.git", + "sha256": "c829cee6c7fa5873651329163df4aca312f43d6370555e56098400ba5c43e912", + "rev": "e3c269838277db29560352365b7b9ceb3db9593e" + }, + "recipe": { + "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "emacs", + "ht", + "seq" + ] + }, + "sx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vermiculus/sx.el.git", + "sha256": "a7a7db38a7e664b54a70a86472aeb3f525824beced899c2647aa513bd248e3e5", + "rev": "4892f45746fb217d059f4fa074a237c5bac7dd6c" + }, + "recipe": { + "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [ + "cl-lib", + "emacs", + "json", + "let-alist", + "markdown-mode" + ] + }, + "mykie": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/mykie-el.git", + "sha256": "8be15aaa2b19239984f619141354667ed7f39d61a8d994d062b14d0e6bf64264", + "rev": "ab8f7549f9018c26278d101af1b90997c9e5e0b3" + }, + "recipe": { + "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "esup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jschaf/esup.git", + "sha256": "bf4cec8fdda5b56a00e9b551bf7b2a9c038461c0cf71b763bcb140a3a668ebdf", + "rev": "f9514db82c06680c7f354a2e50c2ca66e8aa0171" + }, + "recipe": { + "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "evil-rsi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/linktohack/evil-rsi.git", + "sha256": "b862cf5a63aa79e75078b534f5c8186db35d72f15e7c722221e110a49cbbf9f9", + "rev": "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61" + }, + "recipe": { + "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [ + "evil" + ] + }, + "letcheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/letcheck.git", + "sha256": "169eba5c3fe6e9117420c91271436320a1be3e93f5d61845346e28b27c9538d1", + "rev": "e85b185993a2eaeec6490709f4c131fde2edd672" + }, + "recipe": { + "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "zoom-frm": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/zoom-frm.el", + "sha256": "0y424lw7j0p0i0s7az7fabk9k4d0shcp4mimlkfl3whci24rbq6y" + }, + "recipe": { + "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "frame-cmds", + "frame-fns" + ] + }, + "find-file-in-repository": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hoffstaetter/find-file-in-repository.git", + "sha256": "2dcb896b642cdc455ba606ecb930a14cfdb53661f2862bcf4b4726fcfe665c56", + "rev": "8b888f85029a2ff9159a724b42aeacdb051c3420" + }, + "recipe": { + "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [] + }, + "auto-install": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/auto-install.el", + "sha256": "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d" + }, + "recipe": { + "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "clojure-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mpenet/clojure-snippets.git", + "sha256": "867aa04bfbec648b281295210c58b4e8ceb61c7b4421f388da461199ea401cdc", + "rev": "30cd52379b856cf80eab2b541c32b1bcdcff3db2" + }, + "recipe": { + "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "yasnippet" + ] + }, + "helm-lobsters": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/julienXX/helm-lobste.rs.git", + "sha256": "22cfa1913ce86bc58b0440a383066507ffbd08e8e445ad752d2e9daf4f39e62e", + "rev": "d798bebb1a65e255c8ec791753a0c78e6b19243b" + }, + "recipe": { + "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "helm-commandlinefu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/helm-commandlinefu.git", + "sha256": "706e8e12413fd38f3398f77c81cc15e41181bc63c074f9cb9be7e3179a66c1d0", + "rev": "e11cd3e961c1c4c973b51d8d12592e7235a4971b" + }, + "recipe": { + "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "emacs", + "helm", + "json", + "let-alist" + ] + }, + "ac-emoji": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-emoji.git", + "sha256": "7bb2d5f19e5afa5b9aba35cb6dcbd42185d844986afb7756012676b729896444", + "rev": "53677f754929ead403ccde64b714ebb6b8fc808e" + }, + "recipe": { + "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "ido-load-library": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/ido-load-library.git", + "sha256": "212ab3c4e43d6fa97e785fd1e9713b3aef6e0d7c16cbed2c6543dab488b78f24", + "rev": "8589cb1e4303066eb333f1cfc789835d1cbe21df" + }, + "recipe": { + "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "pcache", + "persistent-soft" + ] + }, + "elmacro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/elmacro.git", + "sha256": "30b1dcc07e45fb6c922d79799e060e91764456803ff921b74f7adea9998d5150", + "rev": "20a0d1e220984ec6079dda9419b3bb44a88edae3" + }, + "recipe": { + "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "fit-frame": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fit-frame.el", + "sha256": "15697xc2gr5x9wj472jyzjhnim1jlx3ai3anzx8apngpqa9caiq1" + }, + "recipe": { + "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-make": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/helm-make.git", + "sha256": "ca3b3ea59d269af0d33a11032917a1473ffd72143d8930dec642494bef029a9e", + "rev": "6558a79d20d04465419b312da198190be6832647" + }, + "recipe": { + "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "helm", + "projectile" + ] + }, + "go-autocomplete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nsf/gocode.git", + "sha256": "e8463e8d696e0c74212f19452b9f734c46c5a7085bd2be0b558fa996ee4bc5fb", + "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1" + }, + "recipe": { + "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150303", + "deps": [ + "auto-complete" + ] + }, + "beeminder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sodaware/beeminder.el.git", + "sha256": "38c80e55438d15e7ea099d1ba355715868d7ffb0c7fd7a5a272ac5faa802a105", + "rev": "54cc1277f2a7667a7b0d999dc49ceffcf2862b44" + }, + "recipe": { + "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "idris-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/idris-hackers/idris-mode.git", + "sha256": "288613fcd1db826f580766354dcb3127fae1f7a9b246f918b14108d29d18a36e", + "rev": "314a0baea5752069de08e814bb134a9643fb675d" + }, + "recipe": { + "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.19", + "deps": [ + "cl-lib", + "emacs", + "prop-menu" + ] + }, + "exec-path-from-shell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/exec-path-from-shell.git", + "sha256": "d8e2773e0c2fd6e193e56997d380f399b3a25d7458ff917413fe04e4a2124f14", + "rev": "30c793b388312e5044afb7549b50996bf2b71941" + }, + "recipe": { + "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10", + "deps": [] + }, + "highlight-symbol": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/highlight-symbol.el.git", + "sha256": "d878a11e94cf23173b5d91819cca8a61aed633eb1aadc1fc7a10c5dacfaa5b9e", + "rev": "6136dac6d4328c19077a838dfbae2efc4caa4db2" + }, + "recipe": { + "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "ppd-sr-speedbar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/ppd-sr-speedbar.git", + "sha256": "7f9e18af90aec5dc5e59e5a6a26c2ddb213352569cd295bc8df8a0005397b955", + "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" + }, + "recipe": { + "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6", + "deps": [ + "project-persist-drawer", + "sr-speedbar" + ] + }, + "reveal-next": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/reveal-next.el", + "sha256": "0bpcx6jlv0m5bg1zrkak471fa2yj4m517zn72ajvp5r9y408i82y" + }, + "recipe": { + "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "vbasense": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-vbasense.git", + "sha256": "f631dc0c3adcf84c1d1e9e39283d86880c4e3f8c9e499f07967bf96b9cc045a6", + "rev": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db" + }, + "recipe": { + "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "lively": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lively.el", + "sha256": "1z9b0arn7vby4fkwzgj3ml537lh94gvf61vs03cqfkc95lv14r76" + }, + "recipe": { + "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "creds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/emacs-creds.git", + "sha256": "83f8ce55aa2f6346c359a302fefb1f4e42cf603dfc5d5e40a67f982243be8105", + "rev": "00ebefd10005c170b790a01380cb6a98f798ce5c" + }, + "recipe": { + "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.6.1", + "deps": [ + "dash", + "s" + ] + }, + "helm-project-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sliim/helm-project-persist.git", + "sha256": "33a2bcaa44d86821983183c22fe8f6d7e806acdeb7689bae843bf2469174f0e0", + "rev": "df63a21b9118f9639f0f4a336127b4fb8ec6deec" + }, + "recipe": { + "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "helm", + "project-persist" + ] + }, + "eval-sexp-fu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hchbaw/eval-sexp-fu.el.git", + "sha256": "259a6dda365422bc4f0c809254f16e28d733cf035bbf1b8a4bb4f63655a29753", + "rev": "b28d9c4d57511072aa17b2464693e38b769482e0" + }, + "recipe": { + "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [] + }, + "httprepl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gregsexton/httprepl.el.git", + "sha256": "6a8dcdd3de194f8f55e37ab6291f54eabe02b12a1c712dc0c1e3a7179614f8f6", + "rev": "d2de8a676544deed1a5e084631a7799e487dbe55" + }, + "recipe": { + "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "dash", + "emacs", + "s" + ] + }, + "tern-auto-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marijnh/tern.git", + "sha256": "79f3f4ccd845f186a2afce2086efc112ff3373718ec6dca8c09696bd2aa6563a", + "rev": "d4803588928d22cb18044b2e20fedd97e2d348ee" + }, + "recipe": { + "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.16.0", + "deps": [ + "auto-complete", + "cl-lib", + "emacs", + "tern" + ] + }, + "ox-ioslide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/org-ioslide.git", + "sha256": "9c684f010d49207e9b483ad788f657423e3efbdb4e16dd8d8320efed501ab4e6", + "rev": "e81f7a6dab512da7eaa8c2c50c673538b97db267" + }, + "recipe": { + "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs", + "f", + "org" + ] + }, + "quasi-monochrome-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lbolla/emacs-quasi-monochrome.git", + "sha256": "6807ae76325c6506c1e4495c9ae63355e1bb09b29ca94deb7a631961166dd551", + "rev": "e329a8d55b22151e29df1f81552a4361f85aeafa" + }, + "recipe": { + "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "rfringe": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/rfringe.el", + "sha256": "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh" + }, + "recipe": { + "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "editorconfig": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/editorconfig/editorconfig-emacs.git", + "sha256": "d5afed5b0b24092c366cb57bcf7205c39f640e27186ff9b4af57b60e5a8d7aed", + "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" + }, + "recipe": { + "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.1", + "deps": [ + "editorconfig-core" + ] + }, + "evil-anzu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-evil-anzu.git", + "sha256": "635af6719d5aa3e38525f9646ee3e28c8e29b4b5fcd78984d979dd34328c9089", + "rev": "64cc08a3546373f28cd7bfd76a3e93bd78efa251" + }, + "recipe": { + "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.03", + "deps": [ + "anzu", + "evil" + ] + }, + "hl-anything": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/boyw165/hl-anything.git", + "sha256": "b47802d0a59f6e45ad6729686d4a1636b7e681e450cc1ae44b29b810e785f3fb", + "rev": "990fe4b323b6222d6c6a35898d8128cddda34848" + }, + "recipe": { + "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.9", + "deps": [ + "emacs" + ] + }, + "restart-emacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iqbalansari/restart-emacs.git", + "sha256": "97ef135d16e568cefa6f0ef1b80e9731a47d773d361ead6599d2961447e8acf5", + "rev": "e9292fe88d8be7d0ecf9f4f30ed98ffbc6bd689b" + }, + "recipe": { + "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "lispxmp": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lispxmp.el", + "sha256": "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf" + }, + "recipe": { + "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "passthword": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/passthword.git", + "sha256": "d167ccbd4f4e3566fc3aa51fb29d7ca9cbf9c969a482451663583814d3db15bc", + "rev": "58a91defdbeec9014b4e46f909a7411b3a627285" + }, + "recipe": { + "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4", + "deps": [ + "cl-lib" + ] + }, + "s": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/s.el.git", + "sha256": "c95259ab71d1f953b7300e29f5c16108f44337db2e0f210ec1698f6105ec6099", + "rev": "b16c6641649cb79435f745863bd76aaed3da3698" + }, + "recipe": { + "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10.0", + "deps": [] + }, + "sweetgreen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CestDiego/sweetgreen.el.git", + "sha256": "b834e70ecc2cdda6e930b1d392fe85de583cda6fa17af950a11a5614e9b31cf3", + "rev": "9de3916023872ab054e1c7301175fa27fdb1de0c" + }, + "recipe": { + "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [ + "cl-lib", + "dash", + "helm", + "request" + ] + }, + "immutant-server": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/immutant-server.el.git", + "sha256": "9da08d58efc99c5fffe1730295ff62d2b189b0bbb6dcfd1f81db7f8f20bec7dd", + "rev": "6f3d303354a229780a33e6bae64460a95bfefe60" + }, + "recipe": { + "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.0", + "deps": [] + }, + "git-ps1-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/10sr/git-ps1-mode-el.git", + "sha256": "867282922b84a0e78a6fc80ae3497a12b25b47b60bcade9f73a077daf11894e6", + "rev": "003d9dd264afdc71ae4635fef8c5d7bc901e3ddf" + }, + "recipe": { + "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [] + }, + "evil-textobj-anyblock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/noctuid/evil-textobj-anyblock.git", + "sha256": "725fcc86659326299879749e9d94f1faa693820f685a765861478a45bf3f4e6f", + "rev": "068d26a625cd6202aaf70a8ff399f9130c0ffa68" + }, + "recipe": { + "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "cl-lib", + "evil" + ] + }, + "osx-plist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/osx-plist.git", + "sha256": "db5963b9f18431b1c1cd7aaaa67c771dd6a3cb91e373879f3f5a0fb6eb9c6020", + "rev": "5e6de2622fdfe552d4902904f05ea03bc5a6ebd0" + }, + "recipe": { + "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "cyberpunk-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/n3mo/cyberpunk-theme.el.git", + "sha256": "0b341581ec14c75b62368a673db2798810230ab0fc3e690eae795d3a86214e35", + "rev": "ae3f3d14fd92b70c988847aa760967dfff06c796" + }, + "recipe": { + "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.15", + "deps": [] + }, + "elwm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/elwm.git", + "sha256": "a2a32a6ad854864c032fbfc7a1e2a377e37ff3a31ff5030cd6b9ae3e92bbf6cc", + "rev": "c33b183f006ad476c3a44dab316f580f8b369930" + }, + "recipe": { + "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "dash" + ] + }, + "airline-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AnthonyDiGirolamo/airline-themes.git", + "sha256": "971f8e6bfa542e167ddc184447643b4c1958f46cfd6e7cb33f179803233d3561", + "rev": "b7d06424ce7d596f5bff3105d3eaa416f173436a" + }, + "recipe": { + "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [ + "powerline" + ] + }, + "shackle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/shackle.git", + "sha256": "543bdf111a1221da53e2eaf19b4ba0ac7f62203a2a0be922eacb4dec32aa17ed", + "rev": "7542039876325d9b2051b77a0cbe15986154ac1a" + }, + "recipe": { + "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.1", + "deps": [ + "cl-lib" + ] + }, + "scpaste": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/scpaste.git", + "sha256": "f5bafb3ad1ea01909f4b649f87e39b5324933bb0ad00f7d072a9756ec285488f", + "rev": "cca8f4ee5402bbf9a4bbb24e81372067cb21bba4" + }, + "recipe": { + "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.5", + "deps": [ + "htmlize" + ] + }, + "helm-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-themes.git", + "sha256": "6fad66e983daaa7bd17ca4315836b6bebbbe5bd991fdeffc8fb1744164d16464", + "rev": "8c979f4efc6174eed7df5f3b62db955246202818" + }, + "recipe": { + "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.05", + "deps": [ + "helm" + ] + }, + "gnuplot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bruceravel/gnuplot-mode.git", + "sha256": "1c844c79b48b597f31c01a02f1e093b80c9028627b691f3739cee2d1667d8bbb", + "rev": "aefd4f671485fbcea42511ce79a7a60e5e0110a3" + }, + "recipe": { + "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [] + }, + "ac-etags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-etags.git", + "sha256": "a20500d1add2940e44f8c63dbeb6e3f064960a650fe608ed871299f6f0885646", + "rev": "8cd188b2e4908285ba8178bbd18a555edd7282e8" + }, + "recipe": { + "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.06", + "deps": [ + "auto-complete" + ] + }, + "rect+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-rectplus.git", + "sha256": "0fca6cf13046301f9ed9897304687e4bb71141dcc2fbbc49aeb7c33d10202183", + "rev": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc" + }, + "recipe": { + "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.10", + "deps": [] + }, + "flymake-hlint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-hlint.git", + "sha256": "a38ac0d1a28b5e2ff9b2807037c468ae9dee6029d31ffe7d4a9f7685bcce9bda", + "rev": "d540e250a80a09da3036c16bf86f9deb6d738c9c" + }, + "recipe": { + "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-ycmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/emacs-ycmd.git", + "sha256": "143753f1866721ab82dbadd5242e3b9fa4769235e7fe98674eee6791a4797e85", + "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" + }, + "recipe": { + "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "dash", + "emacs", + "flycheck", + "ycmd" + ] + }, + "ansible-doc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/ansible-doc.el.git", + "sha256": "b79e6e46242288cf7741d768d26f5ad608c862cedc9bad4565cd6b7e6304a61e", + "rev": "6ab94392c860e23439ea3213b74ca56834d1ab14" + }, + "recipe": { + "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "emacs" + ] + }, + "ido-vertical-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/creichert/ido-vertical-mode.el.git", + "sha256": "075a402e74e760a09eba5a1812de96c0cc7ad223592340a21aea6e515c1a7a53", + "rev": "c3e0514405ba5c15b5527e7f8e2d42dff259788f" + }, + "recipe": { + "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.6", + "deps": [] + }, + "stan-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stan-dev/stan-mode.git", + "sha256": "b168aa58354ec69fa61f58bd95c133d14b862dc3c774bfb7dac05094bbb31c15", + "rev": "3a1b9a714ae7a547638a449f5a9ac487003c55b8" + }, + "recipe": { + "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "7.1.0", + "deps": [ + "stan-mode", + "yasnippet" + ] + }, + "emacsql-mysql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "rev": "03d478870834a683f433e7f0e288476748eec624" + }, + "recipe": { + "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0.0", + "deps": [ + "cl-lib", + "emacs", + "emacsql" + ] + }, + "cdlatex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cdominik/cdlatex.git", + "sha256": "2d45f8847aaaacfd72dfebc80cc40d3fa0c8bb60a1ca8500647e68c260dd49ca", + "rev": "b7183c2200392b6d85fca69390f4a65fac7a7b19" + }, + "recipe": { + "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "4.7", + "deps": [] + }, + "sourcekit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nathankot/company-sourcekit.git", + "sha256": "cb2eff547a3bd71ea6e160f6f72fbd13bf0970f3e8df6e140384132425c2b760", + "rev": "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9" + }, + "recipe": { + "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [ + "dash", + "dash-functional", + "emacs" + ] + }, + "guru-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/guru-mode.git", + "sha256": "a06bbf201e2c47ecd42775916ca568f09ceb99957a6e262e07cbcdc752c386f8", + "rev": "62a9a0025249f2f8866b94683c4114c39f48e1fa" + }, + "recipe": { + "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "msvc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yaruopooner/msvc.git", + "sha256": "03213023196270362c218b8028bd984b942730766f546b64ce2438498f00bb6c", + "rev": "e7a61fa5b98a129637f970ac6db9163e330b3d02" + }, + "recipe": { + "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.2", + "deps": [ + "ac-clang", + "cedet", + "cl-lib", + "emacs" + ] + }, + "describe-number": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/netromdk/describe-number.git", + "sha256": "98792e2a86cdf48b5102e108451186a6bcb574a9af08cf06948471d9e0d2ca8d", + "rev": "40618345a37831804b29589849a785ef5aa5ac24" + }, + "recipe": { + "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.1", + "deps": [ + "yabin" + ] + }, + "smex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/smex.git", + "sha256": "45364a69b81d20776b7bdbb98b38634490b0c4238ba38c44b771fc7e4e8192c1", + "rev": "97b4a4d82a4449e3f1a3fa8a93387d6eb0ef9c26" + }, + "recipe": { + "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.0", + "deps": [] + }, + "fancy-battery": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/fancy-battery.el.git", + "sha256": "63b4cd1df91529341c713dc85c3fa9b5ee67b27378d76ed72881f3e83c6dbd93", + "rev": "5b8115bbeb67c52d4202a12dcd5726fb66e0a1ff" + }, + "recipe": { + "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [ + "emacs" + ] + }, + "org-trello": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/org-trello/org-trello.git", + "sha256": "aedae59ff245df4c11960ef1d0f6c73ad7edef9af63cfe9adf56cc0927347ae6", + "rev": "3718ed704094e5e5a491749f1f722d76ba4b7d73" + }, + "recipe": { + "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.5", + "deps": [ + "dash", + "dash-functional", + "deferred", + "emacs", + "request-deferred", + "s" + ] + }, + "know-your-http-well": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/for-GET/know-your-http-well.git", + "sha256": "2f2e03c099dacf13aff312763dacb2af3bd51837f89bf65a0ca57fd3e6dd218e", + "rev": "a7fb26fd5a8bf658d1c7d62f77a37fd772a144b0" + }, + "recipe": { + "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "homebrew-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dunn/homebrew-mode.git", + "sha256": "252a82e0203233ccbace28fe557a20df9138eb5ee7c57104aa5c3e33bd1e8488", + "rev": "359b5a0e42c6dab618bb9bcf03ad3dfe3b2a3d12" + }, + "recipe": { + "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.2", + "deps": [ + "dash", + "emacs", + "inf-ruby" + ] + }, + "deft": { + "fetch": { + "tag": "fetchgit", + "url": "git://jblevins.org/git/deft.git", + "sha256": "2b6d9dbc07fb68c99fe36c9f0663c67f3e9d0c245c2d226d297641246396b724", + "rev": "f2735d28f50962eb8db717d231e7779bd99bf873" + }, + "recipe": { + "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [] + }, + "autodisass-java-bytecode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gbalats/autodisass-java-bytecode.git", + "sha256": "3f3637a5af9850efb764e3a02dae38b6eb66af0b49c6d9d3f7857c0089315f04", + "rev": "3d61dbe266133c950b39e880f78d142751c7dc4c" + }, + "recipe": { + "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3", + "deps": [] + }, + "helm-bundle-show": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/emacs-helm-bundle-show.git", + "sha256": "b2b31cc89c0d2f6d88515e27704cc8a4616484e9aa1219f469d7849eec221df0", + "rev": "6dffd602a4cc5d85eade7de3be99a22b246fc437" + }, + "recipe": { + "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.4", + "deps": [ + "helm" + ] + }, + "irony": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sarcasm/irony-mode.git", + "sha256": "bac2fbf0bdbc5b105502ee8928d42cc040836604b5a5e62c530904dd4a38a423", + "rev": "9f0b33a5369806ba9c2f62238f64d6455a67af9e" + }, + "recipe": { + "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "cl-lib" + ] + }, + "swiper-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/swiper-helm.git", + "sha256": "c47414370da836bac42ab54b931f3b709c237a9e1284df51dcf2b619475b4df8", + "rev": "f3d6dba865629eed8fb14f92dab1fad50734891b" + }, + "recipe": { + "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs", + "helm", + "swiper" + ] + }, + "e2wm-sww": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-sww.git", + "sha256": "af8ccce28cf07e4a8d641a50b8ba1555f6d6a5a5ce9e956e6281f9c7781de457", + "rev": "1063f9854bd34db5ac771cd1036cecc89834729d" + }, + "recipe": { + "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "e2wm" + ] + }, + "wisp-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/ArneBab/wisp", + "sha256": "0ppj8mrlc20i2syyiwvj5rp53swrm929h0ksxxlqvn3nvl9gsajd", + "rev": "34fc6f12d740" + }, + "recipe": { + "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0", + "deps": [] + }, + "syntactic-sugar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/syntactic-sugar.git", + "sha256": "f99d0ce0d23f308180186b0c748a3f8e66347beaf0f38be92cd9e5215072b8e0", + "rev": "06d943c6ad9507603bb6ab6d37be2d359d0763a9" + }, + "recipe": { + "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.4", + "deps": [] + }, + "savekill": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/savekill.el", + "sha256": "1qfq83cb4qixdl15j28rlslkq6g88ig55ydg747jqb3dqyp3qaah" + }, + "recipe": { + "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "smartrep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/smartrep.el.git", + "sha256": "6e30c6384aab88d6a26b9bd5910203aaf3c40075228f86f85f1b519f5f7ab448", + "rev": "0b73bf3d1a3c795671bfee0a36cecfaa54729446" + }, + "recipe": { + "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "prodigy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/prodigy.el.git", + "sha256": "e4a2630ee03593ab8c4f1d05647f11500e3aa14d75c54e659d0ea52717c32596", + "rev": "7034873908a616853b3a65258a7580a3b402e8a2" + }, + "recipe": { + "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.0", + "deps": [ + "dash", + "emacs", + "f", + "s" + ] + }, + "scss-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antonj/scss-mode.git", + "sha256": "0936cd77ffb8cc071c8cb3869a47c59f266795e597c2fab87d993c745972f27e", + "rev": "d663069667d9b158d56e863b80dd4cc02984e49f" + }, + "recipe": { + "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [] + }, + "buttercup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/emacs-buttercup.git", + "sha256": "700de58289e3cf15637c4b59a6df1c01704340639153adb1385b29d9b21fe4ff", + "rev": "87e0c0dab4b04d1c1a76a952b741ba6de3121bb5" + }, + "recipe": { + "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "list-register": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/list-register.el", + "sha256": "1sv1x2bc1xg7z3q4r9pbvjspj041q4zn883w9m071h7dgx8i9a6l" + }, + "recipe": { + "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "thingatpt+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thingatpt+.el", + "sha256": "1fyx4z7ci5yisfng0ps2q1nwvziidamam1m2n53rkfmm2gprxqhb" + }, + "recipe": { + "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "hide-comnt": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hide-comnt.el", + "sha256": "1xvchpbrfwnqlh32pj0fg7n0x8csfm0mn09z7p45w3wf1mz0ckbn" + }, + "recipe": { + "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "emms-player-mpv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dochang/emms-player-mpv.git", + "sha256": "a3e7b955d60dd0b71e08dfe538148eb7717e6317a0fa17c74eed43ca6537cf19", + "rev": "a1be1d266530ede3780dd69a7243d898f1016127" + }, + "recipe": { + "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.7", + "deps": [ + "emms" + ] + }, + "kibit-helper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brunchboy/kibit-helper.git", + "sha256": "fb0b2e37e33849513572b5d8fc82fef2fd28b187f22fdfa8c635c300fb31c14f", + "rev": "ec5f154db3bb0c838e86f527353f08644cede926" + }, + "recipe": { + "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "emacs", + "s" + ] + }, + "slime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/slime/slime.git", + "sha256": "83978dda1e08373fa2e4de859401de2b892f9808cb0af513aca144ddaa27460c", + "rev": "da7c32d0c54a6f2d9a4be0662c7b2d576b11eda1" + }, + "recipe": { + "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.15", + "deps": [ + "cl-lib" + ] + }, + "define-word": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/define-word.git", + "sha256": "2f211540bd9abd369e262aa3eab2155d5b8e64e1cc1ba715158b1df9586ad8d3", + "rev": "38e2f94779652fc6280a51b68dc910431513a8e1" + }, + "recipe": { + "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "emacs" + ] + }, + "ecukes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ecukes/ecukes.git", + "sha256": "7fa51478598883ba688536380cd98c94b382b27c8727b291145d8aa31b59ed2b", + "rev": "2bba6266a3fff772cd54a6cd1b1aee2c36872aa5" + }, + "recipe": { + "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.15", + "deps": [ + "ansi", + "commander", + "dash", + "espuds", + "f", + "s" + ] + }, + "shell-switcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/shell-switcher.git", + "sha256": "8b6b97c3572256493ee03e2fbba3da156562eb55cff7f0d4fab9018c39f533d9", + "rev": "2c5575ae859a82041a4bacd1793b844bfc24c34f" + }, + "recipe": { + "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [] + }, + "dash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/dash.el.git", + "sha256": "e34780da0a976138dc2031f468a9c77aa0f0a18c30baf4681f3e183c8146406b", + "rev": "fec6f5480d0ce03ead0e6117ac77dc7e757e76f8" + }, + "recipe": { + "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.12.1", + "deps": [] + }, + "haml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/haml-mode.git", + "sha256": "168924444661a40ce3a04b230b2e60994eee74ac4cdb66d06b36735f7170d1c4", + "rev": "5e0baf7b795b9e41ac03b55f8feff6b51027c43b" + }, + "recipe": { + "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "3.1.9", + "deps": [ + "ruby-mode" + ] + }, + "helm-github-stars": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sliim/helm-github-stars.git", + "sha256": "2f40b37d4bb7865819714459e72c10ab9165872f984b9c8c018fdce62daf85dc", + "rev": "9211be3fbb65ca8819e0d1a54524ed8abbfaa4fa" + }, + "recipe": { + "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.2", + "deps": [ + "emacs", + "helm" + ] + }, + "elmine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoc/elmine.git", + "sha256": "dfad27564b59011c73deb420a54a25ff4a81b324fcdb2339a8055c9b4202f1e9", + "rev": "091f61c70c9e7630a74b7b127488051d143a35e7" + }, + "recipe": { + "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "ace-jump-zap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/ace-jump-zap.git", + "sha256": "8ad57561be7bc861478564045c86558c340a1f4131c7dd18994de1ef1536cf7a", + "rev": "0acdd83a5abd59606495e67a4ee01f7856e5d359" + }, + "recipe": { + "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "ace-jump-mode", + "dash" + ] + }, + "anchored-transpose": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/anchored-transpose.el", + "sha256": "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651" + }, + "recipe": { + "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "smeargle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-smeargle.git", + "sha256": "83235ec6befe1000f80d16ae9dcaf05636a7c4ebd1f0413201d8e4463da517f8", + "rev": "fe0494bb859ea51800d6e7ae7d9eda2fe98e0097" + }, + "recipe": { + "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "epc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-epc.git", + "sha256": "1f254cf7bfa6fe944c67242bea23c2cebc30a195e874f0987eb92df8fea92217", + "rev": "152e6e10a79b56ebc7568054589cf6c3c44595c7" + }, + "recipe": { + "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "concurrent", + "ctable" + ] + }, + "suomalainen-kalenteri": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tlikonen/suomalainen-kalenteri.git", + "sha256": "d6aac951f59bcb326e8178fa2f8c4360c25f95276aedb4f1400a31cfc43dc3ac", + "rev": "b7991cb35624ebc04a89bbe759d40f186c9c097e" + }, + "recipe": { + "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2015.11.29", + "deps": [] + }, + "init-loader": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/init-loader.git", + "sha256": "d9e5689702f7a229afc6ec9a80a66306ce7b472c3ed726c44e1fd9c4b98ea686", + "rev": "128ee76adbf431f0b8c30a3a29cb20c9c5100cde" + }, + "recipe": { + "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [] + }, + "font-lock+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/font-lock+.el", + "sha256": "1w159k5hn9z7ydx5gq4hph7gvbqs4ml4qbfgpsib5z39v7x6wkv4" + }, + "recipe": { + "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "session": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/session.git", + "sha256": "3b4dab2c1569f54f111cb995ae7f09bce069b9adffcf8916c2b39dbf9428e96a", + "rev": "19ea0806873daac3539a4b956e15655e99e3dd6c" + }, + "recipe": { + "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3a", + "deps": [] + }, + "bundler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tobiassvn/bundler.el.git", + "sha256": "0dd553d24d928787bec405c592d4f5fdf4daa1bbb614bb69dec74b8221d96e0a", + "rev": "4cb4fafe092d587cc9e58ff61cf900fb7f409adf" + }, + "recipe": { + "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [ + "inf-ruby" + ] + }, + "jsfmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brettlangdon/jsfmt.el.git", + "sha256": "1d1c1914b5a70a06c690bba51bf8e73e3c1a70f7dae122c76269d1ca3bd5555e", + "rev": "c5d9742872509143db0250a77db705ef78f02cd0" + }, + "recipe": { + "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [] + }, + "go-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dominikh/go-mode.el.git", + "sha256": "04bf758fafd269d176985fd84a241f3eb5fa0bf5e6acf805f30c43ea23d61ee9", + "rev": "dce210fdde620bed3d179816fda79dc83a66b8de" + }, + "recipe": { + "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [] + }, + "xtest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/promethial/xtest.git", + "sha256": "09ac67e5e3125da57124d65f240e47cf00de12eaaec0d8bca411578629341df3", + "rev": "b227414d714e7baddef79bd306a43024b9a34d45" + }, + "recipe": { + "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [ + "cl-lib" + ] + }, + "noccur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/noccur.el.git", + "sha256": "b455a68e120488e1d22c66c4fbb69747ebf2357467cca252493a46e39caa9214", + "rev": "6cc02ce07178a61ae38a849f80472c01969272bc" + }, + "recipe": { + "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "speck": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/speck.el", + "sha256": "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10" + }, + "recipe": { + "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "lispyscript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/lispyscript-mode.git", + "sha256": "f2771440e04eb3e0063fd4269f9b41ad74bc5a6864a47656f4f4b426e1fa948b", + "rev": "9a4200085e2a15725a58616d131a56f5edce214b" + }, + "recipe": { + "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.5", + "deps": [] + }, + "ac-anaconda": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/ac-anaconda.git", + "sha256": "6ff3ad3795ee08f407fab18e737e4244d8789c58f6203e257c9e48d3b5e5ffe9", + "rev": "d0dec5c026235f65f9fd6594540df8886ed1b6a8" + }, + "recipe": { + "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "anaconda-mode", + "auto-complete", + "dash" + ] + }, + "fliptext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fliptext.el", + "sha256": "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw" + }, + "recipe": { + "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "magit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" + }, + "recipe": { + "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.1", + "deps": [ + "async", + "dash", + "emacs", + "git-commit", + "magit-popup", + "with-editor" + ] + }, + "sly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/sly.git", + "sha256": "9eba7edf46db8987d3d8d42fcf4dde7fbbdcef15a7f29f09ef6d32322442770c", + "rev": "1942c53fc40fd6ace0e822b5c9bf551f59061f32" + }, + "recipe": { + "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.14", + "deps": [] + }, + "magit-stgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-stgit.git", + "sha256": "cb5bc9a005e41bcf3ddef010343685361cf6d01d43ea5a4195c8ed94337a68d6", + "rev": "d1793345a8d32b2c509077d634ca73148a68de4b" + }, + "recipe": { + "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.1.2", + "deps": [ + "emacs", + "magit" + ] + }, + "shelltest-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rtrn/shelltest-mode.git", + "sha256": "bacfb378ce6ccd095e2ccbbc865d9bec7a239348578651842a67fb20375fc756", + "rev": "fead97c7ff1b39715ec033a793de41176f1788f5" + }, + "recipe": { + "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "tagedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/tagedit.git", + "sha256": "950cdd0b92e25fc9bfe7d60061cee1d3a22e688a2b1f5983f98b996a3ff93035", + "rev": "3fcf54b824b75c5ad68f5438d5638103049a389f" + }, + "recipe": { + "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.0", + "deps": [ + "dash", + "s" + ] + }, + "navi-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/navi.git", + "sha256": "72a4847930f56b502ddcc2ea3730410965c1f652cca89a3e0f8e2cbe21ec9ec6", + "rev": "5c979b3b3873b0e67751a1321a9e271d066f2022" + }, + "recipe": { + "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "flymake-sass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-sass.git", + "sha256": "e189465dc3913a629853321f5144fe92d9a6a8969e187a951f04bed13860cdae", + "rev": "1c7664818db539de7f3dab396c013528a3f5b8b4" + }, + "recipe": { + "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6", + "deps": [ + "flymake-easy" + ] + }, + "sackspace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/sackspace.el.git", + "sha256": "8d1bf7aa2247b9954f411cb894593693f1f0a99cda09e1d06db2e58c8320bb28", + "rev": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708" + }, + "recipe": { + "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.2", + "deps": [] + }, + "org2blog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/punchagan/org2blog.git", + "sha256": "f46457d13a51f2ffdccd86395bcbda6790adc05afab4ea67d1440f2bcf21612b", + "rev": "ad389ae994d269a57e56fbea68df7e6fe5c2ff55" + }, + "recipe": { + "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.2", + "deps": [ + "metaweblog", + "org", + "xml-rpc" + ] + }, + "mhc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshinari-nomura/mhc.git", + "sha256": "5de67a67ba5c00b4003fd07a939e989395db60d3dc4129ce228961ff50e6f290", + "rev": "46d2a983b77b3139c9694ffba16ae875edc7d5b0" + }, + "recipe": { + "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.1", + "deps": [ + "calfw" + ] + }, + "company-ghc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/company-ghc.git", + "sha256": "afea0aefdb018729e8c73b2ef59a9800fc7a666088e544ab824806248b4b8f13", + "rev": "64e4f9d0cf9377138a8dee34c69e7d578fd71090" + }, + "recipe": { + "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [ + "cl-lib", + "company", + "emacs", + "ghc" + ] + }, + "evil": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/lyro/evil", + "sha256": "0m1nd5v0f72lvispjrsfph8iyv2z7gsf8awwmfdghag348bmvjn3", + "rev": "73ad80e8fea1" + }, + "recipe": { + "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2.8", + "deps": [ + "goto-chg", + "undo-tree" + ] + }, + "ruby-end": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ruby-end.git", + "sha256": "6467b8c73cd98f11a4402415753f3189fcf0511d7042db0a593cb709f2d1b29b", + "rev": "648b81af136a581bcef387744d93c011d9cdf54b" + }, + "recipe": { + "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.1", + "deps": [] + }, + "f": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/f.el.git", + "sha256": "fad74e0febe9e7bb8a7dde19366b6b44b20a96cdf839aeb44b242502b7e3790a", + "rev": "7003428ead6d80e81ff14c3614239efdbce7391b" + }, + "recipe": { + "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.18.0", + "deps": [ + "dash", + "s" + ] + }, + "ac-cider": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/ac-cider.git", + "sha256": "c979c406c5fd29220ad7f46dbf558497417078028126f18574aed3bd3a05f2ee", + "rev": "0dcb8e3028f9f658cacbe1ac3e99b02575e2ecd4" + }, + "recipe": { + "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "auto-complete", + "cider", + "cl-lib" + ] + }, + "project-root": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/piranha/project-root", + "sha256": "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8", + "rev": "fcd9df2eadca" + }, + "recipe": { + "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [] + }, + "irfc": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/irfc.el", + "sha256": "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca" + }, + "recipe": { + "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "swbuff-x": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/swbuff-x.el", + "sha256": "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5" + }, + "recipe": { + "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "swbuff" + ] + }, + "sound-wav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-sound-wav.git", + "sha256": "465fd9213339a245b3f93c692860247cf5c52807bf4bd33a120b38c60c3ac26f", + "rev": "215e23b118fba11a7132b7c79326ad0a723e2605" + }, + "recipe": { + "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.01", + "deps": [ + "cl-lib", + "deferred" + ] + }, + "psession": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/psession.git", + "sha256": "e8edec68eb59df2342363fa2a95f0685054f5c117db7fb072c1eca9604434a57", + "rev": "138b27f57bdc3ff53ec5896439e8ed00294a5ea2" + }, + "recipe": { + "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "elfeed-web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elfeed.git", + "sha256": "76b58563cc5fc1d87e1326a3d61288746da17e84f370672a23ab86c1c42ad9d7", + "rev": "4c15ed9f9559285df196c9b793bd5168662b6532" + }, + "recipe": { + "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.0", + "deps": [ + "elfeed", + "emacs", + "simple-httpd" + ] + }, + "cljr-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/philjackson/cljr-helm.git", + "sha256": "0a426d4c392c271125a19207b17516beb0bac4b4295b829909d8c75beb46fba1", + "rev": "916d070503d0f484f36626c7a42f156b737e3fab" + }, + "recipe": { + "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [ + "clj-refactor", + "helm" + ] + }, + "ansible": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-ansible.git", + "sha256": "735db7feefa7e6b1c20679227be0cc2f23610dd4153c94799da7cb019fcb07a9", + "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" + }, + "recipe": { + "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "f", + "s" + ] + }, + "japanlaw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/japanlaw.el.git", + "sha256": "27bac59678cc9b4e59e965bde09d819531ecc77c2acb26ec1c83761bd01cdf22", + "rev": "d90b204b018893d5d75286c92948c0bddf94cce2" + }, + "recipe": { + "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.1", + "deps": [] + }, + "link-hint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/noctuid/link-hint.el.git", + "sha256": "68a0a230e419b312634adc5a75b69c31ef32c5bf5d349b00a3a6fab37b538eec", + "rev": "d26b5330e6e42b4bed4e4730054b4c5e308ceab2" + }, + "recipe": { + "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "git-commit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" + }, + "recipe": { + "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.1", + "deps": [ + "dash", + "emacs", + "with-editor" + ] + }, + "json-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joshwnj/json-mode.git", + "sha256": "23b6fcf9caef54ed9b6790d314ac8bcf165e50d754a2bc1a726e67646abab36b", + "rev": "ce275e004dc7265047a80dec68b24eb058b200f0" + }, + "recipe": { + "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.6.0", + "deps": [ + "json-reformat", + "json-snatcher" + ] + }, + "fountain-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rnkn/fountain-mode.git", + "sha256": "b8fd1d7d825997599cfe1cd9ff33909e15e494968811bd82b7f4e19dc6b0cc7b", + "rev": "167238b3cdd5e510300abe3afd02b820f026b501" + }, + "recipe": { + "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.0", + "deps": [ + "s" + ] + }, + "ace-jump-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/winterTTr/ace-jump-mode.git", + "sha256": "6893c9ba9c6bed8157c926c0eebcd8f676ed01c12f1115625d6329b247898832", + "rev": "a62a6867811cd739dd98a5e00a2d2e17edfb5b71" + }, + "recipe": { + "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "ob-translate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/ob-translate.git", + "sha256": "3b2a963f859474741476a547a7b959c0ac13b7d8610aef13749d126cba1dd5c0", + "rev": "6b39cc1a94a1071107a4391684b1bffb5b9826f3" + }, + "recipe": { + "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "google-translate", + "org" + ] + }, + "default-text-scale": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/default-text-scale.git", + "sha256": "0161a470d5da1fc590d5cc335868de67f2339abc6499c74e3812201c34452e0c", + "rev": "c90c08b9fe5f25474067a00c4a4babdb413b25b1" + }, + "recipe": { + "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "shm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/structured-haskell-mode.git", + "sha256": "b496595dcf8d87b822f3effa1a85a36b6a13cb1fe7959efc28d6037798690ed6", + "rev": "8abc5cd73e59ea85bef906e14e87dc388c4f350f" + }, + "recipe": { + "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.20", + "deps": [] + }, + "strings": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/strings.el", + "sha256": "0svvgrssd4r027d25g167lf9cpks3la5zhvyd50gjrhryyxkf225" + }, + "recipe": { + "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "iy-go-to-char": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/iy-go-to-char.el", + "sha256": "19l9d5gp1xj40iyy35r8hh7v6bjnzjx7pb8dvwrmndzg0rlsp7mi" + }, + "recipe": { + "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "git-gutter-fringe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-git-gutter-fringe.git", + "sha256": "66cce8dfe64ea79ca1e62472f160f44f741f39801f7da57f75698641876b55c2", + "rev": "3efa997ec8330d3e408a225616273d1d40327aec" + }, + "recipe": { + "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.22", + "deps": [ + "cl-lib", + "emacs", + "fringe-helper", + "git-gutter" + ] + }, + "flyspell-lazy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/flyspell-lazy.git", + "sha256": "68cfd8c5dbf3c4908acb905abe1319717d582eb69b92512573fe66d589c65e05", + "rev": "31786fe04a4732d2f845e1c7e96fcb030182ef10" + }, + "recipe": { + "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.6.10", + "deps": [] + }, + "insert-shebang": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/psachin/insert-shebang.git", + "sha256": "31b6c945adcd80ba8b36fc26b703b9532ee68343c8a600aada2a239bb7e9753a", + "rev": "4161cc8c7d07d0979684838fa8e3eec582351d97" + }, + "recipe": { + "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.4", + "deps": [] + }, + "anything-exuberant-ctags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/anything-exuberant-ctags.git", + "sha256": "2d0fbc1db0d4be6a839f2388b9b1ae5f80c43ea9a5f87657e2e575954a489c06", + "rev": "97fa91eb04df11bdf4558fe7bb2f6aebf8be0d6c" + }, + "recipe": { + "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "anything" + ] + }, + "py-autopep8": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/py-autopep8.el.git", + "sha256": "3f5910d49d95da08ec0a2f4ed37ea9555ea5e487b2afd5ad9a92a4cc9bddb500", + "rev": "685414b19106b99a4384fa0c9ce4817c659e0e81" + }, + "recipe": { + "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7.0", + "deps": [] + }, + "syntax-subword": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/syntax-subword", + "sha256": "1p9bp09nibw7rra3r6nj496zdx09db6k82dxnxs1lfgdiswfdq2h", + "rev": "a1e0accb754d" + }, + "recipe": { + "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "nyan-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TeMPOraL/nyan-mode.git", + "sha256": "4b0a710b2c25392a3f20940935999d4b491c60271d50eacd99886263b49191dd", + "rev": "251d8f9c3686183294d76abcd816c8d69b6a71a3" + }, + "recipe": { + "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "repeatable-motion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/willghatch/emacs-repeatable-motion.git", + "sha256": "6da320bd363ec0f4d025389c65c0b8692d7a64633e3327e15fa687701cbbae6f", + "rev": "69f71c02a1dbec5d7406492449f5c03048d6e529" + }, + "recipe": { + "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [ + "emacs" + ] + }, + "abc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkjunker/abc-mode.git", + "sha256": "db675eb1f68af49c9150acd4c427b00bf030e04f64cd09502db593fe7ba2c48d", + "rev": "6b5ab7402287dab5a091e94fec9982dc45d9d287" + }, + "recipe": { + "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140225.944", + "deps": [] + }, + "enotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/enotify.git", + "sha256": "c5671705a16324e4da80ff60525f5d22f6b266743364fa254809462393b66ebd", + "rev": "75c84b53703e5d52cb18acc9251b87ffa400f388" + }, + "recipe": { + "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.3", + "deps": [] + }, + "org-outlook": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/org-outlook.el.git", + "sha256": "eb3cdcf784b90f61dea05aa6f54871e59bb83c52b53615d3af657e4f2fe04cf8", + "rev": "070c37d017ccb71d94c3c69c99632fa6570ec2cc" + }, + "recipe": { + "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.11", + "deps": [] + }, + "kill-ring-search": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/kill-ring-search.el.git", + "sha256": "52cd2895527401bf21354be6ea23f3eef50f707ebdb9ad63080b957c6354ac9d", + "rev": "3a5bc1767f742c91aa788df79ecec836a0946edb" + }, + "recipe": { + "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "scala-outline-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ancane/scala-outline-popup.git", + "sha256": "23f20d5776753125ead2be6e5417a87ea2618039b033ad90661ebe0f43c8f2e6", + "rev": "f950e026ffbf471046f02edea56f0d329cca0e01" + }, + "recipe": { + "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.4", + "deps": [ + "dash", + "popup", + "scala-mode2" + ] + }, + "smart-tabs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jcsalomon/smarttabs.git", + "sha256": "9f349f0f0abaa9f7319d83b96cdedec99d15e3b8b3d8ef3167e814a40984d1cd", + "rev": "8b196d596b331f03fba0efdb4e31d2fd0752c4a7" + }, + "recipe": { + "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "amd-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/amd-mode.el.git", + "sha256": "db1e25df20688e9a290ece00cf7d28d553b6a54714e439761253f71cc22deab2", + "rev": "16500ccc16e98bf28395b576afa83ec7bcb7b101" + }, + "recipe": { + "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "dash", + "f", + "js2-mode", + "js2-refactor", + "makey", + "projectile", + "s" + ] + }, + "lua-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/immerrr/lua-mode.git", + "sha256": "986d196c800b9b677ca410032e1589c1a328a51235d07de07a4e307582b0c6b7", + "rev": "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45" + }, + "recipe": { + "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025", + "deps": [] + }, + "ace-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/ace-window.git", + "sha256": "0607ef26eef8f351173745fccf9dc0791797e72a563892b4dc0de757e56fac1e", + "rev": "eef897e590c4ce63c28fd29ebff3c97aec8a69ae" + }, + "recipe": { + "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0", + "deps": [ + "avy" + ] + }, + "ace-popup-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/ace-popup-menu.git", + "sha256": "b38c602a7c718376ac55d607e1e2f49071eb40d432ec8626581313c5bf6e84cd", + "rev": "eb8d0d938debdf89575d2ed204aeb7c0b52060b0" + }, + "recipe": { + "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "avy", + "cl-lib", + "emacs" + ] + }, + "zoom-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-zoom-window.git", + "sha256": "529cca01315230346f1e4e4a818544c2f7eaef3b7a438cba089cc13c2c938cec", + "rev": "d92dcf265170cf8ea0294d1aaf2e6025eda228e6" + }, + "recipe": { + "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [] + }, + "ghc-imported-from": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/ghc-imported-from-el.git", + "sha256": "321a56135157ba7c6f969d8b32255de291b5022180a68ae16e51a25761e2b0d8", + "rev": "fcff08628a19f5d26151564659218cc677779b79" + }, + "recipe": { + "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.2", + "deps": [ + "emacs" + ] + }, + "company-emoji": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dunn/company-emoji.git", + "sha256": "89bd9629aa8d549711d274a9158df1b96b1848aac45db654dcc6a4ed55f5ca4c", + "rev": "c77e9c6f87a7853787c70eae885e12b6162d4cc5" + }, + "recipe": { + "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.0", + "deps": [ + "cl-lib", + "company" + ] + }, + "graphene-meta-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/graphene-meta-theme.git", + "sha256": "274caee80b5b99b32b4305c43ad093670a4a5e01ce3705a96f66d1d289752dae", + "rev": "5d848233ac91c1e3560160a4eba60944f5837d35" + }, + "recipe": { + "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [] + }, + "e2wm-term": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-term.git", + "sha256": "fc4b601344d34c3e5b6cddca3b9b49d78df814ea4574d4b47bfbe0810d9c6363", + "rev": "65b5ac88043d5c4048920a048f3599904ca55981" + }, + "recipe": { + "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "e2wm", + "log4e", + "yaxception" + ] + }, + "files+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/files+.el", + "sha256": "04bz0fb7g5516hwwzl01mp6s2mv9vigibv3965amajyvm8qm269f" + }, + "recipe": { + "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "x86-lookup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/x86-lookup.git", + "sha256": "18caaa766347837d28de5476e6a7507909f9047ed54038f904ec8154dc0e2d8e", + "rev": "cac42bd9f27bff92e0b1cf6fb20563061885239f" + }, + "recipe": { + "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "badwolf-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bkruczyk/badwolf-emacs.git", + "sha256": "14810b3a5875cc11991f35d36920e9e8a601a1e04a6837f0021f2b830e60daca", + "rev": "aa8dfa11da4f24894c8efdcd09fc792325387634" + }, + "recipe": { + "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "emacs" + ] + }, + "rspec-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pezra/rspec-mode.git", + "sha256": "d52d765c4b396436bfb9e133c34fcab50a99a033459e1315a333f8acff592358", + "rev": "e289e52ec4b3aa1caf35957d721e5568eca2a3bb" + }, + "recipe": { + "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.11", + "deps": [ + "cl-lib", + "ruby-mode" + ] + }, + "mb-url": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dochang/mb-url.git", + "sha256": "42e575014e3756a0328301cfb2dfb48e960d62942810df8205928178a5e08b64", + "rev": "34234214d1e62b9980cc64dac582e6771c92638d" + }, + "recipe": { + "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [ + "cl-lib" + ] + }, + "shell-toggle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/shell-toggle.el.git", + "sha256": "f8d40d6363946fd69d53d8a1567e3f8f7b415263467af9b7f48aae956d516a73", + "rev": "9820b0ad6f22c700759555aae8a454a7dc5a46b3" + }, + "recipe": { + "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [] + }, + "idomenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/birkenfeld/idomenu.git", + "sha256": "8264c3b375e802f319cfcf7261deffd7f4dffdb8d2cb4a3c37678f6bf8251e2f", + "rev": "5daaf7e06e4704ae43c825488109d7eb8c049321" + }, + "recipe": { + "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "goto-gem": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/goto-gem.git", + "sha256": "a79f1941e3925dd8cefc66b6b762f04b50be8da3a88ac18756e2201fb23c18a1", + "rev": "6f5bd405c096ef879fed1298c09d0daa0bae5dac" + }, + "recipe": { + "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.2", + "deps": [ + "s" + ] + }, + "minibuffer-cua": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/minibuffer-cua.el.git", + "sha256": "924fe22b5dfa26a4bd5a0efcd9d1285ac2d63e35557733429e635ccaafb0cb1e", + "rev": "e8dcddc24d4f2e8d7987336fb58259e3cc78bbcb" + }, + "recipe": { + "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "yagist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/yagist.el.git", + "sha256": "10ed1b028dc775e876754c32b92416b74b1c1380fa3b362124529ccd11422b51", + "rev": "97723a34750ccab5439eb9f6a2f67e4e0e234167" + }, + "recipe": { + "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8.12", + "deps": [ + "cl-lib" + ] + }, + "maxframe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rmm5t/maxframe.el.git", + "sha256": "1e20817a8f5fdfdcfb1e8abd30560b9e2f984669ff83db7d920959ca519beb21", + "rev": "4f1dbbe68048864037eae277b9280b90fd701ff1" + }, + "recipe": { + "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [] + }, + "company-irony": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sarcasm/company-irony.git", + "sha256": "9f25a2de3007af631a0d45d0be2a5dd4fdf04b5bcd0ebba3577468f69152babd", + "rev": "29becb8824cacb1ea6f8c823d06ba65512c62e3d" + }, + "recipe": { + "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "company", + "emacs", + "irony" + ] + }, + "easy-kill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoliu/easy-kill.git", + "sha256": "35359ebb02fd6424042547ec66643b3b523f71c10d43a3fd295f452333b6a664", + "rev": "e3b2442e2096cefff94ea8656e49af07fee58f47" + }, + "recipe": { + "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.3", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "dired-imenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/dired-imenu.git", + "sha256": "580f918fcfb2580be25b9313f07ddaa2d114343b3c12f018d7b57fde81b956c9", + "rev": "610e21fe0988c85931d34894d3eee2442c79ab0a" + }, + "recipe": { + "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5.0", + "deps": [] + }, + "nix-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NixOS/nix.git", + "sha256": "acbc789f5aca62495c5f53bd4fb519fe41b1cf0517f9bca4f516e59060f2572c", + "rev": "71a5161365f40699092e491bbff88473237fc432" + }, + "recipe": { + "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.10", + "deps": [] + }, + "angular-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/angular-snippets.el.git", + "sha256": "4a8050fb380c8fe2d1245276b86f3049e73286b24932e0f1827b595563043141", + "rev": "8f737c2cf5fce758a7a3833ebad2952b5398568d" + }, + "recipe": { + "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.3", + "deps": [ + "dash", + "s" + ] + }, + "emacsagist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/echosa/emacsagist.git", + "sha256": "3782e44a49a577a414d3e0e5de7832ab665754e074193100fa37f9592aeeb3c0", + "rev": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83" + }, + "recipe": { + "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "cl-lib" + ] + }, + "yafolding": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenozeng/yafolding.el.git", + "sha256": "d1a8d0f5d9b527a3f97483c611a31f46d801badec6bc7e648ebad16aaa53f4e6", + "rev": "9b5a3f1b8dff6ddaf6369681820753afbbd1f388" + }, + "recipe": { + "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [] + }, + "term-cmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CallumCameron/term-cmd.git", + "sha256": "2e00d60dfe2e0999c77f0739d22280150a88c79c5339512411c1f237004f291b", + "rev": "52651fcfbd0b0be0bddc66bf27f36243140698a4" + }, + "recipe": { + "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [] + }, + "shell-split-string": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/10sr/shell-split-string-el.git", + "sha256": "e8d7b425c91d840384798cfe7b5626a1a2edcbd5fd675b8552096265ab18a505", + "rev": "6d01c9249853fe1f8fd925ee80f97232d4e3e5eb" + }, + "recipe": { + "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "evil-visual-mark-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/evil-visual-mark-mode.git", + "sha256": "ffbdb57265ad39695ed4913e1f664b8978b596c7e3568121c3e163fd11c5951d", + "rev": "094ee37599492885ff3144918fcdd9b74dadaaa0" + }, + "recipe": { + "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.3", + "deps": [ + "dash", + "evil" + ] + }, + "package+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenspider/package.git", + "sha256": "27c9894e816000b9d58a6c1677e6397832b0edd5d792889f9ee0613082ca60f7", + "rev": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b" + }, + "recipe": { + "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "faces+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/faces+.el", + "sha256": "0mgj7mdadc62wpav7z138jsjvbvkxg05h5z9kmjw8jl5x4m334lq" + }, + "recipe": { + "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "rvm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senny/rvm.el.git", + "sha256": "0ec861813dfc9c9d9e8728d96254cf9fadf2c4668177e3d8d152b5bc82d0dc01", + "rev": "8e45a9bad8e317ff195f384dab14d3402497dc79" + }, + "recipe": { + "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.0", + "deps": [] + }, + "isgd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chmouel/isgd.el.git", + "sha256": "90a9804710de3eea82c9ed06f3c76d2e8116c9e8182821faf8a7365a29121d26", + "rev": "764306dadd5a9213799081a48aba22f7c75cca9a" + }, + "recipe": { + "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "swift-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/swift-mode.git", + "sha256": "4d702c5eddb989254cf779c753d4e646e949d686c0e7cdfcb71e5d576be45609", + "rev": "e09694f0f95a64b2c96487cbdcb66636a77ea22a" + }, + "recipe": { + "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "emacs" + ] + }, + "logview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/doublep/logview.git", + "sha256": "e8879cbfad63ab4707d951715d68ab76f97a55a612980930319cc306d62361da", + "rev": "f53693b37b46af448d0ac102ebbb152a1cb915aa" + }, + "recipe": { + "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.2", + "deps": [ + "emacs" + ] + }, + "facemenu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/facemenu+.el", + "sha256": "0b8all1l4v98iz1y4zbc0l9zxrdbgkljzahs2yrbl9md2qj3j91d" + }, + "recipe": { + "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "narrow-reindent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emallson/narrow-reindent.el.git", + "sha256": "239069b6cbe9808b2c4c90b6f12cfd4583a6e7d409cb10eae25d61e5141f7718", + "rev": "87466aac4dbeb79597124dd077bf5c704872fd3d" + }, + "recipe": { + "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.0", + "deps": [ + "emacs" + ] + }, + "epl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cask/epl.git", + "sha256": "f2f8994650b852285a09dce3ff9b65d3acd0c0b57766108e669c49721d3bb6a3", + "rev": "a76ec344a7fee3ca7e7dfb98b86ebc3b8c1a3837" + }, + "recipe": { + "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "cl-lib" + ] + }, + "paradox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/paradox.git", + "sha256": "838e99809dfdfd006927e2949ad5fd965cdf33f33c2de1d5d4e70abe7e280030", + "rev": "d62d883b8c980d679970bed79c12091df9120a77" + }, + "recipe": { + "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.6", + "deps": [ + "cl-lib", + "emacs", + "hydra", + "json", + "let-alist", + "seq", + "spinner" + ] + }, + "ix": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theanalyst/ix.el.git", + "sha256": "eaa0ad3db29d0e79210d7e573683a113920fce9474ca46cb4ab4a1b46580fd66", + "rev": "498dac674f4f1910d39087b1457c5da5465a0614" + }, + "recipe": { + "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [ + "grapnel" + ] + }, + "req-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/edvorg/req-package.git", + "sha256": "ece8ab206556d4c27045d9a9e5351af1a3782ae6daf3eceabcd26b46497bece7", + "rev": "374c6d1a81b5448a66295be8c132c42ca44eeddb" + }, + "recipe": { + "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "dash", + "log4e", + "use-package" + ] + }, + "cmake-project": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alamaison/emacs-cmake-project.git", + "sha256": "b3af015dad9677d00245ec6e0ebc0f66b4b13c0b84db26edb653f6a784b7b483", + "rev": "ec61f687772cccdb699f64ebe1e8dc8ba83f790f" + }, + "recipe": { + "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.7", + "deps": [] + }, + "matlab-mode": { + "fetch": { + "tag": "fetchcvs", + "url": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", + "module": "matlab-emacs", + "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" + }, + "recipe": { + "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "org-time-budgets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoc/org-time-budgets.git", + "sha256": "86b8707d377d16c69dc7700a3665554ef1323592a1fd0372e9198be59c143c26", + "rev": "f2a8fe3d9d6104f3dd61fabbb385a596363b360b" + }, + "recipe": { + "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.1", + "deps": [ + "alert", + "cl-lib" + ] + }, + "fancy-narrow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/fancy-narrow.git", + "sha256": "21e9872e1f435e6e1fc4c7acf88c8d075e9b3fc5a2a851aeee4587faa935ba81", + "rev": "cd381c1acd5e0d9b6acd7f3e76c3b1de21e8b6df" + }, + "recipe": { + "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.4", + "deps": [] + }, + "dirtree": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dirtree.el", + "sha256": "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx" + }, + "recipe": { + "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [ + "tree-mode", + "windata" + ] + }, + "test-case-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ieure/test-case-mode.git", + "sha256": "bd618ace09584d69e30fef55183008d153426aac52170227492ed2b2a7ff2b24", + "rev": "26e397c0f930b7eb0be413ef7dd257b1da052bec" + }, + "recipe": { + "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0", + "deps": [ + "fringe-helper" + ] + }, + "fiplr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d11wtq/fiplr.git", + "sha256": "9bb9875b2c8110ddcd9c21aef65ae8f88e71a9648d675980719da62c13626a6f", + "rev": "100dfc33f43da8c49e50e8a2222b9d95532f6e24" + }, + "recipe": { + "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.4", + "deps": [ + "grizzl" + ] + }, + "rainbow-blocks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/rainbow-blocks.git", + "sha256": "4e847677bcfeb865edc73399c7370d4c22a649f78584d5fa676f0f74f3b9dc66", + "rev": "8335993563aadd4290c5fa09dd7a6a81691b0690" + }, + "recipe": { + "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [] + }, + "ucs-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ucs-cmds.el", + "sha256": "0s65g6rdrjn4ypdny68fjk58yddn921xkbl811izxyc3q6q2z0k4" + }, + "recipe": { + "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "dot-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dot-mode.el", + "sha256": "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk" + }, + "recipe": { + "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ido-grid-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/larkery/ido-grid-mode.el.git", + "sha256": "8b8ac3b031fa3ddccbaece48689cdf7e9d4b1dc3362518bc602c2b402d333738", + "rev": "8bbd66e365d4f6f352bbb17673be5869ab26d7ab" + }, + "recipe": { + "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.5", + "deps": [ + "emacs" + ] + }, + "company-sourcekit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nathankot/company-sourcekit.git", + "sha256": "cb2eff547a3bd71ea6e160f6f72fbd13bf0970f3e8df6e140384132425c2b760", + "rev": "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9" + }, + "recipe": { + "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.4", + "deps": [ + "company", + "dash", + "dash-functional", + "emacs", + "sourcekit" + ] + }, + "kaesar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", + "sha256": "62a355528a4ebc5372e37fe82287322ae8d335ee901da6122370be827bb159bd", + "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" + }, + "recipe": { + "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9.0", + "deps": [ + "cl-lib", + "kaesar" + ] + }, + "e2wm-pkgex4pl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-pkgex4pl.git", + "sha256": "0dbc18c29f6cd1c0a43e9fd3c826360d4f7f6adc88de53493fd57a1efc7734ef", + "rev": "7ea994450727190c4f3cb46cb429ba41b692ecc0" + }, + "recipe": { + "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "e2wm", + "plsense-direx" + ] + }, + "org-linkany": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/org-linkany.git", + "sha256": "77d478ac162504ad503a7c10d89979057e57d7f4a16c73b8321f4426d0f9efad", + "rev": "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2" + }, + "recipe": { + "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.2", + "deps": [ + "log4e", + "yaxception" + ] + }, + "powershell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jschaf/powershell.el.git", + "sha256": "e2e60483f0e4fb1bed2b0625b896efd79bf1e9795573fd777a47762f6906f0b5", + "rev": "7316f44d0b528552f5a0692f778e5f0efd964299" + }, + "recipe": { + "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "underwater-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jmdeldin/underwater-theme.el.git", + "sha256": "125eafa3c23b23cee42764d051517500cecd46d2a4c1fd6817716041be6f34bc", + "rev": "1fbd4ecd4538256c6c46f9638f883072c73ac927" + }, + "recipe": { + "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1.0", + "deps": [] + }, + "column-marker": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/column-marker.el", + "sha256": "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9" + }, + "recipe": { + "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "magit-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" + }, + "recipe": { + "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.1", + "deps": [ + "async", + "dash", + "emacs" + ] + }, + "bbdb-vcard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tohojo/bbdb-vcard.git", + "sha256": "f62474f3cf4e1657fb80ebdef0ed75893d60cbff3fff27035a2daa9525531a22", + "rev": "9e11fafef1a94bc6395bd1eeacd00f94848ac560" + }, + "recipe": { + "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [] + }, + "helm-hayoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/markus1189/helm-hayoo.git", + "sha256": "0d07855c576fd17d9adbdd3f3050df3cc4b25132a618541dc09236e001625c41", + "rev": "f49a77e8b8704bb7eb0d1097eefb8010a6617664" + }, + "recipe": { + "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.5", + "deps": [ + "haskell-mode", + "helm", + "json" + ] + }, + "igrep": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/igrep.el", + "sha256": "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29" + }, + "recipe": { + "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "gnome-calendar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/gnome-calendar.el.git", + "sha256": "cc5a30c42299dece6663f9ca37384fefeeb2e0f40c5d51d6f3f079e03aaa1898", + "rev": "58c3a3c32aff9901c679bdf9091ed934897b84a0" + }, + "recipe": { + "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2", + "deps": [] + }, + "evil-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/edwtjo/evil-org-mode.git", + "sha256": "675e87b22f0ae0c3611c000808563ed46077046f007f144e9e81249613bc8026", + "rev": "2d7c58dbeca0d4ac7b4eab5f47b77946951f27e9" + }, + "recipe": { + "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "evil", + "org" + ] + }, + "modalka": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/modalka.git", + "sha256": "4f6463d8db0cbf332b8acc16a461a605b041f30296782fbe0d651f0fbfa448f0", + "rev": "f8ee86264a8e961b5821e11fdd490d5c4fc489c3" + }, + "recipe": { + "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "emacs" + ] + }, + "subshell-proc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andrewmains12/subshell-proc.git", + "sha256": "ae1f2c78b2c628f3480a80bb534a1cb4bdf0f516aee208866b622862b748a857", + "rev": "bf475eb7b0684af967755e91c9cabd19f953b03b" + }, + "recipe": { + "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "imenu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/imenu+.el", + "sha256": "16f2a6jgwgczsaps55pnnyi38mw5z3fn4abybyr7hn0kf5xqip6q" + }, + "recipe": { + "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "phi-search-mc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/phi-search-mc.el.git", + "sha256": "5b2fb5c9bc162e7d036b37c6161281e85670a39a547a5dbce64607f26ca0cc64", + "rev": "4c6d2d39feb502febb81fc98b7b5854d88150c69" + }, + "recipe": { + "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.2.1", + "deps": [ + "multiple-cursors", + "phi-search" + ] + }, + "bury-successful-compilation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/EricCrosson/bury-successful-compilation.git", + "sha256": "dc476a3cbce544b2146a265560d53dcea251d9e19a7f20a89a4c4ac1e3580a0e", + "rev": "ca58a5df0aa3f266a8df0e3e5d3d962c086be0a9" + }, + "recipe": { + "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "html-to-markdown": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/html-to-markdown.git", + "sha256": "da321b02f003277a25dc90c4d20ad8967dd1bfb7267f6353c759f25f6843c430", + "rev": "0fa0effd71acd8981a425ef11e0e63d53aea3199" + }, + "recipe": { + "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.5.1", + "deps": [] + }, + "srefactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tuhdo/semantic-refactor.git", + "sha256": "2c931ef7fcc4afc2b1220465d2932e64ce6aef2bc325129e702b23381fa2a873", + "rev": "ecd40713f736b243285c07f4cfd77113794d4f9f" + }, + "recipe": { + "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.5", + "deps": [ + "emacs" + ] + }, + "wacspace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shosti/wacspace.el.git", + "sha256": "83ddb67e606e103356d8df08df8e9653b5e9d59235efba14ad19cf8c8a9492f7", + "rev": "b951995c204ff23699d2bda515a96221147a725d" + }, + "recipe": { + "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.2", + "deps": [ + "cl-lib", + "dash" + ] + }, + "helm-pages": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/helm-pages.git", + "sha256": "52a1e29e2d1eea8df36d04ce5c0639d8299a00c68a2aa06195f9938253fc5ed9", + "rev": "e334ca3312e51d6fdfa989df5d3ebe683d673c0e" + }, + "recipe": { + "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "php-auto-yasnippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/php-auto-yasnippets.git", + "sha256": "86624c94b77fd9d672fd17ea6ffe514a0341f8438dc5c0de0fddf419020a417f", + "rev": "1950d83cbcc5c5d62cd3bc432e1595870fe8cabf" + }, + "recipe": { + "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.3.1", + "deps": [ + "php-mode", + "yasnippet" + ] + }, + "summarye": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/summarye.el", + "sha256": "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py" + }, + "recipe": { + "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "helm-ls-git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-ls-git.git", + "sha256": "e3aa5dbd1ed838f8fbb52ee43b3aef767cbb486a73adda2cfcf99f9bcb0e6d90", + "rev": "c5e43f4083af3949c5d5afdfbbf26d01881cb0e2" + }, + "recipe": { + "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.8.0", + "deps": [ + "helm" + ] + }, + "hl-todo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/hl-todo.git", + "sha256": "b83b44813262ed7a5976a7aa96a1f5af48a72c0d71b1daa3fecd9174dee5391e", + "rev": "878220c111add155b9ee1aeb3d3475cc5e488525" + }, + "recipe": { + "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.4.5", + "deps": [] + }, + "cython-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cython/cython.git", + "sha256": "76a34abcc29b2cdfb377f36fa550ce7ec678a729ff1b28d8e4e7e92eb642d48d", + "rev": "dc00a176d896f0df892aad8b305d946d3ed632a0" + }, + "recipe": { + "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.23.4", + "deps": [] + }, + "cider": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/cider.git", + "sha256": "235fe476a251fcaec6b1e363c27a98ecd9976dcfcbbe1d911c3c5bde6c4f62bf", + "rev": "7cc4a192323ef0911c150e6150d3bbd319253342" + }, + "recipe": { + "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.10.0", + "deps": [ + "clojure-mode", + "emacs", + "pkg-info", + "queue", + "seq", + "spinner" + ] + }, + "sudo-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sudo-ext.el", + "sha256": "0fpz73r52j7sk1w7my0002wg7isrp54w28nnrwk9xb9il4qpxag2" + }, + "recipe": { + "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "levenshtein": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/levenshtein.el", + "sha256": "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6" + }, + "recipe": { + "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "ac-slime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ac-slime.git", + "sha256": "7cf66d36d9dac4e2e297cd858072ffc813e85f62f67ddcadc61fff101c276f54", + "rev": "df6c4e88b5ba2d15d47a651ecf7edc0986624112" + }, + "recipe": { + "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.8", + "deps": [ + "auto-complete", + "cl-lib", + "slime" + ] + }, + "fastnav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gleber/fastnav.el.git", + "sha256": "cbf0e87027006fde039286dbe5be2e6bc05cc957727991d1b75bd9d2bc11947a", + "rev": "54626e9e7cc7be5bc2bd01732e95ed2afc2312a1" + }, + "recipe": { + "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.7", + "deps": [] + }, + "etags-select": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/etags-select.el", + "sha256": "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb" + }, + "recipe": { + "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "traad-autocomplete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/traad.git", + "sha256": "1d4f3a933f0200f939ccd2f05fc5f417dbd9856f56ba293be05a849c01202048", + "rev": "8852b4dc2b2113a1597301c0b03712b65f50747f" + }, + "recipe": { + "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4", + "deps": [] + }, + "el-init-viewer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HKey/el-init-viewer.git", + "sha256": "f181a535e9c34ea1d000ef84444d17e9eb7a72523860a54323c45da14822b7f2", + "rev": "dcc595ba51b5aff972292278aa528c7ddb46f1b5" + }, + "recipe": { + "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "anaphora", + "cl-lib", + "ctable", + "dash", + "el-init", + "emacs" + ] + }, + "gist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/defunkt/gist.el.git", + "sha256": "e89b2f4a41a7b682f95aed343c35f445991f2a839a076c8df330e56a5cd17760", + "rev": "144280f5353bceb902d5278fa64078337e99fa4d" + }, + "recipe": { + "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.3.1", + "deps": [ + "emacs", + "gh" + ] + }, + "clojure-mode-extra-font-locking": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clojure-mode.git", + "sha256": "dc4a2e8d35b68bc06ee8a0ad9faa7833c7b5522776da356abeb4c8ef01ef3489", + "rev": "8b01df6c881929540b59444a54b37c03ffe6fc17" + }, + "recipe": { + "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "5.0.1", + "deps": [ + "clojure-mode" + ] + }, + "ggo-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkjunker/ggo-mode.git", + "sha256": "ff073c756976e25246e3698260552e4225d58735c57aecac32eead73715239d5", + "rev": "ea5097f87072309c7b77204888d459d084bf630f" + }, + "recipe": { + "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130521", + "deps": [] + }, + "clojure-cheatsheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clojure-cheatsheet.git", + "sha256": "70610f4067e1bb3f5b2d8e14a638a0d3f2f88699850cdb38f0067411a0010c5a", + "rev": "f8db406b7b13a580c142d08865c9a03c101235fa" + }, + "recipe": { + "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.4.0", + "deps": [ + "cider", + "helm" + ] + }, + "org-gnome": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/org-gnome.el.git", + "sha256": "41ea1129cd5ee91e363516b4a514edb5433297f6d32499ed80a2ab58c08ca72c", + "rev": "1012d47886cfd30eed25b73d9f18e475e0155f88" + }, + "recipe": { + "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3", + "deps": [ + "alert", + "gnome-calendar", + "telepathy" + ] + }, + "osx-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/osx-dictionary.el.git", + "sha256": "7b77e62a818833d7a3cdd516c993ba8ed7bdd7ea0f3e820949b17988f8c7dcef", + "rev": "b909e38723caa37157ad6be90ac107c1c7102e07" + }, + "recipe": { + "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.2.1", + "deps": [ + "chinese-word-at-point", + "cl-lib" + ] + }, + "zzz-to-char": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/zzz-to-char.git", + "sha256": "72e4ea3baaa2f5f29a3780d1e301faecdda8691e5b359c734663d194f423b670", + "rev": "82dc3382e58091ae32160a91e8c781b813faf856" + }, + "recipe": { + "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "avy", + "cl-lib", + "emacs" + ] + }, + "pass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/pass.git", + "sha256": "5848c7b1eaca4a08c28859acbd04785f0ed0809fe4b1968f02a38eaf26bb7a68", + "rev": "93d99883a95e70f931d2abad87e697f5243115d3" + }, + "recipe": { + "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [ + "emacs", + "f", + "password-store" + ] + }, + "request": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-request.git", + "sha256": "5770398cb264a41fa229e0ad3da7845816b1787ee0211f3e89335bd157730d46", + "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff" + }, + "recipe": { + "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "markdown-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://jblevins.org/git/markdown-mode.git", + "sha256": "89a2577a17836715d06cbeba64364accedaf603bb4cca9627b7e3116ea51ddd8", + "rev": "a3f710de163ec729090ecc13d03e400793fb9e95" + }, + "recipe": { + "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "2.0", + "deps": [] + }, + "sphinx-doc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/naiquevin/sphinx-doc.el.git", + "sha256": "4feff4aaaf956ac45e63534e9948778cf60508afd9c7139e5f9feffe5132a3fe", + "rev": "b3459ecb9e6d3fffdee3cb7342563a56a32ce666" + }, + "recipe": { + "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "s" + ] + }, + "evil-smartparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/expez/evil-smartparens.git", + "sha256": "441faf9df12c2ed062fbd39b3b318599088c9943161d46b1a6373e08d528529a", + "rev": "12521212b8e4a02cbec733882bb89c6fac37301f" + }, + "recipe": { + "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "emacs", + "evil", + "smartparens" + ] + }, + "org-protocol-jekyll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vonavi/org-protocol-jekyll.git", + "sha256": "3e2718635958f26ff64bac708921fa35c2d667bd2e9ebb640477e75292fcb2b3", + "rev": "c1ac46793eb9bf22b1a601e841947428be5c9766" + }, + "recipe": { + "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1", + "deps": [] + }, + "autodisass-llvm-bitcode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gbalats/autodisass-llvm-bitcode.git", + "sha256": "1821eaaa3f6ccff93fea6692df48090142951452bd7cfb6efc3269a139225dfe", + "rev": "14bb1bfe2be3b04d6e0c87a7a9d1e88ce15506d0" + }, + "recipe": { + "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.1", + "deps": [] + }, + "sourcemap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-sourcemap.git", + "sha256": "b11a36528c0f01ccf8561aa73c386f17c8e59fbaa76bc8b1089fceac7fff3a29", + "rev": "065a0c3bd8ca5fe6a45e8f983f932c3c9fac5db9" + }, + "recipe": { + "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.02", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "json-snatcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sterlingg/json-snatcher.git", + "sha256": "3fcbfd635ecf0e873c0d94261acd2a3147eb1f2f10576379fc085b08964d5d3e", + "rev": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c" + }, + "recipe": { + "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "1.0.0", + "deps": [ + "emacs" + ] + }, + "dired-details": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-details.el", + "sha256": "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza" + }, + "recipe": { + "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "nil", + "deps": [] + }, + "org-link-travis": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/org-link-travis.git", + "sha256": "089627b60fc04ccaf038234777333f4a4c7e0df72eda91e64fc17e6244bb279d", + "rev": "596615ad8373d9090bd4138da683524f0ad0bda5" + }, + "recipe": { + "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.0.1", + "deps": [ + "org" + ] + }, + "cryptol-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thoughtpolice/cryptol-mode.git", + "sha256": "470781cb9844aaabd2ebb4cbf737b4736e60d00b0c81449487bab9575cc04dfd", + "rev": "a54d000d24757fad2a91ae2853b16a97ebe52771" + }, + "recipe": { + "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.1.0", + "deps": [] + }, + "company-ycmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/emacs-ycmd.git", + "sha256": "143753f1866721ab82dbadd5242e3b9fa4769235e7fe98674eee6791a4797e85", + "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" + }, + "recipe": { + "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.9", + "deps": [ + "company", + "deferred", + "s", + "ycmd" + ] + }, + "literate-coffee-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-literate-coffee-mode.git", + "sha256": "2c388ff418ba113bc02f45c5ff7c2e45692dacbfe45688d21e0cf7e123e1d5bc", + "rev": "39fe3bfa1f68a7b8b91160875589219b214a2cd6" + }, + "recipe": { + "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "0.04", + "deps": [ + "coffee-mode" + ] + } +} \ No newline at end of file diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix new file mode 100644 index 00000000000..b17bda56c28 --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -0,0 +1,42 @@ +pkgs: with pkgs; + +let + + inherit (stdenv.lib) makeScope mapAttrs; + + json = builtins.readFile ./melpa-stable-packages.json; + manifest = builtins.fromJSON json; + + mkPackage = self: name: recipe: + let drv = + { melpaBuild, stdenv, fetchurl }: + let fetch = { inherit fetchurl; }."${recipe.fetch.tag}" + or (abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"); + args = builtins.removeAttrs recipe.fetch [ "tag" ]; + src = fetch args; + in melpaBuild { + pname = name; + inherit (recipe) version; + inherit src; + deps = + let lookupDep = d: + self."${d}" or (abort "emacs-${name}: missing dependency ${d}"); + in map lookupDep recipe.deps; + meta = { + homepage = "http://stable.melpa.org/#/${name}"; + license = stdenv.lib.licenses.free; + }; + }; + in self.callPackage drv {}; + + packages = self: + let + melpaStablePackages = mapAttrs (mkPackage self) manifest; + + melpaBuild = import ../../../build-support/emacs/melpa.nix { + inherit (pkgs) lib stdenv fetchurl texinfo; + inherit (self) emacs; + }; + in melpaStablePackages // { inherit melpaBuild melpaStablePackages; }; + +in makeScope pkgs.newScope packages From 4e99a11653fc91fd5adf7d2738ac4fd1e4eef810 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 14 Dec 2015 19:48:13 -0600 Subject: [PATCH 047/289] melpa-packages 2015-12-14 --- .../editors/emacs-modes/melpa-packages.json | 43714 ++++++++++++++++ .../editors/emacs-modes/melpa-packages.nix | 42 + 2 files changed, 43756 insertions(+) create mode 100644 pkgs/applications/editors/emacs-modes/melpa-packages.json create mode 100644 pkgs/applications/editors/emacs-modes/melpa-packages.nix diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.json b/pkgs/applications/editors/emacs-modes/melpa-packages.json new file mode 100644 index 00000000000..2e8d323eaa3 --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json @@ -0,0 +1,43714 @@ +{ + "netherlands-holidays": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/netherlands-holidays.git", + "sha256": "bf700dac77d054e1001c125f21168df880526ca172191ae09fc6668b85a46ece", + "rev": "26236178cdd650df9958bf5a086e184096559f00" + }, + "recipe": { + "sha256": "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.1017", + "deps": [] + }, + "qiita": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/qiita-el.git", + "sha256": "45416bcdf7d6404c4a2d4e03ad9cfbb29b94f7716bb82b275c2b272115ddf13d", + "rev": "93c697b97d540fd1601a13a3d9889fb939b19878" + }, + "recipe": { + "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140118.244", + "deps": [ + "helm", + "markdown-mode" + ] + }, + "drawille": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sshbio/drawille.git", + "sha256": "cabe02680a026ed6f1e2826b00955254470953c8b79e5576b3c8eae2ed0ac72b", + "rev": "d56a71a168b391365c8d6f567391a6892bbd3909" + }, + "recipe": { + "sha256": "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1208", + "deps": [ + "cl-lib" + ] + }, + "om-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danielsz/om-mode.git", + "sha256": "eb6f3bd5a595f1edea776dfaedf3008d2edd9ace2d7c864ec176cc2ea2585f0f", + "rev": "cdc0c2912321f8438b0f3449ba8aca50ec150bba" + }, + "recipe": { + "sha256": "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140915.1610", + "deps": [] + }, + "outorg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/outorg.git", + "sha256": "52b9241d44db9495056093c086217511dc73504a875c6f7a32acecc135b18478", + "rev": "9d6d6f1fb8c68ee044ffba1ae1aed8146bcff1f1" + }, + "recipe": { + "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.1440", + "deps": [] + }, + "cg": { + "fetch": { + "tag": "fetchsvn", + "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs", + "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1", + "rev": "11136" + }, + "recipe": { + "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150819.604", + "deps": [] + }, + "helm-ls-hg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-ls-hg.git", + "sha256": "9af53e37e1ff732c1e9a108d63bdabdec5c38c422ab2e2f32b6f9dc923d659d7", + "rev": "61b91a22fcfb62d0fc56e361ec01ce96973c7165" + }, + "recipe": { + "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150909.43", + "deps": [ + "helm" + ] + }, + "wgrep-ag": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", + "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141012.511", + "deps": [ + "wgrep" + ] + }, + "color-theme-sanityinc-tomorrow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/color-theme-sanityinc-tomorrow.git", + "sha256": "efcb38614d0773c2d67ba48280956b7d3d2489a8339d6e4b01b1a7b88d310cef", + "rev": "cf47d5fb27eed10fbd4e5c1fa10958d862e5a1bd" + }, + "recipe": { + "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150803.1619", + "deps": [] + }, + "focus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/larstvei/Focus.git", + "sha256": "0cae0122b49cf478025cb3c8df81fc22fa92e35e894777c43fb777477fc7452a", + "rev": "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9" + }, + "recipe": { + "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.215", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "xahk-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xahk-mode.el.git", + "sha256": "a0a0be47cba4a5e6ff21505593a4e143a0b370a649a5b51a8c1782c8f1248735", + "rev": "91301b8eae7fd703b258a4c68066d9d5af943c4b" + }, + "recipe": { + "sha256": "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150504.1811", + "deps": [] + }, + "buffer-move": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lukhas/buffer-move.git", + "sha256": "d1a5372dc0a40ed8394a72eb3a5101341eb320eaf303541f1f8826f95c9af8d6", + "rev": "7034d74abe4df67737d520e994d55dbb34b3b4d5" + }, + "recipe": { + "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.249", + "deps": [] + }, + "slovak-holidays": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/slovak-holidays.git", + "sha256": "4870c79b0ca2223d292a7d68b3ee0f14f81afa8a9878fa403280850483572ff8", + "rev": "effb16dfcd14797bf7448f5113085479db339c02" + }, + "recipe": { + "sha256": "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150418.355", + "deps": [] + }, + "youdao-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/youdao-dictionary.el.git", + "sha256": "d9baf0a7bc4c45c05de784ed7bff9d9c72a6ff775375e86707cd36789cc32600", + "rev": "5b4f716ca41fa0cdb18a4949ac5cdcd470182c57" + }, + "recipe": { + "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.144", + "deps": [ + "chinese-word-at-point", + "emacs", + "names", + "popup" + ] + }, + "ox-nikola": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masayuko/ox-nikola.git", + "sha256": "672eb9bd73d2dbed1952627b55e946226029d65280a999ab938db4c1cc258131", + "rev": "5bcbc1a38f6619f62294194f13ca0cd4ca14dd48" + }, + "recipe": { + "sha256": "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.516", + "deps": [ + "emacs", + "org", + "ox-rst" + ] + }, + "io-mode-inf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/slackorama/io-emacs.git", + "sha256": "1a886ac2ab1e736876596e28f4a1e2b965c44500d9cff6933f858dc026422dab", + "rev": "6dd2bac3fd87484bb7d97e135b06c29d70b444b6" + }, + "recipe": { + "sha256": "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140128.1334", + "deps": [] + }, + "emacsql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" + }, + "recipe": { + "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151003.2131", + "deps": [ + "cl-lib", + "emacs", + "finalize" + ] + }, + "ido-skk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tsukimizake/ido-skk.git", + "sha256": "7e4bba0bc9012e996c49969d9a08e17da222ec24d0deede57c40f2e597fd2c91", + "rev": "89a2e62799bff2841ff634517c86084c4ce69246" + }, + "recipe": { + "sha256": "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.350", + "deps": [ + "ddskk", + "emacs" + ] + }, + "help-fns+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help-fns+.el", + "sha256": "0ljciaa0dc09m7xq22z1sad4bshphjpyf0i8hlf6xh7wg1vgavma" + }, + "recipe": { + "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150909.1038", + "deps": [] + }, + "cmake-ide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atilaneves/cmake-ide.git", + "sha256": "c0d7fbb8f64d547872f2be4500b834dec605c0a51708ab574743e8465218c059", + "rev": "503374eb9c353c662bddc87bc886db87a231d9f8" + }, + "recipe": { + "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.243", + "deps": [ + "emacs" + ] + }, + "hideshow-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shanecelis/hideshow-org.git", + "sha256": "59d01fd19f386d75e6fe8380bb480f0029d0074f549879d247307e69d33220b7", + "rev": "16419e52e6cdd2f46f755144c0ab11ce00d1a626" + }, + "recipe": { + "sha256": "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120223.1650", + "deps": [] + }, + "jammer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/jammer.git", + "sha256": "70957c1467eb108ac2125f2be1ff5dd6130431eab8e58da312ebd899eaf91b74", + "rev": "1ba232b71507b468c60dc53c2bc8888bef36c858" + }, + "recipe": { + "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.814", + "deps": [] + }, + "ghci-completion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/manzyuk/ghci-completion.git", + "sha256": "b89059723986ccffaf11919f3be7b5d7c884eeb8369bbbc65e5b45acc51cd49d", + "rev": "c47e23d585d2a3c7b13aac163693fdc4f2bb90e5" + }, + "recipe": { + "sha256": "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.657", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "dired-sort-menu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu+.el", + "sha256": "0l19xa7z4015lqw98dzb5i40na32758wxyfka2vdhn7g5iq7qday" + }, + "recipe": { + "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1640", + "deps": [ + "dired-sort-menu" + ] + }, + "tide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ananthakumaran/tide.git", + "sha256": "302f3ca24db4a7494f2cc707804cc7874666372c3549036fae07a2b3e69a2ef8", + "rev": "0c0f95b9e5abdbe60ccfcefc81f02178bfa940ab" + }, + "recipe": { + "sha256": "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.245", + "deps": [ + "dash", + "emacs", + "flycheck", + "typescript-mode" + ] + }, + "org-doing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omouse/org-doing.git", + "sha256": "44f1a73184b167680ff7ac32e42d9c3210eeddffe25a8e77d8606b36cdc72097", + "rev": "7d0a8ef5dcd18ee375da6298d96e6858508fb919" + }, + "recipe": { + "sha256": "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150824.901", + "deps": [] + }, + "go-eldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-go-eldoc.git", + "sha256": "3f2f9fd6c9fac4d528f86327d3ec456fece9646e35b566d45394131e2f3180f7", + "rev": "684f1414913c85695eb8ca4a2643cea04ee60527" + }, + "recipe": { + "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151028.210", + "deps": [ + "cl-lib", + "go-mode" + ] + }, + "w32browser-dlgopen": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/w32browser-dlgopen.el", + "sha256": "15cjfr8fknlp61mqz6377d4pprv3pddhiqqdhk1lsz2mncw8z9mq" + }, + "recipe": { + "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1906", + "deps": [] + }, + "cerbere": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/cerbere.git", + "sha256": "9076f7497220261c3e2adbb911b847bd25aba7a3309ac507e229397b1dcf750c", + "rev": "ef573b05f4c2a067b8234003aaa4b2a76fffea5c" + }, + "recipe": { + "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140418.915", + "deps": [ + "f", + "pkg-info", + "s" + ] + }, + "key-intercept": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarao/key-intercept-el.git", + "sha256": "448171636b5740ebafff079319275a9b4c7a9dcbd11e2cebf0bec47791767690", + "rev": "d9a60edb4ce893f2d3d94f242164fdcc62d43cf2" + }, + "recipe": { + "sha256": "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140211.149", + "deps": [] + }, + "grandshell-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/grandshell-theme.git", + "sha256": "7a1b3d42d1730ac8618324d08254aec9125c7705366c59b4c1e4e4c639770288", + "rev": "6bf34fb1a3117244629a7fb23daf610f50854bed" + }, + "recipe": { + "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150404.701", + "deps": [] + }, + "warm-night-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/warm-night-theme.git", + "sha256": "2e4eb75f4c0bb262b9830f17f9899c10a78fb4aa2916698fa29b9b8c8b1687f4", + "rev": "67cc2a1591c0627e6310cdfe8ca7c8d4565b9c16" + }, + "recipe": { + "sha256": "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150607.941", + "deps": [ + "emacs" + ] + }, + "cbm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/akermu/cbm.el.git", + "sha256": "fd03cad78656599d6b8094e9b39c28421d19cc1a29566d93bdde827fc4926cac", + "rev": "40ae4f6ed075889346b4ba7cf991f5ad6dd6d1b7" + }, + "recipe": { + "sha256": "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150715.1404", + "deps": [] + }, + "lacarte": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lacarte.el", + "sha256": "1nlras4g3ncp1pcmkkpa2j88zvqjibmn5h6ilahgjry0dwg9qw5j" + }, + "recipe": { + "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1750", + "deps": [] + }, + "diff-hl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgutov/diff-hl.git", + "sha256": "824fcc32aa45b0060b567590df6bf8c11dfe7d40f6afc2985b1fd8349a672ad8", + "rev": "89e08d60c4e8d5d4ddd47e14c0dd769ba965a545" + }, + "recipe": { + "sha256": "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.1915", + "deps": [ + "cl-lib" + ] + }, + "outline-magic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/outline-magic.git", + "sha256": "b65b67077ec77998faa2d2fab1e41a5f6d8a201d2198bf23cc87e86321e5cc84", + "rev": "5689436cd67edc86066e51be77fa4e1fe21de507" + }, + "recipe": { + "sha256": "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150209.1626", + "deps": [] + }, + "vim-empty-lines-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jmickelin/vim-empty-lines-mode.git", + "sha256": "4cd668b0c2f0901b316db574011db6a8b21382a6bad5d2b75099224eb2191562", + "rev": "442a29b0ba1635a3b352c9dd1faf9ce99656d048" + }, + "recipe": { + "sha256": "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.2226", + "deps": [ + "emacs" + ] + }, + "mmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/mmt.git", + "sha256": "6ab354377fbdff7d2b1542bea4e62b613c6543850b8bd373d7b48043bcd67583", + "rev": "e77b809e39b9ab437b662ee759e990163bc89377" + }, + "recipe": { + "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.1159", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "fetch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/crshd/fetch.el.git", + "sha256": "c863cfbce6bea622c4c2f0d393b099825bca856d2e0264d0681e013b964b5c5e", + "rev": "3f2793afcbbc32f320e572453166f9354ecc6d06" + }, + "recipe": { + "sha256": "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131201.130", + "deps": [] + }, + "vimish-fold": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/vimish-fold.git", + "sha256": "f42a36a96efda1684af8ee99f26ba8502c9b2387dc8656f632f3aba3b0ae5bd2", + "rev": "843a709a129f3f587fa69a67ec655b2ef301ea8a" + }, + "recipe": { + "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.1009", + "deps": [ + "cl-lib", + "emacs", + "f" + ] + }, + "stripe-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/stripe-buffer.git", + "sha256": "5d7d0095467659994c2638da006b6ee1825b5d0a95ade6d36a9c352e0e94aa37", + "rev": "c252080f55cb78c951b19ebab9687f6d00237baf" + }, + "recipe": { + "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141208.908", + "deps": [ + "cl-lib" + ] + }, + "web-completion-data": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/web-completion-data.git", + "sha256": "9506f5dfc68369020c3ddc69d996138c29d6fca8d7c6aa29442fd7b413c5488a", + "rev": "81482f9ff17e13906bdbd9db6bc4e1cbdc0e1870" + }, + "recipe": { + "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150623.533", + "deps": [] + }, + "slime-company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/anwyn/slime-company.git", + "sha256": "5d4ecc72874835fbd67a1c10f647cc9b2313148ac68d6d93bbc171652b4c28fa", + "rev": "cf03a862c3aa2393eb151af9e5bc032aa6b6f154" + }, + "recipe": { + "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.814", + "deps": [ + "company", + "slime" + ] + }, + "flymake-php": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-php.git", + "sha256": "7b48b5cfaf9f430d21eb3e355f3a7cb613d1bac237c47636975815d4f427465a", + "rev": "93abe12d62b13f1d035a0df01e53e4bacdac2c66" + }, + "recipe": { + "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121104.1302", + "deps": [ + "flymake-easy" + ] + }, + "jade-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianc/jade-mode.git", + "sha256": "a1ea208906058e467379043b34324400ace1077f69b3bc46d75b2a6698f527d2", + "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" + }, + "recipe": { + "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150801.1144", + "deps": [] + }, + "cheatsheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/darksmile/cheatsheet.git", + "sha256": "b6f72d90c80752b2f05f4df78745b6ddeaea27076b31f49882aedbd5cc3a59ec", + "rev": "80e58c1783571e2907dfe25a32ae46ad3da1bcf1" + }, + "recipe": { + "sha256": "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.351", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "xquery-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mblakele/xquery-mode.git", + "sha256": "1b15136ee305cad064f7b249171228de45563ef21776a458c54d89554aeed725", + "rev": "ac0ca72ccd575952393804330c3efe3b2271c4e2" + }, + "recipe": { + "sha256": "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140121.1143", + "deps": [] + }, + "dakrone-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dakrone/dakrone-theme.git", + "sha256": "3e4ae035aab8370111205b5e45d6cd0988fd27102a4bfd5e80020b520f80a039", + "rev": "281ac9f9080a94bf9dada2f40cdba58e50f94235" + }, + "recipe": { + "sha256": "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140211.2245", + "deps": [] + }, + "smart-mode-line-powerline-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/smart-mode-line.git", + "sha256": "1ea483bce9c30c99248518c35001f6fa4bb13f9689198b4cd639ab9e2eb6a89e", + "rev": "4b3265ec3e442bd8c596b99cfd4ec73424c395ec" + }, + "recipe": { + "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.839", + "deps": [ + "emacs", + "powerline", + "smart-mode-line" + ] + }, + "signature": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/signature.git", + "sha256": "121d9e5fd85cf02ca485764f6224d11b4fe4ebed88ecdb36f123277fe1c999bc", + "rev": "c47df2e1189a84505f9224aa78e87b6c65d13d37" + }, + "recipe": { + "sha256": "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140730.1449", + "deps": [] + }, + "unfill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/unfill.git", + "sha256": "f8ea4ae43bb4568225ee26d52bacdb0cdd517bc6ccc72719299867b800036d78", + "rev": "d5f3dbaaaa871dc26bbc9e4bcd6deacac02a02d4" + }, + "recipe": { + "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131103.413", + "deps": [] + }, + "sonic-pi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/repl-electric/sonic-pi.el.git", + "sha256": "8ff8340b8d0ab651524c0fcb40448530841feb495d391eb0b664c8caa788cbe2", + "rev": "3d88a784bf7883ec56fbef5923c4e1b50d2b9b09" + }, + "recipe": { + "sha256": "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150919.530", + "deps": [ + "cl-lib", + "dash", + "emacs", + "osc" + ] + }, + "org-page": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kelvinh/org-page.git", + "sha256": "13f4b384f9e44a5af55e286f7791451457e55cb45dc419d1470c2effeace97ad", + "rev": "75859f2d7e05be5dd9899f765adbf2e2d434ba83" + }, + "recipe": { + "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150913.1933", + "deps": [ + "dash", + "ht", + "htmlize", + "mustache", + "org", + "simple-httpd" + ] + }, + "auto-complete-c-headers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/auto-complete-c-headers.git", + "sha256": "d3a65d244aa18661dacb2272f5f86ef6af97c759f7083af3640f1d78e928b3b0", + "rev": "52fef720c6f274ad8de52bef39a343421006c511" + }, + "recipe": { + "sha256": "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150911.2223", + "deps": [ + "auto-complete" + ] + }, + "grails-projectile-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yveszoundi/grails-projectile-mode.git", + "sha256": "24f302db5db0468a743b126d34a8d5e6e6eff374d05ce82a95e34190cb253e87", + "rev": "6cb3b7890ce869a911a7b1d5892a6eef7992c199" + }, + "recipe": { + "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141229.1329", + "deps": [ + "cl-lib", + "emacs", + "projectile" + ] + }, + "web-beautify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/web-beautify.git", + "sha256": "f4c3cf8429c4820c911d076b2a4d5fbfb964e2838e3dc3f0d676e56ec2cbc24f", + "rev": "be2b9a7f510e1719396ebeab9135bc64f0785b78" + }, + "recipe": { + "sha256": "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131118.426", + "deps": [] + }, + "inf-clojure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/inf-clojure.git", + "sha256": "ac96038ec0a97ea7f0bc8454af3ff45bf00f4748f9074440222dba04d7f45fee", + "rev": "f7948896f05e4e35a6aba97bd3c7e330f416e548" + }, + "recipe": { + "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.234", + "deps": [ + "clojure-mode", + "emacs" + ] + }, + "php-boris-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/php-boris-minor-mode.git", + "sha256": "0fb3bfbf7926c6706ea26f0768ea0b86b56958259e5ff05cd7f7a40d10de67f2", + "rev": "c70e176dd6545f2d42ca3427e87b469635616d8a" + }, + "recipe": { + "sha256": "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140209.1235", + "deps": [ + "highlight", + "php-boris" + ] + }, + "rcirc-alertify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/rcirc-alertify.git", + "sha256": "269aafba76835d0cba1e92314da4724a35e0e310beb5374c42287b16cc4f1b61", + "rev": "ea5cafc55893f375eccbe013d12dbaa94bf6e259" + }, + "recipe": { + "sha256": "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140406.2019", + "deps": [ + "alert" + ] + }, + "git-wip-timemachine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/itsjeyd/git-wip-timemachine.git", + "sha256": "c500243759a5354ae7a2e53ccb91002fec186000d3ca05423556ef794a568fc6", + "rev": "ed4c7931a5f5233bf3e358b1e81647d063526460" + }, + "recipe": { + "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150408.506", + "deps": [ + "s" + ] + }, + "shell-pop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyagi/shell-pop-el.git", + "sha256": "85f3f9f2b424025ab6f5af3f36d30c1b65f0a10e760444d96a7beba89ae3fe3b", + "rev": "4531d234ca471ed80458252cba0ed005a0720b27" + }, + "recipe": { + "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.830", + "deps": [ + "emacs" + ] + }, + "cider-decompile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/cider-decompile.git", + "sha256": "4c5d4a3241b14ab4a25b1f77553f115a1bba2b9b183b1c897a398a3a74319ef0", + "rev": "5d87035f3c3c14025e8f01c0c53d0ce2c8f56651" + }, + "recipe": { + "sha256": "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.2337", + "deps": [ + "cider", + "javap-mode" + ] + }, + "j-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zellio/j-mode.git", + "sha256": "710589fed69de40fd735eb9f0cfc1bf40d447cca00b596cdb73864e1e1ba95c4", + "rev": "caa55dfaae01d1875380929826952c2b3ef8a653" + }, + "recipe": { + "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140702.1009", + "deps": [] + }, + "persistent-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/persistent-scratch.git", + "sha256": "ef823eb46c4790edc8e61afc835a59419cf5196928e9ac21a95722f0464b15f9", + "rev": "52be8e41fe1e23a1f2b912fc119af06cc051bd28" + }, + "recipe": { + "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.1143", + "deps": [ + "emacs" + ] + }, + "map-regexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/map-regexp.git", + "sha256": "2c08cb7762b19d08e6ae7c11ec974cb691e0da44b47e4ef0abab91ccc6d4614e", + "rev": "b8e06284ec1c593d7d2bda5f35597a63de46333f" + }, + "recipe": { + "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130522.1603", + "deps": [ + "cl-lib" + ] + }, + "sauron": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/djcb/sauron.git", + "sha256": "0f4ce48bb57a4e5904ad005211eaccccafa1e86c46f3ea8e367c5fba20b99316", + "rev": "d7704fd9a0623d862f03f40588ac816a8877f308" + }, + "recipe": { + "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150614.246", + "deps": [] + }, + "ob-browser": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/ob-browser.git", + "sha256": "0c305b8c579872c6eb324c881223945231ec79454b2df258b927865ab6c9d4a1", + "rev": "9271453d28d0912093ab5f91807745ada69ada0c" + }, + "recipe": { + "sha256": "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.910", + "deps": [ + "org" + ] + }, + "scratch-palette": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/scratch-palette.git", + "sha256": "a285a388068e644e916846e07257b92eb1d28809e0c58dc24c82758a17ca6401", + "rev": "f6803b448079f4a81cc699cec7442ef543cd5818" + }, + "recipe": { + "sha256": "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150225.242", + "deps": [ + "popwin" + ] + }, + "ariadne": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/manzyuk/ariadne-el.git", + "sha256": "f0085977f1be7e1d00a781b2099fe8a71c67deed99c9e54568fa143398e3096e", + "rev": "6fe401c7f996bcbc2f685e7971324c6f5e5eaf15" + }, + "recipe": { + "sha256": "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.1111", + "deps": [ + "bert" + ] + }, + "company-ansible": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krzysztof-magosa/company-ansible.git", + "sha256": "2da17ef9067495b225c99c5034f0c1420a4d5fcc961727451dcdf64066001f20", + "rev": "cfe1c915f49d716f30eec654c54db761f662952c" + }, + "recipe": { + "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150901.450", + "deps": [ + "company", + "emacs" + ] + }, + "flycheck-ocaml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-ocaml.git", + "sha256": "58709877cd3eed59cc56cd6b265a21194ae4b47a1f3b706eac27e8c0d194adf6", + "rev": "e4412025f27850918762237fa80b33e285a63e7c" + }, + "recipe": { + "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.412", + "deps": [ + "emacs", + "flycheck", + "let-alist", + "merlin" + ] + }, + "eshell-z": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/eshell-z.git", + "sha256": "60669592b85874eae37c5d731a2a6de4f4bf5b5b5cb1234eac659db92b17d37e", + "rev": "5a1317a58d9761c200d0ad49dc4793dec9f9490f" + }, + "recipe": { + "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.2246", + "deps": [ + "cl-lib" + ] + }, + "fix-word": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/fix-word.git", + "sha256": "87cbb4b8b6739d3dc7f06e8fa6bcb08dc4c6595744b5130bf47d768ae86628b2", + "rev": "3e6aa7e3e2625efdac2c0f7d715959dabf01560f" + }, + "recipe": { + "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150716.802", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "celery": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/emacs-celery.git", + "sha256": "53cac21e25ff593a64ea9d7b32088ac9b7cd7e8d20c4c16f51dacfd237202842", + "rev": "5b5b1968fd258c444dc2372e989aab82830004c3" + }, + "recipe": { + "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150812.347", + "deps": [ + "dash-functional", + "deferred", + "emacs", + "s" + ] + }, + "lib-requires": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lib-requires.el", + "sha256": "1s6969kz6hpgjdm3xp18ik116nji43md7vbya600cmq48njk44nk" + }, + "recipe": { + "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1751", + "deps": [] + }, + "charmap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lateau/charmap.git", + "sha256": "86733a013abf430f73ac97dfd583ea55d91c9806b814cf6a91ca6acb88693633", + "rev": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2" + }, + "recipe": { + "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131019.2358", + "deps": [] + }, + "parsebib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/parsebib.git", + "sha256": "b4a61e2678a4055f78d9725ff12f8fab6c5e9f0fc04587575ab0652b3de42159", + "rev": "9a1f60bed2814dfb5cec2b92efb5951a4b465cce" + }, + "recipe": { + "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.432", + "deps": [ + "emacs" + ] + }, + "hindent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/hindent.git", + "sha256": "1755027326f98d2138a42d1337617be4296f3f08100ebf58ccc49643704d6af3", + "rev": "575a7a19f9c86b9699a6222072c79fe02da18c4c" + }, + "recipe": { + "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.224", + "deps": [ + "cl-lib" + ] + }, + "world-time-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-world-time-mode.git", + "sha256": "5102a8ec5d10ac544c58cd40a96db70822f9a432049afac61677599f49ed0044", + "rev": "ce7a3b45c87eb24cfe61eee453175d64f741d7cc" + }, + "recipe": { + "sha256": "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140627.307", + "deps": [] + }, + "sudden-death": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yewton/sudden-death.el.git", + "sha256": "4b7096f03ed34d11725b62f26f2dd6a7c1e389028ee3b069ecfbf1d0c9ef0780", + "rev": "beba6b4fb42b1e27575d3f722d23a0eb19666736" + }, + "recipe": { + "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140829.738", + "deps": [] + }, + "multifiles": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/multifiles.el.git", + "sha256": "b5504ab57618ee9a5b70f3e84389806327052fcdd6c259af5677ee4e742cb0e7", + "rev": "dddfe64b8e1c1cd1f9ccc1f03405477fc0d53897" + }, + "recipe": { + "sha256": "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130615.1633", + "deps": [] + }, + "remark-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/torgeir/remark-mode.el.git", + "sha256": "de9c6f786c0963f4e30ccaba4ab5d2ed331e50b3fc0b3aa79531e5aa2272738e", + "rev": "a7e22eaf17673bd5cbf2f80bdfb219c89c1ea74b" + }, + "recipe": { + "sha256": "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151004.1155", + "deps": [ + "markdown-mode" + ] + }, + "flatland-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gchp/flatland-emacs.git", + "sha256": "eefae66bf187442b75d4f4c95b19dc17f6072e84ccc19967fd842b1562a88832", + "rev": "b2c2df1fc20a3a23787644f91f8121d9353f9bf9" + }, + "recipe": { + "sha256": "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140805.505", + "deps": [] + }, + "jist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/jist.el.git", + "sha256": "d1aaf371711e217ba2ef48c6c504efeef18d0a2c3bf605d631e295be228535e2", + "rev": "9e0f37812eb5a215518d9b2beb089ef9e1c28950" + }, + "recipe": { + "sha256": "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.1318", + "deps": [ + "cl-lib", + "emacs", + "magit", + "pkg-info", + "request" + ] + }, + "groovy-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Groovy-Emacs-Modes/groovy-emacs-modes.git", + "sha256": "f06dee27122cb7756a5092497212be7f35e2e4e06d950b0f771b0b2fedff88c5", + "rev": "74f360ee1ad25755707a89bec9eeed571b6748d0" + }, + "recipe": { + "sha256": "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.154", + "deps": [] + }, + "redshank": { + "fetch": { + "tag": "fetchgit", + "url": "http://www.foldr.org/~michaelw/projects/redshank.git", + "sha256": "5547c5db0caa147ae2fa0099b9c58a8629b47bf4facb6c5cc72cee45e84be392", + "rev": "f98e68f532e622bcd464292ca4a9cf5fbea14ebb" + }, + "recipe": { + "sha256": "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120510.1430", + "deps": [] + }, + "simplenote2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alpha22jp/simplenote2.el.git", + "sha256": "fab470ba766a029fff743b1687e8c2ea361c10cf2cb6a2f3edd1dc3aa3ff31ac", + "rev": "2a6c539d98968837ec09d2754e9235ff278057a8" + }, + "recipe": { + "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150630.916", + "deps": [ + "request-deferred" + ] + }, + "pivotal-tracker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jxa/pivotal-tracker.git", + "sha256": "9ad2c6983ab31500ae47bad796cebfff2797b21d78393d4ae538329b66c67ce9", + "rev": "93f2b45b373bf6972dcc4b16814ef23e1a6c16f5" + }, + "recipe": { + "sha256": "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1350", + "deps": [] + }, + "cake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-cake.git", + "sha256": "ea8f3ad857b3397a2f70046ea4f35a306ae676b16fad09d7c9cf5593e92df200", + "rev": "a7c9f3bee71eb3865060123d4d98e5397c2f967e" + }, + "recipe": { + "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140603.2331", + "deps": [ + "anything", + "cake-inflector", + "historyf" + ] + }, + "realgud": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocky/emacs-dbgr.git", + "sha256": "605c2083247f540a5c020eeedc9310af2d2e1b56bce5f567a4f7143e337f8d6a", + "rev": "a216bf09123b48d06f8633c2b99db54818c72257" + }, + "recipe": { + "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.713", + "deps": [ + "list-utils", + "load-relative", + "loc-changes", + "test-simple" + ] + }, + "js2-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/js2-refactor.el.git", + "sha256": "75404b9b8a9856510931416c8b93c400979ee257b1e833c4ebb1e11439eecd4c", + "rev": "ac3da94a33b714d44d4f0adc670a829fdc522e34" + }, + "recipe": { + "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.707", + "deps": [ + "dash", + "js2-mode", + "multiple-cursors", + "s", + "yasnippet" + ] + }, + "ecb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alexott/ecb.git", + "sha256": "9b63eb0ed7c19cdbdf415675c0c5ed4658912a74138375d3be2442721ec15b59", + "rev": "071706b22efcfeb65da8381e317220d7f9d8cb54" + }, + "recipe": { + "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140215.314", + "deps": [] + }, + "meta-presenter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myTerminal/meta-presenter.git", + "sha256": "b4901d059a3eb88d11adf9fef628ea327fd41eb9fefbddefb85e563fa02a82f4", + "rev": "bfdbe68384466bf3eb991d05c7f371f0b52a382f" + }, + "recipe": { + "sha256": "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150501.610", + "deps": [] + }, + "kroman": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/kroman-el.git", + "sha256": "d9913350eaafe42d6cb8281704c8e789cb8f57711700f1a567f9f1db60ed5d85", + "rev": "90402b6ae40383e75d8ba97d66eee93eebf40f70" + }, + "recipe": { + "sha256": "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150827.1840", + "deps": [] + }, + "quickrun": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-quickrun.git", + "sha256": "4f4f953b07ee98234d1d931e15b8c3a1b4322aac4c23e506cc78f43ed72c64d2", + "rev": "fd9d372bcbb9b4ad52dcae782ca007e5aa7087fd" + }, + "recipe": { + "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.2352", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "enh-ruby-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenspider/enhanced-ruby-mode.git", + "sha256": "f211fb78fb211280d347e538d70425592303c4fb07a2e1800167c240650b6d15", + "rev": "73d949ab1de16a4d3f368cde94dd5403c0402ab4" + }, + "recipe": { + "sha256": "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.341", + "deps": [] + }, + "ukrainian-holidays": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/ukrainian-holidays.git", + "sha256": "9f53576e43ce71634a0daddc01f0b43d30c714652532baf89d90a69326237b0c", + "rev": "e52b0c92843e9f4d0415a7ba3b8559785497d23d" + }, + "recipe": { + "sha256": "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130720.849", + "deps": [] + }, + "rsense": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/rsense.git", + "sha256": "8d505fc69958d42de31f86b0be97120087cb54c156c91058d97354872c0e7976", + "rev": "8b5ee58318747ca1dde84ee41d48c4f50175cf35" + }, + "recipe": { + "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100510.2305", + "deps": [] + }, + "capture": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pashinin/capture.el.git", + "sha256": "2791ae00e04bd895c171cd53effe0f675d5a7d025ece013f43e917a8a5bdf1a8", + "rev": "1bb26060311da76767f70096218313fc93b0c806" + }, + "recipe": { + "sha256": "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130828.1144", + "deps": [] + }, + "ocodo-svg-modelines": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ocodo/ocodo-svg-modelines.git", + "sha256": "8838980eee6f6af0cb93a918073a7d601e6fd2fa3321c928717f7c6634adaf94", + "rev": "c7b0789a177219f117c4de5659ecfa8622958c40" + }, + "recipe": { + "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150516.919", + "deps": [ + "svg-mode-line-themes" + ] + }, + "jedi-core": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-jedi.git", + "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" + }, + "recipe": { + "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.905", + "deps": [ + "cl-lib", + "emacs", + "epc", + "python-environment" + ] + }, + "dim-autoload": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/dim-autoload.git", + "sha256": "daaabcff114b24356d94278a78b0a686063a3f7f662865e9137b2de6d57c812f", + "rev": "d68ef0d2f9204ffe0d521e2647e6d8f473588fd3" + }, + "recipe": { + "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150815.1032", + "deps": [] + }, + "sentence-highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sentence-highlight.el", + "sha256": "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k" + }, + "recipe": { + "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121026.950", + "deps": [] + }, + "pkgbuild-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juergenhoetzel/pkgbuild-mode.git", + "sha256": "a09c6accbdd437ec4b3066723cce656af09046f4d1f0e6515a4776deddb8fb1c", + "rev": "7369ab3c6b59cfdf2ecd2b32ad96ce006e766fa0" + }, + "recipe": { + "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151010.936", + "deps": [] + }, + "erc-youtube": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kidd/erc-youtube.el.git", + "sha256": "bcc84f8e0f6d8b185a967fb79a88357af925c3545e6e1f1526410d3a7a55044e", + "rev": "97054ba8475b442e2aa81e5a291f668b7f28697f" + }, + "recipe": { + "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150603.1636", + "deps": [] + }, + "roguel-ike": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stevenremot/roguel-ike.git", + "sha256": "87ce21c416a8f589770b8548106aabb48cdd654784f62db6241d23a39a493cc0", + "rev": "6d9322ad9d43d0c7465f125c8e08b222866e6923" + }, + "recipe": { + "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140227.929", + "deps": [ + "popup" + ] + }, + "memoize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacs-memoize.git", + "sha256": "fcf6811b90df7e05974fa72a4ab02966ca087de1596de77066181c515ba65c3a", + "rev": "b55eab0cb6ab05d941e07b8c01f1655c0cf1dd75" + }, + "recipe": { + "sha256": "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130421.1434", + "deps": [] + }, + "helm-words": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pronobis/helm-words.git", + "sha256": "f3c6eda1b4b08ff0ea5d3a9f6e5445bab929842ef92b30f4a86e53d5d826e8ee", + "rev": "637aa3a7e9cfd34e0127472c5b1f993a4da26185" + }, + "recipe": { + "sha256": "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150413.1518", + "deps": [] + }, + "name-this-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knl/name-this-color.el.git", + "sha256": "3d9cb5a99a184fa8081a9dccd5ba3403987925c86d908aaf0287448a56ed7c9b", + "rev": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa" + }, + "recipe": { + "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.1530", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "git-messenger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-git-messenger.git", + "sha256": "029a1b163e3df3ebd617a196c55ea2f2c232a25e46ab4752687f49d57e319953", + "rev": "7b16fdc9f6fd1a3b9c9f212b1633291c4c18fc9b" + }, + "recipe": { + "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150314.802", + "deps": [ + "cl-lib", + "popup" + ] + }, + "maven-test-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rranelli/maven-test-mode.git", + "sha256": "54bf2197f2bdca7f207bdf695a1a019625c1c37b90720bbf3a9b489f7aa334a0", + "rev": "a19151861df2ad8ae4880a2e7c86ddf848cb569a" + }, + "recipe": { + "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141219.2357", + "deps": [ + "emacs", + "s" + ] + }, + "rails-new": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/rails-new.git", + "sha256": "a6f61674734ff8a34e233a0d5d2152a4c290f976b33f3a5df657637b5e3aa5a5", + "rev": "b68055a99cde15f9d02ab36b8ad0ea7ab35b2283" + }, + "recipe": { + "sha256": "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141221.249", + "deps": [] + }, + "help-mode+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help-mode+.el", + "sha256": "1xnlb1sn52dzpwz2hx0wr34682cl83nar7qsacsn70z9h443a30j" + }, + "recipe": { + "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1616", + "deps": [] + }, + "nnir-est": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/nnir-est.git", + "sha256": "a1b7f575fac8784e6f630585dff870d1060cff40c688a6d26f09c5f90066fd3f", + "rev": "ba263fbd872fe05cfa6b3d815c0d98cdbe24b687" + }, + "recipe": { + "sha256": "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140301.802", + "deps": [] + }, + "discover-my-major": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/discover-my-major.git", + "sha256": "d5fa5d7c342c305586c9aabd7f840d8bba79f2dd42006e54b16ce138efc92f89", + "rev": "22130d8f16ef1bf7835d6204216c8c6b1fc8eb95" + }, + "recipe": { + "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151008.212", + "deps": [ + "makey" + ] + }, + "never-comment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/To1ne/never-comment.git", + "sha256": "7cda3a345f1b3fe5e2b15787cbdae530d3b2595e9a337a5aff6c25fbb784d032", + "rev": "74ded8f1e7f23240f5f6032d0451fb0a51733bc4" + }, + "recipe": { + "sha256": "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140104.1607", + "deps": [] + }, + "helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm.git", + "sha256": "da5c76e602f2f11c68ac027e5a67bed942faeebba337461a5663053fea18387f", + "rev": "b99615090efa622cba280fff0615dc7f269877fd" + }, + "recipe": { + "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1558", + "deps": [ + "async", + "cl-lib", + "emacs", + "helm-core" + ] + }, + "helm-flyspell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pronobis/helm-flyspell.git", + "sha256": "f60197147dff9668b91d0ed8cb78edfc42edc3a80243c2908d05fd1afc329320", + "rev": "a9ea896fd932fec15709b88ef8bf101dff261b2d" + }, + "recipe": { + "sha256": "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151026.1112", + "deps": [ + "helm" + ] + }, + "latex-preview-pane": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jsinglet/latex-preview-pane.git", + "sha256": "35f80f98058a99e90427b39c16173d7ff913186ec7e05df668c1b6b0ba12a71b", + "rev": "1a0539ab70eaf5dd31c2c94773dddd6f437fed41" + }, + "recipe": { + "sha256": "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.1503", + "deps": [] + }, + "pastelmac-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmastenbrook/pastelmac-theme-el.git", + "sha256": "fbaa77eb1c048c220b3a2d4d452704fc820a34c515f53b17a6b19dc0272544f3", + "rev": "bead21741e3f46f6506e8aef4469d4240a819389" + }, + "recipe": { + "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.2136", + "deps": [ + "emacs" + ] + }, + "omni-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-scratch.el.git", + "sha256": "a7f3b00a636e83a8c9b483cc565a7f18a923eb03ad04d91667659da155efd250", + "rev": "7e04d7f20ee383bf72dfdcfd642bf08e4b8ab973" + }, + "recipe": { + "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1059", + "deps": [] + }, + "company-auctex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alexeyr/company-auctex.git", + "sha256": "e54ae9c61cc4e8b3760437d5243ce11f60e1b7d537940c7f8386c21c7c7a7e56", + "rev": "780ba68b4154ecac4f20dbd4b1ba561ba40f248b" + }, + "recipe": { + "sha256": "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151102.843", + "deps": [ + "auctex", + "company", + "yasnippet" + ] + }, + "newlisp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kosh04/newlisp-mode.git", + "sha256": "b52f7f4c61be54848ff900597142db4a1957ec9a5809259818a69bc85d6acbfe", + "rev": "7f44e7c763bd16481e78bced5ff310b8113883e5" + }, + "recipe": { + "sha256": "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150120.1240", + "deps": [] + }, + "flycheck-hdevtools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-hdevtools.git", + "sha256": "3eb221580d55f199530e3fa89e7886f0279bdc1b4194bfc21816d5821b14f9d3", + "rev": "6997f8d033811b7a169052fa23c086fd8e904edb" + }, + "recipe": { + "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150329.523", + "deps": [ + "dash", + "flycheck" + ] + }, + "mellow-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-mellow-theme.git", + "sha256": "8d165468c7108d0b20b3ff733d52d91ed0bc338dddc232351966fe7c37e4342e", + "rev": "ab72898824af6452d0cefea16e49491e42b660d1" + }, + "recipe": { + "sha256": "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "org-fstree": { + "fetch": { + "tag": "fetchgit", + "url": "http://repo.or.cz/r/org-fstree.git", + "sha256": "35000fb42e317ec1a6e6c7b448bfdec7ecf65fd9f5ab4723062513c3a4acba79", + "rev": "24e305c6443be9f45198185772eecfddc390a9ce" + }, + "recipe": { + "sha256": "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090723.1019", + "deps": [] + }, + "el-sprunge": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/el-sprunge.git", + "sha256": "55859133e51dfa43eb89c7a671cd966750a710acc8fcadc61f457f7324ef4e41", + "rev": "37855ec60aeb4d565c49a4d711edc7341e9a22cb" + }, + "recipe": { + "sha256": "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140106.1939", + "deps": [ + "emacs", + "htmlize", + "web-server" + ] + }, + "4clojure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joshuarh/4clojure.el.git", + "sha256": "78769fe6a718d1643b363d3d272a2a36f5206d1b4dbcb3b1948539431e8bcbbb", + "rev": "3cdfd356c24cd3518397d29ae833f56a4d20b4ca" + }, + "recipe": { + "sha256": "1w9zxy6jwiln28cmdgkbbdfk3pdscqlfahrqi6lbgpjvkw9z44mb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131014.1707", + "deps": [ + "json", + "request" + ] + }, + "mustard-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-mustard-theme.git", + "sha256": "ee7158f086403aeab07ac0d643cc0c1fd56263493935f7a5792d6db6d782189c", + "rev": "33bc6e3a0e2abc5668afdb349bca7e8b5730582c" + }, + "recipe": { + "sha256": "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "blank-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/blank-mode.el", + "sha256": "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv" + }, + "recipe": { + "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.659", + "deps": [] + }, + "sly-company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/sly-company.git", + "sha256": "0c4511c2bfccde800c11fed5aa6c213ca73495ea891326414b3430ba58504cdf", + "rev": "21248bd852c9520ec27692f286c5f43b50892b12" + }, + "recipe": { + "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.222", + "deps": [ + "company", + "emacs", + "sly" + ] + }, + "ht": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/ht.el.git", + "sha256": "06df27b8f6bdc2e967224e3296cdf0672deb235e7e239a6bdabfb03cb7af8eb5", + "rev": "84b5b4404515ed3a3f6a85aacf2723302de851a4" + }, + "recipe": { + "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.1315", + "deps": [] + }, + "quelpa": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/quelpa/quelpa.git", + "sha256": "4991a1efcc94b010bf936fa5ca05d670e7ad4588012f742ff8b972804f983bb2", + "rev": "e011b4fa916a8b6057225f3e7ee6befc8928d443" + }, + "recipe": { + "sha256": "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.305", + "deps": [ + "emacs", + "package-build" + ] + }, + "erc-yt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yhvh/erc-yt.git", + "sha256": "e9a7bf3aa2f90e9161ad2426542cc6f82c91cda99938a8b2b6db53ad26199cb6", + "rev": "43e7d49325b17a3217a6ffb4a9daf75c5ff4e6f8" + }, + "recipe": { + "sha256": "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150426.749", + "deps": [ + "dash" + ] + }, + "org-webpage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/org-webpage.git", + "sha256": "119c35c604db42aa7f8791fb8fed233ff70bea63c5097662817192cb54a7ee09", + "rev": "944b46e74d0d753a30bfefbebbe533abe06d25f4" + }, + "recipe": { + "sha256": "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.15", + "deps": [ + "cl-lib", + "dash", + "ht", + "htmlize", + "mustache", + "org", + "web-server" + ] + }, + "elisp-slime-nav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/elisp-slime-nav.git", + "sha256": "fb29682ed4596c3c86dbd219f19636eaf63958646c558bef0353c4caa96b40a4", + "rev": "f6d241b11abbc4064e17e02dbd0bc6c61db256cc" + }, + "recipe": { + "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150805.1448", + "deps": [] + }, + "vlf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/vlfi.git", + "sha256": "28905e61d18364dad24c84cdb6e16f8b8629f1943246db810c99bd55f2b05450", + "rev": "4eaf763cadac62d7a74f7b2d2436d7793c8f7b43" + }, + "recipe": { + "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.918", + "deps": [] + }, + "xkcd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vibhavp/emacs-xkcd.git", + "sha256": "579d723ba238b4aafa064319d457698a5be9ed9579ae9c3c9a6e7eccce53a73d", + "rev": "8f0009f15926f37f2ea02471425ab6dbac00e50d" + }, + "recipe": { + "sha256": "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.2353", + "deps": [ + "json" + ] + }, + "github-notifier": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/github-notifier.el.git", + "sha256": "13cfa4c56479d1aaad3f3f12a8e559ad788020a0f428e3edc74f7c4e549f71fc", + "rev": "d3d8ee1711972872f660a3129430bcc2c1ec573a" + }, + "recipe": { + "sha256": "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.523", + "deps": [ + "emacs" + ] + }, + "easy-after-load": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pd/easy-after-load.git", + "sha256": "9a90a2db1832ad560d9ce278099636b3c6e7b12e366906cf4fdb789be0d9d8e4", + "rev": "f8e6e10725d80d3b7e8b1ca966de6190089d8f12" + }, + "recipe": { + "sha256": "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121224.2049", + "deps": [] + }, + "recover-buffers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tripleee/recover-buffers.git", + "sha256": "8261f36205282759cc5ce1a53360921ef6c78e025b0d00d9707479a61f49b274", + "rev": "a1db7f084977697081da3497628e3514e032b966" + }, + "recipe": { + "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150812.205", + "deps": [] + }, + "evil-args": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wcsmith/evil-args.git", + "sha256": "f8ab4dd53906d144dcd7f9b4ea8bff321e5835fef68bd105b1f464eb89e207da", + "rev": "2a88b4d19953a11227cc1e91973b92149116f44c" + }, + "recipe": { + "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140329.1629", + "deps": [ + "evil" + ] + }, + "smart-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/uk-ar/smart-region.git", + "sha256": "4e49d0263fb9abefe8916d00f980f63ff2137d3628876e5f24ae58ea1b4ba540", + "rev": "5a8017fd8e8dc3483865951c4942cab3f96f69f6" + }, + "recipe": { + "sha256": "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150903.903", + "deps": [ + "cl-lib", + "emacs", + "expand-region", + "multiple-cursors" + ] + }, + "color-theme-approximate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tungd/color-theme-approximate.git", + "sha256": "b8f31f58cc9ee29a016bfa2c3f608f03a5aaa423fa5cb7188c4c6afc35af1eac", + "rev": "f54301ca39bc5d2ffb000f233f8114184a3e7d71" + }, + "recipe": { + "sha256": "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140227.2236", + "deps": [] + }, + "framemove": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/framemove.el", + "sha256": "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7" + }, + "recipe": { + "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130328.633", + "deps": [] + }, + "real-auto-save": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chillaranand/real-auto-save.git", + "sha256": "821626e1340a05b49398b52b6f59096bbbe09f1bfb739c0a2ddae38af485f0cd", + "rev": "81bf61742ea553ccdee0e22d3abb43fcf07f82cf" + }, + "recipe": { + "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150701.1015", + "deps": [] + }, + "ebib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/ebib.git", + "sha256": "bc7d25e75c5a714dccf98bddba4bddd44b6b67b5f001579769610b2084df47d2", + "rev": "9ef4cb26f944bf6a9a0fb6054e5fc65f89270130" + }, + "recipe": { + "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.933", + "deps": [ + "dash", + "emacs", + "parsebib" + ] + }, + "db-pg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-db-pg.git", + "sha256": "0a99697dea53d2bdb5890086050e9961cf6579fa7d9629e044770c3a25c72097", + "rev": "7d5ab86b74b05fe003b3b434d4835f37f3f3eded" + }, + "recipe": { + "sha256": "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130131.1302", + "deps": [ + "db", + "pg" + ] + }, + "multiple-cursors": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/multiple-cursors.el.git", + "sha256": "0eea70a8598e6eea6073a53a881cfad0cb23cfa9d92f6bd922b72fa71c481226", + "rev": "a393384b3508e7d8d721e66d2bfb97fa7153dd4f" + }, + "recipe": { + "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1425", + "deps": [] + }, + "tss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-tss.git", + "sha256": "b1f5fd7e423503d67f2fdf3b21795ca97642051159551c585a20663678d8c090", + "rev": "81ac6351a2ae258fd0ebf916dae9bd5a179fefd0" + }, + "recipe": { + "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150913.908", + "deps": [ + "auto-complete", + "json-mode", + "log4e", + "yaxception" + ] + }, + "isearch+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/isearch+.el", + "sha256": "1cg5rvc16ljncini13fpwmzfhp3zy9rd1jvdd3jxpdkqzw07rnc6" + }, + "recipe": { + "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.941", + "deps": [] + }, + "ac-js2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ScottyB/ac-js2.git", + "sha256": "f3f45de22b0f9c55f0a0d203890465ed29ac29bb4a86c9c3fa576899c718c97a", + "rev": "721c482e1d4a08f4a29a74437257d573e8f69969" + }, + "recipe": { + "sha256": "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140906.642", + "deps": [ + "js2-mode", + "skewer-mode" + ] + }, + "turnip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kljohann/turnip.el.git", + "sha256": "0447850f0ff7a00029c466c2e5ecc58db4328a2b0fe3d60fb26d9b2e0426144e", + "rev": "2fd32562fc6fc1cda6d91aa939cfb29f9b16e9de" + }, + "recipe": { + "sha256": "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150309.129", + "deps": [ + "dash", + "s" + ] + }, + "soft-stone-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/soft-stone-theme.git", + "sha256": "5442437ac0759ff73da86bf3c92632e7b1cd1880bfa007f9af35390d1672150c", + "rev": "fb475514cfb02cf30ce358a61c48e46614344d48" + }, + "recipe": { + "sha256": "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140614.335", + "deps": [ + "emacs" + ] + }, + "el2markdown": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/el2markdown.git", + "sha256": "b00e0ac52648cd1dca0568849aedcc393951cf717b3a75724d2d867f4aefb40f", + "rev": "875648f9a65ed18fe71fc72872a0db70aab5253d" + }, + "recipe": { + "sha256": "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150516.1538", + "deps": [] + }, + "espuds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ecukes/espuds.git", + "sha256": "4f911064d51a6c3b2e83a9dbf1dee68d3d82c861462b0bd7b0025dac9a303f2b", + "rev": "1405972873339e056517217136de4ad3202d744a" + }, + "recipe": { + "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.959", + "deps": [ + "dash", + "f", + "s" + ] + }, + "nav-flash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/nav-flash.git", + "sha256": "ded55c914045522ee905087d7cf55ff898f865f4b580ad256b40ef6c84d4be87", + "rev": "53f5bc59e3f32c1192d15637d3979732dacb2c35" + }, + "recipe": { + "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "persp-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/projectile.git", + "sha256": "34999000476e13b4b4a88bbd2f56104836b73e50245a0d82a30e4ac8d8e1d0a3", + "rev": "5773d28036c81f44468da58402a32463b278ee1f" + }, + "recipe": { + "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150405.327", + "deps": [ + "cl-lib", + "perspective", + "projectile" + ] + }, + "osx-location": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/osx-location.git", + "sha256": "45887a5fb8868effa5ec922e8b6e2e6e1eae8ab8d5a20fc8070cbaa10d0de36d", + "rev": "110aee945b53ea550e4debe69bf3c077d940ec8c" + }, + "recipe": { + "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150613.417", + "deps": [] + }, + "objc-font-lock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/objc-font-lock.git", + "sha256": "13af9bb5cf13e6b49769de7f3a47e54a6838dd541ae78bdb1979a753aa0d0c8d", + "rev": "34b457d577f97ca94b8792d025f9a909c7610612" + }, + "recipe": { + "sha256": "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141021.1322", + "deps": [] + }, + "unify-opening": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/unify-opening.git", + "sha256": "a0cc3b3d75245449d11d248393559309a8128b325765c26065df04c6b4a9174b", + "rev": "2812e43029cab7183197ce5e3c9577856bfd22c5" + }, + "recipe": { + "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.1848", + "deps": [ + "emacs" + ] + }, + "visual-regexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/benma/visual-regexp.el.git", + "sha256": "e96b29c145ace240436688038906026fb673330af5898210282ac2ef03d08d13", + "rev": "58566c09e593dda9c3e3a348310a9bdc42dcb3d8" + }, + "recipe": { + "sha256": "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.719", + "deps": [ + "cl-lib" + ] + }, + "ghc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kazu-yamamoto/ghc-mod.git", + "sha256": "73f2a33d0b01bf2a743d93f05a8a4bc1f5a2c1df6552db501f3a5904854b0805", + "rev": "e7a186a1035a0b204360698229f974282c5388e2" + }, + "recipe": { + "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1843", + "deps": [ + "haskell-mode" + ] + }, + "orgtbl-show-header": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/orgtbl-show-header.git", + "sha256": "4a7b7c8bf5075a9c9eb0d3f1979ebda51c9c0c9af8ac831d879af1467ed04e86", + "rev": "f0f48ccc0f96d4aa2a676ff609d9dddd71748e6f" + }, + "recipe": { + "sha256": "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141023.337", + "deps": [] + }, + "inf-php": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/taksatou/inf-php.git", + "sha256": "f94b056d69870bed898876cf9b42d5bdf1bf4c579309a6c59e4dc8d749d2b6fc", + "rev": "4396022d6e169f0cf30cd9f68ca575d8b30c418a" + }, + "recipe": { + "sha256": "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130414.221", + "deps": [ + "php-mode" + ] + }, + "omniref": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dotemacs/omniref.el.git", + "sha256": "c8a61f314cb6cff452ae0857324a2da6dec342579c67f1cf34fea282a5bafbc3", + "rev": "0026e0472c7071e06cfdc24be91d3f4989ba8115" + }, + "recipe": { + "sha256": "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.221", + "deps": [] + }, + "flycheck-dialyzer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lbolla/emacs-flycheck-dialyzer.git", + "sha256": "b02b34f56785f9f3f85901696c181bfc9b636fbde0272128edf61e02b239ac95", + "rev": "3560214658cbdbd454f8b3d4f108cb51537afa36" + }, + "recipe": { + "sha256": "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151024.37", + "deps": [ + "flycheck" + ] + }, + "ninja-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/martine/ninja.git", + "sha256": "5968613797683b66c800fd6455d4c4cde42f1868b56952bb573157c218653c46", + "rev": "9a4eb587f3d3dcc6e6edd8d344a93b1c32d27dc7" + }, + "recipe": { + "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141203.2359", + "deps": [ + "emacs" + ] + }, + "el-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/el-x.git", + "sha256": "be3e1fd3fdecf88972e5a39699e0cc32be17d15d63c9be3066ff7335cc13b04b", + "rev": "e96541c1f32e0a3aca4ad0a0eb382bd898250163" + }, + "recipe": { + "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140111.1601", + "deps": [] + }, + "migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/migemo.git", + "sha256": "d99f69932cfe6c2ed5d795a6952d459c7585f8184e1af2807ae943abaaade4ab", + "rev": "c2240afa9afc0f003bb1d846710505e8e8e38169" + }, + "recipe": { + "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150412.941", + "deps": [ + "cl-lib" + ] + }, + "screenshot": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/screenshot.el", + "sha256": "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw" + }, + "recipe": { + "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120509.605", + "deps": [] + }, + "easy-repeat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/easy-repeat.el.git", + "sha256": "d83ec91b67193972bc80ec2c5303ac7e726132d4d4ebf47306b8671cb42d75a1", + "rev": "060f0e6801c82c40c06961dc0528a00e18947a8c" + }, + "recipe": { + "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150516.348", + "deps": [ + "emacs" + ] + }, + "python3-info": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dvhansen/python3-info.git", + "sha256": "b399f1740e39065c9b2ac2eb3b4605bb3c2a6d0e024d6727fd00473285250053", + "rev": "4530e180ded2ad64774e51742eece3e5ea00c5f5" + }, + "recipe": { + "sha256": "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.31", + "deps": [] + }, + "doremi-frm": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi-frm.el", + "sha256": "0p2wcyb1cqa6b0lvrc83wj6xwl8gnmfg12k1q36scq2y430qbmdc" + }, + "recipe": { + "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150727.1554", + "deps": [ + "doremi", + "faces+", + "frame-fns", + "hexrgb" + ] + }, + "helm-ad": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tnoda/helm-ad.git", + "sha256": "a4d37c5ad3ab20c9ca0735b1d414e09528defb86e9a59289c9f830536c7bae43", + "rev": "8ac044705d8620ee354a9cfa8cc1b865e83c0d55" + }, + "recipe": { + "sha256": "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.415", + "deps": [ + "dash", + "helm" + ] + }, + "pophint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-pophint.git", + "sha256": "cc7bc891f13ee8a2d21a65a83f36d94ed04665e1a76c4c241be5d76b9e64d41e", + "rev": "fc02a155e28ae27466bedabc756e75c936b01266" + }, + "recipe": { + "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150930.1234", + "deps": [ + "log4e", + "popup", + "yaxception" + ] + }, + "shell-command": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/shell-command.el", + "sha256": "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l" + }, + "recipe": { + "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090621.832", + "deps": [] + }, + "filesets+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/filesets+.el", + "sha256": "0vqmz5rac2fgry1mzg3hnp0w65x6va471f982g9i8fn70ws46ww2" + }, + "recipe": { + "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1602", + "deps": [] + }, + "find-file-in-project": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/find-file-in-project.git", + "sha256": "1b5c1d9e171bf90695d63bf53c00b6fa75ff93f8c2dbceae27ed7a48968dd20b", + "rev": "e44a77a0143a02b4eecc0b22aece598eaa8cc5ac" + }, + "recipe": { + "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.41", + "deps": [ + "emacs", + "swiper" + ] + }, + "paren-face": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/paren-face.git", + "sha256": "4e25aa2a939bc133f52f9511fab07c54b1e6902206c8cf404cbb11de5059f73d", + "rev": "09bb594f0c9614fb336fd8b5598215cf7c2d2c7e" + }, + "recipe": { + "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.2106", + "deps": [] + }, + "racket-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/greghendershott/racket-mode.git", + "sha256": "4806141fc2d889ef586f1bfd4ed4163f8b0cbbc369ea7e224cfc7a42298c5b96", + "rev": "f5f7ffea9b0be0d792b81d1ec1e2c16271a35cdd" + }, + "recipe": { + "sha256": "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.2152", + "deps": [ + "emacs", + "faceup", + "s" + ] + }, + "mozc-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d5884/mozc-popup.git", + "sha256": "b6ce050255161afdb66a333e3e17bad872e6052daae4aa5fc5f84c6d989c77d5", + "rev": "f0684b875a7427ec08f8df13939a486e5d5cf420" + }, + "recipe": { + "sha256": "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.1834", + "deps": [ + "mozc", + "popup" + ] + }, + "writeroom-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/writeroom-mode.git", + "sha256": "c0894df2c685e5e6e1060d664d44941c0498385b3089dff2ff17d9558d849f9f", + "rev": "57aeef137b04134fe05c7e701e42b05f3edbcc30" + }, + "recipe": { + "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.301", + "deps": [ + "emacs", + "visual-fill-column" + ] + }, + "use-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/use-package.git", + "sha256": "608676a52f8ab26b9861e2e796850b351d9a7ca711737bf26a124a61f1e76693", + "rev": "77a77c8b03044f0279e00cadd6a6d1a7ae97b016" + }, + "recipe": { + "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.1639", + "deps": [ + "bind-key", + "diminish" + ] + }, + "unicode-input": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/m00nlight/unicode-input", + "sha256": "0kzcg1wxi1z424jdn7pibk9zyfyi85kligav08sl1c2hdldzya4l", + "rev": "e76ccb549e6a" + }, + "recipe": { + "sha256": "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141219.120", + "deps": [] + }, + "highlight-defined": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-defined.git", + "sha256": "c2afb40b7c0bb4dea57570697bb6c265baf18f62aa51dad10e7bb1eda5ed20d0", + "rev": "243478cc204ab42d29805ed610961cbb260c1dfd" + }, + "recipe": { + "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141225.930", + "deps": [ + "emacs" + ] + }, + "org-present": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rlister/org-present.git", + "sha256": "d5d567cba724fe230ebc06f73a28385a1027bf35d00dd24ce0b69f7cde5335d9", + "rev": "1b519cfd5abf44bed307cac576dc9fd61eb2c35f" + }, + "recipe": { + "sha256": "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141109.1956", + "deps": [ + "org" + ] + }, + "vkill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/vkill.git", + "sha256": "6d3e151a06b53587a028e8e41bd03bbd18d8d7824831aa8c9ada0b686f216841", + "rev": "8ffe640ed03ddcc23db1c74c76d1acbf25250ad9" + }, + "recipe": { + "sha256": "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091203.1222", + "deps": [] + }, + "spacemacs-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nashamri/spacemacs-theme.git", + "sha256": "76aaf6e9fb5e4330a09aaca786a3a2890993d37eaec6d03d6af9e3c26f79e56d", + "rev": "febe56c3e56757b149eac0536c087259782d2345" + }, + "recipe": { + "sha256": "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.848", + "deps": [] + }, + "historyf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-historyf.git", + "sha256": "055ac1ab1e38aa40aac059b32500e2a55754bf7c639b6962a80f7f41034b84f8", + "rev": "66590519a02816cde8f442032fb144f3c38ebc6e" + }, + "recipe": { + "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.1959", + "deps": [] + }, + "dired-narrow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1141", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "skype": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-skype.git", + "sha256": "dda5f1947c82c65e9cc84ef76fc80f1f205b9763fd0915981a175a411c3bf23f", + "rev": "c10f96d1d105acee8a9a9804652bf6a813591da4" + }, + "recipe": { + "sha256": "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131001.2318", + "deps": [] + }, + "flymake-rust": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joaoxsouls/flymake-rust.git", + "sha256": "9b2945f59d584dee5f65b660262d1c808a1b5b8e47d7846a85330e04e11eabe3", + "rev": "72ec92c261670b7384ee2593d0f1946ea29f429a" + }, + "recipe": { + "sha256": "080cvgl2cg08kyvmgg080zqb6k6bngga3m5lfwb2dpmi1bajywc1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141004.1752", + "deps": [ + "flymake-easy" + ] + }, + "js-doc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/js-doc.git", + "sha256": "0fd507e941bf24942c98db6f39cd54b568daf0c8f5eb9d25a067071ec3f152b4", + "rev": "cf9b5292b7fca655bafb87bd55662edcf842d5b6" + }, + "recipe": { + "sha256": "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131215.719", + "deps": [] + }, + "ess-smart-underscore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/ess-smart-underscore.el.git", + "sha256": "6507a3af49e1c0c5851cea381d5ed7f82bdca4bcb44743fd234ee30b304aaa07", + "rev": "f3bbee01754888452232b337173b57c6c266de49" + }, + "recipe": { + "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131229.2051", + "deps": [ + "ess" + ] + }, + "edbi-database-url": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/edbi-database-url.git", + "sha256": "653f834e5296bb0edc43c34f8c4d7499326825f31c75847d59aeb5801815b6cf", + "rev": "08b833584460ddfd4d0d76e5b159625dde684bcf" + }, + "recipe": { + "sha256": "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150126.603", + "deps": [ + "edbi", + "emacs" + ] + }, + "geeknote": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/avendael/emacs-geeknote.git", + "sha256": "f871883dc71beeac06bc5fda5dbd349a9d0e23c9326e0da9739ab530527d6593", + "rev": "e0d25cddc35e9a0f5986a04df2c3d11f78dd3ad9" + }, + "recipe": { + "sha256": "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.1015", + "deps": [ + "emacs" + ] + }, + "autofit-frame": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/autofit-frame.el", + "sha256": "14iajfdf59lc9ik6spv4sq3v0ji1dmhfl1zwhcz2bkypxlbg1v3s" + }, + "recipe": { + "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1508", + "deps": [ + "fit-frame" + ] + }, + "winpoint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/winpoint.git", + "sha256": "9e17a401021a83ae1b1abbca82bf5744911e3e600b89a59597e7bd6a5bdc2be3", + "rev": "e6050093c076308184566fa1d1012423d6934773" + }, + "recipe": { + "sha256": "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131023.1213", + "deps": [] + }, + "vala-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/vala-mode.git", + "sha256": "84f0194fe9e4394026fe489d6f86faff17ff59336ee81b64408773cd50237a83", + "rev": "fb2871a4492d75d03d72e60474919ab89adb267b" + }, + "recipe": { + "sha256": "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150324.1725", + "deps": [] + }, + "pinot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-pinot-search.git", + "sha256": "107f25fae7826e4eee1cf1798f02fcd2e69fc7dee7ddb589252ab2eb4a0e83f1", + "rev": "67fda555a155b22bb2ce44ba618b4bd6fc5f144a" + }, + "recipe": { + "sha256": "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140211.1426", + "deps": [] + }, + "mmm-jinja2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/beardedprojamz/mmm-jinja2.git", + "sha256": "7ba5e9133c4da4a7f63292ed4dae549ae288c1d651a0fea6bf139c8fd3158cd1", + "rev": "0ecd7fd239fc096495d903b5f1bafac83515acef" + }, + "recipe": { + "sha256": "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150904.1334", + "deps": [ + "mmm-mode" + ] + }, + "tronesque-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aurelienbottazini/tronesque.git", + "sha256": "baffc38962b2d7872b40717693919855c8deedbca78700860671493d3b52668a", + "rev": "42093c08a50c860601c364c8a746c803458c10ba" + }, + "recipe": { + "sha256": "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150125.441", + "deps": [] + }, + "sensitive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/timvisher/sensitive.el.git", + "sha256": "c3867e6114a4d9ad757aa94929f64869e39a6ab4bdd6255280de88591873923c", + "rev": "7f2c77811e983234e1a93055d78cc4480ae807c3" + }, + "recipe": { + "sha256": "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131015.835", + "deps": [ + "emacs", + "sequences" + ] + }, + "dark-souls": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomjakubowski/dark-souls.el.git", + "sha256": "99285e21815815686ad20b23305bd24e427de34a59cf33573b20d82481141ef0", + "rev": "94122b1215423e58dcf18584a2bd022029d54d4b" + }, + "recipe": { + "sha256": "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140314.628", + "deps": [] + }, + "narrowed-page-navigation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/narrowed-page-navigation.git", + "sha256": "2ad758a65a6aefe32afd4d81f085f34819321ab851978986cb513e5bb64ab3d3", + "rev": "b215adbac4873f56fbab65772062f0f5be8058a1" + }, + "recipe": { + "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.2319", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "thingopt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/thingopt-el.git", + "sha256": "26f3866b02c312fabdb089b34b73ce09af7cba61ee5a4c6934a35abcc7cabf46", + "rev": "6a50f23faa764c5f6200c0253c606b0b4e5226f8" + }, + "recipe": { + "sha256": "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.723", + "deps": [] + }, + "broadcast": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/killdash9/broadcast.el.git", + "sha256": "b23698de17ce14481eb0ac9bac4aeb28cbfcf680ceb8378b19c147d67a4ecb70", + "rev": "f6f9cd2e0e3f8c31d6b8e7446c27eb0e50b25f16" + }, + "recipe": { + "sha256": "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.2012", + "deps": [ + "emacs" + ] + }, + "lxc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-lxc.git", + "sha256": "38e1c2e21a873af609acb74630a203c9f1465593190bb8e4bfde7b4223980f24", + "rev": "88bed56c954d1edd9ff5ce0ced2c02dcf9f71835" + }, + "recipe": { + "sha256": "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140410.1522", + "deps": [] + }, + "conkeror-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/conkeror-minor-mode.git", + "sha256": "1daa70ef6be34ddadcd1f2d1d952940691b20875dc50a126949c02bb42c7e36b", + "rev": "476e81c27b056e21c192391fe674a2bf875466b0" + }, + "recipe": { + "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150114.1004", + "deps": [] + }, + "pycarddavel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/pycarddavel.git", + "sha256": "5e0a865e6dda8a314685cc2cdc69a37e4ddc57a144492888bf05ef8ca06a9e91", + "rev": "a6d81ee4eb8309cd82f6082aeca68c5a015702a3" + }, + "recipe": { + "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150831.716", + "deps": [ + "emacs", + "helm" + ] + }, + "org-jira": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/baohaojun/org-jira.git", + "sha256": "b7d3b1278fc796b8d2b2611f8a5d807bc9db481d52ad3d87e492c0ef2746ae2c", + "rev": "eb4f3012d64bcab0c28491a26eac085ccae5bf78" + }, + "recipe": { + "sha256": "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150911.758", + "deps": [] + }, + "flycheck-mercury": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-mercury.git", + "sha256": "7fd4ceb23507d70aba19e110d62afb2aae60dada358928033dd50a149e15c7f0", + "rev": "fa9e433a0a912f0fae9e4dec9ea616ef99fcf861" + }, + "recipe": { + "sha256": "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.134", + "deps": [ + "dash", + "flycheck", + "s" + ] + }, + "chatwork": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ataka/chatwork.git", + "sha256": "b4f0b17b28bcb45df20342edcda008b7306579696170b140e6ef97e0de3b7c8b", + "rev": "7a1def04735423d47e058a8137e859391a6aaf7e" + }, + "recipe": { + "sha256": "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.2148", + "deps": [] + }, + "bookmark+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/bookmark+.el", + "sha256": "1qp84qzywc9nzb8n6j6cl99g7z88355ypw2fr4vpwy6n863a4b7l" + }, + "recipe": { + "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.1047", + "deps": [] + }, + "ert-expectations": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ert-expectations.el", + "sha256": "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7" + }, + "recipe": { + "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "orgtbl-join": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tbanel/orgtbljoin.git", + "sha256": "7a4ccb997f298a005e626e94181fadfd35d4706d5d85a8e6c0a56343c49df5fc", + "rev": "ccf5e0d96e053dc289da39a048715fcf36835ff2" + }, + "recipe": { + "sha256": "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150121.1646", + "deps": [ + "cl-lib" + ] + }, + "sclang-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ptrv/sclang-snippets.git", + "sha256": "f0c82d7bd2fda25e1651f5b7cf2b5dd406b5436f9c9f1c4d75155c235ba56b38", + "rev": "c840a416b96f83bdd70491e3d1fbe2f1ae8b3f58" + }, + "recipe": { + "sha256": "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130513.251", + "deps": [ + "yasnippet" + ] + }, + "multi-eshell": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/multi-eshell.el", + "sha256": "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl" + }, + "recipe": { + "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120608.1335", + "deps": [] + }, + "disaster": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jart/disaster.git", + "sha256": "8e8b4df8e4588398d775c33f14e6450c4c7c4aa68483bfa8b40708a11f0e1fb8", + "rev": "8d8fc67af5b3d876b0056562ece0478e6e2367f0" + }, + "recipe": { + "sha256": "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130509.1255", + "deps": [] + }, + "emoji-cheat-sheet-plus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/emacs-emoji-cheat-sheet-plus.git", + "sha256": "b37b411b274dae0044b547b6262c69d59c023de5c2a8133d4adbdedd415567e6", + "rev": "96a003127d646a2683d81ca906a17eace0a6413e" + }, + "recipe": { + "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150617.831", + "deps": [ + "emacs", + "helm" + ] + }, + "helm-proc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/markus1189/helm-proc.git", + "sha256": "469fb2f46f3d509228989689b260f4a0446d6be330e6d62f351884b904bbc168", + "rev": "76fee002caa1c83809f4d3f7b30fa672dcb36937" + }, + "recipe": { + "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140504.357", + "deps": [ + "helm" + ] + }, + "minimap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dustinlacewell/emacs-minimap.git", + "sha256": "f3b5cb2954cd488010af775ca96cf5263c9ff841405d81b31c429d46cd5a2569", + "rev": "be119f9b9c321c0045b01d940e495f16f2ea4f5c" + }, + "recipe": { + "sha256": "1gnvakp71l25r48bx1n2j33dq8q1lc7ff1j4fcnnvblhh3rsra96", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.1815", + "deps": [] + }, + "evil-lisp-state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-lisp-state.git", + "sha256": "e4a91b18f74749aa993f8ee37339a413cd62baee01e7f61b46facaf5d85916c7", + "rev": "f4da21900563f4ac1abf79f3fe73eaf1edcd633d" + }, + "recipe": { + "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.924", + "deps": [ + "bind-map", + "evil", + "smartparens" + ] + }, + "gitolite-clone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/IvanMalison/gitolite-clone.git", + "sha256": "c1eb3c46f41d04570f463ca3e5c3004020472504446b202d1262c8d72470b731", + "rev": "36e8dbc2906b7bfce382db64211d982c9719ab59" + }, + "recipe": { + "sha256": "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150819.839", + "deps": [ + "dash", + "emacs", + "pcache", + "s" + ] + }, + "helm-spotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/helm-spotify.git", + "sha256": "13df5bdffb8533943bc5d29974c50765e8963cdab19d01e7d3e4a812a5015698", + "rev": "a1a8275a4769221f7df9a67ed9a028fecbdc29ca" + }, + "recipe": { + "sha256": "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131014.1621", + "deps": [ + "helm", + "multi" + ] + }, + "linphone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zabbal/emacs-linphone.git", + "sha256": "9620b6bb636a12db7ad590c0f1a2d8ddef4ea02d2fd5ca99dd10a49f8630db07", + "rev": "99af3db941b7f4e5272bb48bff96c1ce4ceac302" + }, + "recipe": { + "sha256": "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130524.609", + "deps": [] + }, + "popwin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/popwin-el.git", + "sha256": "fae0e823054c93634d9c9b066ee34b2527057ba6e329670b4b8c68f8725bd718", + "rev": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304" + }, + "recipe": { + "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.800", + "deps": [] + }, + "py-isort": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/py-isort.el.git", + "sha256": "9811dcb72ebdcc395c509b4cf461e43c428bda95839c844198983979c4bd9d3e", + "rev": "cfbb576784fe4501909c15299607ce2a2d0bf164" + }, + "recipe": { + "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150422.1039", + "deps": [] + }, + "theme-looper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myTerminal/theme-looper.git", + "sha256": "b266e41896ab8836e6ea93184178b90fbc613aab9ae7bd6755bd7896bfaaa4cd", + "rev": "41c15ae98f9406b7932974318a2eada3668a88e7" + }, + "recipe": { + "sha256": "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150723.1304", + "deps": [ + "cl-lib" + ] + }, + "org-octopress": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshinari-nomura/org-octopress.git", + "sha256": "991bbb3008f40605c38fdf613b626369b480d4b0806a4fd425d78fbb7fd8528c", + "rev": "e04d55c3f4bb88e5661ee136cb3a55f998dca931" + }, + "recipe": { + "sha256": "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150826.616", + "deps": [ + "ctable", + "org", + "orglue" + ] + }, + "django-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myfreeweb/django-mode.git", + "sha256": "09eae94d0931430a983e187f66c52a3d2e27ba27da36d685532af0ae00349956", + "rev": "3d82a62a7faeb2c124ac4c109e075f581c175508" + }, + "recipe": { + "sha256": "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150207.717", + "deps": [] + }, + "mobdebug-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/deftsp/mobdebug-mode.git", + "sha256": "224959c8146ef3a4edbabfd2887039fdc1ae99f4cd8799871c76bf7b02d19cd2", + "rev": "e1d483bc4e341c762bc5c0a8c52306a8d01ea0da" + }, + "recipe": { + "sha256": "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140109.2146", + "deps": [ + "emacs", + "lua-mode" + ] + }, + "paredit": { + "fetch": { + "tag": "fetchgit", + "url": "http://mumble.net/~campbell/git/paredit.git", + "sha256": "34dd7d8c07c697b54ea943566e6967012f7366d6f5a21e31e3d768716bc4928f", + "rev": "9a696fdcce87c9d9eec4569a9929d0300ac6ae5c" + }, + "recipe": { + "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150217.913", + "deps": [] + }, + "gh": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/gh.el.git", + "sha256": "c4e24c5352052cce996ddc3d24510a437633c1c63f1797548f743bc52f193e96", + "rev": "644c0d24af430fdbc9fc90e028fca3a054333025" + }, + "recipe": { + "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.1048", + "deps": [ + "emacs", + "logito", + "pcache" + ] + }, + "cider-profile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thunknyc/nrepl-profile.git", + "sha256": "bcd1427312dc30cfc69c01ab13a6799525f1a38898f144a19e6b1bc040a42bfc", + "rev": "9aa7e404f53f5136ac8d15301ce8ca2924785cb3" + }, + "recipe": { + "sha256": "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141120.825", + "deps": [ + "cider" + ] + }, + "simp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/re5et/simp.git", + "sha256": "4e2dfe90d639614de77397b63137f9e8938b3f5838cdc8af81ad774b96ff0ad5", + "rev": "334b20287b3160f77e25c8e0ee2a73dd41fbe0ab" + }, + "recipe": { + "sha256": "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150427.1132", + "deps": [] + }, + "org-grep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/org-grep.git", + "sha256": "2c0186a6fd2f7b33d6b4ab2f1d08a75365b48165b5e113cee7b68641f4c75c82", + "rev": "5bdd04c0f53b8a3d656f36ea17bba3df7f0cb684" + }, + "recipe": { + "sha256": "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.629", + "deps": [ + "cl-lib" + ] + }, + "minimal-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ikame/minimal-theme.git", + "sha256": "bf52c0531516d1956fa41d371286e7ab0f0aea275e3f92cb87fd2fcba7f8c1c7", + "rev": "2cc688c1705eeb77fe1deeea35bfce378081f238" + }, + "recipe": { + "sha256": "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140409.1801", + "deps": [] + }, + "lispy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/lispy.git", + "sha256": "953f6425ca249ed258360f3775b2aec961ef539238f2b0f52169db7356cd8431", + "rev": "9479a0214656ea2cff5c59d52ab24ced4b09a765" + }, + "recipe": { + "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.437", + "deps": [ + "ace-window", + "emacs", + "iedit", + "swiper" + ] + }, + "bpe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/bpe.git", + "sha256": "e80c99d998ece862eb5b143dbe143d4b29eca0f15839bc5ebe94baf0ff08c6c8", + "rev": "7b5b25f83506e6c9f4075d3803fa32404943a189" + }, + "recipe": { + "sha256": "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141228.1605", + "deps": [ + "emacs" + ] + }, + "sphinx-frontend": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kostafey/sphinx-frontend.git", + "sha256": "3c977e2a18ff1af362296077380e6695a6e9ee2fe548fccffbe7dd7bce21d7d5", + "rev": "a46e81ce65fd24c03acab9311b162cad21343744" + }, + "recipe": { + "sha256": "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.412", + "deps": [] + }, + "request-deferred": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-request.git", + "sha256": "d28de83f8390b8b30d000631e89ae6a8b2b25f30507ee01fae2bb67f2b9d69af", + "rev": "adf7de452f9914406bfb693541f1d280093c4efd" + }, + "recipe": { + "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130526.1215", + "deps": [ + "deferred", + "request" + ] + }, + "railscasts-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mikenichols/railscasts-theme.git", + "sha256": "b4a367d543fa131c277f1e80a9766e2247bda494149e55ce684cd1ca14cdaeb9", + "rev": "1340c3f6c2717761cab95617cf8dcbd962b1095b" + }, + "recipe": { + "sha256": "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150219.925", + "deps": [] + }, + "second-sel": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/second-sel.el", + "sha256": "0ar60sqzlyrhvlg0mxfbc8c824lqglq07gf8lccjabnpwilz3ksd" + }, + "recipe": { + "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1846", + "deps": [] + }, + "on-parens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/willghatch/emacs-on-parens.git", + "sha256": "de18990058fe6e7bb53f3cf6171057dc08aefaa26a1df930e36a0597775b2698", + "rev": "16a145bf73550d5000ffbc2725c541a8458d0d3c" + }, + "recipe": { + "sha256": "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.1706", + "deps": [ + "dash", + "emacs", + "evil", + "smartparens" + ] + }, + "ace-flyspell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/ace-flyspell.git", + "sha256": "f2e7dbc47fad1f9d6c98c5f37233fce5b243c9aeb9405eba92c02af7570352d7", + "rev": "76c255d91c86b57a07cc7660450e37107d73505f" + }, + "recipe": { + "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150523.1315", + "deps": [ + "ace-jump-mode" + ] + }, + "list-unicode-display": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/list-unicode-display.git", + "sha256": "9cabc1843adc47260f747119a772c0747b1542509ac3ee86ad04228d5623d616", + "rev": "59770cf3572bd36c3e9ba044846dc420c0dca09b" + }, + "recipe": { + "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150219.301", + "deps": [ + "cl-lib" + ] + }, + "import-popwin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-import-popwin.git", + "sha256": "3c80d5bde60376a0288f8114b70cde44052255e85112bf5441ef88e5386f9a79", + "rev": "34c3b34ffcadafea71600acb8f4e5ba385e6da19" + }, + "recipe": { + "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150716.433", + "deps": [ + "cl-lib", + "popwin" + ] + }, + "company-tern": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/company-tern.git", + "sha256": "a42f037a7b9c85d4b3078eb7d861b5ff65742c354ab2e2f3e99e49877a414273", + "rev": "bd358af7c1492391ea39d35672ac12f8587ade21" + }, + "recipe": { + "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150525.416", + "deps": [ + "cl-lib", + "company", + "dash", + "dash-functional", + "s", + "tern" + ] + }, + "lit-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HectorAE/lit-mode.git", + "sha256": "8d8763461bf259d7b73e787c061d0208b2a49ded5f5fe6db0642b6f26c9c2057", + "rev": "c61c403afc8333a5649c5421ab1a6341dc1c7d92" + }, + "recipe": { + "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141123.1136", + "deps": [] + }, + "w32-browser": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/w32-browser.el", + "sha256": "1cpy3c0aj265wda9bz6b88i73mr9xi8gm1cp0q72ikhz43kszihx" + }, + "recipe": { + "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1905", + "deps": [] + }, + "miniedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/miniedit.git", + "sha256": "7881377b008565aab55a6b080b7256f8e7163e6e511c024ab61278fa4cfaa0a0", + "rev": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3" + }, + "recipe": { + "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100419.1245", + "deps": [] + }, + "magit-gh-pulls": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/magit-gh-pulls.git", + "sha256": "6575f8dc757543ca5b7a1afa3806e0c1f5e81ecdb14163ffd019556a507ea40e", + "rev": "728819217c697b4eed996eb14261a8c7c3388df7" + }, + "recipe": { + "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1243", + "deps": [ + "emacs", + "gh", + "magit", + "pcache", + "s" + ] + }, + "pcre2el": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joddie/pcre2el.git", + "sha256": "98508dd642149a5a2a6853a204bee1648556f671fae3bcd475b3ffc5f177c364", + "rev": "57ee828d07953329fd85ff85d6a4f27a0ce512a1" + }, + "recipe": { + "sha256": "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.434", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "highlight-current-line": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-current-line.el", + "sha256": "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c" + }, + "recipe": { + "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20051013.1256", + "deps": [] + }, + "znc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sshirokov/ZNC.el.git", + "sha256": "5d577dc03c3c4de11cf5ee24936b18855446fcee8f8daac348291a3c172603d5", + "rev": "94c8e4cdcfb51b75d5f95cb51ce21c6274325e19" + }, + "recipe": { + "sha256": "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140722.1621", + "deps": [ + "cl-lib", + "erc" + ] + }, + "window+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/window+.el", + "sha256": "1mq8nrcypfm8na1qg0dykp6r1mfraix2jp1xc0lkx4wn620mp9cz" + }, + "recipe": { + "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1911", + "deps": [] + }, + "dired-open": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150819.1148", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "firestarter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/firestarter.git", + "sha256": "a5440aa9844cb4da97f0cae46f74f405c24e1ddee76214afb47bead50bad1969", + "rev": "4b7428477980e12578ebbbb121115696b352d6b2" + }, + "recipe": { + "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.815", + "deps": [] + }, + "adoc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sensorflo/adoc-mode.git", + "sha256": "dc3d45e913c6a541f6c5424ef9728a295bcf9c7fd186a9c4b0d926415dd967fb", + "rev": "168ffa3f8efc3a635cc8f9422b7117a3a99af804" + }, + "recipe": { + "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1114", + "deps": [ + "markup-faces" + ] + }, + "racer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/racer-rust/emacs-racer.git", + "sha256": "224e9d4be82197d5947a64962d80d14850f7d5b0775aee8b225c00f3d1b231f9", + "rev": "637e01ba74c7ffda3c37d3bff13d870a1899fecd" + }, + "recipe": { + "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.1916", + "deps": [ + "dash", + "emacs", + "rust-mode", + "s" + ] + }, + "hamlet-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lightquake/hamlet-mode.git", + "sha256": "4673ebc8927be06d3d328a4fb44844d76fdf336548acb79c9f3a6da1c3ba59da", + "rev": "7362b955e556a3d007fa06945a27e5b99349527d" + }, + "recipe": { + "sha256": "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131208.124", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "simplezen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/simplezen.el.git", + "sha256": "7eeb928c66c04e05be9b03d3709be8013c01d530c7b8f0319c3e2f525970e71d", + "rev": "119fdf2c6890a0c56045ae72cf4fce0071a81481" + }, + "recipe": { + "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130421.500", + "deps": [ + "dash", + "s" + ] + }, + "geiser": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jaor/geiser.git", + "sha256": "64c48eb1c4af3b93e2c134691f7d7f3eadec174f90e02a785c6d5fda9016cf89", + "rev": "d9f6fa2e7458905aa601805352d7a7d9e1037570" + }, + "recipe": { + "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.2122", + "deps": [] + }, + "tup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/tup-mode.git", + "sha256": "f5db34da14c97f296961f00839fe7369241d1701f2fba803b97bf0c5f74f2b78", + "rev": "bcc100c6485f1c81fdcd1215dfc6c41a81c215c8" + }, + "recipe": { + "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140410.1114", + "deps": [] + }, + "voca-builder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yitang/voca-builder.git", + "sha256": "e56b26d7fd4a35befe4e1e6ff021e07d46deef9d36646d5e6ee9c535bc87336c", + "rev": "cd74c13e005e33ab125d43233b1267a8819b0abb" + }, + "recipe": { + "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150625.1333", + "deps": [] + }, + "replace+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/replace+.el", + "sha256": "0hma5mb2r33yfdlwb1ls1gjnqps00sri6q0hkksngvz67hka9mx4" + }, + "recipe": { + "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150723.833", + "deps": [] + }, + "pager-default-keybindings": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/pager-default-keybindings.git", + "sha256": "15af81dd529eabfafab29eb20ef6185c8fd828a02ef05688d4c8f2b491c6ba86", + "rev": "dbbd49c2ac5906d1dabf9e9c832bfebc1ab405b3" + }, + "recipe": { + "sha256": "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130719.1557", + "deps": [ + "pager" + ] + }, + "zotelo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vitoshka/zotelo.git", + "sha256": "3bd21c9241e540e4e28dbc38c75e60bd897e4573d8b8198f2c78fa14912ed999", + "rev": "91c8309da1f293341ba86f29fa0a28dee5cabd93" + }, + "recipe": { + "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.541", + "deps": [ + "cl-lib" + ] + }, + "material-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cpaulik/emacs-material-theme.git", + "sha256": "94d38adf5d1cfd3d45a33231ab4405f2da7b01f5220c7b5924ddf886e59af8ee", + "rev": "68a2e4d9f09dc3a45c765edb271c3460af885de0" + }, + "recipe": { + "sha256": "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.225", + "deps": [ + "emacs" + ] + }, + "helm-dash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/areina/helm-dash.git", + "sha256": "1173196e72b346f6c8ccad84aaf2ae9afa7641e4d2d009124d6aee642e81e1b3", + "rev": "a0f5d6539da873cd0c51d8ef714930c970a66aa0" + }, + "recipe": { + "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1347", + "deps": [ + "cl-lib", + "helm" + ] + }, + "vcomp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/vcomp.git", + "sha256": "347f00aae82976a97c101aab7610f11656208a681f368b4a1c5fb51b9811ff3b", + "rev": "092ef48a78e950c0576269d889be6caf9f6e61c5" + }, + "recipe": { + "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140906.1708", + "deps": [] + }, + "togetherly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/togetherly.git", + "sha256": "261d05a1f1c81acf56bb4112b4b512c117337d513cf239bf3640885a0d7254b9", + "rev": "9d655661984f7d62e9d6e0e9d47ae7ca8c4f43c7" + }, + "recipe": { + "sha256": "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150820.338", + "deps": [ + "cl-lib" + ] + }, + "jsx-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jsx/jsx-mode.el.git", + "sha256": "085d1c6e2efad81b20653a05b4de34dda7c4a8610b64aee0c49fbaa012c0d190", + "rev": "47213429c09259126cddb5742482cfc444c70d50" + }, + "recipe": { + "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130908.1224", + "deps": [] + }, + "literate-starter-kit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/emacs24-starter-kit.git", + "sha256": "6a103abaaf0f541271bea73b451bf8d584b0567a8ed9e32c14f666d0b3893996", + "rev": "6dce1d01781966c14558aa553cfc85008c06e115" + }, + "recipe": { + "sha256": "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150730.1354", + "deps": [ + "emacs" + ] + }, + "searchq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/boyw165/searchq.git", + "sha256": "047a971070c79396759499fa5f1a87d0bf5961b6b219ec6c237e2c59fb46407f", + "rev": "dd510d55ad66a82c6ef022cfe7c4a73ad5365f82" + }, + "recipe": { + "sha256": "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150829.711", + "deps": [ + "emacs" + ] + }, + "x-dict": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/x-dict.git", + "sha256": "984ed13093537bff67944c2059504a24b65593d19d7c03659b6d5332e17aeb44", + "rev": "920b2430bff9fb8c4bb7944aa358622545c00cee" + }, + "recipe": { + "sha256": "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091203.1223", + "deps": [] + }, + "tool-bar+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tool-bar+.el", + "sha256": "1ml95y7275yd2jn4zf96rg0pwxsv8vnwv52mvr9j0j9mqkw1d0d9" + }, + "recipe": { + "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1902", + "deps": [] + }, + "python-info": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/python-info.git", + "sha256": "57c2ff2640ae9a1068e124c86269ef145e374d37276da1ff4e59aa76ca215511", + "rev": "39996472d78420986e62ae9d16bf62a4a26aab60" + }, + "recipe": { + "sha256": "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141106.1551", + "deps": [] + }, + "mo-git-blame": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mbunkus/mo-git-blame.git", + "sha256": "d86c884319ad4216ff12ba062036f1c64cd644012787d5d7606c686bc137bbf9", + "rev": "a0b9ca186d96ef02a5c0ab5d1c29b7a71e78af68" + }, + "recipe": { + "sha256": "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.215", + "deps": [] + }, + "auto-async-byte-compile": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/auto-async-byte-compile.el", + "sha256": "1c8nm4sz9a67q8w0b1jahg5ldy185zws7nilj9yv3miklg07zq17" + }, + "recipe": { + "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.916", + "deps": [] + }, + "gradle-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jacobono/emacs-gradle-mode.git", + "sha256": "75c6e7dc52730a4fbeccf1095208654e7c8b34597f769b846649d5f7253667fa", + "rev": "e4d665d5784ecda7ddfba015f07c69be3cfc45f2" + }, + "recipe": { + "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150313.1405", + "deps": [ + "s" + ] + }, + "code-library": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lujun9972/code-library.git", + "sha256": "78fd611bea8387afe0572344845a34574aac9032a0fe0517381356590feaed2a", + "rev": "af0c971c38bf990415acb2ae8b0b69ecf3faa9fd" + }, + "recipe": { + "sha256": "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.819", + "deps": [ + "gist" + ] + }, + "redo+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/redo+.el", + "sha256": "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3" + }, + "recipe": { + "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.551", + "deps": [] + }, + "cycle-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/toroidal-code/cycle-themes.el.git", + "sha256": "558d0455a7ed2037b2500b9cd6e12e645d94edb1b6e73da0e9f7a7b5f836ba88", + "rev": "6e125d11fdbc6b78fc9f219eb2609a5e29815898" + }, + "recipe": { + "sha256": "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150402.2209", + "deps": [ + "cl-lib" + ] + }, + "ess-R-data-view": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/ess-R-data-view.el.git", + "sha256": "bd0ca4fdc08c39091bbf7efec921fcf6f5399155ab105e6f182dcf278a5742f9", + "rev": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9" + }, + "recipe": { + "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130509.658", + "deps": [ + "ctable", + "ess", + "popup" + ] + }, + "string-inflection": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/akicho8/string-inflection.git", + "sha256": "742f1a8ed45154ab35c1372ecee8edb6fe63a7d94ff70f7a520324b18b932435", + "rev": "147990de9d07d8e603ade92a23ef27a71e52b850" + }, + "recipe": { + "sha256": "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150805.456", + "deps": [] + }, + "keyfreq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dacap/keyfreq.git", + "sha256": "8075eda3e4b541e0438015cacf7f3c953b4b1e245136b66e9526a2ea4125bf62", + "rev": "06cb50b2796688cc76eeb86d48c9826abbee6383" + }, + "recipe": { + "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150924.2205", + "deps": [] + }, + "sourcetalk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/malroc/sourcetalk_emacs.git", + "sha256": "db4aedbdd1c170ef5535037faa3f6439514314306cd0f5c32c69c17c7ca89848", + "rev": "aced89fa8776e6d5e42dad4a863e159959f08de6" + }, + "recipe": { + "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140823.939", + "deps": [ + "request" + ] + }, + "darkmine-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pierre-lecocq/darkmine-theme.git", + "sha256": "9ca754a6ee3a6f6bc4c6aa7c3f4da2323f265d67e6ba923950ff700586194fc9", + "rev": "758ce6adfebbebbf0f714119180ec3992c10894b" + }, + "recipe": { + "sha256": "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.315", + "deps": [] + }, + "archive-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/archive-region.el", + "sha256": "1mhj6x0n2ya3xd7gykmkcf70ji5g8qd8xawz764ykdlcribpsq52" + }, + "recipe": { + "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140201.1745", + "deps": [] + }, + "path-headerline-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/7696122/path-headerline-mode.git", + "sha256": "d0a64a46534630451458ff067a3bd3b53d815a3778a18c06fec4f4d6c6fe1d7d", + "rev": "b5b2725c6a8b1cb592fc242b7dbbd54b4dff2e69" + }, + "recipe": { + "sha256": "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140423.832", + "deps": [] + }, + "pointback": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/pointback.git", + "sha256": "5bc1d77d39520386d64071525b4cb8c64d836562585ab0b0640c5b7b8b97cc04", + "rev": "e3a02c1784d81b5a1d2477338d049af581ed19f8" + }, + "recipe": { + "sha256": "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100210.952", + "deps": [] + }, + "vc-osc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aspiers/vc-osc.git", + "sha256": "4462dd775c362f6a8c8403e1681957db2d4b758488d6ae715d7c800ade771f72", + "rev": "fb01a35107be50ebb126c3573e0374e5e7d78331" + }, + "recipe": { + "sha256": "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120910.411", + "deps": [] + }, + "kaesar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", + "sha256": "e94e51c8cbcf3b294ae5159bc75bd25dff59ba29927fca761f7f285458c6b516", + "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" + }, + "recipe": { + "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.505", + "deps": [ + "cl-lib" + ] + }, + "image-dired+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-image-diredx.git", + "sha256": "49545268e75f114af06c9a47f7610ffa8b0f7e034dfa1c913a45340a74525ed8", + "rev": "b68094625d963056ad64e0e44af0e2266b2eadc7" + }, + "recipe": { + "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150430.44", + "deps": [ + "cl-lib" + ] + }, + "anything-sage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/anything-sage.git", + "sha256": "f27c45c01f45f0868d868b9e83ef7dd7a20c9ea3aa05569b8fe7596ba2d34875", + "rev": "370b4248935dd4527127954788a028399644f578" + }, + "recipe": { + "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141005.613", + "deps": [ + "anything", + "cl-lib", + "sage-shell-mode" + ] + }, + "ignoramus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/ignoramus.git", + "sha256": "db6c9dce6b9fff5c14efb1514e2d0d8e302e615b47a1e969d2f2a4b7fd4ba749", + "rev": "cab192aa621d1087f2d574b65fffd295c5efb919" + }, + "recipe": { + "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150216.1542", + "deps": [] + }, + "stock-ticker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hagleitn/stock-ticker.git", + "sha256": "ddc6499eda448381e4149c0572d24b8dc2e82e0d3111bb6af74fc5f0c5783aa4", + "rev": "f2e564142c9de84232839a5b01979cf95b04d6a9" + }, + "recipe": { + "sha256": "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150204.452", + "deps": [ + "request", + "s" + ] + }, + "telephone-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dbordak/telephone-line.git", + "sha256": "f2de1318df480845a76314699f32423e87f7ff84db0995e2d6e874b247d7b2c6", + "rev": "0715ee7d156086098b375f3d93de2f50e76f3d75" + }, + "recipe": { + "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.642", + "deps": [ + "cl-lib", + "eieio", + "emacs", + "s", + "seq" + ] + }, + "ac-php": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xcwen/ac-php.git", + "sha256": "36e719b810b174f15d0f28b4c50869600deca2242f69c90780b7614a82c253dc", + "rev": "1f606698934a7d60d0d60f6f15240a2bf78c8b9f" + }, + "recipe": { + "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.2128", + "deps": [ + "auto-complete", + "company", + "dash", + "emacs", + "f", + "php-mode", + "popup", + "s", + "xcscope", + "yasnippet" + ] + }, + "helm-ghq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/emacs-helm-ghq.git", + "sha256": "5f78b84edc5f65d423f4c58205a800d7392832a5009f16a393bd95c724a8ad2a", + "rev": "15621d1b2cd37c2ff0f73666c38acf7aae46bbc4" + }, + "recipe": { + "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.512", + "deps": [ + "helm" + ] + }, + "haskell-tab-indent": { + "fetch": { + "tag": "fetchgit", + "url": "https://git.spwhitton.name/haskell-tab-indent", + "sha256": "7e41c910d6901638b9dfb697206659f5441e26e0558f9227c4ba7c6f2f47d841", + "rev": "150f52176242ba3bc4f58179cd2dbee4d89580f4" + }, + "recipe": { + "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1359", + "deps": [] + }, + "math-symbol-lists": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vspinu/math-symbol-lists.git", + "sha256": "ee58ce2fe0814f7c06bfc0742f6ad2993406f8009e276ca858ad41787b16bbc1", + "rev": "0d9147c6f7432d7b7a1b7c7bba28165202c96d23" + }, + "recipe": { + "sha256": "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.1833", + "deps": [] + }, + "ox-rst": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masayuko/ox-rst.git", + "sha256": "a31bd3a0adefbe7e0f7ea8c967b10f5af7483c5cf03725ae3388d5c823b244cb", + "rev": "2bd53fa5b3af67afbf45041d7f54b3c5b71b1f10" + }, + "recipe": { + "sha256": "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.143", + "deps": [ + "emacs", + "org" + ] + }, + "multicolumn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/multicolumn.git", + "sha256": "2ea37f52d1d8308759d60bed7263a67165c794f74c13e919a8cdcfdb395057c7", + "rev": "c7a3afecd470859b2e60aa7c554d6e4d436df7fa" + }, + "recipe": { + "sha256": "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.1651", + "deps": [] + }, + "css-eldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenozeng/css-eldoc.git", + "sha256": "3d134ee93fa0fdd14cba5ecc762f6ada5f2b3b1615491f700b37ff06da32ecd5", + "rev": "c558ac4c470742c98a37290e6b409db28183df30" + }, + "recipe": { + "sha256": "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150124.2123", + "deps": [] + }, + "helm-gtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-gtags.git", + "sha256": "92377d12e8acc34107729331986dcf4d2c1fe635a8a982a446724e1731ebf6ab", + "rev": "9131a1439860198d51a9dfa6955c586da4bb60bd" + }, + "recipe": { + "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.820", + "deps": [ + "cl-lib", + "helm" + ] + }, + "chinese-pyim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/chinese-pyim.git", + "sha256": "9e70d00f9bdda8168d26582cefeab893cf4eaeb70d3c403373f69baa7396e4b9", + "rev": "e85cf228243555c80fc12de7e43c544733fe8597" + }, + "recipe": { + "sha256": "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.2103", + "deps": [ + "cl-lib", + "pos-tip" + ] + }, + "zencoding-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rooney/zencoding.git", + "sha256": "7997dbfce10c2b80822e91dc4042657910fca951abd297049dfa2d374b907cf8", + "rev": "58e42af182c98cb9941d27cd042d227fbf4e146c" + }, + "recipe": { + "sha256": "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140213.222", + "deps": [] + }, + "company-cabal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/company-cabal.git", + "sha256": "e316a40f89ea7759e5cdfdf7ecc5c0de4992bbb968472da8de54bfbda72a8857", + "rev": "29b18d9e6ad3dd5132d795cadcb23ee06203d3ac" + }, + "recipe": { + "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151002.629", + "deps": [ + "cl-lib", + "company", + "emacs" + ] + }, + "borland-blue-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fourier/borland-blue-theme.git", + "sha256": "39197537e262bae8001127322d87f438d8c8339c24d3cf27483fa400b4b7f1e8", + "rev": "4b77caf6f40e2ffb4f37cb6e2c526bddb50c405f" + }, + "recipe": { + "sha256": "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1238", + "deps": [ + "emacs" + ] + }, + "idle-highlight-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/idle-highlight-mode.git", + "sha256": "3bb28e320531ef6fec9425bd64956fe298c73469c4dd4f1065b11d9ef50c9c74", + "rev": "c466f2a9e291f9da1167dc879577b2e1a7880482" + }, + "recipe": { + "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120920.1148", + "deps": [] + }, + "tc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kozo2/tc.git", + "sha256": "f35bdf5d5d65534a30e4087680498c28f1e9fa1d2e90d9fd4fd782851dcdf3f6", + "rev": "6aa9d27c475be8d009adf9cd417f2cdf348a91e8" + }, + "recipe": { + "sha256": "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150113.2126", + "deps": [] + }, + "java-imports": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dakrone/emacs-java-imports.git", + "sha256": "da0dda3aa83801b99446ec7fa4412136a026d4964dcfea9ad8bd89e76ff021aa", + "rev": "42f6a65441b50ae77b82168060baa8d5a8ec9f2e" + }, + "recipe": { + "sha256": "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1034", + "deps": [ + "pcache", + "s" + ] + }, + "mandoku": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mandoku/mandoku.git", + "sha256": "eebcdce65bbc0848d448aa6d57cf985ffdea6a93643d194e5186b3b56bdcb074", + "rev": "d8027f67b4a65f59101ce80a6b6308c01d37a186" + }, + "recipe": { + "sha256": "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.900", + "deps": [ + "git", + "github-clone", + "magit", + "org" + ] + }, + "bibretrieve": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pzorin/bibretrieve.git", + "sha256": "e352151f8e0ccdbfab061fbb6bbd1c271e2b82dc8fb7581f0ec0386e62742d37", + "rev": "aff34c6e1a074ac4fd574d8e66fd9e0760585419" + }, + "recipe": { + "sha256": "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131013.1332", + "deps": [ + "auctex", + "emacs" + ] + }, + "cryptsy-public-api": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sodaware/cryptsy-public-api.el.git", + "sha256": "8b047ceb3dba42ac5eeafd3d8a5f03d774318d8f491d2d4f1a23aff00e02c067", + "rev": "59bdf2425dccc27cc1598868a1a810885508cff5" + }, + "recipe": { + "sha256": "1v78rm44af3vgsml5f6kpwvnb4ks6n49br2fhjgh6nc7g3jmz97n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141008.728", + "deps": [ + "json" + ] + }, + "highlight-blocks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-blocks.git", + "sha256": "859b45be7a7870c6eb72c1323ef5cf2259f39287083d11a7eb182109c094c530", + "rev": "9c4240a5d16008db430d1a81c76dad474d3deb0c" + }, + "recipe": { + "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1015", + "deps": [ + "emacs" + ] + }, + "simple-httpd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacs-http-server.git", + "sha256": "731209d7a3892aaafa6a5ccf6e118a25035d483952ff4b2d432f4d86f0067fdc", + "rev": "4b7a6bc6a6df6b932f8c9e9aded9103397c0c18f" + }, + "recipe": { + "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150430.1955", + "deps": [ + "cl-lib" + ] + }, + "lavender-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-lavender-theme.git", + "sha256": "f3c00e683c1ca192adbd11c51810c882bc3a5c6cc190cc16016136a1f310e9d5", + "rev": "d9e4d7838167a0e07fb5d04877a7b34c4b4cc1ee" + }, + "recipe": { + "sha256": "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "actionscript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/austinhaas/actionscript-mode.git", + "sha256": "24612a82172f4357133694134af1468135f49a8f3abe6fc0d44dfe398f14bde7", + "rev": "f7dd1d77322b49d259919d58ffcdf64073ba6c09" + }, + "recipe": { + "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140605.1328", + "deps": [] + }, + "electric-spacing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xwl/electric-spacing.git", + "sha256": "d69595a6d89c94778b9a3be0cb4582ce1f2bc5644611109f5c8d230203583760", + "rev": "78e4ccbb0a924a3062fa16c9b24823bb79bb1f3e" + }, + "recipe": { + "sha256": "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.936", + "deps": [] + }, + "fakir": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-fakir.git", + "sha256": "3019b93769bcd0cf502ecbdf6a30fbe083d568f2fa67b0064a4d86fcd7bfaaf0", + "rev": "1fca406ad7de80fece6319ff75d4230b648534b0" + }, + "recipe": { + "sha256": "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140729.1152", + "deps": [ + "dash", + "kv", + "noflet" + ] + }, + "z3-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zv/z3-mode.git", + "sha256": "5f70200557cd8de87bf8524c0c6ad8cae9f49dc2befceb871679e959661ff5cc", + "rev": "163dc01d59e9880b4dc188d4e1ad84d6c0c852e1" + }, + "recipe": { + "sha256": "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.1655", + "deps": [ + "emacs", + "flycheck" + ] + }, + "latex-pretty-symbols": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/mortiferus/latex-pretty-symbols.el", + "sha256": "0h9hncf2ghfkd3i3342ajj1niykhfr0aais3j6sjg1vkm16xbr3b", + "rev": "ef4ea64c09ea" + }, + "recipe": { + "sha256": "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.444", + "deps": [] + }, + "sos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omouse/emacs-sos.git", + "sha256": "913edcbe062faf77f0f48aab23480671c854d353da0057bf83f608cc2b14394b", + "rev": "96b7d951a5f0a8ae401c0813745fc1aca0cb816c" + }, + "recipe": { + "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141214.2203", + "deps": [ + "org" + ] + }, + "nasm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/nasm-mode.git", + "sha256": "39fce880d0fc6663055a3cb678fa825c113982708ba5da7862fdb0f19fe4b944", + "rev": "d95a12d3caaf1decf4d3bd39ac8559098e7227aa" + }, + "recipe": { + "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.1858", + "deps": [ + "emacs" + ] + }, + "markup-faces": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sensorflo/markup-faces.git", + "sha256": "47640b358d3aee97a1a318688e07a25b849c126565c856ad8c2ce5d64f0dd1f0", + "rev": "98a807ed82473eb41c6a201ed7ef816d6bcd67b0" + }, + "recipe": { + "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141110.217", + "deps": [] + }, + "state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisirs/state.git", + "sha256": "31311a2912992f73d5cf2d21d2a0906cd2d70ebebce6be1fbbc43c45209bdfec", + "rev": "6b7ae04cba5d055c1a143a4fdef9a0429fd38049" + }, + "recipe": { + "sha256": "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.447", + "deps": [ + "emacs" + ] + }, + "angry-police-captain": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolando2424/angry-police-captain-el.git", + "sha256": "eaa45a2d23aa8138532dc186e7a976601c3e17ca91bec70c7acc4775b43d0cd4", + "rev": "d11931c5cb63368dcc4a48797962428cca6d3e9d" + }, + "recipe": { + "sha256": "1cshhd4bkgbkg0n6m8gz53z47z4nq0hcriz2qh3v7m4cqgkw1m9r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120829.752", + "deps": [] + }, + "better-registers": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/better-registers.el", + "sha256": "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh" + }, + "recipe": { + "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140813.319", + "deps": [] + }, + "bison-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/bison-mode.git", + "sha256": "67b241d8b59d8717652f1047c5e465d0a92be73933607c9c3050a5ca95538c45", + "rev": "bb48d82f296bbe9f8b4a5651fab6610525fdbfcf" + }, + "recipe": { + "sha256": "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141119.243", + "deps": [] + }, + "wgrep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", + "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141016.1856", + "deps": [] + }, + "pg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cbbrowne/pg.el.git", + "sha256": "601a81cbc26dc2e3852b0b206d62a77595c915c5d4fa203d8a6bff6b2dd907fe", + "rev": "4f6516ec3946d95dcef49abb6703cc89ecb5183d" + }, + "recipe": { + "sha256": "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130731.1642", + "deps": [] + }, + "calfw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-calfw.git", + "sha256": "1618583208d86e37c63f378a4e49c7abf6d55f9d54ea6802168a1d3526d566e7", + "rev": "50e0e0261568f84f31fe7f87c9f863e21d30132f" + }, + "recipe": { + "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150923.2149", + "deps": [ + "google-maps" + ] + }, + "tabbar-ruler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/tabbar-ruler.el.git", + "sha256": "b858c2149120e982a27e555d772da92e02d40f725f2aa4847b42265af8ff6b6f", + "rev": "5854ef040a1c45e1ce7dfebea6ed7953ce6bd2b9" + }, + "recipe": { + "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.1951", + "deps": [ + "tabbar" + ] + }, + "gruber-darker-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rexim/gruber-darker-theme.git", + "sha256": "75caee197b485fa6a399178de88929dfaed9ecd2a3eb35cce8ce5d2b0465748a", + "rev": "25d52be23017f5a79d5eba53e767eab9d751819e" + }, + "recipe": { + "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.126", + "deps": [] + }, + "orgbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuhito/orgbox.git", + "sha256": "6e16b1fc4301f8b2782022a254361d10e79f13994812d863dfb3abf425ad0f89", + "rev": "72373b09768cc2200d143af38e25a0c082e8375d" + }, + "recipe": { + "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140528.2026", + "deps": [ + "cl-lib", + "org" + ] + }, + "kolon-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/samvtran/kolon-mode.git", + "sha256": "dca909af2f55fd2688f200db18c0b6d188db67a4583de452bde5f6d779f7247b", + "rev": "5af0955e280ae991862189ebecd3937c5fc8fb9f" + }, + "recipe": { + "sha256": "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140122.534", + "deps": [] + }, + "mew": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kazu-yamamoto/Mew.git", + "sha256": "8de30aa9e87487f999aa2dd9a297b4c93ed8b1ff330ce47ce6f5dc94685f4e3c", + "rev": "ff9c41b981fb6050121a3831825d0349bffeb9ce" + }, + "recipe": { + "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150814.154", + "deps": [] + }, + "nand2tetris-assembler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CestDiego/nand2tetris.el.git", + "sha256": "e777f63618e3d84ec2c4be0a52dd8c7f46b736d0535fc3e75c00a7ffef7c7f00", + "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" + }, + "recipe": { + "sha256": "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1636", + "deps": [ + "names", + "nand2tetris" + ] + }, + "pytest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ionrock/pytest-el.git", + "sha256": "e502eb19be17d7b743fd88778816f8548cd429998b27590c038c12e3375e9eda", + "rev": "71bd43c4eb7254d05104ec1bcca7851d7a203da3" + }, + "recipe": { + "sha256": "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.2325", + "deps": [ + "s" + ] + }, + "portage-navi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-portage-navi.git", + "sha256": "71ec3cd146fd69b571465240331f8be915db021039b6947f14f5187ec9e9a4de", + "rev": "8016c3e99fe6cef101d479a3d69185796b22ca2f" + }, + "recipe": { + "sha256": "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141208.755", + "deps": [ + "concurrent", + "ctable" + ] + }, + "mouse-slider-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/mouse-slider-mode.git", + "sha256": "fffdc519879c543e88c71e7b4734b64ec647810d072db7f2dec9e3a0ccf971cd", + "rev": "a8d6489fe2a3c2769b421f93f3609f402c9b92f7" + }, + "recipe": { + "sha256": "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.1600", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "helm-circe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lesharris/helm-circe.git", + "sha256": "c015b68f0753bedd6fac4c4973624ec808edb758e177d5e54719977f4b6012c7", + "rev": "0b7ecf5380971ee7b6291fca6a2805c320638238" + }, + "recipe": { + "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150317.44", + "deps": [ + "circe", + "cl-lib", + "emacs", + "helm" + ] + }, + "ruby-hash-syntax": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ruby-hash-syntax.git", + "sha256": "59e434bf601df60e49d15a846a2ca251c7e6c82d54005a820a6d66d6b783eddc", + "rev": "d73a498143a3a8d6d3a7720104f2f14e70b2e2ae" + }, + "recipe": { + "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141010.1039", + "deps": [] + }, + "skewer-reload-stylesheets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NateEag/skewer-reload-stylesheets.git", + "sha256": "43a72de24748c3a63d8b63bd14c4dd138de780ff067881a16b670ec4246118e0", + "rev": "a22ed760a5515e43a05aeb82811dc571ba3d6060" + }, + "recipe": { + "sha256": "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150111.623", + "deps": [ + "skewer-mode" + ] + }, + "nodejs-repl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abicky/nodejs-repl.el.git", + "sha256": "6c3c0ab8b9e009eb895de250afec27cd9f0040c5d039420c80351c77164ed504", + "rev": "3c51428ccda7b1c4b5cd4a51f9034e6ca3a053f8" + }, + "recipe": { + "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.714", + "deps": [] + }, + "ido-completing-read+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", + "sha256": "702a90c5ce0f80a21f361a3261e2fb8f86b1430bf08d1296b8442587b797f9e9", + "rev": "3bf3c707753969b2c3b534bfe3d09dbd297dfaae" + }, + "recipe": { + "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.1726", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "package-filter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/package-filter.git", + "sha256": "86a17f674dd6f05291da85f833321431b226651893f25e02c61e66b6aa42ee44", + "rev": "ba3be37e0ef3972b2d8db7c2f2cb68c460699f12" + }, + "recipe": { + "sha256": "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140105.1626", + "deps": [] + }, + "sekka": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiyoka/sekka.git", + "sha256": "a05a8b13447eb5df360340af354ba5d9ecbb0448e8ec0b819b9eda5d242dff1d", + "rev": "2b0facc87e743e21534672aadac6db3164e38daf" + }, + "recipe": { + "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150708.659", + "deps": [ + "cl-lib", + "concurrent", + "popup" + ] + }, + "auto-complete-exuberant-ctags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/auto-complete-exuberant-ctags.git", + "sha256": "20f7e9df1ebceaf947bed6656c166ecd5581fa3a49f1c2d46fe13983d2f30fbb", + "rev": "ff6121ff8b71beb5aa606d28fd389c484ed49765" + }, + "recipe": { + "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140320.224", + "deps": [ + "auto-complete" + ] + }, + "rcirc-notify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/rcirc-notify.git", + "sha256": "fdc55aaac45d3467814b117fea8d8750b3771aeb127b7723bcbac772149d2b7a", + "rev": "841a7b5a6cdb0c11a812df924d2c6a7d364fd455" + }, + "recipe": { + "sha256": "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150219.1604", + "deps": [] + }, + "full-ack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/full-ack.git", + "sha256": "46448181df74d25c09098f8261426848b40481fda7d2de598053e75880112533", + "rev": "761d846e105b150f8e6d13d7a8983f0248313a45" + }, + "recipe": { + "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140223.1132", + "deps": [] + }, + "elogcat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/youngker/elogcat.el.git", + "sha256": "25784d00effc275af6c892749203aa409906d3d16f7e533dd0ce6ee7fa4299c9", + "rev": "4f311b7a07565b0d060334bc68edb36f2bff703f" + }, + "recipe": { + "sha256": "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.1841", + "deps": [ + "dash", + "s" + ] + }, + "helm-nixos-options": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/travisbhartwell/nix-emacs.git", + "sha256": "9c44131bb762df62b5476871bed5a5d344a4db448854145bf06dc839c0910147", + "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" + }, + "recipe": { + "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.1809", + "deps": [ + "helm", + "nixos-options" + ] + }, + "magit-annex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-annex.git", + "sha256": "68d0218de9e4da03078d8c65e6202625031749b076a6289d8de0b6f585ad8c1b", + "rev": "154345a5192f3581af105022541911398a566cce" + }, + "recipe": { + "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.38", + "deps": [ + "cl-lib", + "magit" + ] + }, + "matrix-client": { + "fetch": { + "tag": "fetchgit", + "url": "git://fort.kickass.systems/personal/rrix/pub/matrix.el", + "sha256": "0516772e4aae604359bee659d101fb62b73cc9016cbbe0b749c77402954ec341", + "rev": "de09c69d2d5ca604839239fe49b10a2ed5ac2809" + }, + "recipe": { + "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1443", + "deps": [ + "json", + "request" + ] + }, + "sync-recentf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ffevotte/sync-recentf.git", + "sha256": "59f7040ac78d34f21737b8a5fc7eb8f605c440b29a71aaa8e64af701d072d765", + "rev": "530254b1f1b569ce958dadad2620c67c31835d5c" + }, + "recipe": { + "sha256": "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.526", + "deps": [] + }, + "helm-hatena-bookmark": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/emacs-helm-hatena-bookmark.git", + "sha256": "baf5f298936fe6184dbad3f7a002ec23e4efe149badc69e930f52c663c93a408", + "rev": "497d33632f195354eaa24670db0804c846b7261b" + }, + "recipe": { + "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.826", + "deps": [ + "helm" + ] + }, + "helm-emms": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-emms.git", + "sha256": "b481309f09dd4be0478e138b65e48ce80ec4fda14dc22e064edc06b20ed0600c", + "rev": "ed3da37e86ea5dabc15da708335b1e439ae0777d" + }, + "recipe": { + "sha256": "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151001.1528", + "deps": [ + "cl-lib", + "emacs", + "emms", + "helm" + ] + }, + "gruvbox-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Greduan/emacs-theme-gruvbox.git", + "sha256": "2450e82d4a09040b0056afdade19fa0994230bb637a032d23e9112f462ffa68d", + "rev": "f4035b67ab16f4b2c674dc5c637eeba15690c38a" + }, + "recipe": { + "sha256": "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1632", + "deps": [] + }, + "java-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nekop/yasnippet-java-mode.git", + "sha256": "5a6f5a6da3314ca8baee0ae06dc2827b24d2f0486a940339e043948cdebb3c1f", + "rev": "701e84d91d6e8bf53c0088687ee385c1954792d8" + }, + "recipe": { + "sha256": "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140728.36", + "deps": [ + "yasnippet" + ] + }, + "emacsql-psql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" + }, + "recipe": { + "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151004.915", + "deps": [ + "cl-lib", + "emacs", + "emacsql", + "pg" + ] + }, + "jazz-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/donderom/jazz-theme.git", + "sha256": "604995d0d80c7e943ce9d6d41f47cacff3d8fb087aed912dbd84b06ef4db0a02", + "rev": "b9f66600fe33d25a230ed26a69f3abaaca03b453" + }, + "recipe": { + "sha256": "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.1044", + "deps": [] + }, + "yaml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshiki/yaml-mode.git", + "sha256": "4cbf6541e1a895eae6b0c0c819f5fadc017d0e155d752cd2f4d05145ad0ae59a", + "rev": "a87ab367fe0015917a1940b5acd9a581b1631801" + }, + "recipe": { + "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.35", + "deps": [] + }, + "point-stack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattharrison/point-stack.git", + "sha256": "8199db22e57b92f509a7b08166965d7c1273d02443d3824f8eff1dc9dd1432dc", + "rev": "2d2a5e90988792cf49ba4c5a839ef6a1400f5a24" + }, + "recipe": { + "sha256": "17z9mc49x4092axs7lq6b6z7yrrhkl8bdx5f8gq6qy5lampgyzch", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140102.1423", + "deps": [] + }, + "ncl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/ncl-mode.git", + "sha256": "8de27cfd2f3d2a0e88bfeb32b0db78ebc1c74a26efaaf3bc4d419debd6ebbb62", + "rev": "01559734504d2712606ac30916252d788ea73124" + }, + "recipe": { + "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150525.1129", + "deps": [ + "emacs" + ] + }, + "go-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-go-direx.git", + "sha256": "5a3874ba35615b287b48ec8b9b6cfd8eb8f91f709661f39d8210472ce6547415", + "rev": "8f2206469328ee932c7f1892f5e1fb02dec98432" + }, + "recipe": { + "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.2043", + "deps": [ + "cl-lib", + "direx" + ] + }, + "doremi-cmd": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi-cmd.el", + "sha256": "1wmfkviyr5mp15aqh6qhmi7ykgcii1h85wxmsm7bxg9v2lzyckk2" + }, + "recipe": { + "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1552", + "deps": [ + "doremi" + ] + }, + "shampoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dmatveev/shampoo-emacs.git", + "sha256": "7224c35f1a620438a475e662726d26b831d6dc99ad7d421d8d6cf08d9812cdab", + "rev": "bc193c39636c30182159c5c91c37a9a4cb50fedf" + }, + "recipe": { + "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131230.419", + "deps": [] + }, + "dash-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stanaka/dash-at-point.git", + "sha256": "7a4a6ee258d0485d47d0d88e4aeda60e16dd056c004de75917365acd215a3f67", + "rev": "ed872b4fcbe02ef1a5bac0337afe19a7a747f34c" + }, + "recipe": { + "sha256": "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140626.235", + "deps": [] + }, + "window-purpose": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmag/emacs-purpose.git", + "sha256": "0b655eb0b7c36b0cdb68b8d77a142e2cb206e8d6c5ca9be0d13ef3a48a1f2b5f", + "rev": "d8b9399c8bbdb6e843cd62b7adb658fea6cf7e75" + }, + "recipe": { + "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.440", + "deps": [ + "cl-lib", + "emacs", + "imenu-list", + "let-alist" + ] + }, + "boxquote": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davep/boxquote.el.git", + "sha256": "0863767f68628f52ebddc7b7abe921b672554c2ec30178d47845b01b2d9dc7e7", + "rev": "4c49b2046647ed187920c885e175ed388f4833dc" + }, + "recipe": { + "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20081011.1526", + "deps": [] + }, + "sticky": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sticky.el", + "sha256": "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy" + }, + "recipe": { + "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101129.2052", + "deps": [] + }, + "ein": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/millejoh/emacs-ipython-notebook.git", + "sha256": "c2c5dd3a02ea00e194a376d1d50ee4c0fd52f95b0c219c154eb8cdca094aada3", + "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" + }, + "recipe": { + "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.1316", + "deps": [ + "request", + "websocket" + ] + }, + "scratches": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/scratches.git", + "sha256": "8c6e1000e5be6538ebc35fe790a316d3630c0d93994c1dfdde3fcf4b2ef01582", + "rev": "9441afe6396ca38f08029123fab5d87429cbf315" + }, + "recipe": { + "sha256": "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.2316", + "deps": [ + "dash", + "f" + ] + }, + "magic-filetype": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/magic-filetype.el.git", + "sha256": "d39ffec1799d1999f6182e44669dce7f01a668f811ca17d51f3c920b644b7ceb", + "rev": "e9fbed35f389be24198b1a86b5c2440750732a6e" + }, + "recipe": { + "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.1057", + "deps": [ + "emacs", + "s" + ] + }, + "helm-j-cheatsheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/helm-j-cheatsheet.git", + "sha256": "c30086e3121354c89c798f5f22fc07d51b561e6cf71a43503861497d3693e5bd", + "rev": "70560fd2fb880eccba3b1927d0fa5e870e0734e4" + }, + "recipe": { + "sha256": "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.641", + "deps": [ + "helm" + ] + }, + "py-yapf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/py-yapf.el.git", + "sha256": "cb180d0d36b3b1568a741ea252fc8f942351d2554fd83a9b11fb5f8cf2d6c27e", + "rev": "766e57448639ff95eeb018f6d8bdf09170094218" + }, + "recipe": { + "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150422.953", + "deps": [] + }, + "paper-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cadadr/paper-theme.git", + "sha256": "9170a2cccc57de956daf1b38cb1bd7233d44c629178c0ce1f0aff9b17d5c6857", + "rev": "5ddb180beac8a1890cafacdd41e8373ca1999182" + }, + "recipe": { + "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.1000", + "deps": [ + "emacs", + "hexrgb" + ] + }, + "noctilux-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sjrmanning/noctilux-theme.git", + "sha256": "ba1bf8c99c84dd07daee5a4ce8235852cbdb18644e96c53d9c9cbcd2f4b837a8", + "rev": "5f21c8523ddb99c4e5bc727d59ddf6bf6f50d626" + }, + "recipe": { + "sha256": "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150723.947", + "deps": [] + }, + "emms-mark-ext": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/emms-mark-ext.git", + "sha256": "9418868d1a21c968b10370cfbdb0bc1b452f21e12be79a0bc8f6027a91d5470d", + "rev": "ec68129e3e9e469e5bf160c6a1b7030e322f3541" + }, + "recipe": { + "sha256": "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130528.2227", + "deps": [ + "emms" + ] + }, + "hexrgb": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hexrgb.el", + "sha256": "04maddrgvijimxc8i942h0f7448snqlgdsj3yc03izh6bimvkhk5" + }, + "recipe": { + "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150708.2036", + "deps": [] + }, + "finalize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elisp-finalize.git", + "sha256": "6ad646d2b59cee68a379c2b54140fba654acf9011d1d8696a741f36ca8954fc2", + "rev": "9ac589cf487f5d37163dc9e7ca8c52800710805e" + }, + "recipe": { + "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140127.1246", + "deps": [ + "cl-lib", + "eieio", + "emacs" + ] + }, + "mpg123": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/mpg123.git", + "sha256": "3a9352550182e2b6c193b88de862878f6e149c089b4a52c28b117316875531b4", + "rev": "46b0fb53c2003c08c269371f68c2fb7aeb19ce82" + }, + "recipe": { + "sha256": "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.2016", + "deps": [] + }, + "paredit-everywhere": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/paredit-everywhere.git", + "sha256": "db05f512bf60bdc5e9b6a6a11dbe16046324af2ca834d24a0235c9a299752ff2", + "rev": "79ecbfc15d2cb338f277f3da50d8e757f07151e9" + }, + "recipe": { + "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150821.2344", + "deps": [ + "paredit" + ] + }, + "jinja2-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paradoxxxzero/jinja2-mode.git", + "sha256": "b38c734e19f062791adb2f446fb0dc361406043bfcd5384876f84f543b86d793", + "rev": "cfaa7bbe7bb290cc500440124ce89686f3e26f86" + }, + "recipe": { + "sha256": "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141128.407", + "deps": [] + }, + "org-caldav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dengste/org-caldav.git", + "sha256": "5f61a7c67d0f4d093097d0da2bc784362e7585ee27150e79f50afcc74dcf0253", + "rev": "8aff005f431e5f677950b73f710fdf968ff4ac65" + }, + "recipe": { + "sha256": "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150131.352", + "deps": [ + "org" + ] + }, + "eval-in-repl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaz-yos/eval-in-repl.git", + "sha256": "65e99be7de095ee6276624197f0640c94a95f1628796b61f553f7a30ac00d161", + "rev": "c2c677d39cfad572fe487661ac9e8a70fb88749f" + }, + "recipe": { + "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.528", + "deps": [ + "dash", + "paredit" + ] + }, + "gherkin-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/candera/gherkin-mode.git", + "sha256": "163a3f1279cf2f53f72affa6497b367abe6ac5977a0fdb7b95157e011c608128", + "rev": "d84a2977a536f2f8bf4836aebc33a4e86925673d" + }, + "recipe": { + "sha256": "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140107.1004", + "deps": [] + }, + "helm-perldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-perldoc.git", + "sha256": "60b3e77f7df8763dd3bd7322e0526a1298ba9d9dd7c004a87a6d216a60a39d49", + "rev": "a7347e0a4f1a1832060b3a7a1a3f3d2ed4f92f33" + }, + "recipe": { + "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.2227", + "deps": [ + "cl-lib", + "deferred", + "helm-core" + ] + }, + "relative-buffers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/relative-buffers.git", + "sha256": "c97cc94f1e565e727d3c40ee7fcfb14b35b8828f7c6ba8f2d6bad904771b9ef6", + "rev": "7e37e118cc231c8581891bef0e4b5bb775920070" + }, + "recipe": { + "sha256": "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150115.1301", + "deps": [ + "cl-lib", + "dash", + "f", + "s" + ] + }, + "helm-grepint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kopoli/helm-grepint.git", + "sha256": "65d21d875ac59f75e9418f205bfac44a695890800ab68c207af900bb3899751d", + "rev": "0327f64121751065a85c76527dda2c037c8fb0d8" + }, + "recipe": { + "sha256": "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1137", + "deps": [ + "emacs", + "helm" + ] + }, + "emms-info-mediainfo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/emms-info-mediainfo.git", + "sha256": "2f4717ba2013c8567f2be6dd1d7f4f93c2277eb4224d335c861e3dccecb4b1dd", + "rev": "bce16eae9eacd38719fea62a9755225a888da59d" + }, + "recipe": { + "sha256": "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131223.700", + "deps": [ + "emms" + ] + }, + "javap-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hiredman/javap-mode.git", + "sha256": "8f72f6caee3298a3f1b4ca26f3653cb856bd875dedd72520b167a44d5e25191c", + "rev": "864c1130e204b2072e1d19cd027b6fce8ebe6629" + }, + "recipe": { + "sha256": "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120223.1608", + "deps": [] + }, + "ttrss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pedros/ttrss.el.git", + "sha256": "34ba33fa54b4f8503d6325eecbdd334474d15d1ee3e025aead679a1ac34d0e29", + "rev": "e90d8f7ccaf235053057bd91d3a2113582604e24" + }, + "recipe": { + "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130409.1249", + "deps": [ + "emacs" + ] + }, + "term-run": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/10sr/term-run-el.git", + "sha256": "3bac85c7e51d35e1cae2dd5b7f9044cd65533d2bf14423da3cd6083a1a5cf2d7", + "rev": "4e47afc1babb87f2c3ebd1f71c7f456c323a7ffb" + }, + "recipe": { + "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150601.206", + "deps": [] + }, + "anx-api": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rmloveland/emacs-appnexus-api.git", + "sha256": "c155289b6ca5e9314b91acd46a1c0721089fa4db27f3b1bbb31fa78ab2fafd3b", + "rev": "b2411ebc966ac32c3ffc61bc22bf183834df0fa0" + }, + "recipe": { + "sha256": "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140208.914", + "deps": [] + }, + "smooth-scrolling": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aspiers/smooth-scrolling.git", + "sha256": "73eb1acf3991d1ee88c4bb7f3a019117b8e1e84e5f2850f897622c3b161c6e16", + "rev": "0d9b228f952c53ad456f98e2c761dda70ed72174" + }, + "recipe": { + "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131219.2239", + "deps": [] + }, + "helm-cmd-t": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/helm-cmd-t.git", + "sha256": "7ae3bfafcb82719a83298bea07efc21c59b1514fb6cd2c3644f7f18d76109781", + "rev": "8749f0b2b8527423cd146fa2d5c0e7a9e159eefb" + }, + "recipe": { + "sha256": "04fmhravd3ld4n1n820wlnr1jvmk7c7cdazd15gazixrlz6fm4fk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150823.1357", + "deps": [] + }, + "flymake-python-pyflakes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-python-pyflakes.git", + "sha256": "229c799e179084202877e15b5286c9f90821bf95ffc91339406097540e39fa6b", + "rev": "f09ec573d7580a69f8bd49778c26da9ab6d5ec5a" + }, + "recipe": { + "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131127.206", + "deps": [ + "flymake-easy" + ] + }, + "misc-fns": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/misc-fns.el", + "sha256": "1c46iwa6i08wsa0syrm0gxhyndrqlkmqpdj61rss7hbbf1066v86" + }, + "recipe": { + "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150403.1121", + "deps": [] + }, + "flycheck-cask": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-cask.git", + "sha256": "da09cf110b0d23dfc6bc7087611bfd0726bf52ad3f1c2c40a850633eea5825e2", + "rev": "f2cebedacaa96ef30262fbb67068d1df489ff238" + }, + "recipe": { + "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150920.653", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "fzf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/fzf.el.git", + "sha256": "134be086673c38c2c7a9602f0978bc1dd2c628d959433cdd95585573adf82b5f", + "rev": "30bb2f0f82ff413f268bb5e7fb02d3586ba7783f" + }, + "recipe": { + "sha256": "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.833", + "deps": [ + "emacs" + ] + }, + "el-get": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/el-get.git", + "sha256": "89445520430c47659a6e37bdbb9d26934b7830136c45c61bb341c04e9e4bd6bd", + "rev": "56d72507c1af03d1c719dcac62a0c365857cc10e" + }, + "recipe": { + "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.1015", + "deps": [] + }, + "markdown-mode+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/markdown-mode-plus.git", + "sha256": "d9246f2221a8b4f7540e2400e37773d7abd3f47fea3e40b87bd380229d19b4a9", + "rev": "f35e63284c5caed19b29501730e134018a78e441" + }, + "recipe": { + "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120829.710", + "deps": [ + "markdown-mode" + ] + }, + "feature-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/michaelklishin/cucumber.el.git", + "sha256": "ad68454443473eab381c7d3e8456abd4d67de23d7e2ad64edca041a95c3f62a1", + "rev": "40886bc4cc5b1e855d6bb78505ebc651593d409d" + }, + "recipe": { + "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141121.1230", + "deps": [] + }, + "dired-details+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-details+.el", + "sha256": "119x9mclyhxfp2zr5rmh5jxl2h2wb82phbm8kvlkxa4kcwaiw04y" + }, + "recipe": { + "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1550", + "deps": [ + "dired-details" + ] + }, + "mouse3": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mouse3.el", + "sha256": "1jxqvhfjsnjdp0c0zndj7p77vxfscs4z4s7csrd8gi9cli8pmgwi" + }, + "recipe": { + "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150402.1829", + "deps": [] + }, + "unkillable-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/EricCrosson/unkillable-scratch.git", + "sha256": "4c61e80e71b8aca303168b9ef7f0aed54fc494eaeb2f28ef5fabe09dab8bea76", + "rev": "55a196d0c7001bfc8cf9c6cc532a5dc94e95baf8" + }, + "recipe": { + "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150328.118", + "deps": [] + }, + "edit-server-htmlize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/frobtech/edit-server-htmlize.git", + "sha256": "835ec7929f43517cce6cc3bf6fe2ba2641b6083e5c999056fe6218d60bc19d9c", + "rev": "e7f8dadfabe869c77ca241cd6fbd4c52bd908392" + }, + "recipe": { + "sha256": "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130329.1748", + "deps": [ + "edit-server" + ] + }, + "multi-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/IvanMalison/multi-line.git", + "sha256": "e96adce716494008044b875e6e4c042071f61f879bd0b7549c7a9a888c43b899", + "rev": "a46b34340a3dd1cba42ee0f41d6b599500f06233" + }, + "recipe": { + "sha256": "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1813", + "deps": [ + "emacs" + ] + }, + "crm-custom": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/crm-custom.git", + "sha256": "7273029e19913ed73b54f1d645101f1981d5fc546dd433ec80c82d81292f643d", + "rev": "fbcf8bf3c87f56cb872d840dd79b6727b886e90d" + }, + "recipe": { + "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140816.1148", + "deps": [] + }, + "soundcloud": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tthieman/soundcloud.el.git", + "sha256": "db14f9ccec3456463e25d208788d2665d609841b2d2f52732ef801e44d651cd5", + "rev": "f998d4276ea90258909c698f6a5a51fccb667c08" + }, + "recipe": { + "sha256": "1jl9sk372j4162av9kfcbqp0cc5wpm86nkqg8rskfgmsi4ncp4ph", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150501.2226", + "deps": [ + "deferred", + "emms", + "json", + "request", + "request-deferred", + "string-utils" + ] + }, + "ace-link": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/ace-link.git", + "sha256": "880584ac44ffae0c1e6161abc92b9baee5ec6ab7f293dab6a6cdb6ac77b9c773", + "rev": "b03a91df61f8885c33c8c6812e656a86918572f0" + }, + "recipe": { + "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151019.1035", + "deps": [ + "avy" + ] + }, + "anaphora": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/anaphora.git", + "sha256": "7f008c227a19feedd9d53ed7c9bcc8620297bb36a7bf83467fb4d8057427ed8d", + "rev": "ed99ad4502e6fccde76050496984c6454676a410" + }, + "recipe": { + "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140728.1736", + "deps": [] + }, + "wc-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/wc-mode.el", + "sha256": "15wz0c0rsn02zl6yr8mpwzy2hvp2146krhdbjpq63l75w4i98w4d" + }, + "recipe": { + "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150116.2302", + "deps": [] + }, + "csv-nav": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/csv-nav.el", + "sha256": "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva" + }, + "recipe": { + "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130407.1320", + "deps": [] + }, + "tiny": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/tiny.git", + "sha256": "43b1b69cb2c9d56358c784063b0d05dd7d81928b2e692e055bdeb9efc042bf56", + "rev": "d775201a6e14aae03dda032132aa288ca93bddc4" + }, + "recipe": { + "sha256": "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.405", + "deps": [] + }, + "grass-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/tws/grass-mode.el", + "sha256": "0djv2ps2ahw9b1b5i45hgy7l7cch7cgh7rzq601c0r6vi7gm2ac5", + "rev": "aa8cc5eff764" + }, + "recipe": { + "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1120", + "deps": [ + "cl-lib", + "dash" + ] + }, + "fish-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wwwjfy/emacs-fish.git", + "sha256": "58bd36b5d693c258bdeb74b62acf8f47f177664b54b3e0648c193635d314083e", + "rev": "683af1c17c9dfe947166ae4a73fe97a4920d7973" + }, + "recipe": { + "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.334", + "deps": [ + "emacs" + ] + }, + "ercn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/ercn.git", + "sha256": "9b0512b3cd73439bb2a18df24036650abcb7489c84789d7d0db64ef25d6a8377", + "rev": "79a4df5609046ae2e2e3375998287be6dda80615" + }, + "recipe": { + "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150523.1003", + "deps": [] + }, + "roy-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/folone/roy-mode.git", + "sha256": "e8931710fe57510874f561650c39c614f67f7b5aa915d9376f0be6dedb446dde", + "rev": "0416f561edbc6b4a29fced8be84d2527a9613d65" + }, + "recipe": { + "sha256": "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121208.558", + "deps": [] + }, + "jump": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/jump.el.git", + "sha256": "20e006d93a1db36158963a4441c2b671e49d01e22eaa1790c05ca10d5c9837aa", + "rev": "56cec33dd98231a95faa26dd4c0612885d923f78" + }, + "recipe": { + "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.329", + "deps": [ + "findr", + "inflections" + ] + }, + "list-packages-ext": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/list-packages-ext.git", + "sha256": "3a5024de92a3a5e3f6a76157ad6647bfaf55ba5ee4f4149132bf797346c1870a", + "rev": "b4dd644e4369c9aa66f5bb8895ea49ebbfd0a27a" + }, + "recipe": { + "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.1116", + "deps": [ + "ht", + "persistent-soft", + "s" + ] + }, + "ert-junit": { + "fetch": { + "tag": "fetchgit", + "url": "https://bitbucket.org/olanilsson/ert-junit", + "sha256": "eedfdd6753c32d16baa341e6d20abee8713921d8eb850d16782cde55bdbeec46", + "rev": "c303c04da7a3ba4d2c46b00b79b67ff7ec57cc6d" + }, + "recipe": { + "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140830.1721", + "deps": [ + "ert" + ] + }, + "railgun": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mbriggs/railgun.el.git", + "sha256": "85ab5f757c8b718994830f37301ebad78487e2c0d3d0827996c39bea799b8ffd", + "rev": "66aaa1b091baef53a69d0d7425f48d184b865fb8" + }, + "recipe": { + "sha256": "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121017.57", + "deps": [] + }, + "clj-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clj-refactor.el.git", + "sha256": "bf744ac943dd6aad1a5c6eeb255ba601832d626ec89da91ce06d2fbea7a364de", + "rev": "3b11a7d8cfa23ec4887ccc093574c239f57900d7" + }, + "recipe": { + "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.400", + "deps": [ + "cider", + "dash", + "edn", + "emacs", + "hydra", + "inflections", + "multiple-cursors", + "paredit", + "s", + "yasnippet" + ] + }, + "org-autolist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/calvinwyoung/org-autolist.git", + "sha256": "d12aa1c4b5fe20505b1c8a276cf917da774e00c05df3d7006c7bd7b5ffc3ce48", + "rev": "da332fadcd9be4c5eb21c5e98c392b89743750b2" + }, + "recipe": { + "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150922.905", + "deps": [] + }, + "nameframe-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/john2x/nameframe.git", + "sha256": "855f462993a0e81d7e903a249446b96e373801ac1c424b2f5a7e08adb3e7ef1f", + "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" + }, + "recipe": { + "sha256": "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.407", + "deps": [ + "nameframe", + "projectile" + ] + }, + "helm-bind-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/helm-bind-key.el.git", + "sha256": "3e1040f9948ac0592777b2aa14aa69a916bc8c3a96d0a23c725a684ff0f1acf2", + "rev": "9da6ad8b7530e72fb4ac67be8c6a482898dddc25" + }, + "recipe": { + "sha256": "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141108.2315", + "deps": [ + "bind-key", + "helm" + ] + }, + "evil-escape": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-escape.git", + "sha256": "c81e8fac620edf194bafe61a644a3eaa0c13bf8248adce22cae5545a001ad58e", + "rev": "befb07d03c0c06ff5c40eb9cdd436c97fc49f394" + }, + "recipe": { + "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.2028", + "deps": [ + "cl-lib", + "emacs", + "evil" + ] + }, + "camcorder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/camcorder.el.git", + "sha256": "c8bd8748e38e568c7de0fa1f455ffcffe7576ce316375a1b056df63d7d9ab5bb", + "rev": "bfef46deae617825089fb06591e5c25c82a2d4be" + }, + "recipe": { + "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1012", + "deps": [ + "cl-lib", + "emacs", + "names" + ] + }, + "make-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/make-color.el.git", + "sha256": "5b380e1ab864c63a9ed97a5ba12233d53a304ae551633b6bfedd30c4f9d41879", + "rev": "a1b34e95ccd3ebee4fba1489ab613d0b3078026d" + }, + "recipe": { + "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140625.650", + "deps": [] + }, + "nand2tetris": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CestDiego/nand2tetris.el.git", + "sha256": "e777f63618e3d84ec2c4be0a52dd8c7f46b736d0535fc3e75c00a7ffef7c7f00", + "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" + }, + "recipe": { + "sha256": "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1651", + "deps": [ + "names" + ] + }, + "german-holidays": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rudolfochrist/german-holidays.git", + "sha256": "019c482e07a935dd513147977c37e43671f921d8c30439027d949bb634e1840c", + "rev": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc" + }, + "recipe": { + "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151102.943", + "deps": [] + }, + "traad": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/traad.git", + "sha256": "c088c0534c81446b4f1632d74f784cbfa2d07d8bd2782121c30323dd401db3bf", + "rev": "022cda646ec9b7102c73899e6305bfdfc0402ba5" + }, + "recipe": { + "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.815", + "deps": [ + "deferred", + "popup", + "python-environment", + "request", + "request-deferred" + ] + }, + "save-sexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/save-sexp.git", + "sha256": "2c310c995f4b2745709269ba9f14eb75fbd18b37c6e320907518639b70b3ba49", + "rev": "31bd739269e14df70f9519417370ba69a53e540d" + }, + "recipe": { + "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150731.1046", + "deps": [] + }, + "fringe-helper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/fringe-helper.el.git", + "sha256": "dce636d4d268c687b14ef4c2804ea02a7875f9e88bf352e7bf5a69434cebc431", + "rev": "ef4a9c023bae18ec1ddd7265f1f2d6d2e775efdd" + }, + "recipe": { + "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140620.1609", + "deps": [] + }, + "bufshow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pjones/bufshow.git", + "sha256": "21b136aea7dda2c694e08d66fdfeb4466813551550edef4f25dd3cf699857d5f", + "rev": "afabb87e07da7f035ca0ca85ed95e3936ea64547" + }, + "recipe": { + "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130711.1239", + "deps": [ + "emacs" + ] + }, + "esh-help": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tom-tan/esh-help.git", + "sha256": "baa65aafb646faf9e17a3afcfc2e0d3277e59497524e9385ebb0f7614e6fdbf9", + "rev": "3dc15f2f6086d4e4da977468fda67229a859c927" + }, + "recipe": { + "sha256": "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140107.422", + "deps": [ + "dash" + ] + }, + "plsql": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/plsql.el", + "sha256": "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1" + }, + "recipe": { + "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121115.443", + "deps": [] + }, + "ebal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/ebal.git", + "sha256": "f7a6ff648e81738a010180e1889a741966c487e9f072db9101dd57336f923590", + "rev": "ef0a288d9b6e557532d772c146ff02aa82771f13" + }, + "recipe": { + "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.15", + "deps": [ + "emacs", + "f", + "ido-completing-read+" + ] + }, + "coffee-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/defunkt/coffee-mode.git", + "sha256": "e8ab4c5468b7eedbc5953ca77879e830e96187630df33ad0ec9a7079ef0e2b9f", + "rev": "d19075264dc1f662e2282ca42ce70be0eae61b2a" + }, + "recipe": { + "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.828", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "usage-memo": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/usage-memo.el", + "sha256": "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i" + }, + "recipe": { + "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110722.1051", + "deps": [] + }, + "smartparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/smartparens.git", + "sha256": "21916a0e68a041d94bcacdfd89fca55bb2bfe0ce4638f925626671585cc7172d", + "rev": "951c2e2b78901232da1feaf8f402a699d6193bf3" + }, + "recipe": { + "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1707", + "deps": [ + "cl-lib", + "dash" + ] + }, + "grunt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gempesaw/grunt.el.git", + "sha256": "5b0bd28ab647d681a7700dd11568ab31c18e00eda41b6490fb579dab2762d3da", + "rev": "42bcab2990a27e0f8cf22eee87089c95eb9fae29" + }, + "recipe": { + "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.1029", + "deps": [ + "ansi-color", + "dash", + "emacs" + ] + }, + "buffer-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/buffer-utils.git", + "sha256": "1083e13f138fbf62796f951b2e58816669b7670cacbb6becd9724cb05d34bf90", + "rev": "685b13457e3a2085b7584e41365d2aa0779a1b6f" + }, + "recipe": { + "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140512.900", + "deps": [] + }, + "elscreen-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/robario/elscreen-persist.git", + "sha256": "ef941e8dde02a163bd48405d4533e5450b53fc149cd8ec576abfeee923183165", + "rev": "9d8c9a2f0fc39e064c51b703d84160c06629477d" + }, + "recipe": { + "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141220.238", + "deps": [ + "elscreen", + "revive" + ] + }, + "scheme-here": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/judevc/scheme-here.git", + "sha256": "396663288624bbbe8795f0fd6aea37969df025d366634ced56482e9be1cd9b25", + "rev": "430ba017cc530865218de23a8f7985095a58343f" + }, + "recipe": { + "sha256": "137qqfnla3hjm6qcnzpsgrw173px0k5dwq9apns5cdryxx3ahcvv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141028.218", + "deps": [] + }, + "dictcc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cqql/dictcc.el.git", + "sha256": "7716c0814fb39839a2f2e79c7c2fbbd5cbdb49c12a68cbfd088dddd0a96fcc81", + "rev": "5cc898de535536380e1031b67421bd2a00cdd689" + }, + "recipe": { + "sha256": "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150731.455", + "deps": [ + "cl-lib", + "dash", + "emacs", + "helm", + "s" + ] + }, + "ido-clever-match": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Bogdanp/ido-clever-match.git", + "sha256": "7bd351520b6206497f163b7075e8cb9a79e1af356c30fb0aa00d1c269ce8f455", + "rev": "f173473e99c8b0756f12e4cc8f67e68fa59eadd3" + }, + "recipe": { + "sha256": "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151011.1226", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "pyenv-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/pyenv-mode.git", + "sha256": "a9b2dd824e7f96be72c49dc944caa76dc380e6216a8a855ad1b5d1a9350829a5", + "rev": "93ddeb2c0fabc224496cdf5ff688243a208376c4" + }, + "recipe": { + "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.441", + "deps": [ + "pythonic" + ] + }, + "iplayer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/csrhodes/iplayer-el.git", + "sha256": "660f0f7dc828a941c7ae9e3db4f3fee797512931fe281d1078be7d4464b46d10", + "rev": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a" + }, + "recipe": { + "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.455", + "deps": [] + }, + "ruby-tools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ruby-tools.git", + "sha256": "a344c12bda2fd00215db7e585e92c0f07adb0ab82f852c819108a0cf18403701", + "rev": "6b97066b58a4f82eb2ecea6434a0a7e981aa4c18" + }, + "recipe": { + "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.1015", + "deps": [] + }, + "multi-term": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/multi-term.el", + "sha256": "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim" + }, + "recipe": { + "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.720", + "deps": [] + }, + "hardcore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/hardcore-mode.el.git", + "sha256": "cb3182e9524931ce6d7d8eb799a62b2e99aa3c93c6fb22c67787f57707409388", + "rev": "b1dda19692b4a7a58a689e81784a9b35be39e70d" + }, + "recipe": { + "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.101", + "deps": [] + }, + "e2wm-R": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/e2wm-R.el.git", + "sha256": "2e86a886f2927ab3e580fec654b90b067f80bbd4ffac6083161fc43ade450a46", + "rev": "4bcf8c38d4ec38bb575d553a5d4a247d1777bf7b" + }, + "recipe": { + "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130506.8", + "deps": [ + "e2wm", + "ess", + "inlineR" + ] + }, + "bibtex-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/plantarum/bibtex-utils.git", + "sha256": "ed26628ba13c8a66e0e5b02509017e07d95094f67b4c4d9b50708f2e808af368", + "rev": "1695db9f4f9198bb27f219bd4da7d34a9ae58069" + }, + "recipe": { + "sha256": "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150924.847", + "deps": [] + }, + "fold-this": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/fold-this.el.git", + "sha256": "162a940af9e144455901322628779754c14a6094427ae8912cd41a73fd5d6ab1", + "rev": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a" + }, + "recipe": { + "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150601.542", + "deps": [] + }, + "mowedline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/retroj/mowedline.git", + "sha256": "5386a121a36f481db8feded92b798a26a0542e7781afebe60fd3d712e8e53189", + "rev": "058d5fad71c9895ab36cf83b3f0a0b722054cb19" + }, + "recipe": { + "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150601.1209", + "deps": [] + }, + "keychain-environment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/keychain-environment.git", + "sha256": "9125bf86edaa9a10537c4918cd3126a1ebed6e3cca99df41658abe8797dfa776", + "rev": "c4c87cf3b3f13c1d73efe8fccf5f2c68ebe04abe" + }, + "recipe": { + "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150416.1458", + "deps": [] + }, + "parent-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/parent-mode.git", + "sha256": "d15abdfd5808c0979276b95163f128917f2f4e2f34dd4c31d7a667efe961ab44", + "rev": "db692cf08deff2f0e973e6e86e26662b44813d1b" + }, + "recipe": { + "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150824.1800", + "deps": [] + }, + "frame-tag": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/liangzan/frame-tag.el.git", + "sha256": "14a3724395839fede34a2f2d61c3a55c4ea619b316c91a735b419e0bc8348370", + "rev": "7018490dbc3c39f2c959e38c448001d1864bfa17" + }, + "recipe": { + "sha256": "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.118", + "deps": [ + "cl-lib" + ] + }, + "midje-test-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bpoweski/midje-test-mode.git", + "sha256": "51b5717bc2e30ec904ec4b28b5fb4655d9b67bc250f85e271c1e6d5bd8ed9537", + "rev": "46fc081865d48f30b950f21a597eadd59a802fc9" + }, + "recipe": { + "sha256": "0i5j9bnrncxar8hpy3d0566d0y5s4ywakskf27d3kxfyrwqi4l4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131208.1114", + "deps": [ + "cider", + "clojure-mode" + ] + }, + "git-gutter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-git-gutter.git", + "sha256": "5106367b34f9cc9f9f11aea7aa209570cdbed4fce1b44baedca0be76c70bccf3", + "rev": "febe69d909beb407d07dfc1b273ae7b7719fdd7c" + }, + "recipe": { + "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.203", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "flycheck-flow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lbolla/emacs-flycheck-flow.git", + "sha256": "45e03e5c12ee5dd2a423e59919bab194439f2c297b0f939d4363b7a22a6d363b", + "rev": "9629a5dc9a0662ea513783105fc884855379b89c" + }, + "recipe": { + "sha256": "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1716", + "deps": [ + "flycheck" + ] + }, + "highlight-cl": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-cl.el", + "sha256": "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw" + }, + "recipe": { + "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091012.1230", + "deps": [] + }, + "stylus-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianc/jade-mode.git", + "sha256": "a1ea208906058e467379043b34324400ace1077f69b3bc46d75b2a6698f527d2", + "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" + }, + "recipe": { + "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150313.1012", + "deps": [ + "sws-mode" + ] + }, + "peg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ellerh/peg.el.git", + "sha256": "7660e0ed59cbe62385b850ecdc0a2b0c5bad7466d8e3f7d32615d845203b5f4e", + "rev": "081efeca91d790c7fbc90871ac22c40935f4833b" + }, + "recipe": { + "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150708.141", + "deps": [] + }, + "cask": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cask/cask.git", + "sha256": "f88f09cbeeb57689c519e6a29258db64214035a7bf7b2d023f9d0768d57337f8", + "rev": "acd19283ff2da1c37c30015bcd83b012b33cf3c5" + }, + "recipe": { + "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.728", + "deps": [ + "cl-lib", + "dash", + "epl", + "f", + "package-build", + "s", + "shut-up" + ] + }, + "pcmpl-homebrew": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaihaosw/pcmpl-homebrew.git", + "sha256": "244aeb55b9b18bcfb9da690426a15ebb87d18e0a5216dd3e7f1fb6024091259e", + "rev": "a2b9026a1b3c8206d0eca90c491c0397fb275f94" + }, + "recipe": { + "sha256": "1gckzcwpg4am1ryjy08aic98mbafb64wkfmnm98d64kiwbpaacly", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150506.2052", + "deps": [] + }, + "ace-jump-helm-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/ace-jump-helm-line.git", + "sha256": "538cd180f81e168cd63803b1a5a64332af2f91a4ae9f8e64a237cf2092b7d079", + "rev": "8400dbdd93d0442493f74f4030b09bbfac2d5700" + }, + "recipe": { + "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.1300", + "deps": [ + "avy", + "helm" + ] + }, + "keyword-search": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/keyword-search/keyword-search.git", + "sha256": "18bf0e5982aa8b4cf888e25dca8c56286cb9c71d4bf994a9f766b9982e9d847f", + "rev": "1a01e3d5a43e48701cfab0332876284f5d3a1bba" + }, + "recipe": { + "sha256": "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150911.432", + "deps": [] + }, + "puml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skuro/puml-mode.git", + "sha256": "7f6fbbef5db6d7aa9af8133f5b9543415634f35b43f5edcc06e8ceed5cb98295", + "rev": "9d3b5e326d1e68f87711c2ccb0920e2f5db5550b" + }, + "recipe": { + "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1023", + "deps": [] + }, + "gnus-summary-ext": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/gnus-summary-ext.git", + "sha256": "cbec3a1111d2fc5e2b6f64c9326655f54e81593a1fd2d08fe7bc6eae0b1cebb7", + "rev": "6be01a82819dc73b0650d726e17d0adb44b72c2b" + }, + "recipe": { + "sha256": "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150119.2033", + "deps": [] + }, + "bbdb-ext": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/bbdb-ext.git", + "sha256": "24d3b04f67b706057bde1e0afae6fdc69764c209f7598907b45732ec57e1cd25", + "rev": "ae5ad8f0de8c1f11739310909d963b8fc6c368dc" + }, + "recipe": { + "sha256": "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130513.1352", + "deps": [ + "bbdb" + ] + }, + "ac-html-csswatcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/ac-html-csswatcher.git", + "sha256": "39b3c8008b670ff4c91fe9cc60c05d66d69cf342b7ee3b8e933217f885e18b6b", + "rev": "b0f3e7e1a3fe49e88b6eb6432377232fc715f221" + }, + "recipe": { + "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1513", + "deps": [ + "web-completion-data" + ] + }, + "viewer": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/viewer.el", + "sha256": "0lns0ic3zjz1km02674d9hxgnp6wlhk168wyr6h4vhpr8a71x9mb" + }, + "recipe": { + "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141021.1338", + "deps": [] + }, + "gmail2bbdb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/gmail2bbdb.git", + "sha256": "7f687cb5d31abe5ab4df19c8229dc51cbe8d11b2dd409e5c2007522ca3551006", + "rev": "f0e23a1262bb683285b381b1d142478ba345af1a" + }, + "recipe": { + "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150909.2039", + "deps": [] + }, + "wolfram-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/wolfram-mode.git", + "sha256": "7c446844b6243cb2cde60496d8aa84ed2e7c8cfa0c40a1f93da8a6f82403caf6", + "rev": "72cb36975816a9a7b677269e19b9ff431f597ed7" + }, + "recipe": { + "sha256": "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140118.957", + "deps": [ + "emacs" + ] + }, + "flymake-easy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-easy.git", + "sha256": "44dca289ebfead0259c991dbc1b29782441041d771c43885771c9f0f86a48d22", + "rev": "de41ea49503f71f997e5c359a2ad08df696c0147" + }, + "recipe": { + "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140818.255", + "deps": [] + }, + "sane-term": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/adamrt/sane-term.git", + "sha256": "7ce0efe6aa0daa7fd76b954552b5f24b134babdda0b257a393f6cbbf8435cbe4", + "rev": "1d0c1410050cb50034c9e065dfde3e7ec5bc31b7" + }, + "recipe": { + "sha256": "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150917.1802", + "deps": [ + "emacs" + ] + }, + "org-repo-todo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/org-repo-todo.git", + "sha256": "29df65e0cbc2df34850fac68fd08af6c4cbba79d758093066d25d1cdbf44880d", + "rev": "904a26089d87db59a40421d6f857b189e70dfbe3" + }, + "recipe": { + "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141204.1541", + "deps": [] + }, + "anything": { + "fetch": { + "tag": "fetchgit", + "url": "http://repo.or.cz/r/anything-config.git", + "sha256": "e90ded84609e59a4cef22bfd9d9a543ec6b677b78ab44fb4eb6cbae9eb248669", + "rev": "2d7e0450e13ab04b20f4dff08f32936e78677e58" + }, + "recipe": { + "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.2103", + "deps": [] + }, + "headlong": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/headlong.git", + "sha256": "387b5b253c75956dc08cb34cdc39e89bb6f6b7de05a14ce4caf73ba2cc35181a", + "rev": "f6830f87f236eee88263cb6976125f72422abe72" + }, + "recipe": { + "sha256": "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150417.1026", + "deps": [] + }, + "robe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgutov/robe.git", + "sha256": "e539d39b77031e8ee46a51c4bcf47f64354a55c1909e13b5aa483de91e806ffd", + "rev": "c5a0ae6f68c699ec3cdbb73a3e01e76f62d75f48" + }, + "recipe": { + "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1658", + "deps": [ + "inf-ruby" + ] + }, + "espresso-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgutov/espresso-theme.git", + "sha256": "d85f5b6f962c7a8bb4fcf8e56b76bae34c1ca7281aab1e974fd801ff1a912747", + "rev": "c3a524e873f33923fe511791197a66dea5156687" + }, + "recipe": { + "sha256": "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130301.148", + "deps": [] + }, + "ob-axiom": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/pdo/axiom-environment", + "sha256": "1vk7jjbf8wp183c4nagkgxvzcyrdlr53avzsxl111rm5rsxbvdli", + "rev": "d7ea57a27527" + }, + "recipe": { + "sha256": "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.1700", + "deps": [ + "axiom-environment", + "emacs" + ] + }, + "git-auto-commit-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ryuslash/git-auto-commit-mode.git", + "sha256": "44c1a10ad5486a133e9a53d6e75367ef4b8075b14b320411e633ef86cce1b016", + "rev": "075e5f9ded66c2035581a7b216896556cc586814" + }, + "recipe": { + "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150404.951", + "deps": [] + }, + "company-go": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nsf/gocode.git", + "sha256": "74ecbb430ff799ee9f47b524b141f582f5fcf810e746687b8b39742f1ade2d6f", + "rev": "2b99fc4d372b017483b7596c4577bf5f15479772" + }, + "recipe": { + "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1224", + "deps": [ + "company", + "go-mode" + ] + }, + "light-soap-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/light-soap-theme.git", + "sha256": "28ea7de39931fb9fb5a381d9b5332b8cac24de34a24d371ac9d8bc2a3e9ab111", + "rev": "76a787bd40c6b567ae68ced7f5d9f9f10725e00d" + }, + "recipe": { + "sha256": "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150607.945", + "deps": [ + "emacs" + ] + }, + "google-translate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atykhonov/google-translate.git", + "sha256": "62a51789cbbd8eb1bc9ce4949a8de7a9cd7c3aba844d84ac64ac9367a3cf5ddd", + "rev": "e3f3981895d829a05f6f92d4db065c4b46076ff7" + }, + "recipe": { + "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.1420", + "deps": [] + }, + "kfg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/kfg.git", + "sha256": "acc80331b30d70adfadef315bde21c22a672ee05b17c35c9227a72ff7b190877", + "rev": "d2c9dd26618fb2f7bf1e7b6eae193b1cceba3c97" + }, + "recipe": { + "sha256": "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140909.38", + "deps": [ + "f" + ] + }, + "batch-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/batch-mode.el", + "sha256": "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p" + }, + "recipe": { + "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140807.1550", + "deps": [] + }, + "puppet-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/puppet-mode.git", + "sha256": "f87858f13c64aa3c525610daea0d017b042ef3f518976f9a0822fb0001eea76f", + "rev": "268ec790603a4121f62822ca6c26e9038a1b0375" + }, + "recipe": { + "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150730.1408", + "deps": [ + "emacs", + "pkg-info" + ] + }, + "region-state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/region-state.el.git", + "sha256": "2e3c23e8cd86e52bbcfa9c619f9ac555088e166a4959dfbece7f779c4307503f", + "rev": "07ffb7d9ada2fcd204f3447f078c265d25f36f60" + }, + "recipe": { + "sha256": "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.438", + "deps": [] + }, + "heroku-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jonathanchu/heroku-theme.git", + "sha256": "4d469acc927b9f5cd6e1ba2ee259c0471dd6a5de09950ce2b402240291598839", + "rev": "8083643fe92ec3a1c3eb82f1b8dc2236c9c9691d" + }, + "recipe": { + "sha256": "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150522.2119", + "deps": [] + }, + "commify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ddoherty03/commify.git", + "sha256": "22e8330f721e34492ed79e83d5bce5a85b3cdef99693753b02250d775af269c4", + "rev": "921467f666c05ccec9cf3bc0a8168eade20bcb6a" + }, + "recipe": { + "sha256": "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.338", + "deps": [ + "s" + ] + }, + "fillcode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/snarfed/fillcode.git", + "sha256": "87f01c76f0572de76081368fdfcdf42f63f7994527d1fc7d7bd8b4ca56af3cf5", + "rev": "ae5f6c6de81a7681c8f883e7fce36fd0f2b3c1e8" + }, + "recipe": { + "sha256": "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150812.1141", + "deps": [] + }, + "gs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/emacs-grads.git", + "sha256": "cf67b5c75559f52ea0168ad3d6fdcc2be449ea50cd33de0e75f8a8314eb7b64c", + "rev": "1a13051db21b999c7682a015b33a03096ff9d891" + }, + "recipe": { + "sha256": "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.406", + "deps": [] + }, + "mip-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gaudecker/mip-mode.git", + "sha256": "cc4e02c5d93ca9fb3f9ecef74f0a182362423fa13ae2b7fb00b68104488c698a", + "rev": "7c88c383b4c7ed0a4c1dc397735f365c1fcb461c" + }, + "recipe": { + "sha256": "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.17", + "deps": [] + }, + "marmalade-client": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-marmalade-upload.git", + "sha256": "99ae633075f61392a8c6d893b3ba26997edb2ef2f79022e7afc545671308f304", + "rev": "f315dea57e4fbebd9ee0668c0bafd4c45c7b754a" + }, + "recipe": { + "sha256": "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141231.1407", + "deps": [ + "gh", + "kv", + "web" + ] + }, + "live-code-talks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/live-code-talks.git", + "sha256": "a231172de5fa098b4b1fdce86491fee9579ec1a8b5ff7e522fa7b4e3b7165dc9", + "rev": "fece58108939a53104f88d348298c9e122f25b75" + }, + "recipe": { + "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150115.1623", + "deps": [ + "cl-lib", + "emacs", + "narrowed-page-navigation" + ] + }, + "smooth-scroll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k-talo/smooth-scroll.el.git", + "sha256": "668ccfdcd9b25ba6ea15b3b4e0c25bb76aad802dd73fb9df6290ddf52ca93887", + "rev": "02320f28abb5cae28b3a18f6b9ce93129bdbfc45" + }, + "recipe": { + "sha256": "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130321.2314", + "deps": [] + }, + "helm-c-moccur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/helm-c-moccur.el.git", + "sha256": "86b08a004db181457c67ed38b26f770496105dc2c8e063420fe22966d5d234ea", + "rev": "a0f70c8bc750b1e0a5f417a70c9ca192eb7a1e83" + }, + "recipe": { + "sha256": "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150213.2142", + "deps": [ + "color-moccur", + "helm" + ] + }, + "unicode-fonts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-fonts.git", + "sha256": "bb7c92bbcc216a5c9556adfcfeecd87e43e91eecce2d68d4bf76eefca41da6bc", + "rev": "a36597d83e0248bd0e6b2c1d5fb95bff72add527" + }, + "recipe": { + "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150826.1732", + "deps": [ + "font-utils", + "list-utils", + "pcache", + "persistent-soft", + "ucs-utils" + ] + }, + "eww-lnum": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/eww-lnum.git", + "sha256": "40e8319d2d40dc4754d452420f2fe5dba0df02fa572f36060369289e4f70dfc4", + "rev": "4b0ecec769919ecb05ca4fb15ec51911ba589929" + }, + "recipe": { + "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150102.912", + "deps": [] + }, + "mbe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ijp/mbe.el.git", + "sha256": "665d218cb926450c6b4ccb8c34c34883d0f5f2628042dc1dca5f5cfbdaf3dcff", + "rev": "bb10aa8f26bb7e9b1d5746934c94edb00402940c" + }, + "recipe": { + "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.534", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "relative-line-numbers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/relative-line-numbers.git", + "sha256": "0aa8d25c1e14ce6eb731656e34d8e21aa914d3a94bb058c25e796ed18e860ee5", + "rev": "64157db08b0c2f5fada3209fc8d3e4b4c7429978" + }, + "recipe": { + "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.1646", + "deps": [ + "emacs" + ] + }, + "electric-case": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/electric-case.git", + "sha256": "28432f21b871128f02544a9b2ad81d6c8aaefbfff00b6826609d649dc2089e68", + "rev": "bac64e772107e3dc721a9819f63b9ebdc28a81f7" + }, + "recipe": { + "sha256": "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150417.612", + "deps": [] + }, + "python-mode": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/python-mode-devs/python-mode.git", + "sha256": "73c91e494d616370b0438c0e060b93ced188919a60f59225a56d10209eff5c60", + "rev": "e8372b87b802ec1771dead1505af9ba71fc04b8d" + }, + "recipe": { + "sha256": "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.426", + "deps": [] + }, + "ob-sml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/swannodette/ob-sml.git", + "sha256": "cf7be992aad98b0eacf7bcd3fb1187506b6aaf20e8557955ee91bd8888b2d53f", + "rev": "958165c92b6cff6cada5c85c8ae5887806b8451b" + }, + "recipe": { + "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130829.1343", + "deps": [ + "sml-mode" + ] + }, + "mu4e-alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iqbalansari/mu4e-alert.git", + "sha256": "f9cbf71b5a8ea7f18ef71f09ff3dafd1f001fb72bd1f268f3303ecc672227ad2", + "rev": "2331db1777a401a1385bfadb6d46eaf4d7fc555f" + }, + "recipe": { + "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.317", + "deps": [ + "alert", + "emacs", + "s" + ] + }, + "preseed-generic-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/suntong001/preseed-generic-mode.git", + "sha256": "403aab634dd51ab8626c2ef6e8b75074e51c05e13dfdd80f7272102c984dd1b7", + "rev": "19bce980d41607bef8af4b1901343abfca0f0855" + }, + "recipe": { + "sha256": "0c0zs07lspwczbcba56fai0rshjzx9zd3jqxgj9nwjf9xlcr8m3j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150119.1441", + "deps": [] + }, + "erc-colorize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisirs/erc-colorize.git", + "sha256": "f0ded255c2d3c8de408a6c05fb6115cd5e1d6cb436d9642c2f2466e9a1516b62", + "rev": "0fdc12d222f36f352ee17da0d4fcbf77be5bf865" + }, + "recipe": { + "sha256": "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150725.909", + "deps": [] + }, + "django-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myfreeweb/django-mode.git", + "sha256": "09eae94d0931430a983e187f66c52a3d2e27ba27da36d685532af0ae00349956", + "rev": "3d82a62a7faeb2c124ac4c109e075f581c175508" + }, + "recipe": { + "sha256": "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131229.1011", + "deps": [ + "yasnippet" + ] + }, + "ham-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/ham-mode.git", + "sha256": "afec221ea694652de7261f11d786f039b64a813ce2ddf553d0eaa2409faa7d34", + "rev": "3a141986a21c2aa6eefb428983352abb8b7907d2" + }, + "recipe": { + "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150811.806", + "deps": [ + "html-to-markdown", + "markdown-mode" + ] + }, + "toggle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenspider/elisp.git", + "sha256": "36b9fbc06db84522223509ec5732ec87bf5f62ed24520f42a9ca595fb4a03181", + "rev": "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36" + }, + "recipe": { + "sha256": "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1727", + "deps": [] + }, + "slime-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-slime-theme.git", + "sha256": "5d5ada753309e3df3020aa2a0ce79ee3a3a1d18839c70b9baf5a3fa8eb4d358f", + "rev": "441288a5791d24e79ada2698888653ef3cf2ac6f" + }, + "recipe": { + "sha256": "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "modeline-posn": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/modeline-posn.el", + "sha256": "1c0pkk4jnpqs3r46yjh9srwy3ql6pkjv55m85w49kxvcflmipl9i" + }, + "recipe": { + "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150228.1213", + "deps": [] + }, + "e2wm-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-direx.git", + "sha256": "2a4aae973518f82e78efb1437f81ebb74d1ff47ba3c18cedd0a4fdc4b2682726", + "rev": "f319625b56c44e601af7c17fc6dbb88e5d70ebae" + }, + "recipe": { + "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140815.1813", + "deps": [ + "direx", + "e2wm" + ] + }, + "macros+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/macros+.el", + "sha256": "1nf8hgaig26plb7dbn81gw7q4dmnr5gh90lcm82aml8h8z5ab78q" + }, + "recipe": { + "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1820", + "deps": [] + }, + "ruby-electric": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", + "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", + "rev": "53114" + }, + "recipe": { + "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150424.952", + "deps": [] + }, + "rcirc-alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/csantosb/rcirc-alert.git", + "sha256": "e21339e42a4ab171b3b9eb8b443c88fc797e92ac5251ee2e7d620bfdc1cdbe75", + "rev": "0adf8ff9c47023fec578f678424be62b0f49057f" + }, + "recipe": { + "sha256": "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141127.447", + "deps": [] + }, + "multi-web-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/multi-web-mode.git", + "sha256": "a8142f518d71a69619d243c33a55d63d0ee2ee504732bac571966f79fb048f58", + "rev": "ad1c8d1c870334052d244c7ae3636cb7b9357b7c" + }, + "recipe": { + "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130823.2254", + "deps": [] + }, + "ctags": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/semente/ctags.el", + "sha256": "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf", + "rev": "afb16c5b2530" + }, + "recipe": { + "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110911.504", + "deps": [] + }, + "history": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/boyw165/history.git", + "sha256": "e639225dff486cc78fc052fd1ee394a4e670ea0a19b8ca5c616336f2c187c7b9", + "rev": "4bb475513f98ec07db55212a504b6167dae3a646" + }, + "recipe": { + "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150409.1934", + "deps": [ + "emacs" + ] + }, + "auto-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/auto-dictionary-mode.git", + "sha256": "4b643bc3ac02b1c9dbda36bca373fed676143cc16bb281e4597bb792a80ffeba", + "rev": "b364e08009fe0062cf0927d8a0582fad5a12b8e7" + }, + "recipe": { + "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150410.1110", + "deps": [] + }, + "defproject": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kotfic/defproject.git", + "sha256": "cd8ea23540108ca4f993425e8e62b65e111f459ca2e12152cedde1eb09650d0d", + "rev": "674d48a5e34cb4bba76faa38ee901322ec649086" + }, + "recipe": { + "sha256": "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1619", + "deps": [ + "emacs" + ] + }, + "project-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/project-persist.git", + "sha256": "8ff90cf595c202ae759835658a220787f50db5567198c03a3fe81883466481ee", + "rev": "8da45c80b23b1d7499eac11a258fd7382312a304" + }, + "recipe": { + "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150519.1524", + "deps": [] + }, + "popup-kill-ring": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/popup-kill-ring.git", + "sha256": "d646b03da29f1135b616aa52c0fadd7559aa989578dadc1bc015e43d66a5bcfd", + "rev": "5773dfadc104a906c088a3ec62e8cdd3e01e57fa" + }, + "recipe": { + "sha256": "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131020.1354", + "deps": [ + "popup", + "pos-tip" + ] + }, + "popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/auto-complete/popup-el.git", + "sha256": "8b57b907e7934ff046c9c5080172e08f925ef4c78aac14d28cec70564272d111", + "rev": "68b71de41baa22be9c12b13d1efbf619a29ceadc" + }, + "recipe": { + "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.742", + "deps": [ + "cl-lib" + ] + }, + "evil-commentary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/linktohack/evil-commentary.git", + "sha256": "aa50444330267f7698e00ccd308a39ff7c8b888ea5f7cc75912828531caa3ee2", + "rev": "122880a6721fcf16479f406c78c6e490a25efab0" + }, + "recipe": { + "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.527", + "deps": [ + "evil" + ] + }, + "mozc-im": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d5884/mozc-im.git", + "sha256": "591880c0bd0d1f6666f60542adeb7101ce4731e33b9ec80f400408de8577450e", + "rev": "eaba71ee15d0822631e2023e2ee244e98782cb2d" + }, + "recipe": { + "sha256": "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150419.649", + "deps": [ + "mozc" + ] + }, + "shut-up": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cask/shut-up.git", + "sha256": "ef307421c393568142ae6c32ed80c386c07468916525d484c6496a89a71c6a2a", + "rev": "a4fd18f37e20ae991c0dbba821b2c8e6f1679c39" + }, + "recipe": { + "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150423.722", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "orglink": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/orglink.git", + "sha256": "6dfc9bd424a99acc83c3316d07d5367c88f348de967997d9a2569ad16849c38b", + "rev": "8ba8c54395cd1818c4d58d5cd24712405f9810e0" + }, + "recipe": { + "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.1206", + "deps": [ + "dash", + "org" + ] + }, + "flymake-shell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-shell.git", + "sha256": "c99eef92e5f5cf76baf48079cac84d4053ecfbbe9b06413d06c8cf70197a613c", + "rev": "ec097bd77db5523a04ceb15a128e01689d36fb90" + }, + "recipe": { + "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121104.1300", + "deps": [ + "flymake-easy" + ] + }, + "uimage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lujun9972/uimage.git", + "sha256": "431e5b91fd9aa07f125d181b54a2b8152783b48d44198baf41b350f577b01ba7", + "rev": "29ca0f4b9f27a8d1649931cc2ce5a3c0eb655413" + }, + "recipe": { + "sha256": "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151012.804", + "deps": [] + }, + "shakespeare-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CodyReichert/shakespeare-mode.git", + "sha256": "2691fe682314de37209aaf8d46ce435ae7bfdfe30f6ca28366ca134ff8a07d6e", + "rev": "4bff63eeac2b7ec1220f17e8bbcddbea4c11cb02" + }, + "recipe": { + "sha256": "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150708.912", + "deps": [] + }, + "gregorio-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cajetanus/gregorio-mode.el.git", + "sha256": "3f6cfa9b7718deb45c9d47c0668b8cd1580f757ea0531af280d23f258cf8f2a5", + "rev": "5b618a8d05cc073bd8e6f1e4e56eceb4de60eab3" + }, + "recipe": { + "sha256": "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151026.920", + "deps": [] + }, + "ponylang-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/ponylang-mode.git", + "sha256": "23d754a3355f362c79abbfd21a48ef6738943d65038423eb2237d451fb842d33", + "rev": "9ee25b542dda6f1b776d3d9b8f34fbfa2ccb8cbc" + }, + "recipe": { + "sha256": "06fy4aiflsynnybbrahfcmg0swxrfnwn48gr8ly3sqfpc037h2f3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.450", + "deps": [ + "dash" + ] + }, + "e2ansi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/e2ansi.git", + "sha256": "bca48071c75dc14b526a22d37014ee36d22e886329403c17c1cb7dc26f9b2834", + "rev": "bd047d3d6ad02a0679582d5786afe9aee656da90" + }, + "recipe": { + "sha256": "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.1713", + "deps": [] + }, + "sunny-day-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/sunny-day-theme.git", + "sha256": "ac9600e21e9ab8ff2f0c3a4c4372d257a7fef6bb49fbf979a1fc6b2ee5841e56", + "rev": "420e0a6eb33fcc9b75c2c9e88ab60a975d782a00" + }, + "recipe": { + "sha256": "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140413.1625", + "deps": [] + }, + "rdf-prefix": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/simenheg/rdf-prefix.git", + "sha256": "12d75b5284119befdfa31f1d9c59f4382a3c40b9959c924f4721a30ee2772565", + "rev": "1ab1464172c7563a7dbf1224572e4ffbfc6608e6" + }, + "recipe": { + "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.816", + "deps": [] + }, + "bs-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/bs-ext.el", + "sha256": "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw" + }, + "recipe": { + "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.659", + "deps": [] + }, + "edit-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/enoson/edit-at-point.el.git", + "sha256": "dcc839e3adfe6454c36d73ebf63ead27994dc49f781ebc7ef0fa9cf1ec6b3c33", + "rev": "3b800c11685102e1eab62ec71c5fc1589ebb81a7" + }, + "recipe": { + "sha256": "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150716.824", + "deps": [] + }, + "centered-window-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ikame/centered-window-mode.git", + "sha256": "e7e9b7e154326e3ad5ddfe1929c27180cbc404ec684a75a26b4ccc1698675926", + "rev": "3107c8942d06e9fea180d9340828ee58ad5cb2fd" + }, + "recipe": { + "sha256": "0f5qwv4f8gn5nxsqn57bbb3y0w5whjvhv3pls88d5n68lkd1k4si", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140730.447", + "deps": [] + }, + "helm-migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/helm-migemo.git", + "sha256": "3d6ee1888c454a0f05003a6356d649b244755817511f37ff1e9e68595cbef43f", + "rev": "66c6a19d07c6a385daefd2090d0709d26b608b4e" + }, + "recipe": { + "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.2256", + "deps": [ + "cl-lib", + "emacs", + "helm-core", + "migemo" + ] + }, + "gather": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-gather.git", + "sha256": "7f4b09a451121f34dcf382b12d19d08ce3d337eebe0faca53d8dd788b3ee85a8", + "rev": "50809fbc22d70a1c724c2dd99ac5a1f818ffeb6b" + }, + "recipe": { + "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141230.738", + "deps": [] + }, + "test-simple": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocky/emacs-test-simple.git", + "sha256": "eb64bcb28aedc1e0ecf15775d47195f15d95438a3153411e9a5cf58865d52781", + "rev": "6fd325beabe3dfe72eb9ec3ceb40ee3f43ae8e92" + }, + "recipe": { + "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.2143", + "deps": [] + }, + "auto-dim-other-buffers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mina86/auto-dim-other-buffers.el.git", + "sha256": "e0a9bcaaa6d63503128ded80df0529b32d0b2b40301643363bb4e1c9ea8c959d", + "rev": "8b909cb210a9e4482bcc43858cf8d15da4ecd1d2" + }, + "recipe": { + "sha256": "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140619.1102", + "deps": [] + }, + "projectile-rails": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/asok/projectile-rails.git", + "sha256": "fcbcedf6867e0f4769b1772087bebf4e4ed0b675b3bbebe3e12a24c471e165e9", + "rev": "cc1698f6ba4c54b1d19e73ea7fb3276234a285c5" + }, + "recipe": { + "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1145", + "deps": [ + "emacs", + "f", + "inf-ruby", + "inflections", + "projectile", + "rake" + ] + }, + "furl": { + "fetch": { + "tag": "fetchhg", + "url": "https://code.google.com/p/furl-el/", + "sha256": "109z1d0zrya1s9wy28nz5ynpg4zl7i1p6q1n57m1b1kkhhckjcv5", + "rev": "9a96eeea0046" + }, + "recipe": { + "sha256": "15njmanpj3qb8ic3k4sbrngqnsg85lvlj32dmii3y9bpgvis3k6f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110112.1907", + "deps": [] + }, + "change-inner": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/change-inner.el.git", + "sha256": "3f29d042fe69e9ed7db61e7fd975aaf417bff492f3534b47a34b2abe46c23ad5", + "rev": "52c543a4b9808c0d15b565fcdf646c9779de33e8" + }, + "recipe": { + "sha256": "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150707.1044", + "deps": [ + "expand-region" + ] + }, + "flymake-yaml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/flymake-yaml.git", + "sha256": "95de0aaf47d5bbf126774e91d28da445b4f9874c537190568a9a15a4d2a8aa55", + "rev": "24cb5b744a1796e554e6dbfc6eeb237d06a00b10" + }, + "recipe": { + "sha256": "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130423.1048", + "deps": [ + "flymake-easy" + ] + }, + "tabulated-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/tabulated-list.el.git", + "sha256": "ef3cf42c91dcd61c0fcfbaf63c052418d50518957a99193d1b94450f3ad4c120", + "rev": "b547d9b728935102d1c418bc0e978c221c37f6ab" + }, + "recipe": { + "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120406.1551", + "deps": [] + }, + "hippie-expand-slime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/hippie-expand-slime.git", + "sha256": "e3633feb83abc2e85f04bb338f2ba53417b88881516e2b0455ba303eea29dd62", + "rev": "432de36799fffc920e5bff7a4691f3c67236e59c" + }, + "recipe": { + "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130907.332", + "deps": [] + }, + "pgdevenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/pgdevenv-el.git", + "sha256": "92fdf50b6d218383ea5f4ec0450135cb14b6cf2a7b91e30ff0c7b04804232d31", + "rev": "7f1d5bc734750aca98cf67a9491cdbd5615fd132" + }, + "recipe": { + "sha256": "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150105.1636", + "deps": [] + }, + "httpcode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rspivak/httpcode.el.git", + "sha256": "c4e6c0422f3fe7dc4fad5f6375c170a4a36c7f090cd37a37873f19da39465f0a", + "rev": "a45e735082b09477cd704a99294d336cdbeb12ba" + }, + "recipe": { + "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121001.2245", + "deps": [] + }, + "keyset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HKey/keyset.git", + "sha256": "de2bb5143ac69279e28c16de3f005d1de441e6a16aee82e1a5c4fb0eb4151285", + "rev": "727661420ce4b2c67c2dc6188d2822c22761904a" + }, + "recipe": { + "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150219.2330", + "deps": [ + "cl-lib", + "dash" + ] + }, + "editorconfig-fnmatch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/editorconfig/editorconfig-emacs.git", + "sha256": "acef59b5bc48c0369744d91ee949a6fb573592f999880775f92f747669652095", + "rev": "44b93337549fa501b404767852a25b7a8b9af02f" + }, + "recipe": { + "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1035", + "deps": [ + "cl-lib" + ] + }, + "plantuml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wildsoul/plantuml-mode.git", + "sha256": "75ed777d60f443ba636462a62ecf2429967a177a8f4f0ddabf7a4f9e5201f543", + "rev": "4bc4cdf7974c8b8956b848ef69f1a2b5767597aa" + }, + "recipe": { + "sha256": "0fg313mx9jz92lf9lr5apvma9ixfz02dvyzw1phsgzawi7hai264", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131031.1832", + "deps": [ + "auto-complete" + ] + }, + "anything-git-files": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarao/anything-git-files-el.git", + "sha256": "59acbcd7d2704b373cb7fc83559e36c55816d3928cb5695060a57320c8b9403e", + "rev": "efeec4f8001e2a95f36a9c31181bb30f7561015c" + }, + "recipe": { + "sha256": "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130609.443", + "deps": [ + "anything" + ] + }, + "smart-compile": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/smart-compile.el", + "sha256": "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd" + }, + "recipe": { + "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150519.1147", + "deps": [] + }, + "git-gutter-fringe+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/git-gutter-fringe-plus.git", + "sha256": "d1119bb18b5dd752e22c870ad29218ab4b2b28a752c249e26c96aefb470a52e7", + "rev": "7a2f49d2455a3a872e90e5f7dd4e6b27f1d96cfc" + }, + "recipe": { + "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140729.603", + "deps": [ + "fringe-helper", + "git-gutter+" + ] + }, + "encourage-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/halbtuerke/encourage-mode.el.git", + "sha256": "089aea9dae8addd52182bd2847419965074ab1499853153fb053dba201d1b64c", + "rev": "99edacf2d94d168d3da0609860dc7253db7c9815" + }, + "recipe": { + "sha256": "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.305", + "deps": [ + "emacs" + ] + }, + "milkode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/emacs-milkode.git", + "sha256": "5711ac50043143a6d889c838cb9bced63d334fd747d22acae49a89aa7b25e6e1", + "rev": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513" + }, + "recipe": { + "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140927.29", + "deps": [] + }, + "palette": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/palette.el", + "sha256": "13k1l2cs45fiwd0zayjfzxxrx1pqds3mkxrflmxy8y0piwx6mr1w" + }, + "recipe": { + "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150509.1607", + "deps": [ + "hexrgb" + ] + }, + "egg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/byplayer/egg.git", + "sha256": "c8bafd333056af0f212a12dc838f5e41054bcad7aa2d91997b849e3e83ba1064", + "rev": "499894195528203cfcf309228bf7578dd8cd5698" + }, + "recipe": { + "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150208.2015", + "deps": [] + }, + "aok": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/aok.el", + "sha256": "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g" + }, + "recipe": { + "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.627", + "deps": [] + }, + "quack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/quack.git", + "sha256": "c2f4a8ec29b474cad20905ead77b5c9c465b203da840c4ac8b40c96682cdf360", + "rev": "ce00cb151dde121e156c9543949d088d5ddafdbb" + }, + "recipe": { + "sha256": "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130126.1823", + "deps": [] + }, + "jaword": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/jaword.git", + "sha256": "6a3a42614e122ce44f059f084eefa28bf0d1814a97b6f95fd8b439831aef6090", + "rev": "a96bc63a08f616cc23dcc43d565e1f22a94aa9f3" + }, + "recipe": { + "sha256": "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150325.918", + "deps": [ + "tinysegmenter" + ] + }, + "greymatters-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/greymatters-theme.git", + "sha256": "77497e9ec30076369072e6fdaaa82baae3b3f5274d390c5ccea61473534d8091", + "rev": "a7220a8c6cf18ccae2b76946b6f01188a7c9d5d1" + }, + "recipe": { + "sha256": "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150621.623", + "deps": [ + "emacs" + ] + }, + "ample-zen-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mjwall/ample-zen.git", + "sha256": "4a0b465fa71d47a725a31d8b654c6705b6b51ce6bb8567a61841a5d00a95e9a3", + "rev": "b277bb7abd4b6624e8d59f02474b79af50a007bd" + }, + "recipe": { + "sha256": "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150119.1554", + "deps": [] + }, + "at": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/at-el.git", + "sha256": "180955917cd8db65f58a42b6deff9e9b9e25f1cc8b3fb5dd0e4fd099de9c0438", + "rev": "114dfe3761bf0c9dd89f794106c3a6a436ed06cc" + }, + "recipe": { + "sha256": "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140707.720", + "deps": [ + "emacs", + "queue" + ] + }, + "osx-clipboard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joddie/osx-clipboard-mode.git", + "sha256": "bba42f6aa9ac0c69bda11db78ee369d3e29b6daa68e85f609e9343d1bd0bd6de", + "rev": "e46dd31327a3f92f77b013b4c9b1e5fdd0e5c73d" + }, + "recipe": { + "sha256": "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141012.217", + "deps": [] + }, + "ac-c-headers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/ac-c-headers.git", + "sha256": "1e483885770f4695df195f6fd7f90d4eb364133a68326bb9045bbe724b90d9fc", + "rev": "de13a1d35b311e6601556d8ef163de102057deea" + }, + "recipe": { + "sha256": "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.334", + "deps": [ + "auto-complete" + ] + }, + "tern": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marijnh/tern.git", + "sha256": "ef89363dc2e2065bed8aa4203cffa25e3f5f6b39fa1bd3c11bb225982fe7e4a8", + "rev": "f585fe7d6f4da28770fdd3dc7ddf88a39ad9b105" + }, + "recipe": { + "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.853", + "deps": [ + "cl-lib", + "emacs", + "json" + ] + }, + "helm-swoop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/helm-swoop.git", + "sha256": "de00ac9f6bc4ed0ff3f4ab860fafe27c0918d9431303fc5620bc6206c42f7efc", + "rev": "d953ad605c989c40da5bc0fcb2953104ea7210e6" + }, + "recipe": { + "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151022.1950", + "deps": [ + "emacs", + "helm" + ] + }, + "skeletor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/skeletor.el.git", + "sha256": "013c5f11804d976a736e90fa72d48e6b3751af36963e5249be0059db6c6230aa", + "rev": "253b89e199d0251e3eeb6b268fe60a3337fdf5bb" + }, + "recipe": { + "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.10", + "deps": [ + "cl-lib", + "dash", + "emacs", + "f", + "let-alist", + "s" + ] + }, + "css-comb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/channikhabra/css-comb.el.git", + "sha256": "641a187c8c385ee4f162ed346be311223296cb59373c6b4947e82527548e810b", + "rev": "980251dc5d3ce0e607498f8a793f6d67a77d9cda" + }, + "recipe": { + "sha256": "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150502.1528", + "deps": [] + }, + "counsel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/swiper.git", + "sha256": "db228997b044bf1c4fc778a200e54a03095327b8c6ee7f13d8b84d24e012e2e0", + "rev": "83f89d8c3160b968a422127d14d245f3f4a2c733" + }, + "recipe": { + "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.519", + "deps": [ + "emacs", + "swiper" + ] + }, + "visual-fill-column": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/visual-fill-column.git", + "sha256": "42250fca9399ef5db123477ad6723f7677fd0f850d26d0cc8e7172800171f8d3", + "rev": "043485d16a645c8c6df5d82bc77b8fc155a818aa" + }, + "recipe": { + "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1751", + "deps": [ + "emacs" + ] + }, + "google-c-style": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/google/styleguide.git", + "sha256": "a6d5f9dcdcf525ca85e5f6f3d449879837f2b97f043f73f98a8a1849e92cb599", + "rev": "e1333014b5ffec70af81ace136c830856d13683e" + }, + "recipe": { + "sha256": "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140929.1318", + "deps": [] + }, + "android-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remvee/android-mode.git", + "sha256": "399f0199f5a124dc5a12b5f7fd4557e3d32314bf3cbc12bbbb7f6f32deb87f43", + "rev": "80629ff38e4c2f72ba1dbebd4a0abadb94d8a231" + }, + "recipe": { + "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.744", + "deps": [] + }, + "efire": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/efire.git", + "sha256": "db54758d39a1c52c1c7583ec822b4d9d8e36060c2049a2b52de32a91c6f651b0", + "rev": "91a644662afb352475efad0b377713656f131e5c" + }, + "recipe": { + "sha256": "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.1531", + "deps": [ + "circe" + ] + }, + "highlight-escape-sequences": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgutov/highlight-escape-sequences.git", + "sha256": "cfe7e33ba2e3c5c9edad64d4a3b09b008945308b510508652d3841c557404e93", + "rev": "083954e5c39b2cc10cfc12192099e76e2b84b072" + }, + "recipe": { + "sha256": "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150729.2110", + "deps": [] + }, + "hl-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ikirill/hl-indent.git", + "sha256": "4805bbfecf67d8f37240568f0fa31829051705224f8d07d334340e79bdee89c6", + "rev": "e749f726ce589e04bb508160e7b290b61fb64d75" + }, + "recipe": { + "sha256": "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141227.1530", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "undercover": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sviridov/undercover.el.git", + "sha256": "f29644cd8fc903556f2ed11d12c4e7a9318f91480489a70347d45b4223c2753a", + "rev": "1a203408a43c3d984be143768793a94b8f2ddb0c" + }, + "recipe": { + "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.1210", + "deps": [ + "dash", + "emacs", + "shut-up" + ] + }, + "dklrt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidkeegan/dklrt.git", + "sha256": "1a6af879dbad3fa2d42e7bd43e3bb0c77aa656045fe40d527058905a2cb57618", + "rev": "5d6c99f8018335256ab934b4c1049708ae2d48ba" + }, + "recipe": { + "sha256": "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131110.741", + "deps": [ + "dkmisc", + "emacs", + "ledger-mode" + ] + }, + "clojure-quick-repls": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/symfrog/clojure-quick-repls.git", + "sha256": "f94f394f1a8f917f5532f4a256035bb392c3645ae5f154f136560b2c6684eaed", + "rev": "b543c6c35bb1bacb278f92a6e0f4d2128c0c3db9" + }, + "recipe": { + "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150814.236", + "deps": [ + "cider", + "dash" + ] + }, + "rase": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/rase.git", + "sha256": "7d0158108df01dcd9fb769f1209379368ea5b8c6fd36c9e0edba5d3a831926c4", + "rev": "59b5f7e8102570b65040e8d55781c7ea28de7338" + }, + "recipe": { + "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120928.1545", + "deps": [] + }, + "js2-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/js2-mode.git", + "sha256": "6fad831cc06397a21b928334e065410a8068b9976972d3adc99a2b79df76697c", + "rev": "73c0348bf964c956aa5a9f2aeb0415bb9a65198c" + }, + "recipe": { + "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.605", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "yabin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d5884/yabin.git", + "sha256": "f5d3619e1f72109d3afead6827db7e8e3e1cb0814478691fe2cc330b3fdfd738", + "rev": "db8c404507560ef9147fcce2b94cd706fbfa03b5" + }, + "recipe": { + "sha256": "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140205.2151", + "deps": [] + }, + "symon-lingr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/symon-lingr.git", + "sha256": "12f5ed02d84294ee73c84ddea56ed786111982450daefc920b6ee66d3b7d0b0c", + "rev": "056d1a473e36992ff5881e5ce6fdc331cead975f" + }, + "recipe": { + "sha256": "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150719.842", + "deps": [ + "cl-lib", + "symon" + ] + }, + "zones": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/zones.el", + "sha256": "0fr6lbx62qa8acqa4s4wrg0nlga2pm3vy04j17wyhcxdjszan4yd" + }, + "recipe": { + "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150908.1438", + "deps": [] + }, + "window-end-visible": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/window-end-visible.git", + "sha256": "006542be695efee08e12d7bacfe59c3ab007c153b31ca63ad28c9a48422f33f0", + "rev": "525500fb2ebc08f3f9ea493972e5f2e1d79f89ef" + }, + "recipe": { + "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "dic-lookup-w3m": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.sourceforge.jp/svnroot/dic-lookup-w3m/", + "sha256": "0lg6i9vw6xsnaamfjczz0cr41vlv1bs03h8c8y2jxpdkgaab31nc", + "rev": "79" + }, + "recipe": { + "sha256": "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.1748", + "deps": [ + "stem", + "w3m" + ] + }, + "spacegray-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bruce/emacs-spacegray-theme.git", + "sha256": "4b53e3aedadca66b92d1d90d5640e795e19163f388a5569ea43bab9feab912a9", + "rev": "7f70ee36297e5ccf9bc90b1f81472024f5a7a749" + }, + "recipe": { + "sha256": "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150719.1431", + "deps": [ + "emacs" + ] + }, + "multi-compile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ReanGD/emacs-multi-compile.git", + "sha256": "1d29e61e184217c2014e62560166b36916be391d64d71880de3de7e296238c00", + "rev": "61a4a7b35cd78773305150f533f51587367378db" + }, + "recipe": { + "sha256": "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.1640", + "deps": [ + "emacs" + ] + }, + "scratch-log": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mori-dev/scratch-log.git", + "sha256": "7eb3712024c8d53e31dcb66a8d8e7a83c21c0bfdcf4bf98c917118dab74539a6", + "rev": "1168f7f16d36ca0f4ddf2bb98881f8db62cc5dc0" + }, + "recipe": { + "sha256": "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141115.143", + "deps": [] + }, + "clmemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ataka/clmemo.git", + "sha256": "a1796c71f43d03d6e39f916aa26bd5fffb2c3572e90ba3a9a87257c6ef91487d", + "rev": "553d62f80b6c3e0f281e09d377d490795bdcaabf" + }, + "recipe": { + "sha256": "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.747", + "deps": [] + }, + "rbenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senny/rbenv.el.git", + "sha256": "506ce345674da0d5f34ed245944b012819b8a32e7cc77ba2d3d430eb8ccea079", + "rev": "2ea1a5bdc1266caef1dd77700f2c8f42429b03f1" + }, + "recipe": { + "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141120.149", + "deps": [] + }, + "org-agenda-property": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/org-agenda-property.git", + "sha256": "9edd0db344b03254e85f9a2cbcbb2b13fcc5716b301690988d11cb9648c55a87", + "rev": "3b469f3e93de0036547f3631cd0366d53f7584c8" + }, + "recipe": { + "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140626.1616", + "deps": [ + "emacs" + ] + }, + "standoff-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lueck/standoff-mode.git", + "sha256": "1f47d54b64d6d94bd41f890708bef0d6c5a93fc4629f60040628b321dc65d007", + "rev": "09b4b2dfeadf0b9c2f3e2897be5e9b728c07b9b6" + }, + "recipe": { + "sha256": "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150628.1842", + "deps": [] + }, + "phi-rectangle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/phi-rectangle.git", + "sha256": "6447d0d0d0600c4dbf9669a44c39814c8a31528fea5b926c758da397d3294c34", + "rev": "0c12716afc71d803d1f39417469521dc465762d9" + }, + "recipe": { + "sha256": "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.54", + "deps": [] + }, + "dart-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/dart-mode.git", + "sha256": "8c36e46be3bb1b3b7295c8b4625046aab259b4a24d6b3841e4d77ffbcd51a7dd", + "rev": "1b7562262c83de94a5118ffc55b495dae8aa7367" + }, + "recipe": { + "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150721.1854", + "deps": [ + "cl-lib", + "dash", + "flycheck" + ] + }, + "peek-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/erikriverson/peek-mode.git", + "sha256": "2bf7b8d0263e0ee54caa1cba3d4f747a74a3d2d8ea7dfadf6c497e40e935db86", + "rev": "55a7dd011375330c7d57322257a5167516702c71" + }, + "recipe": { + "sha256": "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130620.1446", + "deps": [ + "elnode" + ] + }, + "disk": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/disk.el", + "sha256": "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv" + }, + "recipe": { + "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20081128.906", + "deps": [] + }, + "refheap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Raynes/refheap.el.git", + "sha256": "280d33c837bdee2adaaeabfcfa12c3681e17037e65aefdb155d462c7a4887f22", + "rev": "d41f8efb8e913b29035f545914859e3f18287492" + }, + "recipe": { + "sha256": "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140902.1602", + "deps": [ + "json" + ] + }, + "navorski": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/navorski.el.git", + "sha256": "b8ea7b60cbeafef04e6b55d18457acdba8bf0f785a962ef022ea9ae0775045c9", + "rev": "698c1c62da70164aebe9a7a5d034778fbc30ea5b" + }, + "recipe": { + "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141203.1224", + "deps": [ + "dash", + "multi-term", + "s" + ] + }, + "info+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/info+.el", + "sha256": "1c95876j5ya0na5rf7dlxchhawl85k25bjxh02kqcsrdirc1q86g" + }, + "recipe": { + "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.1636", + "deps": [] + }, + "manage-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/manage-minor-mode.git", + "sha256": "07f440ff816fad5a4a122297213565e7c92050678532da6a96d13773d83c9483", + "rev": "1bed33b0752380b548b822fe72e6858c5fe70c8e" + }, + "recipe": { + "sha256": "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140310.1100", + "deps": [ + "emacs" + ] + }, + "yasnippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/yasnippet.git", + "sha256": "ae030f66630e1099efe2897b70ab6f30858139f24e5c2ebef32836207cc18a2d", + "rev": "71f0142edae6196535bfc27b79f317dc7a12ea1d" + }, + "recipe": { + "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.2333", + "deps": [] + }, + "erc-crypt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atomontage/erc-crypt.git", + "sha256": "d9d1b91963f986a018fd79142aaabf8566a77f1b31005bb2d47c1c67ba20f7c3", + "rev": "5d548bab298a27ca5886392c129b14d0e93067be" + }, + "recipe": { + "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1257", + "deps": [] + }, + "log4e": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/log4e.git", + "sha256": "79d89c0be7fecac981473b599748f910759ec45e2105e00dd0c9589e7a18dfef", + "rev": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb" + }, + "recipe": { + "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150105.705", + "deps": [] + }, + "graphviz-dot-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ppareit/graphviz-dot-mode.git", + "sha256": "2e3fdb4bd80015e4a4ebd457e50d00cc8cc0c9254ae54aef6a0cff19e150268b", + "rev": "ca0f15158c3bbd516549532be1dd35bc51462c84" + }, + "recipe": { + "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.821", + "deps": [] + }, + "pcomplete-extension": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/pcomplete-extension.git", + "sha256": "a6aec98ea424314d9cb00ac8301df7190d275a80ecbb525eedb8818f00231740", + "rev": "839740c90de857e18db2f578d6660951522faab5" + }, + "recipe": { + "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140604.1147", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "melpa-upstream-visit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/melpa-upstream-visit.git", + "sha256": "edce5f30431cffe2d6722185233ec23834b4b068f074a78a7bedf27aaf299789", + "rev": "7310c74fdead3c0f86ad6eff76cf989e63f70f66" + }, + "recipe": { + "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130720.533", + "deps": [ + "s" + ] + }, + "php+-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/echosa/phpplus-mode.git", + "sha256": "648a2514b287ac585b920f379b830345f4487a36d0a657f969a6fe482249fe60", + "rev": "e66950502e7c9a9cd39c9a619ad66fc54c12aafa" + }, + "recipe": { + "sha256": "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121129.1452", + "deps": [] + }, + "col-highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/col-highlight.el", + "sha256": "1gs30lb038f01czrr1d95ngwvc53pd6sfq2vhcspq8d12062lx6n" + }, + "recipe": { + "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1534", + "deps": [ + "vline" + ] + }, + "paxedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/promethial/paxedit.git", + "sha256": "dc36ce89eac555eb6590ce23d726ca837123e701e625cfa79998c515bc1d5bae", + "rev": "7a69ff07d97955fb5412ba1d5259810609e3bca0" + }, + "recipe": { + "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150405.1808", + "deps": [ + "cl-lib", + "paredit" + ] + }, + "e2wm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-window-manager.git", + "sha256": "6841f88d208f048b9fbb153d43f0ef1c06b2c019d39a89336b062c71da74dde1", + "rev": "71543ce4502bdb09c888e24b3a80e47786785b88" + }, + "recipe": { + "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150608.1923", + "deps": [ + "window-layout" + ] + }, + "helm-emmet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-emmet.git", + "sha256": "6907c887ca9a5f0649fd057e6687355ce4dafb2ed74baadfd91a5e9478b17530", + "rev": "b4e0618773d9fdfbf0ed03d24a53d26285c51b91" + }, + "recipe": { + "sha256": "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131014.129", + "deps": [ + "emmet-mode", + "helm" + ] + }, + "xmlgen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/philjackson/xmlgen.git", + "sha256": "002ac9c84e7ec4bd53ab1f600032f7648e9f71e33c51a1430ee02bb3780465da", + "rev": "d27294a4174888fe452015cb98dedd2a4bdc1e92" + }, + "recipe": { + "sha256": "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130219.419", + "deps": [] + }, + "drupal-spell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arnested/drupal-spell.git", + "sha256": "3d822e71bc43966200e24b263cf01eae109899ad41772e63ccb97936f77dca7a", + "rev": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae" + }, + "recipe": { + "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130520.1155", + "deps": [] + }, + "helm-chronos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dxknight/helm-chronos.git", + "sha256": "11997a9e53a931105d769dde6ce800a43a6f5723975eb7f98941c77c9123b2b6", + "rev": "a14fc3d65dd96ce6616234b3f7b8b08b4c1817ef" + }, + "recipe": { + "sha256": "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150528.1536", + "deps": [ + "chronos", + "helm" + ] + }, + "expand-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/expand-line.git", + "sha256": "ffb87c442a332ec5aa09ec21750985857eb142b6a2597f110791959c6181e473", + "rev": "75a5d0241f35dd0748ab8ecb4ff16891535be372" + }, + "recipe": { + "sha256": "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.2107", + "deps": [] + }, + "org-ac": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/org-ac.git", + "sha256": "8a8d8051c563335ce70063186fee43ee1476a3386f2421f29b8068d3848d93f5", + "rev": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a" + }, + "recipe": { + "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140302.613", + "deps": [ + "auto-complete-pcmp", + "log4e", + "yaxception" + ] + }, + "omnisharp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/OmniSharp/omnisharp-emacs.git", + "branchName": "master", + "sha256": "dfe1c23076c449c53a3c47834ce0fa68d5e4c871f9c65defa2ded21bbdfa5d94", + "rev": "725796278fa8a391e244f2e50676dd6d6b67585d" + }, + "recipe": { + "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1314", + "deps": [ + "auto-complete", + "cl-lib", + "csharp-mode", + "dash", + "flycheck", + "json", + "popup", + "s" + ] + }, + "project-local-variables": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/project-local-variables.el", + "sha256": "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw" + }, + "recipe": { + "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20080502.1152", + "deps": [] + }, + "company-racer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/company-racer.git", + "sha256": "3ecae70e51619aee0360b742223729e73b77ba3a8db8c167fe6ee9a46b31c19c", + "rev": "c31f7cab8c2f9c376ff0bd48e56dbc30a32e4b00" + }, + "recipe": { + "sha256": "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150628.2133", + "deps": [ + "cl-lib", + "company", + "deferred", + "emacs" + ] + }, + "lang-refactor-perl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jplindstrom/emacs-lang-refactor-perl.git", + "sha256": "d2e10cf063a8738a2eeb356cba134ad6cf5c956ad60eaa8e0ce5b73d6d3cb38c", + "rev": "691bd69639de6b7af357e3b7143563ececd9c497" + }, + "recipe": { + "sha256": "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131122.1527", + "deps": [] + }, + "top-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/top-mode.el", + "sha256": "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn" + }, + "recipe": { + "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130605.1239", + "deps": [] + }, + "gnuplot-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkmcc/gnuplot-mode.git", + "sha256": "a12f7adfab804011429039c8c612f3ebe86ce9a9f3ab22908477e63d4ddd1fd7", + "rev": "296ff8d263513cdfb8e85b06e2441c751565b793" + }, + "recipe": { + "sha256": "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.139", + "deps": [] + }, + "show-css": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/smmcg/showcss-mode.git", + "sha256": "ad9ec20bae02365e56a6ee2e704ad7cf31e870b3cfc2f57bbb340dc0fd6a6858", + "rev": "1b8c330644c06e6d99ec5da8a9722c918b2ea039" + }, + "recipe": { + "sha256": "1b3n8h39m85inxsqvzwgb9fqnqn2sgib91hrisn1gpgfyjydzkr7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140816.1208", + "deps": [ + "dom" + ] + }, + "picolisp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flexibeast/picolisp-mode.git", + "sha256": "2584dbeafc68de7bef5a25fe30cb7a5c1bafa0aee8d0c1ed5679e929bdf6215d", + "rev": "1a537b14090813f46cbba54636d40365e1a8067e" + }, + "recipe": { + "sha256": "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150516.355", + "deps": [] + }, + "highlight-numbers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-numbers.git", + "sha256": "51b9f792b46afbc833e3bdc20bf685a482d17d8c1e931e1731800c087461d039", + "rev": "e1245b27a732ec43c1562f825533fe147759d24e" + }, + "recipe": { + "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150531.807", + "deps": [ + "emacs", + "parent-mode" + ] + }, + "flash-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/flash-region.git", + "sha256": "2ec846275edf6ef7ecd4b4255d9f437da6d74d6759f11b4af9858b2d4da5e77c", + "rev": "261b3597b23cdd40e5c14262a5687bcc6c1d0901" + }, + "recipe": { + "sha256": "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130923.1317", + "deps": [] + }, + "org-toodledo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-toodledo.git", + "sha256": "1b4c1078be473c088ce5cbb57fd6ba054502fdef7c3b3ede352eef66ad9d3803", + "rev": "2c91a92bd07ae4a546771b018a6faa0e06399968" + }, + "recipe": { + "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150301.513", + "deps": [ + "cl-lib", + "emacs", + "request-deferred" + ] + }, + "occur-context-resize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgtized/occur-context-resize.el.git", + "sha256": "8c64ea472a8be03deba65b3bf85b275865dfb4e3b6bc6cac5e5eefa9e55e8f88", + "rev": "e64898124528244134bd125aaa39e396406b01e8" + }, + "recipe": { + "sha256": "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140826.1449", + "deps": [] + }, + "evil-surround": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/timcharper/evil-surround.git", + "sha256": "3b7da258c343456acca4ec284ffc39372039b6f8d6116e2707a57e800d157e97", + "rev": "9f1ab3c302d585c3489f0429b904e7e6e3204e94" + }, + "recipe": { + "sha256": "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1418", + "deps": [] + }, + "dts-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bgamari/dts-mode.git", + "sha256": "34ad4b8272c893d5e852e5ae3d99a0d9e7498c76a71cf1b054a8617717dc4e31", + "rev": "6ec1443ead16105234765f9b48df9b4aca562e61" + }, + "recipe": { + "sha256": "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150403.1804", + "deps": [] + }, + "js2-highlight-vars": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/unhammer/js2-highlight-vars.el.git", + "sha256": "2f79aa5897929d5a29afc7b2bb7d80302e2eee5013484da7854e8e8a822a4dbd", + "rev": "5857999e6a376810816a0bee71f6d235ffe8911d" + }, + "recipe": { + "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.308", + "deps": [ + "js2-mode" + ] + }, + "processing-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ptrv/processing2-emacs.git", + "sha256": "53b71ce03ab749e83dfafed98590d7418e703833d0c9d7da885b4dd11fb2ee4a", + "rev": "a57415e523c9c3faeef02fa62a2b749270c4cc33" + }, + "recipe": { + "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150217.632", + "deps": [] + }, + "csharp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/josteink/csharp-mode.git", + "sha256": "02b7dfe91e0e59d929d1351c0ddd30e49e030fbc52042286a665ad878543b03a", + "rev": "d0d7ec3ca71fe4d89c33b2803dc6bb68b6b8c69e" + }, + "recipe": { + "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1630", + "deps": [] + }, + "evil-avy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/louy2/evil-avy.git", + "sha256": "34c952bcd4b21135478a8588aaf121ef2ce816c529944e5fab854ca8edb2dfe0", + "rev": "2dd955cc3ecaa7ddeb67b295298abdc6d16dd3a5" + }, + "recipe": { + "sha256": "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150908.248", + "deps": [ + "avy", + "cl-lib", + "emacs", + "evil" + ] + }, + "evil-mc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gabesoft/evil-mc.git", + "sha256": "487bd0544681be37ad27ae57de4e5d6c02f712728d4e7568e75cf70110d46ee5", + "rev": "a56f83460a6a90dc504f5935b0ab105810a41179" + }, + "recipe": { + "sha256": "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.2032", + "deps": [ + "cl-lib", + "emacs", + "evil" + ] + }, + "bbdb-csv-import": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/iankelling/bbdb-csv-import.git", + "sha256": "34248f4f6ec5afeb8960cb563c5487fa7fa78099d7bb5f7896ffb7b1788a3bc1", + "rev": "7739d10ebe1787a72aa74085e9baedd0f4988b00" + }, + "recipe": { + "sha256": "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140802.642", + "deps": [ + "bbdb", + "dash", + "pcsv" + ] + }, + "all-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/all-ext.el", + "sha256": "10j70bwa28xpmqwigvls76jg6vz0iky88lmkq4pk35bg3rz09r4m" + }, + "recipe": { + "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.706", + "deps": [ + "all" + ] + }, + "cherry-blossom-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/inlinestyle/emacs-cherry-blossom-theme.git", + "sha256": "7ac6a2afdde616ed5644ba81aab7de0488f3484e385373e995fa67dc8c60376b", + "rev": "eea7653e00f35973857ee23b27bc2fae5e753e50" + }, + "recipe": { + "sha256": "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150621.2242", + "deps": [ + "emacs" + ] + }, + "wanderlust": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wanderlust/wanderlust.git", + "sha256": "a241b1729b95fdaa7f98380490203f0398042e259fe9e980087193a1dce9a66d", + "rev": "912c443a912e037d898941397b747d3325aa01b3" + }, + "recipe": { + "sha256": "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.1727", + "deps": [ + "semi" + ] + }, + "private": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/private.git", + "sha256": "56737b7a1eacb81e0ba76b1d5b2c0a1ea826e76efea18ddfe1cb4bf558d309c4", + "rev": "9266d01c095895cc3ee9de95bc20511e88353755" + }, + "recipe": { + "sha256": "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150121.1957", + "deps": [ + "aes" + ] + }, + "jquery-doc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ananthakumaran/jquery-doc.el.git", + "sha256": "ecb0c47313989ed8af3b2167bb48bbdfb52f31f1160ee87bb36ea1e682bd2a29", + "rev": "24032284919b942ec27707d929bdd8bf48420062" + }, + "recipe": { + "sha256": "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150812.258", + "deps": [] + }, + "mallard-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jhradilek/emacs-mallard-mode.git", + "sha256": "420d69f4c150ae61f75a3c941fc420e83c783f6c4766471e443320ebb466a3a3", + "rev": "c48170c1ace4959abcc5fb1df0d4cb149cff44c1" + }, + "recipe": { + "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131203.2225", + "deps": [] + }, + "i2b2-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danlamanna/i2b2-mode.git", + "sha256": "686dbb91bb216de167f9823ea0fa5fe55de9d8c7a44b255e4174bb09def56486", + "rev": "db10efcfc8bed369a516bbf7526ede41f98cb95a" + }, + "recipe": { + "sha256": "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140709.2004", + "deps": [] + }, + "ess-R-object-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/ess-R-object-popup.el.git", + "sha256": "60df192d711bc1315d15fa2f915d885d5f6feb2fcf4e009d89142a6e945a1761", + "rev": "7e1f601bfba72de0fda44d9c82f96028ecbb9948" + }, + "recipe": { + "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130302.536", + "deps": [ + "ess", + "popup" + ] + }, + "solarized-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/solarized-emacs.git", + "sha256": "67a82b93e56d4e61be904255317e5358fcbfc8a23509fd8958585ce750e68935", + "rev": "7a43652689de5188198c77715e2dbc111de760bf" + }, + "recipe": { + "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.735", + "deps": [ + "cl-lib", + "dash" + ] + }, + "tab-group": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarao/tab-group-el.git", + "sha256": "24430509a76df7e466b310f81240f0ee64cba4b3d04a56cb9ec154bddf7adb51", + "rev": "5a290ec2608e4100fb188fd60ecb77affcc3465b" + }, + "recipe": { + "sha256": "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140306.850", + "deps": [] + }, + "pig-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/motus/pig-mode.git", + "sha256": "4d313ec06748955df15ca3c3de1090d71e853ab301ed435949c1fbe95d4a308d", + "rev": "af4200c88a50264b63fa162a02860f3f54c8755b" + }, + "recipe": { + "sha256": "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130913.124", + "deps": [ + "yasnippet" + ] + }, + "closure-lint-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/r0man/closure-lint-mode.git", + "sha256": "ca8e981668bc3f23a33163b572c684e26235dca371d0761ae8e4cbb2006e1c6c", + "rev": "bc3d2fd5c35580bf1b8af43b12484c95a343b4b5" + }, + "recipe": { + "sha256": "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101118.1524", + "deps": [] + }, + "helm-jstack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/raghavgautam/helm-jstack.git", + "sha256": "ef08b3fdd2b7144c08b3696e07882e3d64197f83aa77630f36cac48e36bb186e", + "rev": "2064f7215dcf4ccbd6a7b8784223251507746da4" + }, + "recipe": { + "sha256": "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150602.2322", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "osx-trash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/osx-trash.el.git", + "sha256": "0eb04d1737d208e3dccd84f623af5346f796bf753705189cbd4bbe895cd302fe", + "rev": "a8fe326624e27a0e128c68940c7a9efb001ceee6" + }, + "recipe": { + "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150723.935", + "deps": [ + "emacs" + ] + }, + "org-readme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/org-readme.git", + "sha256": "0dcd617c281ef9675ca1fe829defbdc938777657b3a9d16c86f2500ab4087ae0", + "rev": "4cb9f768d282a2835b4510b6504ff9ede487007d" + }, + "recipe": { + "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.617", + "deps": [ + "cl-lib", + "header2", + "http-post-simple", + "lib-requires", + "yaoddmuse" + ] + }, + "org2jekyll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/org2jekyll.git", + "sha256": "70bf8d119ad989dc63073d5fe6f556353e7411a3d766115108c819ef985ddb7e", + "rev": "a12173b9507b3ef54dfebb5751503ba1ee93c6aa" + }, + "recipe": { + "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.847", + "deps": [ + "dash-functional", + "deferred", + "s" + ] + }, + "pastels-on-dark-theme": { + "fetch": { + "tag": "fetchgit", + "url": "https://gist.github.com/1974259.git", + "sha256": "c53b4f2c7449bf74648c091f249c33da3ddd8f621474a8901745b4e985cb26ab", + "rev": "854839a0b4bf8c3f6a7d947926bf41d690547002" + }, + "recipe": { + "sha256": "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120304.1222", + "deps": [] + }, + "bing-dict": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/bing-dict.el.git", + "sha256": "74480bc2489f145f9c7e207b32252a21ef40dcf250a616628b9b8d3e0ac9cd27", + "rev": "85d94acc9a85f60125f00083af9702bca8bdbd19" + }, + "recipe": { + "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150621.1311", + "deps": [] + }, + "django-manage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gopar/django-manage.git", + "sha256": "d7121d2c457f451c654a3533ac1b4d640c511ca27d3805eb2f81ebd9a968e1a9", + "rev": "91ce758c830f06b33b7d04cc66dd5ec131bd4398" + }, + "recipe": { + "sha256": "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.130", + "deps": [ + "hydra" + ] + }, + "ctable": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-ctable.git", + "sha256": "c009d0aa7bc81f03d335738600b960c50c7139dda2feb74bf6fa490e97a59e01", + "rev": "cd673a09a80ce4e9e102ffe2e3d7e6bfb9d652b0" + }, + "recipe": { + "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140304.1859", + "deps": [] + }, + "elscreen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/elscreen.git", + "sha256": "35b0dffdc054bc780ca660e4744a13e666dbb6be0c8431f80fd192894255b314", + "rev": "249653a4a4b47c9b6306c2c29fa3753bc7342e61" + }, + "recipe": { + "sha256": "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.2000", + "deps": [] + }, + "highlight-indent-guides": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarthFennec/highlight-indent-guides.git", + "sha256": "b2bbe3f3b530eb94d722150b98a8cd8d410eb86064328a005e5d7f7a4b66a182", + "rev": "4473af2bbeb80d50681a64b66f5891262cf52346" + }, + "recipe": { + "sha256": "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.1427", + "deps": [] + }, + "ivs-edit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/ivs-edit.git", + "sha256": "6acf5b90ce8f5c9cf1da2e2ae0f4cb24ad06f48a08c7362c3bd2e4a59dbf46a4", + "rev": "c496e85f93f6f00e723d9df0ea0703f6c672826b" + }, + "recipe": { + "sha256": "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140720.546", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "typing": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/typing.el", + "sha256": "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31" + }, + "recipe": { + "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121026.1618", + "deps": [] + }, + "pcmpl-git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoliu/pcmpl-git-el.git", + "sha256": "b3952a82c4f2b36e181dcf0f430fc66a6e714fe217cbce13acba3a34ee7a930d", + "rev": "2db904452b7367a9bf84a926e886945fc9128fad" + }, + "recipe": { + "sha256": "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140218.2004", + "deps": [] + }, + "leuven-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fniessen/emacs-leuven-theme.git", + "sha256": "b3d8802d2b232f61f5859911661765ac5e8e6eff49068a26361988201b67a1cf", + "rev": "aeea1054e55a4b9f8318bc95cf97c51b04387fa0" + }, + "recipe": { + "sha256": "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.952", + "deps": [] + }, + "snippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pkazmier/snippet.el.git", + "sha256": "de90c27c4e55e9f1d6045532cd8112f380ea8fcb49080429ce9c9c97e572d9db", + "rev": "11d00dd803874b93836f2010b08bd2c97b0f3c63" + }, + "recipe": { + "sha256": "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130210.1715", + "deps": [] + }, + "ess": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-ess/ESS.git", + "sha256": "827d7cf4084e297c55bc75523385bbc3358507bc94c3a4ca2e0086403a03871a", + "rev": "680549abaaa3750de090c47049c392adcb25aaaa" + }, + "recipe": { + "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.252", + "deps": [ + "julia-mode" + ] + }, + "ocp-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/OCamlPro/ocp-indent.git", + "sha256": "53043c537e850398c0902ca94e5612e9d495ba9be668c65d381de41dadb11560", + "rev": "2d79c735ddff135ba29309af9f9e8a976a94e312" + }, + "recipe": { + "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.332", + "deps": [] + }, + "uuid": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-uuid.git", + "sha256": "f29708e97a9140fae71d4d90757b887c1a3b18f85611b9b330392ff6107fe464", + "rev": "1519bfeb0e31602b840bc8dd35d7c7e732c159fe" + }, + "recipe": { + "sha256": "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120910.351", + "deps": [] + }, + "launch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sfllaw/emacs-launch.git", + "sha256": "96b2c00c63f58666fd4c2570436a445399615f9cbf7d39065eb270d630105470", + "rev": "e7c3b573fc05fe4d3d322389079909311542e799" + }, + "recipe": { + "sha256": "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130619.1704", + "deps": [] + }, + "hoa-pp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hoaproject/Contributions-Emacs-Pp.git", + "sha256": "66d48935b1fbe094c4c061842db24a3c053a1ac2da451655a57cc418f9f0076b", + "rev": "925b79930a3f4377b0fb2a36b3c6d5566d4b9a8e" + }, + "recipe": { + "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.236", + "deps": [ + "emacs", + "names" + ] + }, + "eldoc-extension": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eldoc-extension.el", + "sha256": "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch" + }, + "recipe": { + "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140306.845", + "deps": [] + }, + "2048-game": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/zck/2048.el", + "sha256": "1p9qn9n8mfb4z62h1s94mlg0vshpzafbhsxgzvx78sqlf6bfc80l", + "rev": "ea6c3bce8ac1" + }, + "recipe": { + "sha256": "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151026.1433", + "deps": [] + }, + "mag-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chumpage/mag-menu.git", + "sha256": "fcd16991c6d0623bfff031e5e4430f4d91556ce99d71fad8c5ffaa7451b6e0cc", + "rev": "9b9277021cd09fb1dba64b1d2a00705d20914bd6" + }, + "recipe": { + "sha256": "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150505.1350", + "deps": [ + "splitter" + ] + }, + "seethru": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Benaiah/seethru.git", + "sha256": "f9dd52ed7951bf827a141b893c8836ae4b1a2133c7b536601fa537bcb030a461", + "rev": "d87e231f99313bea75b1e69e48c0f32968c82060" + }, + "recipe": { + "sha256": "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150218.1229", + "deps": [ + "shadchen" + ] + }, + "helm-w32-launcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/helm-w32-launcher.git", + "sha256": "3659135cbc03984c199778c15820d7bac46860c67037932bde9b9e9c8fc29ced", + "rev": "3e59ad62b89dd21d334af0203d445a83eb25dc5b" + }, + "recipe": { + "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141223.1414", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "org-iv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kuangdash/org-iv.git", + "sha256": "c618fb5ecf1e89ede26883c7ba8db32e91e8470bfa9973294ea27bf9a51881d7", + "rev": "c45e5ab30183f7b1934f636758750ee2f8a05346" + }, + "recipe": { + "sha256": "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.914", + "deps": [ + "cl-lib", + "impatient-mode", + "org" + ] + }, + "ac-ispell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-ispell.git", + "sha256": "cbff99f73616031e4d2b46cf63db3919577ca2e847d792a66d97045888c4b256", + "rev": "22bace7387e9012002a6a444922f75f9913077b0" + }, + "recipe": { + "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.2126", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "buffer-buttons": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rpav/buffer-buttons.git", + "sha256": "782ffeaedcbf88aba6767c763e84dad41a20813f399ba58d7e2163795712aadc", + "rev": "2feb8494fa7863b98256bc85da670d74a3a8a975" + }, + "recipe": { + "sha256": "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.839", + "deps": [] + }, + "alect-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/alect-themes.git", + "sha256": "ffc2de69d84f008f6da905dbb14352124a5682317729e8a3b9ada9f89a89165a", + "rev": "05d7515d936bbf48ad3fa961220f076d2e5d2312" + }, + "recipe": { + "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150920.1324", + "deps": [ + "emacs" + ] + }, + "evil-exchange": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Dewdrops/evil-exchange.git", + "sha256": "1786faf8be44d0fefc2967b313014be47444e69340bc077c5755795d979382e5", + "rev": "22d9b6ce1b979c0560b32637d0c2b28bf4082d2b" + }, + "recipe": { + "sha256": "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141128.43", + "deps": [ + "cl-lib", + "evil" + ] + }, + "markup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoc/markup.el.git", + "sha256": "115b4df1f26a5305be3c704a997ab4a5852c4f6eda4384a38873ce5d4b5825c5", + "rev": "5ff4874ce897db146f5fd2b3d32147a0d404e1e5" + }, + "recipe": { + "sha256": "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130207.1509", + "deps": [] + }, + "jira": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/jira.el", + "sha256": "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz" + }, + "recipe": { + "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131210.1222", + "deps": [] + }, + "dired-k": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-dired-k.git", + "sha256": "91d089ac1df104d639b87f9aa04c6e5b45d0654195fe7c6222360c9173022439", + "rev": "4c5ae87f0198eaa4789a1fe85e9ef7cf5a8633e7" + }, + "recipe": { + "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.2036", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "stack-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/commercialhaskell/stack-ide.git", + "sha256": "6ecd37a02a41f0c29c977e6e4558291bf32ee33d9f07dfef0a0dbccbbd93a414", + "rev": "c1e8416b2beb86c7f50109255d28379ca0b17735" + }, + "recipe": { + "sha256": "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150923.1023", + "deps": [ + "cl-lib", + "flycheck", + "haskell-mode" + ] + }, + "pcmpl-args": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/JonWaltman/pcmpl-args.el.git", + "sha256": "7199b97dcbdd803d9397fd1de1da4a2e55831d2221948ed0a572129e8530d755", + "rev": "2ba03b3125ada8037585e545b88bd85b79da5c37" + }, + "recipe": { + "sha256": "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120912.24", + "deps": [] + }, + "eprime-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AndrewHynes/eprime-mode.git", + "sha256": "4952a732abe4ed2913c5d7f37427294751d5da36b93e8942fa76e4bfbcd83ecc", + "rev": "17a481af26496be91c07139a9bfc05cfe722506f" + }, + "recipe": { + "sha256": "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140513.1316", + "deps": [] + }, + "legalese": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/legalese.el", + "sha256": "0vjf2f5kpmgnw7904jsv2wnn6dcv654v7h1v917wmj72sy941xml" + }, + "recipe": { + "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100119.1548", + "deps": [] + }, + "tco": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/tco.el.git", + "sha256": "98508310cff39dab988dd412d486931d1188294d728ea948a64d181e8d573ccf", + "rev": "d2224bd291e25724b06d8589d4d62d74ed32db24" + }, + "recipe": { + "sha256": "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140412.812", + "deps": [ + "dash", + "emacs" + ] + }, + "autobookmarks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/autobookmarks.git", + "sha256": "67268427f58dc0b4616854016855d5862d702d22701e5032bb47e78d229a0307", + "rev": "cec3a2ac60a382ee61996c17bd962bc5a2e45c4b" + }, + "recipe": { + "sha256": "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.1645", + "deps": [ + "cl-lib", + "dash" + ] + }, + "hayoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/benma/hayoo.el.git", + "sha256": "7478140af14f10b1bea5693fb4d234d46156c345196b99142951008520f45d5e", + "rev": "3ca2fb0c4d5f337d0410c21b2702dd147014e984" + }, + "recipe": { + "sha256": "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140831.721", + "deps": [ + "emacs", + "json" + ] + }, + "dedukti-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rafoo/dedukti-mode.git", + "sha256": "e27ff030d37e261ac535cf0077c310a688e8cebabe11a3becba064927cec51c1", + "rev": "7d9f459c87c84f1067eb87542da4549de5e38650" + }, + "recipe": { + "sha256": "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150820.908", + "deps": [] + }, + "project-persist-drawer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/project-persist-drawer.git", + "sha256": "3b9f9a8389df069d7e547a28db72c4b4dae3ce987cf20ad5f42e387b18cfa152", + "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" + }, + "recipe": { + "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.622", + "deps": [ + "project-persist" + ] + }, + "dos": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dos.el", + "sha256": "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp" + }, + "recipe": { + "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140808.1635", + "deps": [] + }, + "pianobar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/agrif/pianobar.el.git", + "sha256": "2d046e443a2edf1564b3b074ac658a97b58c3b1871a79008b56d5c0de8c77214", + "rev": "9193e3888a8097dbe7ee58e4658cc6ec2a76b160" + }, + "recipe": { + "sha256": "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120128.1501", + "deps": [] + }, + "image-archive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-image-archive.git", + "sha256": "cb96826e6ffa740e0859f6ecc08b40bef04f4844e430effde9efee440a784c41", + "rev": "ff33f64d09432a8f5bf1714d4cf750c01626fe98" + }, + "recipe": { + "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150219.18", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "nummm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/agpchil/nummm-mode.git", + "sha256": "bd0b97d2f18ee035c0040b1259e0035056fd6c9a93bf3c1712364ed475f51ec4", + "rev": "81951e12032274543c5f7a585b29bd93961e94e4" + }, + "recipe": { + "sha256": "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.414", + "deps": [] + }, + "el-spice": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vedang/el-spice.git", + "sha256": "85ecdd64a7e601e8575a2181aaca5aadf8bdc67773e80d526904598c276c7780", + "rev": "65d9ec84b581a5867eebbc58de93958e992ca80d" + }, + "recipe": { + "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140805.1338", + "deps": [ + "thingatpt+" + ] + }, + "package-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/package-utils.git", + "sha256": "8a93e3ea9776d00042616b08c04059bda9a9896d30b841dc9e8ec85ef101148d", + "rev": "4a56f411f98fd455556a3f1d6c16a577a22057a2" + }, + "recipe": { + "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150126.606", + "deps": [ + "epl" + ] + }, + "julia-shell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dennisog/julia-shell-mode.git", + "sha256": "08df93ffc6ac200df0853c6319c18e8a24ff3dff1bc630500616b1e086958a64", + "rev": "3e25a6b2e942dc323512f2530f48cbc8794cfd48" + }, + "recipe": { + "sha256": "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.1252", + "deps": [ + "julia-mode" + ] + }, + "cycbuf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/martinp26/cycbuf.git", + "sha256": "bcdc606bbe67ad97de8feda8fde0b97c5408c8f2ae455fc92657e71eaa46b1b4", + "rev": "1079b41c3eb27d65b66d4399959bb6253f84858e" + }, + "recipe": { + "sha256": "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131203.1437", + "deps": [] + }, + "ruby-additional": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", + "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", + "rev": "53114" + }, + "recipe": { + "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150306.1959", + "deps": [ + "emacs", + "ruby-mode" + ] + }, + "open-junk-file": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/open-junk-file.el", + "sha256": "1vjmgayksdgg54b46aqmvhd7a9arjx9p3jyrjs2z9262f6r288lj" + }, + "recipe": { + "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130131.120", + "deps": [] + }, + "git-commit-insert-issue": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/emacs-stuff/git-commit-insert-issue.git", + "sha256": "e17279ceedb59f98913c2425d2842af952723d7ee79ea277d7ad22cd4046be2b", + "rev": "1bdfd1960bc279ca830e034a6708b25493b3f460" + }, + "recipe": { + "sha256": "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.619", + "deps": [ + "github-issues", + "helm", + "projectile", + "s" + ] + }, + "seeing-is-believing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jcinnamond/seeing-is-believing.git", + "sha256": "7b89fb8610f3acc23e831ea0baa160122dc2309d6616f6f913331ec9c8fde3a6", + "rev": "a698443529ea26fba3fd0748fe10439be7721e96" + }, + "recipe": { + "sha256": "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151010.1229", + "deps": [] + }, + "cdnjs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/cdnjs.el.git", + "sha256": "53062daa4ee4ebd92fe7cd35ffc43fa67e271d72809221e8508aa3f74164572b", + "rev": "eac2b4d150907aeb2d568327d04775578c82887f" + }, + "recipe": { + "sha256": "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140217.1512", + "deps": [ + "cl-lib", + "dash", + "deferred", + "f", + "pkg-info" + ] + }, + "pdb-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sixpi/pdb-mode.git", + "sha256": "9b5f985a3ddd6191086af42addd3ab6731b6b7f28679627de19b9fb69f515025", + "rev": "855fb18ebb73b5df30c8d7677c2bcd0f361b138a" + }, + "recipe": { + "sha256": "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150128.1151", + "deps": [] + }, + "interval-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/interval-list.git", + "sha256": "5f7234a8484283cfc1aa217f1a545fdf9d6ceee7c8c1a1e88649539f89a866ff", + "rev": "38af7ecf0a493ad8f487074938a2a115f3531177" + }, + "recipe": { + "sha256": "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150327.1218", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "beginend": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/beginend.git", + "sha256": "0de8996dd32ff4082ccc7d429bde5843c928692f514daff4dc648ed5429c92df", + "rev": "c5bfdc3bb77a8c019aa4433cf12d3c45690c27bd" + }, + "recipe": { + "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150607.1201", + "deps": [ + "emacs" + ] + }, + "org-if": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/elzair/org-if.git", + "sha256": "dccac99a2e668144209efa19c764640473d9614777bad32b747a245249d53ab7", + "rev": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8" + }, + "recipe": { + "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150920.1013", + "deps": [] + }, + "recursive-narrow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/recursive-narrow.git", + "sha256": "63386e45611da1eec9686e4b8b2335cf915f70ccea27375ee46bd8df94a747d6", + "rev": "bc0cab88234ca92640d4b8da0d83e132c1897922" + }, + "recipe": { + "sha256": "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140902.1227", + "deps": [] + }, + "tidy": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tidy.el", + "sha256": "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa" + }, + "recipe": { + "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20111222.1156", + "deps": [] + }, + "shift-text": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/shift-text.git", + "sha256": "c49153f8360b05f4e36a75910d36ce6e9782bf46755bf0de91586564d2e255c3", + "rev": "1be9cbf994000022172ceb746fe1d597f57ea8ba" + }, + "recipe": { + "sha256": "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130831.1155", + "deps": [ + "cl-lib", + "es-lib" + ] + }, + "vimgolf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/timvisher/vimgolf.git", + "sha256": "881e3b81f47fc501aff8e34ee8a703a820f2dd6868297a330766bdeabfc3b1b1", + "rev": "289bef87963b660c0cf6ea1f648ac2440c609c88" + }, + "recipe": { + "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140814.1648", + "deps": [] + }, + "palimpsest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danielsz/Palimpsest.git", + "sha256": "dd0cd1212736778e81f455946ce7c18a281a4d58bacf47048df28436e03d78cc", + "rev": "69fe61494bfd24305bf7e387fa716474918eafa2" + }, + "recipe": { + "sha256": "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130731.1021", + "deps": [] + }, + "ac-geiser": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xiaohanyu/ac-geiser.git", + "sha256": "ac74a897e03d3ab03c2be01a4a88e578a9d7167c6c6456fadc0c66eea9e0e959", + "rev": "0e2e36532336f27e3dc3b01fff55ad1a4329817d" + }, + "recipe": { + "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130929.147", + "deps": [ + "auto-complete", + "geiser" + ] + }, + "git-dwim": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/git-dwim.el", + "sha256": "074k1r8rkvyhhwnqy4gnyd7shidxgc25l1xq4hmnwjn13nsyqfnv" + }, + "recipe": { + "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130130.1550", + "deps": [] + }, + "hound": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ryoung786/hound.el.git", + "sha256": "d2f418d4cd00346bf91a6342bcb19b9dff629e7352a1b1dcc45dd3823fb3a5be", + "rev": "26fb047ff4e4c1fe5b66423cb29a7394b9ace665" + }, + "recipe": { + "sha256": "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150217.1149", + "deps": [ + "cl-lib", + "web" + ] + }, + "tuareg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ocaml/tuareg.git", + "sha256": "5d9e5b483f7fa92387ce9efccf4e9b9f5c9a61b868df80443f24416ac1b51be3", + "rev": "bc94358eda8b6b1484e9daa83ac884fc0f5427d2" + }, + "recipe": { + "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.851", + "deps": [ + "caml" + ] + }, + "twilight-anti-bright-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jimeh/twilight-anti-bright-theme.git", + "sha256": "d3f08b4a43f1936bcc659adef65d929e44873cdc847ef71ad03aaf7eda265a7c", + "rev": "c3a7b4177416031284da73f53b4dddaa27570bd7" + }, + "recipe": { + "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140810.234", + "deps": [] + }, + "benchmark-init": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dholm/benchmark-init-el.git", + "sha256": "b3c94c4bd6096115f824aef84bb9bdb88ff5d6c8b6406686ae5013b7f5adb418", + "rev": "8e4c32f32ec869fe521fb4d3c0a69406830b4178" + }, + "recipe": { + "sha256": "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150905.438", + "deps": [] + }, + "octicons": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-octicons.git", + "sha256": "7ca676d42e451a8ec7b19a7ce11f3e1f4b3c52ca2cd40b654607e0fc2a6ce736", + "rev": "229286a6166dba8ddabc8c4d338798c6cd3cf67d" + }, + "recipe": { + "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.2240", + "deps": [ + "cl-lib" + ] + }, + "loc-changes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocky/emacs-loc-changes.git", + "sha256": "79030be31e6cddd1b33d6d04dd24c66085b71bc2d8d15874f819f027c8a289ed", + "rev": "58000738accf2f80ea2bf210f7dea5914adb14ee" + }, + "recipe": { + "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150302.1048", + "deps": [] + }, + "go-stacktracer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/samertm/go-stacktracer.el.git", + "sha256": "1e9c26152183c18a8a1369d7a8326fc537e55de665d0653aa7ed8ace9dd7b658", + "rev": "a2ac6d801b389f80ca4e2fcc1ab44513a9e55976" + }, + "recipe": { + "sha256": "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150430.1642", + "deps": [] + }, + "initsplit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dabrahams/initsplit.git", + "sha256": "268c240e6a42ae807da540ead4f24c78ff6991d82d27036efc514706a303310c", + "rev": "ec1d659a8121e874bcc87a2a5e5c3f68f24e5f68" + }, + "recipe": { + "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141219.1829", + "deps": [] + }, + "downplay-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tobias/downplay-mode.git", + "sha256": "88141dcdd72d8e3b3326d5512f83797c279f95d17756c9860519c1d3dce6fa68", + "rev": "4a2c3addc73c8ca3816345c3c11c08af265baedb" + }, + "recipe": { + "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.1409", + "deps": [] + }, + "stupid-indent-mode": { + "fetch": { + "tag": "fetchgit", + "url": "https://gist.github.com/5487564.git", + "sha256": "242b90e4c403fbcadd40777cd98899c96aab78b84dea88dfa97583b734c9876b", + "rev": "e26ff5a2c4a582c6c1940bbcd204cfeed8e65222" + }, + "recipe": { + "sha256": "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130816.1554", + "deps": [] + }, + "math-symbols": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/math-symbols.git", + "sha256": "8a225117cd8a4009ea2935a9689fe7c4d6c7f7cc36aff7535c324f9340ec1eb2", + "rev": "666b1f00d9e106cf2a3a7d58c2262fe9a1404764" + }, + "recipe": { + "sha256": "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1842", + "deps": [ + "helm" + ] + }, + "ruby-compilation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/rinari.git", + "sha256": "fb86d6dccb24fd0e62e7bda739f250fc2e508b0b2a027d67c9571854c90891ac", + "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" + }, + "recipe": { + "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150709.140", + "deps": [ + "inf-ruby" + ] + }, + "flycheck-google-cpplint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-google-cpplint.git", + "sha256": "f0cf357e97f84afaaba6e41e44d1574ca7601649a78148310955005fa28f112f", + "rev": "dc23300757c6762c018d536a5831aef2486f7a17" + }, + "recipe": { + "sha256": "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140806.1125", + "deps": [ + "flycheck" + ] + }, + "thing-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thing-cmds.el", + "sha256": "0216gckb727hhzf230a3m3n9blyaa21djxcc77r4lf7g2h9g0b5m" + }, + "recipe": { + "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150630.1632", + "deps": [ + "hide-comnt" + ] + }, + "rebox2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/rebox2.git", + "sha256": "41f73f7c0ebdad3ba70cddf1fd7adbf4ef9a2a90e0af9fdf3199890a894d48f0", + "rev": "00634eca420cc48657b81e40e599ff8548083985" + }, + "recipe": { + "sha256": "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121113.700", + "deps": [] + }, + "alchemist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/alchemist.el.git", + "sha256": "864717b68c3ad2c940d34c6a0314c6b1651c4f70df1d140a0ee24bbc2b20f720", + "rev": "2d9c2079c95a0dea0d564576e64dee2e758eea97" + }, + "recipe": { + "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.49", + "deps": [ + "company", + "dash", + "elixir-mode", + "emacs", + "pkg-info" + ] + }, + "eopengrok": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/youngker/eopengrok.el.git", + "sha256": "f3d4e725c36c7a4c739576b46904484b8d59aaf7b95c4646fe180a7a013bebfb", + "rev": "1e471ee40145e73316ad5a965a44b46edbae68a3" + }, + "recipe": { + "sha256": "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.109", + "deps": [ + "cl-lib", + "dash", + "magit", + "s" + ] + }, + "pretty-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/akatov/pretty-mode.git", + "sha256": "e83518274f8199df364f34fdee53a87ed1e99c45ebd8a6c09f0d8e0f25c6d25f", + "rev": "3e0b88d3db20f89fda2cdce3f54371728dcfd05b" + }, + "recipe": { + "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141207.1352", + "deps": [] + }, + "function-args": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/function-args.git", + "sha256": "487907165dd444b9d6a20e840b77ea4f0d7538dce62d55228fd773cd0067ee54", + "rev": "25e447d8a8930a8c515077de57a7693c6a642514" + }, + "recipe": { + "sha256": "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151022.751", + "deps": [ + "swiper" + ] + }, + "dayone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mori-dev/emacs-dayone.git", + "sha256": "25d989f8c68da2bd51a2d3c3987f1b1dc6d543b40ee3ec1d8d01ef292aa78a20", + "rev": "046771dcb58f6cd9d21a67b3627075d739d3ed4d" + }, + "recipe": { + "sha256": "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.455", + "deps": [ + "ht", + "mustache", + "uuid" + ] + }, + "splitjoin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-splitjoin.git", + "sha256": "da5c5c63175c171df6b766634fc68dc8107f64dfa3669d89c15eaea97d7431f0", + "rev": "e2945ee269e6e90f0243d6f2a33e067bb0a2873c" + }, + "recipe": { + "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150505.932", + "deps": [ + "cl-lib" + ] + }, + "url-shortener": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuyang0/url-shortener.git", + "sha256": "a50b0b1ec254ceafffbb27848183e4e3f1eaa69f81530138f257c9154b37ccfd", + "rev": "2ce3fedbdc44f778f28a5a08f06958bc5dccae88" + }, + "recipe": { + "sha256": "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150806.113", + "deps": [] + }, + "frame-restore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/frame-restore.el.git", + "sha256": "581e94c8e7c6ed472e28eb0590e532c0495bb58a50fc187a0e40c6805e664e90", + "rev": "6346cf157d5e1b487a16839d998258b7e693cbc8" + }, + "recipe": { + "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140811.1609", + "deps": [ + "emacs" + ] + }, + "fortune-cookie": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andschwa/fortune-cookie.git", + "sha256": "90996f701f96d0691f86681f9a88d03706ffb579b585b92c3b77b4c39ffa854c", + "rev": "9bf0d29358989e1aee61c472bd5204b9bdf46465" + }, + "recipe": { + "sha256": "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.35", + "deps": [] + }, + "link": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myrkr/dictionary-el.git", + "sha256": "886b331bc9ef9c9ab171a4c370c80c342417fb8fcb9793edf17baa9984c11587", + "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" + }, + "recipe": { + "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140717.2229", + "deps": [] + }, + "bind-map": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/justbur/emacs-bind-map.git", + "sha256": "a1096492c880af65717276343d8e576e623ac983a7590d67751271aded02069e", + "rev": "af26966c9a32bdfc71bbe388bba27fde144bda4b" + }, + "recipe": { + "sha256": "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.819", + "deps": [ + "emacs" + ] + }, + "jumplist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ganmacs/jumplist.git", + "sha256": "d4230811c427ed1b509c69d887b17d4666cf2dde277ae70c86ac920190df7f7a", + "rev": "c482d137d95bc5e1bcd790cdbde25b7f729b2502" + }, + "recipe": { + "sha256": "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.2145", + "deps": [ + "cl-lib" + ] + }, + "narrow-indirect": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/narrow-indirect.el", + "sha256": "1j50f3kzgrvxf4iznjjwsi4smp7gdp09irz7x3ppv4w2c8apc6j8" + }, + "recipe": { + "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1833", + "deps": [] + }, + "button-lock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/button-lock.git", + "sha256": "0c649aebcf12e0d1c86816154504ebc98670be8baf369f5b9f0fc78cd95c236e", + "rev": "f9082feb329432fcf2ac49a95e64bed9fda24d58" + }, + "recipe": { + "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.754", + "deps": [] + }, + "readline-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/monsanto/readline-complete.el.git", + "sha256": "a65a12e1947a2656ce5ae317ba93e25465112850fb9d2414829f5377552fabc8", + "rev": "30c020c37b2741160cc37e656e13c85d826a0ebf" + }, + "recipe": { + "sha256": "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150708.937", + "deps": [] + }, + "fill-column-indicator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alpaker/Fill-Column-Indicator.git", + "sha256": "38eff1d0565ca7ff30d29cac933f6042e032cd0241208cb913ee7862f1d5783d", + "rev": "0e755319451dd9c6c99c2a2ef82c890ba93343b6" + }, + "recipe": { + "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1433", + "deps": [] + }, + "mallard-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jhradilek/emacs-mallard-snippets.git", + "sha256": "c2dba98a425cc148f7963a7c1f8d984ca0d94a0c11747339a5e4fa6a0f896762", + "rev": "70c5293f10722f2ace73bdf74d9a18f95b040edc" + }, + "recipe": { + "sha256": "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131023.1351", + "deps": [ + "mallard-mode", + "yasnippet" + ] + }, + "ido-gnus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/ido-gnus.git", + "sha256": "3716e0d07f51be352ffc48a2ee6bf580d13264bce8db55968f624bbb4be3cd45", + "rev": "f5fe3f6aa8086f675ba216abace9e3d5f2e3a089" + }, + "recipe": { + "sha256": "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140216.1046", + "deps": [ + "gnus" + ] + }, + "farmhouse-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattly/emacs-farmhouse-theme.git", + "sha256": "7f551514979c5df0ead6abb3854d59df9ca7993f67a5948866170b3285728f22", + "rev": "a09e7cd5b12542d27474aad7e118c8ede3edbea1" + }, + "recipe": { + "sha256": "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150506.2327", + "deps": [] + }, + "serverspec": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-serverspec.git", + "sha256": "d7c8496483173311871f653468c6ba8b38855b2bb109eca70169483f5dae3c4a", + "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" + }, + "recipe": { + "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150623.655", + "deps": [ + "dash", + "f", + "helm", + "s" + ] + }, + "prognth": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/prognth.git", + "sha256": "955332b8f1f3b46cec6c7d9e558194c4590b93da406470ae1ccf8143e6d2fdeb", + "rev": "2f1ca4d34b1fd581163e1df122c85418137e8e62" + }, + "recipe": { + "sha256": "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130920.1259", + "deps": [] + }, + "butler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AshtonKem/Butler.git", + "sha256": "73642b08f3ed6f0dcfc5e474361c1f64166dd18612de113cab04543861ea3bed", + "rev": "8ceb35737107572455cca9a61ff46b3ff78f1016" + }, + "recipe": { + "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150811.1908", + "deps": [ + "deferred", + "emacs", + "json" + ] + }, + "iflipb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jrosdahl/iflipb.git", + "sha256": "714284d5fd269eab2cc13b595959ce6366f531415a00c0805e1ff064b5f434a3", + "rev": "2e0d1719abeec7982341761ee5dabb01574e6862" + }, + "recipe": { + "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141123.1516", + "deps": [] + }, + "ido-complete-space-or-hyphen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/doitian/ido-complete-space-or-hyphen.git", + "sha256": "c66f9ee98281e0c5a0705368eedc2e611f29a19d45df13c94e476ce3ec13dc4a", + "rev": "3fe1fe1e1a743f8deb8f4025977647afecd58f14" + }, + "recipe": { + "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130228.408", + "deps": [] + }, + "bbdb-android": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/bbdb-android.git", + "sha256": "5027710ede91d0f36752a175bebf72b0316bdea313c066dfb512ab51f40b521c", + "rev": "60641acf8b90e34b70f783b3d6e7789a4272f2b4" + }, + "recipe": { + "sha256": "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150706.24", + "deps": [ + "bbdb-vcard" + ] + }, + "sift": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/sift.el.git", + "sha256": "f8c3740afefdbc636ebc27662d8bbbdef6fc0a89ede76d62c00e222f99c559fe", + "rev": "a757745492124e5a021a4cc7e62d5349c21213c6" + }, + "recipe": { + "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.1123", + "deps": [] + }, + "moz": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bard/mozrepl.git", + "sha256": "808970f4ab8cdcf160aec0a3fcdcfc89a12d49bafff31ac117dda8048c6fea5b", + "rev": "57f278849e4246a992e731e188b221a2574fc81e" + }, + "recipe": { + "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150805.1206", + "deps": [] + }, + "baidu-life": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lujun9972/el-baidu-life.git", + "sha256": "ae94b5acc387e5553d9d05ff895674d1c4e233afc2065235c6767fee55e85303", + "rev": "4cb251d44e97da54306af9d99444d9b8525f043e" + }, + "recipe": { + "sha256": "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.615", + "deps": [ + "cl-lib" + ] + }, + "use-package-chords": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/use-package-chords.git", + "sha256": "5fc2ca3cbffb50e5190796767ecdf3e7558bd4e587d18328e0a859103af11780", + "rev": "e5f7a43fd0a63a4a0bf7dabc2c223f615ea71eca" + }, + "recipe": { + "sha256": "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151001.1528", + "deps": [ + "bind-chord", + "bind-key", + "use-package" + ] + }, + "jekyll-modes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fred-o/jekyll-modes.git", + "sha256": "c34ca7de87533176ebc700127ebbec5af27aed24ef3a71d56c077da4856e255e", + "rev": "7cb10b50fd2883e3f7b10fdfd98f19f2f0b2381c" + }, + "recipe": { + "sha256": "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141117.714", + "deps": [ + "polymode" + ] + }, + "timer-revert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/timer-revert.git", + "sha256": "0acd5c46e41bc0481f5391a570d5daec8b25c29a217c5433943206fae8496c90", + "rev": "615c91dec8b440d2b9b7c725dd733d7432564e45" + }, + "recipe": { + "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150122.1432", + "deps": [] + }, + "igv": { + "fetch": { + "tag": "fetchgit", + "url": "https://bitbucket.org/sbarbit/eigv", + "sha256": "cefc95ead9e5d425d3763f8d63afa10dea416493cafd7144f4d3cdeee0d0fa86", + "rev": "47ac6ceede252f451348a2c696398c0cb5279555" + }, + "recipe": { + "sha256": "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141210.627", + "deps": [] + }, + "helm-mt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dfdeshom/helm-mt.git", + "sha256": "f4a96df13dd432ce52a5da88b77f1bf0cacfd49c8b473a7830c65977b0422b27", + "rev": "39a7d58050942f6afc15b1078f1e397ec4c8cd5c" + }, + "recipe": { + "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.2320", + "deps": [ + "cl-lib", + "emacs", + "helm", + "multi-term" + ] + }, + "web-server": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/emacs-web-server.git", + "sha256": "e8e64c4cb210079d56771bf659b2fa6a2b0236986b844902cf04f440ae71fa68", + "rev": "469cd3bc117bfb8da0c03a2a2fb185e80c81d068" + }, + "recipe": { + "sha256": "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140905.1906", + "deps": [ + "emacs" + ] + }, + "bpr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ilya-babanov/emacs-bpr.git", + "sha256": "292f8d0c8a6f179a2570d4eb2d415dfad8cb62b9eb65b6c7282c9a25219f4729", + "rev": "1c8ffe083df2bb1e8a9aa44c9ed450f631081ae4" + }, + "recipe": { + "sha256": "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1415", + "deps": [ + "emacs" + ] + }, + "thumb-through": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/apgwoz/thumb-through.git", + "sha256": "967bb5f560bf63ccf43f1cde24a9c61f89ebccd60f9ed831574d738e7d66d75b", + "rev": "08d8fb720f93c6172653e035191a8fa9c3305e63" + }, + "recipe": { + "sha256": "1krn7zn2y8p51m8dxai5nbrwbdviz6zrjzz0kykya9cqz4n9dhln", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120118.2334", + "deps": [] + }, + "darcula-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fommil/darcula-theme-emacs.git", + "sha256": "4f1c655b71a7afd131d97a2b92f53692a41301ab1271af2732bc5e4b015ea8c5", + "rev": "05dea7041483e2ac9f0839cba01f7bf218a2d87e" + }, + "recipe": { + "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150629.435", + "deps": [] + }, + "cm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/criticmarkup-emacs.git", + "sha256": "cad88a3292200d88276fd7a53af96729c828453cce1a7517d06bb50e7ab223c6", + "rev": "61b1557bad3cf7dfd0fc4c9eb4a7af0d86d605d0" + }, + "recipe": { + "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141112.1915", + "deps": [] + }, + "dynamic-fonts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/dynamic-fonts.git", + "sha256": "dea6c666560df1ffd7cee22112427b5bb3c2d92643565deab802e0ff10bad83b", + "rev": "ab0c65accbdb59acaed5b263327e22ec019b3e82" + }, + "recipe": { + "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140731.726", + "deps": [ + "font-utils", + "pcache", + "persistent-soft" + ] + }, + "ethan-wspace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/glasserc/ethan-wspace.git", + "sha256": "449b5c11a486897a9c77a4967146b873c0104e33b0cc8b4f0e3b8632fe93b02a", + "rev": "acba9d4a8c25719ef7acfb0edd04e3339eb07312" + }, + "recipe": { + "sha256": "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140709.743", + "deps": [] + }, + "ssh": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ieure/ssh-el.git", + "sha256": "6da77166f0d18a504978d14144142a596a00a299ddf751643ee22cd8f86cb0e5", + "rev": "c17cf5b43df8ac4662a0580f85898e1f078df0d1" + }, + "recipe": { + "sha256": "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120904.1542", + "deps": [] + }, + "bbdb2erc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/unhammer/bbdb2erc.git", + "sha256": "7ab5d52daf8adb18fffc47e201a9f96591ab91e447d017b7e41c20ad583b70fe", + "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd" + }, + "recipe": { + "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130607.129", + "deps": [ + "bbdb" + ] + }, + "whitespace-cleanup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/whitespace-cleanup-mode.git", + "sha256": "7988261fc656c624b942a4885e86a45f0b6f5bf3d4531be34f4d4f90bd5fd097", + "rev": "14eaf40e0e67539106d3636af440a167105be296" + }, + "recipe": { + "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150603.647", + "deps": [] + }, + "m-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/m-buffer-el.git", + "sha256": "84223cbaddcce66510e49654ceacdb61343116eac03441418fd79f9820449085", + "rev": "883e6192e992ae783e51de6cd6b6a7dbaa54dce0" + }, + "recipe": { + "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.1116", + "deps": [ + "dash", + "emacs" + ] + }, + "yard-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pd/yard-mode.el.git", + "sha256": "62be969f3ce113c605be94a4cf30ce692288a7e80d85c9deffbf7cad3eb80b29", + "rev": "aa303f6f1c348cbee1dbab3be2ad04b0aaa590cf" + }, + "recipe": { + "sha256": "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140816.1244", + "deps": [] + }, + "lodgeit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ionrock/lodgeit-el.git", + "sha256": "94abb5a54f39cb3e3b5d874d3f0fc414f1b9bce01de87827503dfe098ea8b6b1", + "rev": "ec9b8e5cbb17bcf8ac4bdddd1d361cb60e59384c" + }, + "recipe": { + "sha256": "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150312.849", + "deps": [] + }, + "distinguished-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lokaltog/distinguished-theme.git", + "sha256": "3e2e18718c165c5dfaa00be0bb547a6ca1f0dad6225857ea9a3015e4bdc4e4ae", + "rev": "7fe66fbe6f808047a66d3174d1e2152fedb93ec6" + }, + "recipe": { + "sha256": "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.448", + "deps": [] + }, + "wavefront-obj-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abend/wavefront-obj-mode.git", + "sha256": "de051d41a7413f516ee2ffc796fece2c72bfcef01f2cf067a4062581b2f8887f", + "rev": "75eedad052848e82cdd94064764956b906e6d6b2" + }, + "recipe": { + "sha256": "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150501.1316", + "deps": [] + }, + "pow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yukihr/emacs-pow.git", + "sha256": "01ce7da470aecabf151927bce9d009c3a205836c08283f89621dd05a6bf39f5d", + "rev": "86f8c1cdea08a875adf9f68995647ffc4fe5b140" + }, + "recipe": { + "sha256": "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140420.306", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "memolist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mikanfactory/memolist.el.git", + "sha256": "f56adb555e40471ca199d78b8eaa2004c83335faad7b4eee3c3b8a80b6cca4c9", + "rev": "60c296e202a71e9dcf1c3936d47b5c4b95c5839f" + }, + "recipe": { + "sha256": "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.1221", + "deps": [ + "ag", + "markdown-mode" + ] + }, + "iasm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/RAttab/iasm-mode.git", + "sha256": "e5356cfc7d945e38661046a90a0f135ab1b888425c3a4734ddd2e19d220d82be", + "rev": "6b404ff94bbfe971b3614007c8e5dcd5757c5727" + }, + "recipe": { + "sha256": "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131004.1844", + "deps": [] + }, + "marshal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/marshal.el.git", + "sha256": "37755db345001f7f1acfeb0d9826fc53c832ea8620f15c8b53f76dd3dc87903b", + "rev": "0ab06a654af0555dc669b5bdf4e0991a78238d6d" + }, + "recipe": { + "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150916.2057", + "deps": [ + "eieio", + "json" + ] + }, + "chinese-yasdcv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/chinese-yasdcv.git", + "sha256": "1638878007a282834b6babf599db4bb475fb7ec5d89fafcfe22dfe9b29323a9e", + "rev": "619e4d701ed995ad2c95f35072c638cfb3933afb" + }, + "recipe": { + "sha256": "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.816", + "deps": [ + "chinese-pyim", + "cl-lib" + ] + }, + "company-nand2tetris": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CestDiego/nand2tetris.el.git", + "sha256": "e777f63618e3d84ec2c4be0a52dd8c7f46b736d0535fc3e75c00a7ffef7c7f00", + "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" + }, + "recipe": { + "sha256": "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1636", + "deps": [ + "cl-lib", + "company", + "names", + "nand2tetris" + ] + }, + "zygospore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/louiskottmann/zygospore.el.git", + "sha256": "21e2dc02be0155560938f74f85f8c30d640ee66474a129e7dfbb72e3f754ec0a", + "rev": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8" + }, + "recipe": { + "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140703.352", + "deps": [] + }, + "elisp-depend": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/elisp-depend.el", + "sha256": "0khc3gacw27aw9pkfrnla9844lqbspgm0hrz7q0h5nr73d9pnc02" + }, + "recipe": { + "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120426.2023", + "deps": [] + }, + "eproject": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jrockway/eproject.git", + "sha256": "f9117dfb851fe714abb25007b727ff5faf8d8b25cf73a7990959e5fdec29e756", + "rev": "fdff000d601eb8bdb165db3dc4925c6797308b78" + }, + "recipe": { + "sha256": "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.2330", + "deps": [ + "helm" + ] + }, + "bonjourmadame": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pierre-lecocq/bonjourmadame.git", + "sha256": "c60d8758b446af66cfe9a4caef494f1c4f0448de9b9d1059758f6525926f57e9", + "rev": "85b72ddb602434ca7dd171b86acbcfd58baab83b" + }, + "recipe": { + "sha256": "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.508", + "deps": [] + }, + "scala-mode2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hvesalai/scala-mode2.git", + "sha256": "7887edd7ac95398b59383ef2099aefdced36f555dd4b98b5a753a7d7afb7f7b0", + "rev": "360b5ba27aeca69e72109515b6c40b2f7972cc8f" + }, + "recipe": { + "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150618.150", + "deps": [] + }, + "show-marks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/show-marks.git", + "sha256": "8709d17f9803f0952fa820548128084d7c7b71a0e1e3cbe3fc8f3b6be9997397", + "rev": "97609566582e65eed0d0a854efa5c312f209115d" + }, + "recipe": { + "sha256": "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130805.949", + "deps": [ + "fm" + ] + }, + "simple-rtm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mbunkus/simple-rtm.git", + "sha256": "921b2dea7b716561aac9405287cee0972441a824a0fcedb7ac1f560f439f564a", + "rev": "cff3e87bc2d440aa643c9f43bf99972668147231" + }, + "recipe": { + "sha256": "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140926.639", + "deps": [] + }, + "rigid-tabs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wavexx/rigid-tabs.el.git", + "sha256": "65a9da075c651b3c12533d52133c11846ffe74ac50b7757a712692961e27045c", + "rev": "c7c6b726806df7e8cb25a41b213a207850c91cb7" + }, + "recipe": { + "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.1056", + "deps": [ + "emacs" + ] + }, + "inform7-mode": { + "fetch": { + "tag": "fetchgit", + "url": "https://github.com/fred-o/inform7-mode.git", + "sha256": "3c00805529518edba788671fed0c3e56810d1dbec2a0dbd3cb42f42991326ca6", + "rev": "42458733947f2fbd44bc78f7264be247a5d8980b" + }, + "recipe": { + "sha256": "1kbyl69vwhp1wdivr3ijmj7mghdnjaw7adk8az7bwyzjvpq73171", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131010.154", + "deps": [ + "sws-mode" + ] + }, + "hc-zenburn-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/edran/hc-zenburn-emacs.git", + "sha256": "1322701d2ac920ee92d1a5fc6c51f7993ca24265d72463f8c4c7a8030f91ec65", + "rev": "fd0024a5191cdce204d91c8f1db99ba31640f6e9" + }, + "recipe": { + "sha256": "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150928.1133", + "deps": [] + }, + "synonymous": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/toroidal-code/synonymous.el.git", + "sha256": "bccb0ba188b275ea7970f5a7a44b6a37f9adac1344c774eb642cca7deb74b60b", + "rev": "9abd08c57f4a35902cd6b3eb5aad8dbb352141f4" + }, + "recipe": { + "sha256": "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150909.1034", + "deps": [ + "cl-lib", + "emacs", + "request" + ] + }, + "theme-changer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hadronzoo/theme-changer.git", + "sha256": "a812bee96ee38b689f528ceb8a68b75d1498d3a98153c6eb4c7b9ce35bb1555a", + "rev": "c28ea477e8277c03e14657f167695e3c4bf3c11f" + }, + "recipe": { + "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130725.2119", + "deps": [] + }, + "uncrustify-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/koko1000ban/emacs-uncrustify-mode.git", + "sha256": "55c5635a9b7be6c0506ee2a385406b180bf7fa273f339e54f38781e82481c60c", + "rev": "73893d000361e95784911e5ec268ad0ab2a1473c" + }, + "recipe": { + "sha256": "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130707.859", + "deps": [] + }, + "hl-sentence": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/hl-sentence.git", + "sha256": "babf6681e44a5e2a17669974bb75db2423fbfceca8af72c8ccee1c70515d4e5e", + "rev": "45e3cc525ba636c0f22baa6d0938d9808622bc89" + }, + "recipe": { + "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140802.1120", + "deps": [] + }, + "mynt-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/crshd/mynt-mode.git", + "sha256": "aac24e44b98ef53114f966fefd6441e8e5b5d8399fef6f064ff5c6383e06b4a2", + "rev": "23d4489167bfa899634548cb41ed32fdeb3600c9" + }, + "recipe": { + "sha256": "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150512.1549", + "deps": [ + "virtualenvwrapper" + ] + }, + "svg-mode-line-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/svg-mode-line-themes.git", + "sha256": "799ccba2e39013872cfee4385c1d3a0e55fc154b9322b67fbfeedcb932c51b53", + "rev": "80a0e01839cafbd66899202e7764c33231974259" + }, + "recipe": { + "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150425.1506", + "deps": [ + "xmlgen" + ] + }, + "tdd-status-mode-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/algernon/tdd-status-mode-line.git", + "sha256": "0a895ac24250e090fddd138278babab81da60b29488ae74f81f2128912c17c6b", + "rev": "cf51cf2e85f190d27424277697c5e3a344d9ef2b" + }, + "recipe": { + "sha256": "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131123.1116", + "deps": [] + }, + "processing-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ptrv/processing2-emacs.git", + "sha256": "53b71ce03ab749e83dfafed98590d7418e703833d0c9d7da885b4dd11fb2ee4a", + "rev": "a57415e523c9c3faeef02fa62a2b749270c4cc33" + }, + "recipe": { + "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140426.928", + "deps": [ + "yasnippet" + ] + }, + "namespaces": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/elisp-namespaces.git", + "sha256": "313f696729e167457b4646d99c4d3f0182aa533cec9c14876871ae5a294c9a58", + "rev": "3d02525d9b9a5ae6e7be3adefd880121436e6270" + }, + "recipe": { + "sha256": "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130326.1750", + "deps": [] + }, + "doremi": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi.el", + "sha256": "0b50iwyjxnhny9kzbcqxwqwa5fg5xbldm7l4jzcyl3bmcdbg4w7q" + }, + "recipe": { + "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150815.938", + "deps": [] + }, + "clevercss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jschaf/CleverCSS-Mode.git", + "sha256": "bda129acd83d11bfa6ba36c2e89b036f787331b9a799121f67e4b944edfa06a7", + "rev": "b8a3c0dd674367c62b1a1ffec84d88fe0c0219bc" + }, + "recipe": { + "sha256": "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.1955", + "deps": [] + }, + "grizzl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d11wtq/grizzl.git", + "sha256": "3cc4f6f8257fa4c552df7ff93abbe05ba2317e94c967013546e2c2ad410d9c79", + "rev": "93c72e18a0146ee1f43adb28423475094d5e9f4c" + }, + "recipe": { + "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150712.30", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "hyde": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nibrahim/Hyde.git", + "sha256": "0ab40ee83db247b3b5a085f95e9006156a862204d3365a6d6a168c55742f6f23", + "rev": "640959dd6837487dd4545809d6cc9ef54283673d" + }, + "recipe": { + "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150615.1225", + "deps": [] + }, + "on-screen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/michael-heerdegen/on-screen.el.git", + "sha256": "044517ab266c1c8a886841383274a5fe6e16a7383b3f5604c3e403743ce4dccf", + "rev": "80b00ddef6dffad7086174c2c57f29ef28b69d27" + }, + "recipe": { + "sha256": "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.2308", + "deps": [ + "cl-lib" + ] + }, + "html-script-src": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/html-script-src.git", + "sha256": "d86b250d953d3d9014ae19d05ccc7acd951f24a4cb53da531275d5c5cde62724", + "rev": "66460f8ab1b24656e6f3ce5bd50cff6a81be8422" + }, + "recipe": { + "sha256": "1pin1x6g68y75pa3vz2i9h5pmhjamh5rd5ladb1z3flcavsls64j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120403.1315", + "deps": [] + }, + "shoulda": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marcwebbie/shoulda.el.git", + "sha256": "1145f4152a1344d1b38f42a38b79f3ecb84928943001af0a17d0500e893ae4a6", + "rev": "fbe8eb8efc6cfcca1713283a290882cfcdc8725e" + }, + "recipe": { + "sha256": "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140616.1333", + "deps": [ + "cl-lib" + ] + }, + "wid-edit+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/wid-edit+.el", + "sha256": "080i3gfvhmpmjq9hbjpkvs8pi88s59ia5dvrng0gg5zd8xrwdc6k" + }, + "recipe": { + "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1907", + "deps": [] + }, + "pabbrev": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/pabbrev.git", + "sha256": "d0b8442405823eddc5219b12758f7c1a0a410933ec72f139300e5dbe3ba9f881", + "rev": "d28cf8632d2691dc93afbb28500126242d37961c" + }, + "recipe": { + "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150806.645", + "deps": [] + }, + "tumblesocks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gcr/tumblesocks.git", + "sha256": "82c99006a5a14d0ee7912bd84bd31a32ebf928652617c669d1ac1eab3e3bfebc", + "rev": "85a6cdc2db3390593fd886c474959b675460b310" + }, + "recipe": { + "sha256": "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140215.1447", + "deps": [ + "htmlize", + "markdown-mode", + "oauth" + ] + }, + "jack-connect": { + "fetch": { + "tag": "fetchgit", + "url": "https://bitbucket.org/sbarbit/jack-connect", + "sha256": "7036a0eddf25a2274a6fd1584ff497d2b8078869fa6cc9d61504e6540ff863a8", + "rev": "b00658dfe3d5d67431c18ffa693d5a3705067ba0" + }, + "recipe": { + "sha256": "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141207.607", + "deps": [] + }, + "auto-indent-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/auto-indent-mode.el.git", + "sha256": "de2cee23927361d1e43d68a783e26a2496df685ac93f39719d82f4db9b7e9ac2", + "rev": "1a12448ce3a030ed905226450dfb01bba37f127c" + }, + "recipe": { + "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140505.855", + "deps": [] + }, + "main-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jasonm23/emacs-mainline.git", + "sha256": "058b7ee04639807da7a16e3ee0abbcbe574cedc306fa9aade58898b900e5521b", + "rev": "0e88f91e49ef27cb77d74f6a8d8140063549d67f" + }, + "recipe": { + "sha256": "0c9c5kmixvhk9il8hsxzf2k14fggb9b9mw59g8q3hgpn5g7kgpkv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.2006", + "deps": [ + "cl-lib" + ] + }, + "helm-ls-svn": { + "fetch": { + "tag": "fetchsvn", + "url": "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el", + "sha256": "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz", + "rev": "143530" + }, + "recipe": { + "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150717.239", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "pig-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/motus/pig-mode.git", + "sha256": "4d313ec06748955df15ca3c3de1090d71e853ab301ed435949c1fbe95d4a308d", + "rev": "af4200c88a50264b63fa162a02860f3f54c8755b" + }, + "recipe": { + "sha256": "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140617.1258", + "deps": [] + }, + "logstash-conf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/logstash-conf.el.git", + "sha256": "0af7d235a7e65e01307eb0fe15ecc6acf45fa80254d503ab14f3e838d81ffd16", + "rev": "60a06ad1ceb6699cef849e9f2e8255f7816ca5de" + }, + "recipe": { + "sha256": "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150308.718", + "deps": [] + }, + "volume": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dbrock/volume-el.git", + "sha256": "6749fd85d47162b654ae0e0520d289cbb2521ff9903e17542c4bf168b05cb17a", + "rev": "ecc1550b3c8b501d37e0f0116b54b535d15f90f6" + }, + "recipe": { + "sha256": "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150718.1509", + "deps": [] + }, + "evil-leader": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/evil-leader.git", + "sha256": "8a0ec0a9e26e195d8bcbd5f8ad23895dfe82915d647903185541243187af3a96", + "rev": "39f7014bcf8b36463e0c7512c638bda4bac6c2cf" + }, + "recipe": { + "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140606.743", + "deps": [ + "evil" + ] + }, + "niflheim-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/niflheim-theme/emacs.git", + "sha256": "b5231a609e2787e52fab56c24a7b725fa6dd4ac65f56c9102c9e5e4df1e0fb90", + "rev": "5265e89164132fbdbc13146a79f0abce78bd0c5e" + }, + "recipe": { + "sha256": "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150630.1021", + "deps": [] + }, + "inf-mongo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tobiassvn/inf-mongo.git", + "sha256": "6832c1ea91247d223500297ae73b76f9ccbbd6b80f9fbd4ceccefaf68b5b19ea", + "rev": "2d910f2143610f12de9c573ee202a322cf579e85" + }, + "recipe": { + "sha256": "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131216.428", + "deps": [] + }, + "highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight.el", + "sha256": "01d7khl7d78wz37bz28wjszhdwz81lrq9vm9d4slnj2qg4by6dcy" + }, + "recipe": { + "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.1851", + "deps": [] + }, + "darktooth-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-theme-darktooth.git", + "sha256": "e98f05a9fc745655dc52916eec3d4702d50188eaa6fc2ae4ecd676565d82f1dc", + "rev": "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3" + }, + "recipe": { + "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1922", + "deps": [] + }, + "helm-anything": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rubikitch/helm-anything.git", + "sha256": "4bbe4da505be42ff2916f805191cb2f10e161b4e91795e0294300e3d70c07f94", + "rev": "0ec578922928b7c75cf034d1b7a956b5f36107ea" + }, + "recipe": { + "sha256": "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141126.431", + "deps": [ + "anything", + "helm" + ] + }, + "window-layout": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-window-layout.git", + "sha256": "afcd8897476077497cf52f5327c55c6a828246df5ba9648045e7aa45568a9021", + "rev": "03ee615fc8fad5be4efec9c3febab8c851271257" + }, + "recipe": { + "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150717.7", + "deps": [] + }, + "draft-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gaudecker/draft-mode.git", + "sha256": "64d1330e69ce634228c14b40ca055b24c8a69e216613a95f2d6c6efb5ccba190", + "rev": "8a59f537d44ef7e8f34a69da1a7d5e0d443d76f7" + }, + "recipe": { + "sha256": "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140609.956", + "deps": [] + }, + "edit-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/edit-list.git", + "sha256": "89c150ab37bbf0f9260c4bcd63d40988567733ee6b1b3007fbd1836283870125", + "rev": "f460d3f9e208a4e606fe6ded307f1b011916ca71" + }, + "recipe": { + "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100930.943", + "deps": [] + }, + "grapnel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/grapnel.git", + "sha256": "6c6891b916a07414208fbc1812a02267254d4c5c05868175a45175796045745b", + "rev": "fbd0f9a51139973d35e4014855964fa435e8ecaf" + }, + "recipe": { + "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131001.1034", + "deps": [] + }, + "fcopy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ataka/fcopy.git", + "sha256": "3671af137dddbfebd4d327a2407a63652e1a62b37f9653356c7beb11c341471a", + "rev": "e355f6ec889d8ecbdb096019c2dc660b1cec4941" + }, + "recipe": { + "sha256": "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150304.803", + "deps": [] + }, + "litable": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/litable.git", + "sha256": "29553557c3f334ed0a2ab6969fdd39815120506fa0a6d6479d5bf24653087fd9", + "rev": "9065bade1ba42ad04d9839d58082b73da589dca6" + }, + "recipe": { + "sha256": "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150908.909", + "deps": [ + "dash" + ] + }, + "ducpel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/ducpel.git", + "sha256": "db3e32038784fd6d08b363c25374c14802264f36c2d7e04a9d8dde2f5934a3d9", + "rev": "4a1671fc45ab92d44dee85a1a223122d5a43cb32" + }, + "recipe": { + "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140419.16", + "deps": [ + "cl-lib" + ] + }, + "sclang-extensions": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/sclang-extensions.git", + "sha256": "0d6616e2aeb78b5334f86b5a21e44a70facf2b404cd3f5910dbd6d8ebc0859a5", + "rev": "7133494182738cb0ef49f31cc09cfe0d2fab520e" + }, + "recipe": { + "sha256": "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.1639", + "deps": [ + "auto-complete", + "dash", + "emacs", + "s" + ] + }, + "elfeed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elfeed.git", + "sha256": "8775dadb0d863ec79f52cfe211d75fa4eeba91742b5eb8bb56c30cf1d9fddb76", + "rev": "19879a4dfb3b6932bb411284d686f212d60f6244" + }, + "recipe": { + "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.2113", + "deps": [ + "emacs" + ] + }, + "org-dropbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/heikkil/org-dropbox.git", + "sha256": "bd45b3bf42a5ddf0f29d31a7169c0e72cfaa5dfb58d9d4365c9c54779ed54d4a", + "rev": "75dab6d6f0438a7a8a18ccf3a5d55f50bf531f6e" + }, + "recipe": { + "sha256": "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150113.2309", + "deps": [ + "dash", + "emacs", + "names" + ] + }, + "resize-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dpsutton/resize-window.git", + "sha256": "f0b649ac1b75e962eed8992b11bf437359b583cbceee87c8fb8376bdc9d3390c", + "rev": "0bc23978d1084da5638becf93b66816edc4ece54" + }, + "recipe": { + "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.2229", + "deps": [ + "emacs" + ] + }, + "kite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jscheid/kite.git", + "sha256": "e3a3abad2b99827f5659915caa2b5fe74fa353c85cebd18c27d08b4d41a4eb4c", + "rev": "7ed74d1147a6ddd152d3da65dc30df3517d53144" + }, + "recipe": { + "sha256": "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130201.1338", + "deps": [ + "json", + "websocket" + ] + }, + "google-maps": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jd/google-maps.el.git", + "sha256": "a0d528677351b767c20e2192d3f484ad3b6dce7401b07c22661f884b4b7e71a0", + "rev": "90151ab59e693243ca8da660ce7b9ce361ea5126" + }, + "recipe": { + "sha256": "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130412.430", + "deps": [] + }, + "htmlize": { + "fetch": { + "tag": "fetchgit", + "url": "http://fly.srk.fer.hr/~hniksic/emacs/htmlize.git", + "sha256": "8afaf87b30628afd8d376965247a6b2791129339ad7238c5529f4b173f908251", + "rev": "aa6e2f6dba6fdfa200c7c55efe29ff63380eac8f" + }, + "recipe": { + "sha256": "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130207.1402", + "deps": [] + }, + "forecast": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cadadr/forecast.el.git", + "sha256": "412c6f4a92e7c2e1ec58c08ad367b51ddb5c337682329f1a9b29ae8a2d4288cb", + "rev": "51526906140700f076bd329753abe7ae31b6da90" + }, + "recipe": { + "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.1635", + "deps": [ + "emacs" + ] + }, + "perl6-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hinrik/perl6-mode.git", + "sha256": "5ddbf7c949f5d2b9258b3c98b0614a2278581027806dbf664436bc41f4e0e418", + "rev": "6c97f87fd8556cc0dc7a6754ab2237ea815bf5a4" + }, + "recipe": { + "sha256": "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.1718", + "deps": [ + "emacs", + "pkg-info" + ] + }, + "tox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chmouel/tox.el.git", + "sha256": "6960c88af11f9b0e143099625191ce650bb248d00047b46751ea4199513c4198", + "rev": "5c1a7c18cb7f2fd2da2386debf86012e6953e15d" + }, + "recipe": { + "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141004.1603", + "deps": [] + }, + "swap-buffers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ekazakov/swap-buffers.git", + "sha256": "3939adc992ed01a3ab0724d00abd554ede23b4427907ed7a80a09b0c4e01c7ce", + "rev": "46ab31359b70d935add6c6e9533443116dc51103" + }, + "recipe": { + "sha256": "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150506.1639", + "deps": [] + }, + "window-jump": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chumpage/chumpy-windows.git", + "sha256": "baaf7d7fb21229883f9782f140c099393a24119c9d9efa1d96b45cf9b1c72a19", + "rev": "164be41b588b615864258c502583100d3ccfe13e" + }, + "recipe": { + "sha256": "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150213.1436", + "deps": [] + }, + "org-screenshot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dfeich/org-screenshot.git", + "sha256": "7ec85b7a6e07f114f7fea1722e4753d3fbb4986896afe4b73624e31afe46c62b", + "rev": "90c78dce2846bd1d148181ff896afe0f9fa9bdeb" + }, + "recipe": { + "sha256": "012pm38d9v8qmg83vrsp39y6y30il0956rlrcmb5m5nzla84z2c3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.704", + "deps": [ + "org" + ] + }, + "init-open-recentf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/init-open-recentf.el.git", + "sha256": "50d645d38b648291e01f55a1f37dd1cbbe2de0c44271ccf482eaddd4a0a76776", + "rev": "f7999730ed8b02a9f4b9f884defd40a90772765b" + }, + "recipe": { + "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.2223", + "deps": [ + "emacs" + ] + }, + "geben": { + "fetch": { + "tag": "fetchsvn", + "url": "http://geben-on-emacs.googlecode.com/svn/trunk/", + "sha256": "01kbvmylymm6qww45mbjjxmb8ccdl9c2pxdyqfq3g73vwzrvndk4", + "rev": "124" + }, + "recipe": { + "sha256": "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100330.543", + "deps": [] + }, + "date-field": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-date-field.git", + "sha256": "7cf4bc78c9958b6aaa52381fb2aedd2175c20e7d4f66727192326eeb84b4bcd2", + "rev": "11c9170d1f7b343233f7716d4c0a62be024c1654" + }, + "recipe": { + "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141128.1905", + "deps": [ + "dash", + "log4e", + "yaxception" + ] + }, + "regex-dsl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alk/elisp-regex-dsl.git", + "sha256": "fdb9021b1b5399ddcc54d72d15151fcf9650439bdf14df9edbe9241d4f9364b4", + "rev": "ac89ab8b7691a165ef3007cb84417125cfc0632e" + }, + "recipe": { + "sha256": "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100124.428", + "deps": [] + }, + "lemon-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/lemon-mode.git", + "sha256": "47fe920e81548c46633a6195521b8720d492f5b05dfa03b3fbbc541a4bcdd258", + "rev": "155bfced6c9afc8072a0133d3d1baa54c6d67430" + }, + "recipe": { + "sha256": "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130216.704", + "deps": [] + }, + "atom-one-dark-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jonathanchu/atom-one-dark-theme.git", + "sha256": "deaf9f306eaabaa4ca1771e4fb08153e6178de487dfcc45965a7eeaa0a8b9815", + "rev": "5fe3c1463daa4736435eb0c4716d4bf29f25f0a6" + }, + "recipe": { + "sha256": "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.2245", + "deps": [] + }, + "toggle-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/deadghost/toggle-window.git", + "sha256": "b978eb5117e936801ff3038345d73f2303ff0321f1ba0ad77dbbd21764540639", + "rev": "e82c60e543933880402ede11e9423e48a17dde53" + }, + "recipe": { + "sha256": "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141207.948", + "deps": [] + }, + "slamhound": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/slamhound.git", + "sha256": "8f20989698ac0b8849e906d20ffc518a67749567960ab2de22f30b5331f7b27f", + "rev": "f43dd49b63b2838081735ea1988f70de05389692" + }, + "recipe": { + "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140506.1818", + "deps": [] + }, + "syslog-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/syslog-mode.git", + "sha256": "c4e9090063061cf72763523f86888371365331cb549c569cb53c3180866ab7eb", + "rev": "c18661b3058f0ec00e6957c955559a762cb0062c" + }, + "recipe": { + "sha256": "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140217.1818", + "deps": [ + "hide-lines" + ] + }, + "evil-numbers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/evil-numbers.git", + "sha256": "ccea3c266c22f67896e5b96d9f1d1c56288e52c5cf05bafc8bd8548bbaf2c64a", + "rev": "6ea1c8c3a9b37bed63d48f1128e9a4910e68187e" + }, + "recipe": { + "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140606.751", + "deps": [] + }, + "switch-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/switch-window.git", + "sha256": "8844b9369dc1864c3fd7a53135734e6dc872f99277fb3fb0a04032af188deefe", + "rev": "cd4b06121aa5bac4c4b13b63526a99008def5f2b" + }, + "recipe": { + "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150114.415", + "deps": [] + }, + "zeal-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jinzhu/zeal-at-point.git", + "sha256": "6e1f4c56fe881662b5945ee38f53260f42f2d9b34eec0ac7faa9c46a50f05db3", + "rev": "f18afeae0a4e0cd339a386255ac65b35deb787bb" + }, + "recipe": { + "sha256": "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.2107", + "deps": [] + }, + "helm-robe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-robe.git", + "sha256": "015eccef55fb3ed69ff261909ab8b5b5dc4cf3021b497e2ea48f23bb4daa62a6", + "rev": "7348d0bc0251b51979554ea678b970fd01c0efe9" + }, + "recipe": { + "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.2155", + "deps": [ + "helm" + ] + }, + "helm-flx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PythonNut/helm-flx.git", + "sha256": "fa9d207737c3e64b5728b89677dbcd074a59a8e5e606bca39ecacad8ea9fd529", + "rev": "f634e85ee92f6a390da33d1a618a4c353e270762" + }, + "recipe": { + "sha256": "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.1025", + "deps": [ + "emacs", + "flx", + "helm" + ] + }, + "ac-capf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-capf.git", + "sha256": "5893816323a627101e6b9f30d49b6343ee1eece266075b16856d98e6ff3789be", + "rev": "17571dba0a8f98111f2ab758e9bea285b263781b" + }, + "recipe": { + "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.2117", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "lice": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/buzztaiki/lice-el.git", + "sha256": "7357fc317b6dc14b906c2ae17fcdc6cf2cea02397998d21692a0c51ead02b53a", + "rev": "4e34674e188afc29e8f9c1efa84ae16e486dd43c" + }, + "recipe": { + "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.2223", + "deps": [] + }, + "mark-tools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stsquad/emacs-mark-tools.git", + "sha256": "7f4792a649629f4a09e03b6df51bed9e259b4bd1286ce7da4679d604f4da9f4c", + "rev": "a11b61effa90bd0abc876d12573674d36fc17f0c" + }, + "recipe": { + "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130614.525", + "deps": [] + }, + "xah-get-thing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xah-get-thing-or-selection.git", + "sha256": "e2740e45fc88221dbe3455d7b1f3168addc147c610b05bf007286a71edb77329", + "rev": "d2dadc54417468cc42da72c4e02fd23e3fd0584a" + }, + "recipe": { + "sha256": "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150712.1630", + "deps": [] + }, + "helm-gitignore": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jupl/helm-gitignore.git", + "sha256": "0f43ea411395beaf9f53a84d1f11a99870183bc6d0386053a12f6290d4e5963c", + "rev": "03aad6edb0ed4471c093230856f26719754e570b" + }, + "recipe": { + "sha256": "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150517.2256", + "deps": [ + "cl-lib", + "gitignore-mode", + "helm", + "request" + ] + }, + "echo-bell": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/echo-bell.el", + "sha256": "11914ca1q8szqyqihfm2q39cway3p6j1fdggr99lk6848dkf5p1v" + }, + "recipe": { + "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.2025", + "deps": [] + }, + "dkmisc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidkeegan/dkmisc.git", + "sha256": "89ec8c71084bdebed8e675168009600c0c692c842469b298c42a8575d10be7db", + "rev": "fe3d49c6f8322b6f89466361acd97585bdfe0608" + }, + "recipe": { + "sha256": "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131110.515", + "deps": [ + "emacs" + ] + }, + "dedicated": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/dedicated.git", + "sha256": "2410cea419dc4623d070373695d5d18c2895cb34718f7120f65d9f01814e6a5d", + "rev": "8275fb672f9cc4ba6682ebda0ef91db827e32992" + }, + "recipe": { + "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090428.1431", + "deps": [] + }, + "pixiv-novel-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/pixiv-novel-mode.el.git", + "sha256": "add447df623bedb255dba19117e2f42bc67625ebcf32013f767f74711a16f691", + "rev": "65809cf31816257d8c6c92868af6c30abf7b2043" + }, + "recipe": { + "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.54", + "deps": [] + }, + "edit-indirect": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/edit-indirect.git", + "sha256": "bacde52461c28ace2844c8d6c6b21e797ac81ef56596e3d23fd9d2d094228881", + "rev": "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0" + }, + "recipe": { + "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141213.1205", + "deps": [ + "emacs" + ] + }, + "asn1-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/asn1-mode.git", + "sha256": "923d44b1f11ef3ba37daa3d78f74398b23aaa7fc61952db1b74d94006dea2840", + "rev": "f8acc7e79306ca416f28ff4dc308d8ec47af51a5" + }, + "recipe": { + "sha256": "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.28", + "deps": [ + "emacs", + "s" + ] + }, + "soundklaus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/r0man/soundklaus.el.git", + "sha256": "b8c069ea09b04a462368fe8a940ee4caae41778c9cb8aa3851e6b7a86828b6bc", + "rev": "830f2b5f4dd4bd110db23a71494b92bb8fe5b058" + }, + "recipe": { + "sha256": "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150102.1521", + "deps": [ + "cl-lib", + "dash", + "deferred", + "emacs", + "emms", + "pkg-info", + "s" + ] + }, + "morlock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/morlock.git", + "sha256": "5e7e289e4b4df746ba62c8da9f64bdcdbf586751922f61e73501b5940ee1afd9", + "rev": "804131c7cff5dafa762c666fd66458111e4ee36f" + }, + "recipe": { + "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150815.1034", + "deps": [] + }, + "helm-fuzzy-find": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/helm-fuzzy-find.git", + "sha256": "cae06030c8f0be73808724c8622471720a645d2fcce73273e7cfdd6b70afb6fb", + "rev": "daf24bc236dafa4f4be45f1621e11dbc9f304b64" + }, + "recipe": { + "sha256": "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150613.549", + "deps": [ + "emacs", + "helm" + ] + }, + "auto-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/auto-complete/auto-complete.git", + "sha256": "729e6a0ed96b742261775c16a0fac77f5032cbb7231a67af0996dce624bdeac8", + "rev": "67df105a4210b114e01ec08368b8b6b07f28de77" + }, + "recipe": { + "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.427", + "deps": [ + "cl-lib", + "popup" + ] + }, + "psvn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/psvn.git", + "sha256": "a6013b3b8bd9c2f92b3a06d51fd1f51104e9dc2a401012b2b052dbfb2278e1cb", + "rev": "23048d302858fc3a52c118652bd83491a4956410" + }, + "recipe": { + "sha256": "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.1242", + "deps": [] + }, + "go-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/toumorokoshi/go-snippets.git", + "sha256": "1658ee3e9a737dc6fac127a55b2de63fbf867ea40f0181c120205e432fef2636", + "rev": "983eb74025030bf6d405f1ed63be3162cc28a528" + }, + "recipe": { + "sha256": "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.57", + "deps": [ + "yasnippet" + ] + }, + "sparql-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ljos/sparql-mode.git", + "sha256": "79a395765f595f076cbe2154171a18882321d84a93e9b7cbc98e2bb9df318cf7", + "rev": "303858e7f91829ec720141482c777460e66f310b" + }, + "recipe": { + "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.1114", + "deps": [ + "cl-lib" + ] + }, + "emamux-ruby-test": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emamux-ruby-test.git", + "sha256": "8c67302628f4da87bb02f6369c9867de6c8cba7644c714249d25101618a9ba30", + "rev": "23b73c650573b340351a919da3da416acfc2ac84" + }, + "recipe": { + "sha256": "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130812.1139", + "deps": [ + "emamux", + "projectile" + ] + }, + "expand-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/expand-region.el.git", + "sha256": "ca4a279f1b537bca9c468bfb74f0f86989c12ebdeae895b02dd5ff95a2b6a6b5", + "rev": "59f67115263676de5345581216640019975c4fda" + }, + "recipe": { + "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150902.758", + "deps": [] + }, + "auto-compile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/auto-compile.git", + "sha256": "4f738b9f02c5ff3496f06bd9415e6d179285869e5b066031b39d51f2159a761f", + "rev": "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29" + }, + "recipe": { + "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.1608", + "deps": [ + "dash", + "emacs", + "packed" + ] + }, + "ruby-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ajvargo/ruby-refactor.git", + "sha256": "ca533e550f4bfe0c7eee9b922770a558840590b86d674e474d6cf83fc0205dc2", + "rev": "8be821e89dac15fa402dba211a27b843147e4d17" + }, + "recipe": { + "sha256": "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1207", + "deps": [ + "ruby-mode" + ] + }, + "redpen-paragraph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/karronoli/redpen-paragraph.el.git", + "sha256": "5d4d555bb2b081a2fe8ad298b67759338fd113de1dd1d1e077a9b6c053ac6868", + "rev": "dcba4dc48593fedd48e398af50f6cdc60f453a07" + }, + "recipe": { + "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.941", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "tomatinho": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/konr/tomatinho.git", + "sha256": "d6dc78ec93ecd1ae11aaaf70b5529498fce53f3dac414be6474877393cdc7f28", + "rev": "7468bbfca79e6ed70ad8fb9517bc05f02fe602c7" + }, + "recipe": { + "sha256": "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140120.1740", + "deps": [] + }, + "r-autoyas": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/r-autoyas.el.git", + "sha256": "727cee1460e64061594912a689dee553de69ff46371f9db818e892475b951436", + "rev": "b4020ee7f5f895e0065b8b26da8a49c51432d530" + }, + "recipe": { + "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140101.910", + "deps": [ + "ess", + "yasnippet" + ] + }, + "buffer-stack": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/buffer-stack.el", + "sha256": "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r" + }, + "recipe": { + "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101223.420", + "deps": [] + }, + "frame-fns": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/frame-fns.el", + "sha256": "0vh3k8wjvf78r5gv6sn468a4gxfxf4f63csk54izgyspyv6mj9c7" + }, + "recipe": { + "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1608", + "deps": [] + }, + "scad-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/openscad/openscad.git", + "sha256": "e57ce0dd6532f82adec76026b1bbb3d89a68a514096001317187a522bfb8ab23", + "rev": "81994d2c3d88dc4b1b7221a57b831060484fd27b" + }, + "recipe": { + "sha256": "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.2229", + "deps": [] + }, + "ccc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skk-dev/ddskk.git", + "sha256": "003be81094d22aa34b472dab82673037a34ca2b9a928c9d2fa865a990b360630", + "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" + }, + "recipe": { + "sha256": "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.743", + "deps": [] + }, + "search-web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomoya/search-web.el.git", + "sha256": "11d8de35caac0a45a51ba3852852ec1ac7cf74e40014f88146ff4449d431cc23", + "rev": "c4ae86ac1acfc572b81f3d78764bd9a54034c331" + }, + "recipe": { + "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150312.603", + "deps": [] + }, + "helm-growthforecast": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/daic-h/helm-growthforecast.git", + "sha256": "1862be9a0748d3975bce0933703b7f866846ae0c7223b57b7306251de39ee339", + "rev": "0f94ac090d6c354058ad89a86e5c18385c136d9b" + }, + "recipe": { + "sha256": "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140119.2144", + "deps": [ + "helm" + ] + }, + "id-manager": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-id-manager.git", + "sha256": "80e829eee86d6e1b5c224d1ae774940cc46b67ed992d48470d6d7ffb36b8eb2f", + "rev": "0d968929bbaff813dd7e098c7f69e0b54434ce09" + }, + "recipe": { + "sha256": "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150605.2239", + "deps": [] + }, + "clips-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/grettke/clips-mode.git", + "sha256": "4debfaa48232426ba3e957f70603080b03044ac8dcd084b1423b2da27391da44", + "rev": "a3ab4a3e958d54a16544ec38fe6338f27df20817" + }, + "recipe": { + "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131012.1601", + "deps": [] + }, + "kivy-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kivy/kivy.git", + "sha256": "54891a62afa23336e8c711dc210067b816e4341a073ac9634b24daf073a0625a", + "rev": "bd131ee882c8de9f6a7fd15a6c2a1537ea792ee9" + }, + "recipe": { + "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140524.757", + "deps": [] + }, + "mpv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kljohann/mpv.el.git", + "sha256": "ac7b75fdc868976b2a3c84f00a2ad0c714c91bdf35249b273f57dbe08efa248b", + "rev": "3021c55fa5723a806dde5fb2a630b115e2c53d06" + }, + "recipe": { + "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150218.318", + "deps": [ + "cl-lib", + "emacs", + "json", + "names", + "org" + ] + }, + "go-dlv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/benma/go-dlv.el.git", + "sha256": "5be34ee2bf4d16af3d8a572d142c13f285b9736e0117a7a2b6035a5b0b0c0a72", + "rev": "8d5a0076b3d43e7af61149370e583c0d15cb2dd1" + }, + "recipe": { + "sha256": "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.259", + "deps": [ + "go-mode" + ] + }, + "column-enforce-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jordonbiondo/column-enforce-mode.git", + "sha256": "f05c31b1ec7a28aea413169160761fc73a91558d2196416a5a1aee013a7d23fd", + "rev": "f43263e50ae83db099d83ea445f93e248a3207a0" + }, + "recipe": { + "sha256": "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140902.1149", + "deps": [] + }, + "busybee-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/busybee-theme.git", + "sha256": "9da5f28e779b4d53512954501b8bfdc1d3c679d2808e87aad796eb9fdd41e987", + "rev": "70850d1781ff91c4ce125a31ed451d080f8da643" + }, + "recipe": { + "sha256": "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130920.1142", + "deps": [] + }, + "erlang": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/erlang/otp.git", + "sha256": "30f8dc5e1cbe811f93ed832609243934c69acbbe7df460fd9ee2c32bc12a17fd", + "rev": "a16b7d63cc665dca90305b146c15de04487808db" + }, + "recipe": { + "sha256": "1na5vk01q8bmglwmb37676313mmc5n28c4sip23kpxypkp6wvn3g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.357", + "deps": [] + }, + "cssh": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/cssh.git", + "sha256": "2aa8a1eec42d3ad39710662dbd48fe5db27b31a08085e430fa2ebb738087c2f5", + "rev": "2fe2754235225a59b63f08b130cfd4352e2e1c3f" + }, + "recipe": { + "sha256": "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150810.1209", + "deps": [] + }, + "apropos-fn+var": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/apropos-fn+var.el", + "sha256": "0q1b2x4z0ds4y45gy7sxc68xyai3g8kmqnssnhdina4x20sgm2vf" + }, + "recipe": { + "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150425.1301", + "deps": [] + }, + "concurrent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-deferred.git", + "sha256": "67fa8ca7328ad2978f87e7fd08c0baeb158e02a024cbffa38990e2a1730aca84", + "rev": "e9fd3691ee3666d46eb9f8bd5b697a54837c8c0b" + }, + "recipe": { + "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150309.2252", + "deps": [ + "deferred" + ] + }, + "yari": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hron/yari.el.git", + "sha256": "ee6ec58601e34035642878a6408de0fdaf8765d99b9cf4c257dcdd6681342a71", + "rev": "a2cb9656ee5dfe1fc2ee3854f3079a1c8e85dbe9" + }, + "recipe": { + "sha256": "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.139", + "deps": [] + }, + "cobra-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Nekroze/cobra-mode.git", + "sha256": "0ffdd6be72df3109acfcf329b69c2810ecd258e41f1075ccfd80cee156731baf", + "rev": "acd6e53f6286af5176471d01f25257e5ddb6dd01" + }, + "recipe": { + "sha256": "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140116.1516", + "deps": [] + }, + "grep+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/grep+.el", + "sha256": "03a4mmhbkwj2bq48525jba6wiczs943lmlhvy5vz8x4hb47rlmc3" + }, + "recipe": { + "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1610", + "deps": [] + }, + "textile-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juba/textile-mode.git", + "sha256": "8b08d37cd4dd99b5124a67ffd0c7131c3bb698d23831def8b27a9823295a3d49", + "rev": "db33dc5f994c008ef9f1556801bf8ac62d451f31" + }, + "recipe": { + "sha256": "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.253", + "deps": [] + }, + "xterm-title": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/xterm-title.git", + "sha256": "d4c5d4452ccadd7ee41d87764b614fbd39d2aa79a768bf2c45f25c3efcc98b19", + "rev": "b6ea73d297d191d48bba7dd1e2adc23bbdfa1c3c" + }, + "recipe": { + "sha256": "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091203.1223", + "deps": [] + }, + "helm-zhihu-daily": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/helm-zhihu-daily.git", + "sha256": "00a507245d2865fc6337835a5fd41eb7bd081341f9a6c553891f2ac0dfff8f6c", + "rev": "c084d2505621dbb71d83ec10550fa0801623cafc" + }, + "recipe": { + "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.319", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "vector-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/vector-utils.git", + "sha256": "96f4ed12f6dadbd5774b26a6fabcedcdd47f03d376b4e6c7ac44fe15376242c2", + "rev": "c38ca1c6a23b2b51a6ac36c2c64e50e21cbe9d21" + }, + "recipe": { + "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "darkburn-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gorauskas/darkburn-theme.git", + "sha256": "6e63585a54ebbc230a70105ac1c3952217d304f8a5cb9fdd71588308bfeb79a7", + "rev": "a0151684ae4fa7c364115188422f6c3425d1594c" + }, + "recipe": { + "sha256": "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151003.300", + "deps": [] + }, + "bongo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dbrock/bongo.git", + "sha256": "0adef70763f6c47447f90c0b8b26a4d2bb37c57385613b5ecf0444c17876123e", + "rev": "4cdacc10a530d4edbfdf6c95891f3cf229518e9d" + }, + "recipe": { + "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1009", + "deps": [ + "cl-lib" + ] + }, + "ac-dabbrev": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ac-dabbrev.el", + "sha256": "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh" + }, + "recipe": { + "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130906.18", + "deps": [] + }, + "caskxy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/caskxy.git", + "sha256": "f5aafdcbb74293ecb5464653586a1953a12c3e140d59cb53a48d4e246fff8a22", + "rev": "dc18dcab7ed526070ab76de071c9c5272e6ac40e" + }, + "recipe": { + "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140513.1039", + "deps": [ + "log4e", + "yaxception" + ] + }, + "aurora-config-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bdd/aurora-config.el.git", + "sha256": "48a86805e9bc533dc5997293526123e8a6a442d8cd90b4e7908bab302fec415b", + "rev": "0a7ca7987c3a0824e25470389c7d25c337a81593" + }, + "recipe": { + "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140520.403", + "deps": [] + }, + "twittering-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hayamiz/twittering-mode.git", + "sha256": "eff9151fbc33a09030cd2899be09c08a2396a158c46fafc346e7a5512b1df503", + "rev": "97197cdd3cc005000dc2599f67c754d74fab5972" + }, + "recipe": { + "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.1203", + "deps": [] + }, + "rtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Andersbakken/rtags.git", + "sha256": "7993727a883800048b94e3e855cdb96b2474ebd4e83ce2a0b15176be37a7e7d7", + "rev": "725f85778f9dda303bc49437752ada8159d8f6a6" + }, + "recipe": { + "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.112", + "deps": [] + }, + "totd": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/egh/emacs-totd.git", + "sha256": "e2234b4c1f04d87beffdb1c6479be478c26e34aaeef44b8d1588a8a5a37ee157", + "rev": "ca47b618ea8290776cdb5b0f1c2c335691f69660" + }, + "recipe": { + "sha256": "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150519.940", + "deps": [ + "cl-lib", + "s" + ] + }, + "skewer-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/skewer-mode.git", + "sha256": "91df5c6b9e18bcb5f711446e703c5ae6116afd9d5a7d4af765e2430a1a844d8d", + "rev": "5c76ab1786f2f365eff33fd5f52ce4ec3f9b42a2" + }, + "recipe": { + "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.1504", + "deps": [ + "emacs", + "js2-mode", + "simple-httpd" + ] + }, + "yesql-ghosts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/yesql-ghosts.git", + "sha256": "353d3830d34591c54dee2e69418e5e85fdc629f3047a96325b81a86bfadcdbbb", + "rev": "8f1faf0137b85a5072d13e1240a463d9a35ce2bb" + }, + "recipe": { + "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.637", + "deps": [ + "cider", + "dash", + "s" + ] + }, + "latex-extra": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/latex-extra.git", + "sha256": "e7280e43a887e5630c9e4246f1db982b616cb4dcda0a7d8076ad4232c6e8611a", + "rev": "b4ca0185b7046b1d4e2ef90082f23e9e774d626d" + }, + "recipe": { + "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.322", + "deps": [ + "auctex", + "cl-lib" + ] + }, + "minizinc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00nlight/minizinc-mode.git", + "sha256": "306aa28188753c985dc9bfe8cf0baea5bf0d169261cfe3bbd81e0e39e06f7901", + "rev": "98064f098e6871382614fcf3c99520f7a526af0a" + }, + "recipe": { + "sha256": "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.758", + "deps": [ + "emacs" + ] + }, + "transpose-frame": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/transpose-frame.el", + "sha256": "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4" + }, + "recipe": { + "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.826", + "deps": [] + }, + "travis": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/emacs-travis.git", + "sha256": "26bf68efccaea65eb21fc67596369a02724de30b30b3c33e5685cfb8542c7e43", + "rev": "c8769d3db10ed4604969049e3bd276afa0a0138e" + }, + "recipe": { + "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150825.638", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "mocha-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cowboyd/mocha-snippets.el.git", + "sha256": "3587f6340948e402accdf473a86fea45468c1b6c84684c922e2df467cd8832ae", + "rev": "b8d321eda797e8382f0033901694860fe52f19a9" + }, + "recipe": { + "sha256": "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150116.1000", + "deps": [ + "yasnippet" + ] + }, + "calfw-gcal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/calfw-gcal.el.git", + "sha256": "b18f1c0d7022fdc77064bf0729da7e54daee5e326dee7e063874cd4522cbc592", + "rev": "14aab20687d6cc9e6c5ddb9e11984c4e14c3d870" + }, + "recipe": { + "sha256": "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120111.400", + "deps": [] + }, + "project-explorer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/project-explorer.git", + "sha256": "a90012bae8d319d0b14e6cc6539b44a50a03403cb87e67d95fa586cf2ed1a025", + "rev": "589a09008706f5f4ef91393dc4306eede0d15ca9" + }, + "recipe": { + "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150503.1914", + "deps": [ + "cl-lib", + "emacs", + "es-lib", + "es-windows" + ] + }, + "sequential-command": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sequential-command.el", + "sha256": "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk" + }, + "recipe": { + "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.1603", + "deps": [] + }, + "ant": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/apgwoz/ant-el.git", + "sha256": "072a4894a3f9bec68560ab85cffe1bc7be380b8d466b903bfb7b67cc23808abc", + "rev": "8afe6cd0ee4674911ce6b9381b551ab22c567c49" + }, + "recipe": { + "sha256": "03rxn2dh0xj89kl24jd19q7kmrn1hnr2cdl3519bpng298kxwni6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.107", + "deps": [] + }, + "ac-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/ac-helm.git", + "sha256": "d06d3ed72e0d8962f3888c7323265040c21e3ebf4f2fb0056cb081f0696ded6f", + "rev": "0cde22dac4726d08c27801c926cf40b1165c8a07" + }, + "recipe": { + "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140919.1117", + "deps": [ + "auto-complete", + "cl-lib", + "helm", + "popup" + ] + }, + "node-resolver": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/meandavejustice/node-resolver.el.git", + "sha256": "a70ad08ca75a91a907168afd5c72049f23e0d15ac2024828e34b4da600c0f5b1", + "rev": "ef9d0486907a746a80b02ffc6208a09c168a9f7c" + }, + "recipe": { + "sha256": "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140930.1223", + "deps": [ + "cl-lib" + ] + }, + "rainbow-delimiters": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/rainbow-delimiters.git", + "sha256": "965e575a21c16265ef2e8d59ee9b8206c305b1e6daca49671aec847fa00e28a9", + "rev": "0823d0c67f935a4c36a1c945e93051102963c7fb" + }, + "recipe": { + "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150320.217", + "deps": [] + }, + "pp+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pp+.el", + "sha256": "1997hkxnnhrhkszzxmhabkh8ifb07bzr0w9svx8yynn22j0s5dmh" + }, + "recipe": { + "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150418.1028", + "deps": [] + }, + "evil-annoying-arrows": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/endrebak/evil-annoying-arrows.git", + "sha256": "ee78ab554f0e45041651c89e45fd255772763eef1511dac51388f6ed4150cb15", + "rev": "1ec60cea0e67d782e5b8d093d19da6d0d4fd1e7f" + }, + "recipe": { + "sha256": "024zz9l43y1kk2hm8l96h1ahril23cj35f0x72jrcfjysid7wpry", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150509.1618", + "deps": [ + "cl-lib" + ] + }, + "dired-hacks-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150819.1148", + "deps": [ + "dash" + ] + }, + "twig-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/moljac024/twig-mode.git", + "sha256": "4aa3b7cc35886992f27b77c7b2d673d6fdaa19e2c18bdeb562c7c3e1058c7573", + "rev": "2849f273a4855d3314a9c0cc84134f5b28ad5ea6" + }, + "recipe": { + "sha256": "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130220.1250", + "deps": [] + }, + "genrnc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-genrnc.git", + "sha256": "d6022dca2a25cecd8deb23c9e6244c118dbf40b29785ab055e70cd22940b9c21", + "rev": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a" + }, + "recipe": { + "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140612.737", + "deps": [ + "concurrent", + "deferred", + "log4e", + "yaxception" + ] + }, + "unicode-progress-reporter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-progress-reporter.git", + "sha256": "b8528151d1697c4e9ec511527aadd758d502481ef84ec58d71c2d46080abd922", + "rev": "5e66724fd7d15743213b082474d798117b194494" + }, + "recipe": { + "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "emacs", + "list-utils", + "pcache", + "persistent-soft", + "ucs-utils" + ] + }, + "faff-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/WJCFerguson/emacs-faff-theme.git", + "sha256": "db88dcaa1cf45a9bdc224d89448f10f38a152c6e9ee1d49eb0201e780c7285e9", + "rev": "8ec2bee09b386c711b0753ab12ace926d06fca7e" + }, + "recipe": { + "sha256": "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.717", + "deps": [] + }, + "fm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/fm.git", + "sha256": "7ae3ebd7b5780ffc89dfb51950584d87dc201fbeab7cac41f83c524996fe64ba", + "rev": "555bcebdf47ea3b1d9d1e152af7237b9daa62d59" + }, + "recipe": { + "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130126.1818", + "deps": [] + }, + "company-anaconda": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/company-anaconda.git", + "sha256": "d82eeacf709b6d86f9dc9007a72b02e0c40ff4f2d4f33be611d2bda2be88fc8b", + "rev": "f796fea142cb164a08f9b0968f565e279bd23dd7" + }, + "recipe": { + "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.523", + "deps": [ + "anaconda-mode", + "cl-lib", + "company", + "dash", + "s" + ] + }, + "inlineR": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/inlineR.el.git", + "sha256": "2dde319ab1cf78ec1e64ecb69e49119417538b586abe98aae3c087db1318383e", + "rev": "29357186beca825e3d0451b700ec09b9ed65e37b" + }, + "recipe": { + "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120520.932", + "deps": [] + }, + "evil-tutor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-tutor.git", + "sha256": "bab3fdd9f65c8d6f62dd787ab67437ffd3e7331ab5b700470facad29ab95c396", + "rev": "4e124cd3911dc0d1b6817ad2c9e59b4753638f28" + }, + "recipe": { + "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150103.50", + "deps": [ + "evil" + ] + }, + "flycheck-dmd-dub": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atilaneves/flycheck-dmd-dub.git", + "sha256": "d5865e86098fd1e5f429ee068fd4ba97d65cf0a5c34d875a4c7783dbdc0698ad", + "rev": "1acd7e3683ed55ac11f013e325c1cbf19be8ad66" + }, + "recipe": { + "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151019.822", + "deps": [ + "flycheck" + ] + }, + "evil-visualstar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/evil-visualstar.git", + "sha256": "a035ef65b14bff6b936ba76cd3d6e25ab944b4dec3a61dbdbd91e8187e9ba49e", + "rev": "bd9e1b50c03b37c57355d387f291c2ec8ce51eec" + }, + "recipe": { + "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150514.1610", + "deps": [ + "evil" + ] + }, + "hlinum": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tom-tan/hlinum-mode.git", + "sha256": "04d757d07653dd788bca7e0fa10d4a81ba377bb94bd381574e7194bffb4c887b", + "rev": "22218c9883a2de6468bf6ad13864b50b44c93592" + }, + "recipe": { + "sha256": "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150621.2133", + "deps": [ + "cl-lib" + ] + }, + "rainbow-identifiers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/rainbow-identifiers.git", + "sha256": "30fb159bbc2d473f6614eaab59e6a167fc91f6b04e3144a4a642eadfeb952016", + "rev": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e" + }, + "recipe": { + "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141102.926", + "deps": [ + "emacs" + ] + }, + "demangle-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/liblit/demangle-mode.git", + "sha256": "753c6f92e038e0246e18c2889733718da6e91ae853f782b33d69832f7a87b643", + "rev": "07e62a7f976f6c7366b4b0475bbb5cff881452b8" + }, + "recipe": { + "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.1453", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "github-clone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgtized/github-clone.el.git", + "sha256": "ac21881cb359e8614869527e3e182b6768f8c70121369233e3097c643e8b03e6", + "rev": "93e6604c2137b308adeb5cf1653c25b445ee143a" + }, + "recipe": { + "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150705.1905", + "deps": [ + "emacs", + "gh", + "magit" + ] + }, + "shrink-whitespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jcpetkovich/shrink-whitespace.el.git", + "sha256": "9397acde96bd985a3781f57ffdd8486e42324bb37e2692be27982bca720839be", + "rev": "8d4263d974fbe66417c0bb9edc155ecc2f48e4b7" + }, + "recipe": { + "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150916.1415", + "deps": [] + }, + "helm-git-files": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kenbeese/helm-git-files.git", + "sha256": "2039fe70e88744a4459e74792a0f8a4c592f4b98bf71d8e8669730406644a4f7", + "rev": "43193960774069369ac6964bbf7c026900206fa8" + }, + "recipe": { + "sha256": "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141212.717", + "deps": [ + "helm" + ] + }, + "hi2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nilcons/hi2.git", + "sha256": "8ed6b5dd7aaa8cf6865e6a623c6bf9c737a3996e41833635a6a9ec02d7d308e8", + "rev": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8" + }, + "recipe": { + "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141005.1431", + "deps": [] + }, + "deferred": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-deferred.git", + "sha256": "67fa8ca7328ad2978f87e7fd08c0baeb158e02a024cbffa38990e2a1730aca84", + "rev": "e9fd3691ee3666d46eb9f8bd5b697a54837c8c0b" + }, + "recipe": { + "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.1857", + "deps": [] + }, + "eshell-did-you-mean": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/eshell-did-you-mean.git", + "sha256": "6f6d49ab37747e8e58039d9a70257b317653ad7861feb0d9d590d83219d41c6c", + "rev": "7cb6ef8e2274d0a50a9e114d412307a6543533d5" + }, + "recipe": { + "sha256": "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150915.1452", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "bind-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/use-package.git", + "sha256": "608676a52f8ab26b9861e2e796850b351d9a7ca711737bf26a124a61f1e76693", + "rev": "77a77c8b03044f0279e00cadd6a6d1a7ae97b016" + }, + "recipe": { + "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150321.413", + "deps": [] + }, + "urlenc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/buzztaiki/urlenc-el.git", + "sha256": "845bf1ecb99a1e148040e525e2177203222b7dc9e4c5464b84a711e3c8069977", + "rev": "835a6dcb783bbe84714bae87a3464aa0b128bfac" + }, + "recipe": { + "sha256": "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140116.856", + "deps": [] + }, + "bbdb-": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/bbdb-.git", + "sha256": "d75213f2dd7a00de66f41161dd38d3dd6c880d8569d6237242d7d80fdeb4cb9e", + "rev": "2839e84c894de2513af41053e80a277a1b483d22" + }, + "recipe": { + "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140221.1754", + "deps": [ + "bbdb", + "log4e", + "yaxception" + ] + }, + "ace-pinyin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/ace-pinyin.git", + "sha256": "fd4fef31d0c3085ccd2a087dbd3bb4a45d046dcaf8657fd73fee886f856bec02", + "rev": "d7c8fed8ab6f6fbbbcb95bcd74516c30d05dcdfa" + }, + "recipe": { + "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1517", + "deps": [ + "ace-jump-mode", + "avy" + ] + }, + "vc-auto-commit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisirs/vc-auto-commit.git", + "sha256": "e74826b55567f9fdf62c1b89606a218349b2a917ccbf47c81ab995b5c9158a14", + "rev": "b23ee2727495b89d0a979a7420ce3a313434fdfe" + }, + "recipe": { + "sha256": "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.303", + "deps": [] + }, + "etable": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/ETable.git", + "sha256": "beaf4cf590093a0eb301b7ad04f37ebb45a64f0fab7ae6293ee1a7c6d70a66cc", + "rev": "8c9a32a92e7f808874c150c851f1605b2dd83d6e" + }, + "recipe": { + "sha256": "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150327.1216", + "deps": [ + "dash", + "emacs", + "interval-list" + ] + }, + "gplusify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/gplusify.git", + "sha256": "01e3eebcfaf7a68b069e37d4ad7ca9472ae49b18758a4599e2c61e8a008083d0", + "rev": "bd6237ae671db2fbf406dcc6225839dcbd2475b2" + }, + "recipe": { + "sha256": "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150312.1444", + "deps": [] + }, + "prop-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/prop-menu-el.git", + "sha256": "7b7f28aa1d412cfec0d5f2adbfe27176fd28d45d8507f9ed2256eb66611d8774", + "rev": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3" + }, + "recipe": { + "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150728.618", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "esqlite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-esqlite.git", + "sha256": "4f31dc12b04d76d1f5c66fa35189959ffcddecc46b70fd106ef6263e5ea5b6d6", + "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" + }, + "recipe": { + "sha256": "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.606", + "deps": [ + "pcsv" + ] + }, + "green-phosphor-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aalpern/emacs-color-theme-green-phosphor.git", + "sha256": "b0ad76b2a8a4be8c0f85c10338ee911a643d121f319dae514a2bfefa34a170bb", + "rev": "fa42f598626adfdc5450e5c380fa2d5df6110f28" + }, + "recipe": { + "sha256": "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150515.947", + "deps": [] + }, + "cypher-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fxbois/cypher-mode.git", + "sha256": "141572679e97cb1e8140c2170f7aaa85129f2a0c7a30e96b4049cbb48750faa0", + "rev": "ce8543d7877c736c574a17b49874c9dcdc7a06d6" + }, + "recipe": { + "sha256": "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.542", + "deps": [] + }, + "bbcode-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/bbcode-mode.git", + "sha256": "c7fae8b84a35c5428b55a112442ac45621a52cc91a0bdbe84f528d301d11379e", + "rev": "b6ff1bfb8041b1435ebfc0a7d8e5e34eeb1b6aae" + }, + "recipe": { + "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141103.1541", + "deps": [] + }, + "ob-kotlin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/ob-kotlin.git", + "sha256": "c7bb65703bab660f8b1fea0714770747ccbd112f1b50ce67b338827ac4e39205", + "rev": "c494f50184d25e196c009bf5cc105c4931b9464d" + }, + "recipe": { + "sha256": "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150312.814", + "deps": [ + "org" + ] + }, + "fold-dwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/fold-dwim.git", + "sha256": "219a7922278b25f9b836ac1d686d17008bc942f391aa5a54375cab3074e4e1fb", + "rev": "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b" + }, + "recipe": { + "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140208.1037", + "deps": [] + }, + "cake-inflector": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-cake-inflector.git", + "sha256": "14749dfef78173160d9e6d5e53c8db2dd7a23dada8afac24a1af573924b0ed8d", + "rev": "a91cecd533930bacf1dc30f5209831f79847abda" + }, + "recipe": { + "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140415.358", + "deps": [ + "s" + ] + }, + "kwin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/reactormonk/kwin-minor-mode.git", + "sha256": "9e6984bcb2ef61f5d7496cdb021ccadcbd1a293bcbea5a08f4702472e3732b47", + "rev": "d4f8f3593598b71ee596e0a87b2c1d6a912a9566" + }, + "recipe": { + "sha256": "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150308.1312", + "deps": [] + }, + "purescript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dysinger/purescript-mode.git", + "sha256": "271ed4bc574cc9f4803b54003b19d5086f2d61772ca58082e1e5d315b44c29aa", + "rev": "1390bf6a2ddd0764a5ee7f5cac4e88980cf44eaf" + }, + "recipe": { + "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150316.2028", + "deps": [] + }, + "centered-cursor-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/centered-cursor-mode.el", + "sha256": "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl" + }, + "recipe": { + "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151001.834", + "deps": [] + }, + "rectangle-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/rectangle-utils.git", + "sha256": "0913a861ebcc2a946eae67882e4118a936d8a5b383c13f2461acea669b5cda93", + "rev": "81071e62862c0062b8559eb217e6658878c34a1e" + }, + "recipe": { + "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150528.1428", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "helm-R": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/helm-R.el.git", + "sha256": "9991a8fe5147c327955a0c29613322499d0ab2cf8535d181e784245bf307375a", + "rev": "b0eb9d5f6a483a9dbe6eb6cf1f2024d4f5938bc2" + }, + "recipe": { + "sha256": "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120819.1914", + "deps": [ + "ess", + "helm" + ] + }, + "mingus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pft/mingus.git", + "sha256": "9de9b14e5313990554578139297e4add32c515d51891658871a205c8fae2fdb4", + "rev": "151f2225f9af3c4cc7ca89e94dc6a19077baf6a4" + }, + "recipe": { + "sha256": "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.1317", + "deps": [ + "libmpdee" + ] + }, + "hippie-namespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/hippie-namespace.git", + "sha256": "d9552498eb4b8af1018ae734fcf0e242754e569b0d71fb3b48e001c898e742c7", + "rev": "d0d0f15c67ab8bef5e9d1e29a89ecd3613a60b49" + }, + "recipe": { + "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "sbt-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hvesalai/sbt-mode.git", + "sha256": "d2d940ba293683c78712c46484fff8c54221b128d5912d34cfc342c699f32a63", + "rev": "209a396babd0a302cbb5a32f16525aabb409528b" + }, + "recipe": { + "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.242", + "deps": [ + "scala-mode2" + ] + }, + "evil-easymotion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PythonNut/evil-easymotion.git", + "sha256": "a65a10e383c9703db833e38dcd71e2027deaf25fdf5a1b99497c156f2c0cc7b1", + "rev": "ba7f1e08a5dca4c0540b347f55547828421d6c79" + }, + "recipe": { + "sha256": "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.2259", + "deps": [ + "avy", + "emacs" + ] + }, + "org-dashboard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bard/org-dashboard.git", + "sha256": "4536ff0b128a4aa2abb28f561051dc277905538119cdce11a5e3299646880edb", + "rev": "b523aefb5822c1f09a70bc429579c2959929782b" + }, + "recipe": { + "sha256": "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150812.502", + "deps": [ + "cl-lib" + ] + }, + "shpec-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shpec/shpec-mode.git", + "sha256": "390093d68134f1a008a724a5dd0493b88b17dcd1dee4e4aaf57c12de0e278a93", + "rev": "146adc8281d0f115df39a3a3f982ac59ab61b754" + }, + "recipe": { + "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150530.422", + "deps": [] + }, + "jonprl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/jonprl-mode.git", + "sha256": "5a2e21fbe4d4146e2566d5152f087ea56c9e13c31afe154a9b9be6c6d4fc3b68", + "rev": "a7c7525ee19682c700f4d1d432b5be5707e94f10" + }, + "recipe": { + "sha256": "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.342", + "deps": [ + "cl-lib", + "emacs", + "yasnippet" + ] + }, + "anything-replace-string": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/anything-replace-string.git", + "sha256": "93108f9a50fa2e0d244c382e44928b7e508a7844ec5eeb9a568de8b785f464a0", + "rev": "1962f24243d6013bcef7e8d23136277d42e13130" + }, + "recipe": { + "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140317.536", + "deps": [ + "anything" + ] + }, + "novice+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/novice+.el", + "sha256": "1lv911k9s0607g8mrhc42zb7s1cw0zqqafqbrk6w17j4hr53n897" + }, + "recipe": { + "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1834", + "deps": [] + }, + "discover": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mickeynp/discover.el.git", + "sha256": "6ad242aa6a06d4878d7f707054cbe6ca056d22152848cabad1999e016116f038", + "rev": "7b0044bbb3b3bd5d811fdfb0f5ac6ec8de1239df" + }, + "recipe": { + "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140103.1539", + "deps": [ + "makey" + ] + }, + "ob-elixir": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/ob-elixir.git", + "sha256": "79ac6816302e9fcdd0bcebf5cf3bb5a1afcf5e04c59e5748478f1615958d6c98", + "rev": "d0e8007efa0b99ab7a6e4cb7160a87d6cb60d210" + }, + "recipe": { + "sha256": "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.647", + "deps": [ + "org" + ] + }, + "ledger-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ledger/ledger.git", + "branchName": "next", + "sha256": "130cde00075ffeece7575f475e63be1e6bd64715028ede06b7b802c776c869da", + "rev": "429765ee4dbf6ea2ad654b4287fa6498bc55fa3a" + }, + "recipe": { + "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151026.1742", + "deps": [] + }, + "eshell-autojump": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/eshell-autojump.git", + "sha256": "82411271983f24f39a271bbc68b754b51cf4be90d03ced6ca80ad2d0e7fb998d", + "rev": "c6a8b81a16576df9875e721fbbfe6690d04e7e43" + }, + "recipe": { + "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.224", + "deps": [] + }, + "company-restclient": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/company-restclient.git", + "sha256": "a5e7b4babbd51bc77b0d478d051818db7bfeed760ae19b3897fd83508e4f0211", + "rev": "752f39490178832f6a09abd82e10d9356636350a" + }, + "recipe": { + "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.601", + "deps": [ + "cl-lib", + "company", + "emacs", + "know-your-http-well", + "restclient" + ] + }, + "ac-cake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-ac-cake.git", + "sha256": "ae7cd5dc6833cd780bfbac478b2fea7850f66dcfe64412c4d32218bfd3b297d2", + "rev": "f34c9e3ba8cb962e4708c8f53b623e1922500176" + }, + "recipe": { + "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140315.1129", + "deps": [ + "auto-complete", + "cake" + ] + }, + "ddskk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skk-dev/ddskk.git", + "sha256": "003be81094d22aa34b472dab82673037a34ca2b9a928c9d2fa865a990b360630", + "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" + }, + "recipe": { + "sha256": "1wj3z6ldlkaj99xqh7a497in1syn7shf2w1ffcn6aiskxjrzmpiq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.552", + "deps": [ + "ccc", + "cdb" + ] + }, + "el-swank-fuzzy": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/el-swank-fuzzy.el", + "sha256": "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn" + }, + "recipe": { + "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.657", + "deps": [] + }, + "org-tree-slide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/takaxp/org-tree-slide.git", + "sha256": "85cca95c04cce82c87613e546b75e199615a54a600939c1cf0eb4b0e79ef4c29", + "rev": "dccd80418a4444df5e8301695ff0d0dfe86a3c21" + }, + "recipe": { + "sha256": "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151017.253", + "deps": [] + }, + "org-transform-tree-table": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jplindstrom/emacs-org-transform-tree-table.git", + "sha256": "23c4d1b765be0a4558d16c4ef032d3cf617ebb2714c8da2e5abaafbcf1f3e990", + "rev": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52" + }, + "recipe": { + "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.833", + "deps": [ + "dash", + "s" + ] + }, + "asilea": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/asilea.git", + "sha256": "be5357d5a5d92dbaae94492e741b403b5e772ecc90532842aa16573a9075fc85", + "rev": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f" + }, + "recipe": { + "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150105.925", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "icomplete+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/icomplete+.el", + "sha256": "1vcv3ssmn5wwjnz6wcc0lsb0awxgqk5pn9p8zgwnj8qbag31b4ky" + }, + "recipe": { + "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150619.1003", + "deps": [] + }, + "ox-reveal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yjwen/org-reveal.git", + "branchName": "stable", + "sha256": "9b6270464def71e1ee275a83442d420de5177eb1e44cbc1a3c447f0b1e312eb7", + "rev": "b92d0e843f2526788caa08bda5284f23e15e09cd" + }, + "recipe": { + "sha256": "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.106", + "deps": [ + "org" + ] + }, + "demo-it": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/howardabrams/demo-it.git", + "sha256": "229e1314efdc452738fbd1e82ee626150de8ef03a0a24f2c136dd9c6f47244ea", + "rev": "3953fab63b4ef4eb18272596ccb66dcace60528c" + }, + "recipe": { + "sha256": "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151020.1429", + "deps": [] + }, + "helm-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-package.git", + "sha256": "2a66ecae3428577456ba6ccbb4b927b7bb6acb1690eef464565bfe2408cb921f", + "rev": "117f5f26c96c0854aadaf9c52aaec961195d5798" + }, + "recipe": { + "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.248", + "deps": [ + "cl-lib", + "helm" + ] + }, + "dired-filter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150909.1336", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "mmm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/mmm-mode.git", + "sha256": "884a10fa62940123c4181c04d7d82e5e4349bf75417bd04724154167d62ece79", + "rev": "c9a857a638701482931ffaaee262b61ce53489f3" + }, + "recipe": { + "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.1916", + "deps": [] + }, + "revive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/revive.git", + "sha256": "2107ab8d3a44ca8fe508e0fbbffc91f02727c99c1e39fadf17d4fced0a53fa0c", + "rev": "16e1ac7cfa2fdccddf60d4a0e15731fc7448d818" + }, + "recipe": { + "sha256": "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150417.1755", + "deps": [] + }, + "smart-tab": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/genehack/smart-tab.git", + "sha256": "84564063ecdce590bf6509b4b3b79f4cd33ff91aa3d46396a4194ee4d7852f2a", + "rev": "28918a72045811294ecb33f666ba23fe66c169af" + }, + "recipe": { + "sha256": "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150703.1117", + "deps": [] + }, + "man-commands": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/man-commands.git", + "sha256": "db9577297237bbd0eecb1f5d427d1e513700a31e26f91ffe1c8f324370006d70", + "rev": "0a5091bf1d27eb2c220c90b8e20cffd0784a2211" + }, + "recipe": { + "sha256": "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130627.1853", + "deps": [] + }, + "helm-git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/maio/helm-git.git", + "sha256": "2e2d1635a583a173d9422383af038b1baacdfacd32f4bd4080dc8e6b94777bd4", + "rev": "cb96a52b5aecadd3c27aba7749d14e43ab128d55" + }, + "recipe": { + "sha256": "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120630.1603", + "deps": [] + }, + "git-lens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/git-lens.git", + "sha256": "50c7f45624361835b1047cf1e9c1103e61897ec975b985fa3e04ab17f56b2a68", + "rev": "1feacc217c58fd4a41f9378eb09658f664036509" + }, + "recipe": { + "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.214", + "deps": [ + "emacs" + ] + }, + "emacs-setup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/echosa/emacs-setup.git", + "sha256": "c8dfb9cc7e8025d1af11965cf66a4373205538fe059a3657c4bfb21dc2528396", + "rev": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2" + }, + "recipe": { + "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120727.926", + "deps": [] + }, + "interaction-log": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/michael-heerdegen/interaction-log.el.git", + "sha256": "546385d25e675d526c68dc82b04d35d441d36a69100a8b74c9add0fb6527b549", + "rev": "977a3d276b73a4e239addc6c30214bc55ac6fd1f" + }, + "recipe": { + "sha256": "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150603.1210", + "deps": [ + "cl-lib" + ] + }, + "ac-emmet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/ac-emmet.git", + "sha256": "4f080ce79ee28bfa173bc56a1baba9c9f93bba92f5d49049c4473d395dc570d2", + "rev": "88f24876ee3b759978d4614a758280b5d512d543" + }, + "recipe": { + "sha256": "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131015.1058", + "deps": [ + "auto-complete", + "emmet-mode" + ] + }, + "dummy-h-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dummy-h-mode.el", + "sha256": "0zq94x4br3sk6n4chrfnw7hpnsicxa02fcpk8hw1hfsaq3327n6v" + }, + "recipe": { + "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140816.733", + "deps": [] + }, + "highlight-quoted": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/highlight-quoted.git", + "sha256": "0a492d3a6ad5d80e90519dd29264f82456080dba276b4f168e9d7efd6153136f", + "rev": "ec9108486cf7f21f9a0b13f81369849b3b525f1f" + }, + "recipe": { + "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140916.1322", + "deps": [ + "emacs" + ] + }, + "org-wc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dato/org-wc.git", + "sha256": "28e129c8edea383d8a01b015b434ab6c9e1faee4b80b610bf27af40ec2832a56", + "rev": "f1765fc913f288432ee2cc330c8a7af3af7715c8" + }, + "recipe": { + "sha256": "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141101.120", + "deps": [] + }, + "undo-tree": { + "fetch": { + "tag": "fetchgit", + "url": "http://www.dr-qubit.org/git/undo-tree.git", + "sha256": "1ef5db7cf476dd37348fd1f11dd199613a89a2351dc583a42afd9d35a53d8ae2", + "rev": "a3e81b682053a81e082139300ef0a913a7a610a2" + }, + "recipe": { + "sha256": "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140509.722", + "deps": [] + }, + "wordsmith-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/wordsmith-mode.git", + "sha256": "d000091c7e22e7301cdbe57d0a7c2621e4d4d8d3b71b180bfc208ba807f54b34", + "rev": "597e1e7c7ef89b06ed8280251ecd8f40ce55e1bf" + }, + "recipe": { + "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.436", + "deps": [] + }, + "makey": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mickeynp/makey.git", + "sha256": "59c5f9db97357c8a6e46918546c4874e284409d5c83beb0a10914d0ac6df5f2b", + "rev": "a61781e69d3b451551e269446e1c5f624ab81137" + }, + "recipe": { + "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131231.830", + "deps": [ + "cl-lib" + ] + }, + "stumpwm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.savannah.nongnu.org/stumpwm.git", + "sha256": "3547616b9e5694fd09014bbbf29458ee0dea828428b6bf7a6231670aacfb8271", + "rev": "61a7cf27e49e0779a53c018b2342f5f1c5cc70b4" + }, + "recipe": { + "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140130.2016", + "deps": [] + }, + "magit-gitflow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jtatarik/magit-gitflow.git", + "sha256": "00524486775639f7de4a082bf10946e1c97b0e682eff6d616536c15535373d52", + "rev": "dd1d88888957f0fd8b950037e0e58dba2d3221d9" + }, + "recipe": { + "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150905.239", + "deps": [ + "magit", + "magit-popup" + ] + }, + "wsd-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/josteink/wsd-mode.git", + "sha256": "eb751ef9994b0df2d67a87a1d48f5fd0f816c2a5aebf68651184d3aa3aa53503", + "rev": "a5b012607793a5edc9d54b30e04f4a324144e930" + }, + "recipe": { + "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150913.1230", + "deps": [] + }, + "rubocop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/rubocop-emacs.git", + "sha256": "7329265be66994d2a214a67395ff95823773d7ba308309b777a4714cf204bff8", + "rev": "c54905256410ce2aed6725d5b5f7ed61d4ddc956" + }, + "recipe": { + "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.2337", + "deps": [ + "dash", + "emacs" + ] + }, + "planet-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cmack/emacs-planet-theme.git", + "sha256": "f8cfdca190055945f87d29f0d57c304ec5b3018694800e73ba982b8f0a6f9f60", + "rev": "e2bd6645535a3044fceafb1ce5d296cc111d5f2a" + }, + "recipe": { + "sha256": "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150627.951", + "deps": [ + "emacs" + ] + }, + "ert-runner": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ert-runner.el.git", + "sha256": "6fef3cc63cb122657a82b99fc36ed9870d408f782442299f011bd526b85f4304", + "rev": "0a88a6cc9d970660c9f1205a623bc80d9bd5a05b" + }, + "recipe": { + "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.313", + "deps": [ + "ansi", + "commander", + "dash", + "f", + "s", + "shut-up" + ] + }, + "coffee-fof": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/coffee-fof.git", + "sha256": "77b8af71bb821eb017e7c7bf2886d029c0372ba846f2ce315c2b83a90c421b04", + "rev": "211529594bc074721c6cbc4edb73a63cc05f89ac" + }, + "recipe": { + "sha256": "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131012.730", + "deps": [ + "coffee-mode" + ] + }, + "zenburn-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/zenburn-emacs.git", + "sha256": "a7b05262fd0177e09e3a3a0cfd5bdbda7267818039f8b283d160b640a4a614e6", + "rev": "ded76bfc1d9a5ff9e0deb3b695922c02c17c7d61" + }, + "recipe": { + "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151101.1358", + "deps": [] + }, + "web-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fxbois/web-mode.git", + "sha256": "776a4dae7b7234e80d5083feebb6a1e63a12ebde5a1c15b9e0eae0d16ae907b2", + "rev": "79b921e13444c8f4da9ec89a45a1bfa0eb85aaa6" + }, + "recipe": { + "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.757", + "deps": [] + }, + "helm-filesets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gcla/helm-filesets.git", + "sha256": "5ec466ca01d9ff1eaf97621289cc56afd49c8f605b91eccb64ad600228553ff1", + "rev": "b352910af4c3099267a8aa0169c7f743b35bb1fa" + }, + "recipe": { + "sha256": "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140929.1335", + "deps": [ + "filesets+", + "helm" + ] + }, + "gitconfig-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/git-modes.git", + "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.1248", + "deps": [] + }, + "helm-sheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-sheet.git", + "sha256": "fd379699a597dc3c58994879de475ace5da049fe31ff22b16d1812771fc39603", + "rev": "d360b68d0ddb09aa1854e7b2f3cb39caeee26463" + }, + "recipe": { + "sha256": "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130630.739", + "deps": [ + "helm" + ] + }, + "tao-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/11111000000/tao-theme-emacs.git", + "sha256": "f581fe13092ad7aac9ac3ae750a037a14ff73b15934e80fe002d17fc28fd767b", + "rev": "48df99623bd183d17961eef73293c62a1045c708" + }, + "recipe": { + "sha256": "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.758", + "deps": [] + }, + "ahg": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/agriggio/ahg", + "sha256": "1kh7a9hyw24qrlp4ngvy2548a95l5k89k7nb3h75sk9pabw078cf", + "rev": "c3d9a903e3a3" + }, + "recipe": { + "sha256": "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.937", + "deps": [] + }, + "isearch-dabbrev": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Dewdrops/isearch-dabbrev.git", + "sha256": "2b7beb8d53ba7b757d9a1a26a9faabb21c95a3b9201f8603d7bb29ae4c40a09d", + "rev": "1efe7abba4923015cbc2462395deaec5446a9cc8" + }, + "recipe": { + "sha256": "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141224.22", + "deps": [ + "cl-lib" + ] + }, + "helm-bm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-bm.git", + "sha256": "df2df8040202cd8d1371ce5abd838b2dd35a2fed482114607daebf846b3c9dbd", + "rev": "1764c0139cb2f04b9fd520c7aca0b6d0152913bd" + }, + "recipe": { + "sha256": "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131224.905", + "deps": [ + "bm", + "cl-lib", + "helm", + "s" + ] + }, + "tornado-template-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paradoxxxzero/tornado-template-mode.git", + "sha256": "62e85fe5668e775c11621c3db19289689eb5a82b7ba59801f7c8428c18237c83", + "rev": "667c0663dbbd279b6c345446b9f2bc50eb52b747" + }, + "recipe": { + "sha256": "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141128.408", + "deps": [] + }, + "mwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/mwim.el.git", + "sha256": "c125bee0e8eeaa276424342972b04d3ff15b628c10e40885d65b0b3c02cc24ac", + "rev": "dc1b5c358e0bfe607527f1b7c082188105fe6c75" + }, + "recipe": { + "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150822.1436", + "deps": [] + }, + "launchctl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pekingduck/launchctl-el.git", + "sha256": "d2aaebcb95d00fdd0f79f4c9380c121f32f25ad7343fda06dd4fe1b3e03a9f94", + "rev": "73f8f52a5aa9a0be9bdcf68c29ad0fa2b4a115a4" + }, + "recipe": { + "sha256": "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150518.809", + "deps": [ + "emacs" + ] + }, + "transmission": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/holomorph/transmission.git", + "sha256": "37e9f71ebc5ecde919bb9c4f3dc0defa92d56c3c15bdc89fc9af6d52e3b64c47", + "rev": "810484fbb3b5930b633a98e679e3396ca5d35844" + }, + "recipe": { + "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1100", + "deps": [ + "emacs", + "let-alist" + ] + }, + "ghq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rcoedo/emacs-ghq.git", + "sha256": "846a64613fb39c70beb645a4770560018be97cb4c2c29b19820515d33c30efb5", + "rev": "bfbf9245075f710ffc7dc2c6bf584dd2ca7bde24" + }, + "recipe": { + "sha256": "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.318", + "deps": [] + }, + "soft-charcoal-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/soft-charcoal-theme.git", + "sha256": "9533f4b9473250f1ff562b5ffa178e264526cfc5e69c639801fce927ed35051c", + "rev": "5607ab977fae6638e78b1495e02da8955c9ba19f" + }, + "recipe": { + "sha256": "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140420.1143", + "deps": [] + }, + "dyalog-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/harsman/dyalog-mode", + "sha256": "0ghxnzi2iy1g633fshl9wdpg2asrcl0v5rkk61gqd6axm7fjaxcj", + "rev": "ce795beb8747" + }, + "recipe": { + "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.854", + "deps": [ + "cl-lib" + ] + }, + "xah-lookup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/lookup-word-on-internet.git", + "sha256": "7a547753b93de4a8116401a972c452b63619dfd0efa53f6eb26ccb2513e7bea9", + "rev": "75590c52af87e635b2f19640095b805fdb3e5d8b" + }, + "recipe": { + "sha256": "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150602.1346", + "deps": [] + }, + "character-fold+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/character-fold+.el", + "sha256": "1lr1gzabaw7jpxazyjq7pkmy1cljna8v4150jkpndzzb1anb9xxy" + }, + "recipe": { + "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.924", + "deps": [] + }, + "notmuch": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.notmuchmail.org/git/notmuch", + "sha256": "1b103da2084cb38dcf5ce07a62d69b6a15f81b59fae9130686934ec9820dc7b4", + "rev": "8881a61fe7a1956534b89cd1f79984793ff694fe" + }, + "recipe": { + "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.640", + "deps": [] + }, + "nixos-options": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/travisbhartwell/nix-emacs.git", + "sha256": "9c44131bb762df62b5476871bed5a5d344a4db448854145bf06dc839c0910147", + "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" + }, + "recipe": { + "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.1809", + "deps": [ + "emacs" + ] + }, + "monky": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ananthakumaran/monky.git", + "sha256": "3d8bc1962ee4f30e5fa7d029b02ec07018a56675d39b90ecb077528b565efb48", + "rev": "48c0200910739b6521f26f6423b2bfb8c38b4482" + }, + "recipe": { + "sha256": "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150404.218", + "deps": [] + }, + "pythonic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/pythonic.git", + "sha256": "d2d72d2b2591fafb4a9fb7686407a3ec9d93a0a38be77adf89026de2570c2ae4", + "rev": "959b3f5d5607eb41ef26ad61d7ec15ceecb8e37a" + }, + "recipe": { + "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150730.416", + "deps": [ + "cl-lib", + "dash", + "emacs", + "f", + "s" + ] + }, + "auto-capitalize": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/auto-capitalize.el", + "sha256": "1lk9zwng7wkjvb8hprlgyrab1s56n8a61xjva931h0bgypwl1dfi" + }, + "recipe": { + "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131014.5", + "deps": [] + }, + "emms-mode-line-cycle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/emms-mode-line-cycle.git", + "sha256": "6824d92b2ca19f38d0bc2b28cd1949d9f25b49c8cb76a39122cf7d58f6eee2df", + "rev": "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295" + }, + "recipe": { + "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.946", + "deps": [ + "emacs", + "emms" + ] + }, + "ember-yasnippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ronco/ember-yasnippets.el.git", + "sha256": "64c434b6aa5192681614503b98873c114295125759f6856ff949543c1e043618", + "rev": "650a6d31748175aa7df074bcfffd433a0b072ab5" + }, + "recipe": { + "sha256": "1alqrv9yhc1f8dhvh2kjcv8qbn1hdgza5iasmchr1wggxds3s50i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150501.1126", + "deps": [ + "yasnippet" + ] + }, + "go-errcheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dominikh/go-errcheck.el.git", + "sha256": "63a254c6c720ef40fbc483df2baba4e1574dbbbbb2b51601c41545bd47eba6ba", + "rev": "1b0cd6af048a8b2074ace14ab51fb6c987beb430" + }, + "recipe": { + "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.1335", + "deps": [] + }, + "lexbind-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/spacebat/lexbind-mode.git", + "sha256": "3675f14da51b1711dfd3f9d3ff819d6b9309326de28a956e719a2b9d219614d7", + "rev": "fa0a6848c1cfd3fbf45db43dc2deef16377d887d" + }, + "recipe": { + "sha256": "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141027.929", + "deps": [] + }, + "minimal-session-saver": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/minimal-session-saver.git", + "sha256": "48a001446daeac6423488aaee4452017afa1f7fba92c2ff2eaf0d456a5bdd8cc", + "rev": "cf654ac549850746dc21091746e4bcc1aef7668e" + }, + "recipe": { + "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "flymake-vala": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/daniellawrence/flymake-vala.git", + "sha256": "fd0b64747c75ee9eb50a99e689556620dbe8465eccbe86b27142edee87380441", + "rev": "c3674f461fc84fb0300cd3a562fb903a59782745" + }, + "recipe": { + "sha256": "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150326.31", + "deps": [ + "flymake-easy" + ] + }, + "popup-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-popup-complete.git", + "sha256": "b11301df4c14431a70ed1c62f5c9f473e8e3febfd46bdd979d4d1b1badd4ef4f", + "rev": "caa655a6d8472e9a4bfa1311126d90d7d1b07fca" + }, + "recipe": { + "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141108.2108", + "deps": [ + "popup" + ] + }, + "cake2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-cake2.git", + "sha256": "7177a82eff2163dfd461e4e3dfe445ce82c580078f558fd68b4f142b9fb81bd1", + "rev": "0a9d0b3a1c49ba1730088416f50507f53221c70b" + }, + "recipe": { + "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140626.742", + "deps": [ + "anything", + "cake-inflector", + "dash", + "f", + "historyf", + "ht", + "json", + "s" + ] + }, + "helm-rhythmbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrBliss/helm-rhythmbox.git", + "sha256": "333341c7797a4e4f79da40b0593102d77737697c0c09af7dfd2443190400ae16", + "rev": "3bdff00fd9d7b39f8b1dfb35e6843da307ef4d98" + }, + "recipe": { + "sha256": "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150813.808", + "deps": [ + "cl-lib", + "helm" + ] + }, + "async": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/emacs-async.git", + "sha256": "b7cddb682702a034dd416e26afd9318f0574b7f55f717b4f1e522ae23e55217d", + "rev": "c25bf17b34a1608da45e8a1ca02e1c89a34acd34" + }, + "recipe": { + "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.456", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gotest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/gotest.el.git", + "sha256": "1dc860bf805572ba4821e661690b851d48f5609f05e59da3883f3fea2e46b415", + "rev": "46bd21634430808a6eb29776a2898f28b09bddac" + }, + "recipe": { + "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.950", + "deps": [ + "emacs", + "f", + "go-mode", + "s" + ] + }, + "ede-compdb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/randomphrase/ede-compdb.git", + "sha256": "0a785f8f8a976d894ed9d542f7122ea691283486c0bace9d16adc2888b65c27b", + "rev": "d6d8466cd62876fc90adeff5875a1a584fd846cd" + }, + "recipe": { + "sha256": "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150920.1533", + "deps": [ + "cl-lib", + "ede", + "semantic" + ] + }, + "floobits": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Floobits/floobits-emacs.git", + "sha256": "7d1791e9315d81ad4fb19108bb3316d1d1a436cb9c0db53401a77248bc35cc56", + "rev": "08b3b5a3c3a178b8f21f1baf5e1f0eb0cf1fb855" + }, + "recipe": { + "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.1836", + "deps": [ + "highlight", + "json" + ] + }, + "md-readme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thomas11/md-readme.git", + "sha256": "836d88feb65f49fdb9dc01a356c6a6dcb397d1401b12a611aec159e5d7b80fc9", + "rev": "9f3630d3ad2b83ec20968cf02c6613c53e8e32ec" + }, + "recipe": { + "sha256": "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150506.159", + "deps": [] + }, + "annoying-arrows-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/annoying-arrows-mode.el.git", + "sha256": "02fc94d96b4dddc3ad65040d5f7d41422fa4e52aa6485e4f7e4ec8fff51cf8de", + "rev": "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3" + }, + "recipe": { + "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.1102", + "deps": [] + }, + "foreign-regexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k-talo/foreign-regexp.el.git", + "sha256": "fca3272a37d16bbfd6f48e9e20b80aecae9033636576ddb4acd2ae49e1523332", + "rev": "c7251fce89c8585f2595e687d8d7bc65cf465b5e" + }, + "recipe": { + "sha256": "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140823.1942", + "deps": [] + }, + "wilt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sixty-north/emacs-wilt.git", + "sha256": "a51e30d46f4466172d371b544f4019eb052777f1b54cc3c33533caea69973ffb", + "rev": "5febe367c6c3729848654358af4d17ee2987da8d" + }, + "recipe": { + "sha256": "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.718", + "deps": [ + "dash", + "emacs", + "s" + ] + }, + "airplay": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/airplay-el.git", + "sha256": "8499df3a59b1cf947ebb23d30890f43048383a06df8b7a6bf4f170b284390c98", + "rev": "bd690aafcae3a887946e1bba8327597932d964ad" + }, + "recipe": { + "sha256": "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130212.626", + "deps": [ + "deferred", + "request", + "simple-httpd" + ] + }, + "mode-icons": { + "fetch": { + "tag": "fetchgit", + "url": "git://ryuslash.org/mode-icons.git", + "sha256": "b7afff1d8fb0b3f044d266af479df51fbb6021ff433628a9dc669695c1ddae40", + "rev": "cbf412d0c47dfdbeac7587a0c12c96f58f546467" + }, + "recipe": { + "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130602.748", + "deps": [] + }, + "weibo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/austin-----/weibo.emacs.git", + "sha256": "f0ed5faab006636b836bee87f680adcd328d04cd5311a4ad49694676a58f8541", + "rev": "a8abb50b7602fe15fe2bc6400ac29780e956b390" + }, + "recipe": { + "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150307.1642", + "deps": [ + "cl-lib" + ] + }, + "volatile-highlights": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k-talo/volatile-highlights.el.git", + "sha256": "ab3d1dc60b3f087b2a2b6a7c56fb660098e710167959ba7ec522bfa65272d30a", + "rev": "fb2abc2d4d4051a9a6b7c8de2fe7564161f01f24" + }, + "recipe": { + "sha256": "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141005.40", + "deps": [] + }, + "bbdb-china": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/bbdb-china.git", + "sha256": "101284a21d1b33c5b0292047f70e0913a26eaccb463b318c0adeec876541f59c", + "rev": "a64725ca6dbb5ec1825f3a9112df9aa54bb14f6c" + }, + "recipe": { + "sha256": "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150615.2056", + "deps": [ + "bbdb-vcard", + "chinese-pyim" + ] + }, + "grep-a-lot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ZungBang/emacs-grep-a-lot.git", + "sha256": "9c1a5212b15ae93316f19708f5ffae818d0a835c30914aac7ddf469aab3002b9", + "rev": "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad" + }, + "recipe": { + "sha256": "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131006.847", + "deps": [] + }, + "stan-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stan-dev/stan-mode.git", + "sha256": "71e11b48e374c1868b6aee957858ceff5598ba3c55b21c6cd654a0eaaa3ababd", + "rev": "58826c65f3351eb69bf999f3364afe50dc31645e" + }, + "recipe": { + "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150829.2215", + "deps": [] + }, + "parse-csv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrc/el-csv.git", + "sha256": "5a2071adad5edd42db44a46765a2205d060d24b3bbf74875c4adf6d958b80cfd", + "rev": "dc31201af8868aa98f055de055ee7aa5fae266dd" + }, + "recipe": { + "sha256": "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140203.316", + "deps": [] + }, + "edts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tjarvstrand/edts.git", + "sha256": "77a3437794bc04b6cef069f6bb539a1c4ce5c4407e49693b1c12621646b1c9d9", + "rev": "70dfcfd8cc448c854fb67d65e005ba00e77384c5" + }, + "recipe": { + "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.710", + "deps": [ + "auto-complete", + "auto-highlight-symbol", + "dash", + "eproject", + "erlang", + "f", + "popup", + "s" + ] + }, + "unison-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/impaktor/unison-mode.git", + "sha256": "d11e3845374bb491d898e3a3826639212d485eedf098b7b6e85baed909021051", + "rev": "7e1bfee1a6796cc749a583605a9c948eccbc8cc5" + }, + "recipe": { + "sha256": "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.614", + "deps": [] + }, + "avy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/avy.git", + "sha256": "ef7382ab4751b7989f269f1931632244ba3afdf0157c27091907627b6788a6ed", + "rev": "b1a1953e1c20578b0d866d538b6045b42f4de4ef" + }, + "recipe": { + "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.756", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "marmalade": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/marmalade.git", + "sha256": "78617a9d2005e419aab6e38fb59ec8bbfc4e897407a638d3923cd7fc1d52e3ea", + "rev": "2a4f07fbd4c17e08556c1a80c1753c37b3626d39" + }, + "recipe": { + "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110602.1822", + "deps": [ + "furl" + ] + }, + "per-buffer-theme": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/inigoserna/per-buffer-theme.el", + "sha256": "1rh87jf0a15q35a8h00bx6k5wa931rb6gh600zbs7j4r3y8qsylf", + "rev": "2b82a04b28d0" + }, + "recipe": { + "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.1212", + "deps": [ + "cl-lib" + ] + }, + "aurora-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xzerocode/aurora-theme.git", + "sha256": "26e201d8002ae5d45a0ecfac9fe9e711ccecea0bcfd8422417f2d561da3356fc", + "rev": "3cd8c3359b7b15148e5cea503f3d071e1ed7fc79" + }, + "recipe": { + "sha256": "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151015.1302", + "deps": [] + }, + "systemtap-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ruediger/systemtap-mode.git", + "sha256": "f9ddb0fb74bfd4593251e023bd120229331e53257273f3d647abeba2cb02009d", + "rev": "1a968c2b1f3a054bebf91ac49739d3a81ce050a9" + }, + "recipe": { + "sha256": "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.1340", + "deps": [] + }, + "evil-dvorak": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jbranso/evil-dvorak.git", + "sha256": "058408c00be4116f82b23dc9c66125622382587e0fa1c03dce835c522c056b49", + "rev": "c193913839e153b0f2c973fae5e6b1fe51809d2b" + }, + "recipe": { + "sha256": "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.726", + "deps": [ + "ace-jump-mode", + "evil", + "evil-surround", + "helm", + "helm-swoop" + ] + }, + "shadow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/shadow.el.git", + "sha256": "bcebe1a23988ac97ba7d888983001dcc1d3e168cec8cdad1eeaec69cb5042ac4", + "rev": "eafc93b090895102ac299220a84ec99244f633af" + }, + "recipe": { + "sha256": "0zhy94jpk29k51r7m1gd24jx7h6b68l38vhw27j3wz0ag1h5352k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110507.224", + "deps": [] + }, + "zop-to-char": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/zop-to-char.git", + "sha256": "efb045f400fff42dc9685088c22394dad6269cc3409f29ede6701d1837ef14bf", + "rev": "e1b4080286d7c905119eac745b8b7aaca2784844" + }, + "recipe": { + "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150901.247", + "deps": [ + "cl-lib" + ] + }, + "phoenix-dark-mono-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/j0ni/phoenix-dark-mono.git", + "sha256": "318b15eb1520c8d9ba8e5981007a77742f922f58acd1e13428b7a6cac21be6b9", + "rev": "dafb65c542605145d6b1702aae5b195b70f98285" + }, + "recipe": { + "sha256": "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130306.1415", + "deps": [] + }, + "connection": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myrkr/dictionary-el.git", + "sha256": "886b331bc9ef9c9ab171a4c370c80c342417fb8fcb9793edf17baa9984c11587", + "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" + }, + "recipe": { + "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140717.2229", + "deps": [] + }, + "gmail-message-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/gmail-mode.git", + "sha256": "8fc111674fe229115a7d4b30663ccf5b2d888c2cfe8d82d8b58d87f686577748", + "rev": "2e0286e4a3c80889692f8da63a3b15d7a96abdea" + }, + "recipe": { + "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140815.1016", + "deps": [ + "ham-mode" + ] + }, + "rust-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rust-lang/rust-mode.git", + "sha256": "f67c192b05f84b23e639a79ad713a82112420ba49fe473dc5b0726191f93c5bf", + "rev": "95d089cbc3a23c0dd23869e716520c31daefdf8f" + }, + "recipe": { + "sha256": "0h4gblg6ls8a2wa43r990lanl6ykx8j7c8yg5i3n151imzic2n33", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.832", + "deps": [] + }, + "bug-reference-github": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arnested/bug-reference-github.git", + "sha256": "8b20d2efc2e13e6c154cfaf6d2f1c98c61d6d2f989c0d7306e81e8c8ab81d474", + "rev": "6f693e1f659d9a75abea3f23e95946c7f67138cd" + }, + "recipe": { + "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131202.1503", + "deps": [] + }, + "clojure-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clojure-mode.git", + "sha256": "e0c41c3eea190a76c23e91687151e81becdf025e19838aa69999832318170abe", + "rev": "802c1dbf3529da5a09f97cb21833e0a27ccf41d7" + }, + "recipe": { + "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1238", + "deps": [ + "emacs" + ] + }, + "utop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/diml/utop.git", + "sha256": "3f85dd7eac8dd50482ed9cb410b2b929cc8d6da599745f842089eac2c4a6e1c2", + "rev": "e608977856005c7a3503afff7a2f6c3ca8a423c5" + }, + "recipe": { + "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.447", + "deps": [ + "emacs" + ] + }, + "with-editor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", + "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + }, + "recipe": { + "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.705", + "deps": [ + "async", + "dash", + "emacs" + ] + }, + "evil-jumper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/evil-jumper.git", + "sha256": "08d774fc23eecd49fe8e2ea8662061a620408d248c5301ff36a3aa0a00aa92f8", + "rev": "f1a4952c0e1cee793275d75e297351eaaf6bb1b2" + }, + "recipe": { + "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.1002", + "deps": [ + "cl-lib", + "evil" + ] + }, + "lingr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lugecy/lingr-el.git", + "sha256": "8038b25560e872e5e4a8104ebc7a1d48e6f0607f9b0f8d25e4391d3f26047d66", + "rev": "4215a8704492d3c860097cbe2649936c22c196df" + }, + "recipe": { + "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100807.1231", + "deps": [] + }, + "auto-complete-sage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/auto-complete-sage.git", + "sha256": "9caddef2218b3d2405da369b7c9c945372b947674469181285e2c23cfc50d4d3", + "rev": "a61a4e58b14134712e0737280281c0b10e56da93" + }, + "recipe": { + "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1257", + "deps": [ + "auto-complete", + "sage-shell-mode" + ] + }, + "rich-minority": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/rich-minority.git", + "sha256": "a3d72cfbffc5896821fa40fb68ae3af61e5bef8855679e0d3f4074557c721c86", + "rev": "311ac8ee54078f95b7279e532da6cf5a2afb4125" + }, + "recipe": { + "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.600", + "deps": [ + "cl-lib" + ] + }, + "el-spy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/uk-ar/el-spy.git", + "sha256": "f6866b464ca98c3f9d9078774de9339357bfaf9052595438f0ab9df56d1cd404", + "rev": "b1dead9d1877660856ada22d906ac4e54695aec7" + }, + "recipe": { + "sha256": "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131226.1408", + "deps": [] + }, + "marcopolo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/marcopolo.git", + "sha256": "ec14182129292c0f2c61ba3614953b59cf2440e7038cdca3109397062d138fa6", + "rev": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e" + }, + "recipe": { + "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150326.1118", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "openwith": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/openwith", + "sha256": "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01", + "rev": "aeb78782ec87" + }, + "recipe": { + "sha256": "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120531.1636", + "deps": [] + }, + "el-mock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/el-mock.el.git", + "sha256": "a9ae84c5bc965ea4a8cb3d1fb68655d48777ceb31c2adfd3dc8e6ef053209601", + "rev": "5cb160b9bd2c9b909a2b64adcc9ec947da643c39" + }, + "recipe": { + "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.521", + "deps": [] + }, + "smart-newline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ainame/smart-newline.el.git", + "sha256": "467f958f35ef88eac38c02dbab506e629e6b104a176227891c9b4dea39c3ec75", + "rev": "f5f5ff033645aea0652aa375b034746754a38b1e" + }, + "recipe": { + "sha256": "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131207.2140", + "deps": [] + }, + "fringe-current-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyanagi/fringe-current-line.git", + "sha256": "6108e2f95042f2834c6dfa9acb59103a88c8fb4d3ac927c377138614d7b7947f", + "rev": "0ef000bac76abae30601222e6f06c7d133ab4942" + }, + "recipe": { + "sha256": "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140110.2211", + "deps": [] + }, + "vertica": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/r0man/vertica-el.git", + "sha256": "325c546cb1a96c56ddaddcc7beb07841996c77a38efb07296fb9eda1bb0ae7d6", + "rev": "3c9647b425c5c13c30bf0cba483646af18196588" + }, + "recipe": { + "sha256": "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131217.911", + "deps": [ + "sql" + ] + }, + "hydra": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/hydra.git", + "sha256": "d28da7ce564a639003d29433d7265defa28a3b9fb613210a1e55c0e8e952e136", + "rev": "7f022f7f1a7833618c1bf4d38a4854d2bae06199" + }, + "recipe": { + "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.617", + "deps": [ + "cl-lib" + ] + }, + "xmlunicode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ndw/xmlunicode.git", + "sha256": "6f853574d262d1a16819b61d68da8a98d6b2061edcd914aac86a1bf06b2f3678", + "rev": "aecbdb50fcc4eee8a84fb37107bf3a69fb7a1e21" + }, + "recipe": { + "sha256": "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1113", + "deps": [] + }, + "pony-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidmiller/pony-mode.git", + "sha256": "d28ed9149832838a4c6000a897aa0b942a47b2d90b94fe89c15c607d94eb2512", + "rev": "d319b0317bfbdac12d28cfd83abe31cc35f3cdd7" + }, + "recipe": { + "sha256": "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151028.502", + "deps": [] + }, + "browse-kill-ring": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/browse-kill-ring/browse-kill-ring.git", + "sha256": "d3302bcb998575191ffa0ee1d86ea01e9a82befe008e3660cacd2ea0434f33ac", + "rev": "66b5a0872b4278b49a815fc759c3eb48aebe10bf" + }, + "recipe": { + "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150829.832", + "deps": [] + }, + "auto-shell-command": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/auto-shell-command.git", + "sha256": "aae68a4687f79a0b073bf5d6f8f7a4912d0a99b178d299fcd490eb8a2a6b21a3", + "rev": "59d4abce779a3ce3e920592bf5696b54b2e192c7" + }, + "recipe": { + "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150416.1257", + "deps": [ + "deferred", + "popwin" + ] + }, + "gerrit-download": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chmouel/gerrit-download.el.git", + "sha256": "a4c77027e6d9e78b8f4ef5569643734748aced9c7b256f2fe8a7cc57c1f508b2", + "rev": "d568acc7c5935188c9bc19ba72719a6092d9f6fd" + }, + "recipe": { + "sha256": "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150714.908", + "deps": [ + "emacs", + "magit" + ] + }, + "emms-player-mpv-jp-radios": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/emms-player-mpv-jp-radios.git", + "sha256": "115f86d16945f4801b2c901a52e7c47485112818584a35650dbc127c677fb01b", + "rev": "325d78e161cacbd8279d53a0e786fdb5914f85d1" + }, + "recipe": { + "sha256": "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.617", + "deps": [ + "cl-lib", + "emacs", + "emms", + "emms-player-simple-mpv" + ] + }, + "paren-completer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/MatthewBregg/paren-completer.git", + "sha256": "0d47deec35c632ab6d1f1d0d0165e459d2a1cfd28bb942f54e5eb32628ab4fa7", + "rev": "afb6d596ffac85b3457178cfdb384cd2a382b120" + }, + "recipe": { + "sha256": "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150711.1723", + "deps": [ + "emacs" + ] + }, + "shelldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-shelldoc.git", + "sha256": "d91cb51799e19d15a5bfeb97510b6ed4102919e47babf08b529e7f01c88dfe18", + "rev": "20eb889f3d3d9bd01aafdc699e712a75db42d8f3" + }, + "recipe": { + "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.2125", + "deps": [ + "cl-lib", + "s" + ] + }, + "malabar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m0smith/malabar-mode.git", + "sha256": "8c09e75bfeb8e8fc81b24a9f5ce953f37b121386168c7c0ace562cc9b3e9a57a", + "rev": "830f38efae813db4388da6b4abd386eb0a4e861c" + }, + "recipe": { + "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150720.1255", + "deps": [ + "fringe-helper", + "groovy-mode" + ] + }, + "fullframe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomterl/fullframe.git", + "sha256": "14a20c3f48833c183aeb9ac4984fdb8b1ca32d2233f8166a080305c5ca8fac87", + "rev": "b9c3e54c8928c5ba994c55de7794b5f739b43ced" + }, + "recipe": { + "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140619.505", + "deps": [ + "cl-lib" + ] + }, + "cperl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jrockway/cperl-mode.git", + "sha256": "2c28d3f8d34a0ff157ee0ea0daad76f7dcfcc4065dbc3a7d924cdbc333107172", + "rev": "06f5668653a114991836139344dbe8f0674577af" + }, + "recipe": { + "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140309.422", + "deps": [] + }, + "handlebars-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danielevans/handlebars-mode.git", + "sha256": "776070c6abb6ec9bfdb9711205a85ed0d37b422bd1b274aaa8724f73ed1c8470", + "rev": "81f6b73fea8f397807781a1b51568397af21a6ef" + }, + "recipe": { + "sha256": "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150211.1149", + "deps": [] + }, + "helm-git-grep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-git-grep.git", + "sha256": "d93b88b594f63d7448432c629808266623b196374aed9c425f5f07a4da7ae5d6", + "rev": "9e602f79ea58fe12c6a48ce3c2f749b817ef8c86" + }, + "recipe": { + "sha256": "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140222.2022", + "deps": [ + "helm" + ] + }, + "ido-select-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pjones/ido-select-window.git", + "sha256": "f2d37dc889df751ce9317ddc406482180b678e0660ddd42fe896dc2c5d45ad87", + "rev": "946db3db7a3fec582cc1a0097877f1250303b53a" + }, + "recipe": { + "sha256": "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131220.1447", + "deps": [ + "emacs" + ] + }, + "highlight-chars": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-chars.el", + "sha256": "14gx9fri2qbgii828dd42aw02rskshbyyymd68aqh2dll7cbw6mf" + }, + "recipe": { + "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150630.1635", + "deps": [] + }, + "wgrep-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", + "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140528.1627", + "deps": [ + "wgrep" + ] + }, + "flymake-cursor": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/flymake-cursor.el", + "sha256": "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr" + }, + "recipe": { + "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130822.532", + "deps": [] + }, + "tabbar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dholm/tabbar.git", + "sha256": "7d487fbb6189b8eb520c25ddb985bcef407a95b82129fd7355f2d1f0a2b54358", + "rev": "ad4c9c20cf9090a5ebf77a5150f2bf98bdb4bded" + }, + "recipe": { + "sha256": "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141109.343", + "deps": [] + }, + "pretty-symbols": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/drothlis/pretty-symbols.git", + "sha256": "60208b979981fbb6fa213f3e442f93a49e7101af4918073d823558655ca200b8", + "rev": "582cbe51ecfe1cc0a5b185bc06113c8a661e3956" + }, + "recipe": { + "sha256": "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140814.459", + "deps": [] + }, + "comment-dwim-2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remyferre/comment-dwim-2.git", + "sha256": "fa8ab7fc1415fc111cddd5463496f456ac6ac5a8348b38ed688731e0abd8f44f", + "rev": "8cedecde018b5872195bfead6511af822776a430" + }, + "recipe": { + "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150825.1749", + "deps": [] + }, + "dom": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/toroidal-code/dom.el.git", + "sha256": "a2d6b6f1a40e9d829a71560b27d2a7531d5b72480958baf447adb739b110ad98", + "rev": "19a3cadd02ef2cafc258b7ddb1f1609eec894ed6" + }, + "recipe": { + "sha256": "0cpd12vhshlk2v3w42n769gc0b3rsqc8wb7g84846v9r05ypinj2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150414.1810", + "deps": [ + "cl-lib" + ] + }, + "s-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-s-buffer.git", + "sha256": "0565383db76e415e7f00f07ec9b5060ba25e58c4c0660816b73b0ae98049cf1a", + "rev": "f95d234282377f00a2c3a9846681080cb95bb1df" + }, + "recipe": { + "sha256": "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130605.1624", + "deps": [ + "noflet", + "s" + ] + }, + "ctags-update": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jixiuf/helm-etags-plus.git", + "sha256": "a29adec5d4893d563888fa4c7cabe2967d0d31871f991fd929465811e9980c80", + "rev": "eeed834b25a1c084b2c672bf15e4f96ee3df6a4e" + }, + "recipe": { + "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150427.2214", + "deps": [] + }, + "pcsv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-pcsv.git", + "sha256": "4e212f945e58a53810a3c0ef0aa9b51da8f2ad76815fcf76a16a38f999cc5729", + "rev": "798e0933f8d0818beb17aebf3b1056bbf74e03d0" + }, + "recipe": { + "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.531", + "deps": [] + }, + "projectile-speedbar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/anshulverma/projectile-speedbar.git", + "sha256": "94472999394b672ec75c8cdbefffedd2fff6187c4c779e5bc625beb7962f6854", + "rev": "59a91ea6b7e4ed4e25ba1acc37d6f90e14c3fa16" + }, + "recipe": { + "sha256": "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150629.1353", + "deps": [ + "projectile" + ] + }, + "helm-unicode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shosti/helm-unicode.git", + "sha256": "6fdaef3f969894c5789050944ba446c37f29909d2bf777001eef0d61fad2f6fa", + "rev": "cf08fea1235fdc9f900efc0742b021ca33ef65aa" + }, + "recipe": { + "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150428.1354", + "deps": [ + "emacs", + "helm" + ] + }, + "base16-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkaito/base16-emacs.git", + "sha256": "59d316cc71bd647f4c90e7688ef508a2aff99ae4e3a4a495a4b36f0864034498", + "rev": "18693adea42ec2667534651c28c32934bc1bcec0" + }, + "recipe": { + "sha256": "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151019.911", + "deps": [] + }, + "xah-fly-keys": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xah-fly-keys.git", + "sha256": "36708da17c4d9114a47003d857002e706d1a12b7ea9137d9e28b5aa589481431", + "rev": "83d0da590640dda6d175cf88e83062717e39ed50" + }, + "recipe": { + "sha256": "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.348", + "deps": [] + }, + "chm-view": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/chm-view.el", + "sha256": "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8" + }, + "recipe": { + "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110616.1219", + "deps": [] + }, + "company-quickhelp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/expez/company-quickhelp.git", + "sha256": "bbbbf56ef56ecf2dfd8fb6131174a7f44cb9a56f03ad2577e7af1a76c7ec9a66", + "rev": "05e0ee9b854f90ff2b007b3e19446a02513f43dc" + }, + "recipe": { + "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.519", + "deps": [ + "company", + "emacs", + "pos-tip" + ] + }, + "fxrd-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/msherry/fxrd-mode.git", + "sha256": "2b4939ad9cc32b7a3fcc3c29a71486e7372525f001246cec6ea024f7f9c77100", + "rev": "122afe6b7edeff117edf92dab1ba011ae71a5910" + }, + "recipe": { + "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1328", + "deps": [ + "s" + ] + }, + "gnus-desktop-notify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wavexx/gnus-desktop-notify.git", + "sha256": "992aea09c651de17ecb102ed7d9d0084e2637f2c74b6afe2446753e22cbc8c7a", + "rev": "cbd5352d7cb5209a410db7f0faa60b4585f8647b" + }, + "recipe": { + "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150703.854", + "deps": [ + "gnus" + ] + }, + "abyss-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mgrbyte/emacs-abyss-theme.git", + "sha256": "1a72a705e58f709505dfca8d12b6e59f0b7bd013fe063404f03b8e1900938f89", + "rev": "7971da041f5fb608e32cdac9259b53c87013c04f" + }, + "recipe": { + "sha256": "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.608", + "deps": [ + "emacs" + ] + }, + "js-comint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/js-comint.git", + "sha256": "3b313ca577447321f5245fe7cffb507eb038275ba7da30eefc87db67894c0442", + "rev": "6eb9b2be4fc1c43d600ae9d4cfeacee40fba5c73" + }, + "recipe": { + "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.2038", + "deps": [ + "nvm" + ] + }, + "orglue": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshinari-nomura/orglue.git", + "sha256": "e60b8642c9e3685864e4573a77ee240e1325f51931d1ee93b09275aa6f5310f0", + "rev": "4732f8bfd6866e20230b36e5971f2492827c6944" + }, + "recipe": { + "sha256": "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150430.713", + "deps": [ + "epic", + "org", + "org-mac-link" + ] + }, + "qml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/qml-mode.git", + "sha256": "4e0e8f6395d42f50c081f6acda37f6eb3951ee75e5130fe09310f7a688775e9c", + "rev": "5e8fb8819e2d7f6fdbb5609a19570db6eaa6a83a" + }, + "recipe": { + "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130427.1008", + "deps": [] + }, + "org-journal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bastibe/emacs-journal.git", + "sha256": "33b199ff09579b4c58a17df0b0d707d7ef8cdcaea8b9f4a8f48a1f7eb6ff94f8", + "rev": "f67e147d864ec05f08f757725c8a97cb8d8a3fd1" + }, + "recipe": { + "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.949", + "deps": [] + }, + "selectric-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rbanffy/selectric-mode.git", + "sha256": "ec37be24ed230b32e0c5e96b470510237bd49229954a0d36e06d37dd682fff30", + "rev": "0dd7ef28a9d9d6fbb95fdeeab6b576ad8762ad16" + }, + "recipe": { + "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.918", + "deps": [] + }, + "circe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/circe.git", + "sha256": "d72cca8e58ec8b961a6926e4966469444d13c9298c45ec2d53805fe9869f837e", + "rev": "c9862e432d2dad7cd568d79dbe49849245333fb1" + }, + "recipe": { + "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.344", + "deps": [ + "cl-lib" + ] + }, + "blgrep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ataka/blgrep.git", + "sha256": "a0f62ec8ec32d092c0c2383761b44e649978841d300aafdcf9a1a18095e754df", + "rev": "605beda210610a5829750a987f5fcebea97af546" + }, + "recipe": { + "sha256": "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150401.916", + "deps": [ + "clmemo" + ] + }, + "sublime-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/owainlewis/emacs-color-themes.git", + "sha256": "a9ec93ea3c10d4f5807f7cdaaaece2a40456f17b754b0bb0d2fd61df5f15bbf3", + "rev": "88315505322f285ff56272a6cd5f20af8eff2ef0" + }, + "recipe": { + "sha256": "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150915.203", + "deps": [] + }, + "evm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/evm.el.git", + "sha256": "9ef30d1f034f47c4f68a89e2a9c9204586c684ef0eabb4709d5e97084dda7c3f", + "rev": "d0623b2355436a5fd9f7238b419782080c79196b" + }, + "recipe": { + "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141007.656", + "deps": [ + "dash", + "f" + ] + }, + "snakemake-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyleam/snakemake-mode.git", + "sha256": "2724143dd987c019a4ba0b6eec316004a1bab422115a3b47ac51522c15689f5c", + "rev": "801662d8c1bf0905afbd7ca5071d6bf637947f0a" + }, + "recipe": { + "sha256": "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.2203", + "deps": [ + "emacs" + ] + }, + "nameless": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/Nameless.git", + "sha256": "7a8e061545c3bb84dfeb3309f82f3579496f28bef5577e22075cb0bc41da608f", + "rev": "a3dfd7ecf9c58898241c8d1145eb8e0c875f5448" + }, + "recipe": { + "sha256": "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.639", + "deps": [ + "emacs" + ] + }, + "epresent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/epresent.git", + "sha256": "415e6ec2f5f72dc2967022e009e326e6cc514b23848d8497fda2d599e5172702", + "rev": "c185826a464f780467dff240fd63ec385bd1d9c2" + }, + "recipe": { + "sha256": "1x16wqfjfrh7kaqar5px61bf3lnlibvcbr5xaf3mcgph37sgi6la", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150324.810", + "deps": [] + }, + "truthy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/truthy.git", + "sha256": "639642c72c810ab8a35be74928c07f454895d0273755dc7edd8342ce61368e1e", + "rev": "8ed8d07772aa8457554547eb17e264b5df2b4a69" + }, + "recipe": { + "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "list-utils" + ] + }, + "php-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/php-mode.git", + "sha256": "29f5668158a753d55e31c82a8f25ee06d429d7b9b52ee266415003c42b7696ca", + "rev": "9b1e7736ce014f26f40635af3c781127a5e32dfa" + }, + "recipe": { + "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151002.2230", + "deps": [] + }, + "helm-bibtexkey": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kenbeese/helm-bibtexkey.git", + "sha256": "5eb06aac13c91e9f70c80b64642dc93de3c5e9bdad3db1f0de152b9acc08c0be", + "rev": "aa1637ea5c8c5f1817e480fc2a3750cafab3d99f" + }, + "recipe": { + "sha256": "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140214.904", + "deps": [ + "helm" + ] + }, + "sotlisp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/speed-of-thought-lisp.git", + "sha256": "38bd7fd3ebd26fdaeeb4c3c291db72d7495791529bb37f721ec996632dd208af", + "rev": "d5d5ae44e6a31e231024cc7ad9861aa451165413" + }, + "recipe": { + "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.934", + "deps": [ + "emacs" + ] + }, + "helm-spaces": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-spaces.git", + "sha256": "6b28370ffce75428111e7256c59f75984c4d4fc292f77c2fc34e06cd7e78876b", + "rev": "7545fed3880effe079bb27bfbf22e902ac0bc828" + }, + "recipe": { + "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130605.1100", + "deps": [ + "helm", + "spaces" + ] + }, + "logito": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/logito.git", + "sha256": "b9a7433417eafc5bc158f63dddf559b2044368eb3061f0264169de319c68fe4a", + "rev": "824acb89d2cc18cb47281a4fbddd81ad244a2052" + }, + "recipe": { + "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120225.1455", + "deps": [ + "eieio" + ] + }, + "slack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuya373/emacs-slack.git", + "sha256": "c66fa3ab65f1a857a5993d34db1c312e01cb1109e616e782504fed673a552b81", + "rev": "4b0e2994a4b5ad57db7f9506b9b2b4d2de3c9dca" + }, + "recipe": { + "sha256": "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.2250", + "deps": [ + "alert", + "circe", + "emojify", + "oauth2", + "request", + "websocket" + ] + }, + "auto-save-buffers-enhanced": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kentaro/auto-save-buffers-enhanced.git", + "sha256": "229ebe2f1318ce7ba11fec13ddef9f75747e0ac07fe78568907872b5ef1a5c81", + "rev": "caf594120781a323ac37eab82bcf87f1ed4c9c42" + }, + "recipe": { + "sha256": "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130607.2149", + "deps": [] + }, + "programmer-dvorak": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yangchenyun/programmer-dvorak.git", + "sha256": "006cb6558f3fde69f8a78504a17bade48b84aa590ac31a3571fe5ed006a974fa", + "rev": "3288a8f058eca4cab390a564babbbcb17cfa0350" + }, + "recipe": { + "sha256": "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150426.2037", + "deps": [] + }, + "gold-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/gold-mode-el.git", + "sha256": "3b2f67e79919a00b6073e66a819127205f26be495ef184c85085baeb334e3651", + "rev": "6d3aa59602b1b835495271c8c9741ac344c2eab1" + }, + "recipe": { + "sha256": "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140606.2106", + "deps": [ + "sws-mode" + ] + }, + "org-tracktable": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tty-tourist/org-tracktable.git", + "sha256": "1d4fe6a82d3e5a6d471e97abed1235d2aa4f468b54ec7cf0f7f1264ccd707c14", + "rev": "28ef6772cdcf436cf38095f15c6bb681473180ce" + }, + "recipe": { + "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.1441", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "showtip": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/showtip.el", + "sha256": "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql" + }, + "recipe": { + "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20080329.2159", + "deps": [] + }, + "electric-operator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidshepherd7/electric-operator.git", + "sha256": "dcb7a08d971d02b7291c6fa4564981f36d5067dcd118f06f9f4a98583fff8a17", + "rev": "42be5a7e1e98ce879e93d87472de7b37434a5868" + }, + "recipe": { + "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1536", + "deps": [ + "dash", + "emacs", + "names" + ] + }, + "duplicate-thing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/duplicate-thing.git", + "sha256": "91ba8f93a573b66c89db57947cbd967329e2df8e48b61bd833c5105751e551e1", + "rev": "f6ed0232fd0653621afe450d53775a32a9d0e328" + }, + "recipe": { + "sha256": "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120515.1148", + "deps": [] + }, + "owdriver": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/owdriver.git", + "sha256": "e8bdef48d90b5325063f39038e1f6dac1db59f3002273b6b97a225b056e60194", + "rev": "0479389d9df9e70ff9ce69dff06252d3aa40fc86" + }, + "recipe": { + "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141011.938", + "deps": [ + "log4e", + "smartrep", + "yaxception" + ] + }, + "color-identifiers-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ankurdave/color-identifiers-mode.git", + "sha256": "1b1a981fb25f652d1b5887a4bcb95bced2715a3349253ef5fced8f50388a2855", + "rev": "e35ee05588d84517193db07d94ce7f29ace10ef6" + }, + "recipe": { + "sha256": "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150602.2004", + "deps": [ + "dash", + "emacs" + ] + }, + "visible-mark": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/iankelling/visible-mark.git", + "sha256": "cf1745da4f5fc3b4104e73bc7a2c961a80328a8ed7de3691b9672ce1d7a2909c", + "rev": "c1852e13b6b61982738b56977a452ec9026faf1b" + }, + "recipe": { + "sha256": "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150623.2350", + "deps": [] + }, + "message-x": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/message-x.el", + "sha256": "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf" + }, + "recipe": { + "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.918", + "deps": [] + }, + "spotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remvee/spotify-el.git", + "sha256": "fccf20d35c389ddac87a13d4a5b9105a519de3a381c4b84ae6575ff5cdeec817", + "rev": "07a44ecdbdaa93977e97f2a2e5d280ef0b2e8545" + }, + "recipe": { + "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.1003", + "deps": [] + }, + "vi-tilde-fringe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/vi-tilde-fringe.git", + "sha256": "0baa23af0ddd92ecb98f9ce288e4d9a818c779d46d117546435ed2d5572fc252", + "rev": "f1597a8d54535bb1d84b442577b2024e6f910308" + }, + "recipe": { + "sha256": "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141027.2142", + "deps": [ + "emacs" + ] + }, + "babel-repl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hung-phan/babel-repl.git", + "sha256": "a1aa0eb08410d25cd835abfea5c4244eaadafd11bc0af7545d61fb89f81c52a7", + "rev": "be3ec68b36f4dea88aa5705d9ac230b74afcd77e" + }, + "recipe": { + "sha256": "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150712.1000", + "deps": [ + "emacs" + ] + }, + "spotlight": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/benmaughan/spotlight.el.git", + "sha256": "08f3c6fdfe534af7e7f3ec144cc09202ce42dd21ac214ed3c5feee2614a37616", + "rev": "ab902900f22e7d1ea2dd8169441d2da7155aaa68" + }, + "recipe": { + "sha256": "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150929.255", + "deps": [ + "counsel", + "emacs", + "swiper" + ] + }, + "http-post-simple": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/http-post-simple.el", + "sha256": "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my" + }, + "recipe": { + "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131010.2258", + "deps": [] + }, + "shadchen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/VincentToups/shadchen-el.git", + "sha256": "eda47fd25aed9ac3a58b5840e76aec3028ab0a8907e2b9cf88a7c9b5f02b97fc", + "rev": "35f2b9c304eec990c16efbd557198289dc7cbb1f" + }, + "recipe": { + "sha256": "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141102.1239", + "deps": [] + }, + "mustache-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mustache/emacs.git", + "sha256": "13c61a2d3c8d76e65e035f37219b9ae092484112ed4324357db9840b4123fc95", + "rev": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f" + }, + "recipe": { + "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.932", + "deps": [] + }, + "persistent-soft": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/persistent-soft.git", + "sha256": "4ac0d4b17b39ae3e6fe681a55cbc35da9793f862e386aafd210b11b891939232", + "rev": "a1e0ddf2a12a6f18cab565dee250f070384cbe02" + }, + "recipe": { + "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.1253", + "deps": [ + "list-utils", + "pcache" + ] + }, + "prosjekt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/prosjekt.git", + "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "rev": "a864a8be5842223043702395f311e3350c28e9db" + }, + "recipe": { + "sha256": "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.816", + "deps": [ + "dash" + ] + }, + "chef-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mpasternacki/chef-mode.git", + "sha256": "4a954cda3f4a54ac4983c7af43bd1cc10060ab3a1d98a7d8ff9e865c629edad6", + "rev": "c333dd3f9229c4f35fe8c4495b21049ba730cc42" + }, + "recipe": { + "sha256": "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20111121.900", + "deps": [] + }, + "simplenote": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dotemacs/simplenote.el.git", + "sha256": "2926ccf7a5614d9e1f8aafb985ea657f9036499ac228351af351b6f786df0477", + "rev": "e836fcdb5a6497a9ffd6bceddd19b4bc52189078" + }, + "recipe": { + "sha256": "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141118.840", + "deps": [] + }, + "key-combo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/uk-ar/key-combo.git", + "sha256": "4e5234cdeb340efb4945a11502d0730d4bd3b95771aac77ba7e7d84741d147c7", + "rev": "2e220fe3a91c944ce30c4c0297f99d0053b95754" + }, + "recipe": { + "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150324.939", + "deps": [] + }, + "white-sand-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/white-sand-theme.git", + "sha256": "b627cba32c8e31e5f460b7a541124851127ee5c4926e3a01722894b6cb13096a", + "rev": "97621edd69267dd143760d94393db2c2558c9ea4" + }, + "recipe": { + "sha256": "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.1048", + "deps": [ + "emacs" + ] + }, + "company-irony-c-headers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hotpxl/company-irony-c-headers.git", + "sha256": "5c6466bc183691e2eac3076c08acf0032ce606887b13b7b4a37b22a7720ef2e8", + "rev": "ba304fe7eebdff90bbc7dea063b45b82638427fa" + }, + "recipe": { + "sha256": "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.409", + "deps": [ + "cl-lib", + "company", + "irony" + ] + }, + "eshell-prompt-extras": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaihaosw/eshell-prompt-extras.git", + "sha256": "c9ca24798143e3dd85fd598e14d14e6fc1d67c3e05c5c592b7bb8cf4cb5f4e64", + "rev": "0b7670972b6b424b4a15a88b1733b99324dcf387" + }, + "recipe": { + "sha256": "1plvc8azpmb3phlrxhw3y18dv5y0xljsr5fqym4w84m66lq5csfj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150726.159", + "deps": [] + }, + "magit-filenotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-filenotify.git", + "sha256": "26c77a487e3f174374d65f80c67a3532ddaf6e5b9cc01932de7c4ea985042785", + "rev": "c0865b3c41af20b6cd89de23d3b0beb54c8401a4" + }, + "recipe": { + "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.1740", + "deps": [ + "emacs", + "magit" + ] + }, + "xterm-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atomontage/xterm-color.git", + "sha256": "de02f00f1d46e0310a3ca5b3ee4a73195ce0df37bc19107aa9e8ea2099bc8e18", + "rev": "1bc4ddb0e1bf7562cbf4b6b3bdd2ce3f9b596b39" + }, + "recipe": { + "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150823.846", + "deps": [] + }, + "cp5022x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/awasira/cp5022x.el.git", + "sha256": "1fdebde08a8756defd8752c60cb8a1ad5145ce1c838b68706a2c660514e9c7fc", + "rev": "ea7327dd75e54539576916f592ae1be98179ae35" + }, + "recipe": { + "sha256": "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120323.1835", + "deps": [] + }, + "sqlite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cnngimenez/sqlite.el.git", + "sha256": "b18c04fa7a3bac3d82ebc968af65bdd76c4959ac5954c68cd31d5bc1aa25ae57", + "rev": "9a7fb5836a19bc0ea8b4c5a50177112524380986" + }, + "recipe": { + "sha256": "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150417.15", + "deps": [] + }, + "phpunit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/phpunit.el.git", + "sha256": "5b0643e019e0660ff6931e137ad131215f686f0936a7a6ad06c7df9ae14fe205", + "rev": "1ea2aa7901b5d0b1878d6e104ca92de2bbd7313f" + }, + "recipe": { + "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.454", + "deps": [ + "f", + "pkg-info", + "s" + ] + }, + "pastebin": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pastebin.el", + "sha256": "17br64snqby465bjb0l1hzw0pcms5m2knrvb6y9gn3kir4sdi6kn" + }, + "recipe": { + "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101125.1355", + "deps": [] + }, + "org-gcal": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-gcal.el.git", + "sha256": "1f8bf9693fb5e8675a001c5bbf3a5a352b55d56721adccad4cc325c27df54348", + "rev": "d9e04635ad692a02073947cc290c3c36a56c89f0" + }, + "recipe": { + "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150922.2148", + "deps": [ + "alert", + "cl-lib", + "emacs", + "org", + "request-deferred" + ] + }, + "evil-rails": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antono/evil-rails.git", + "sha256": "911ff8bb72de512a90fbb70949c7023ee40c80e0777a860098ec962b7fe92d8b", + "rev": "6a9375bf7f5823c8138e679249c4e2ce58f2e93a" + }, + "recipe": { + "sha256": "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150803.646", + "deps": [ + "evil", + "projectile-rails" + ] + }, + "pcmpl-pip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaihaosw/pcmpl-pip.git", + "sha256": "a8d857482e1fcc6347f0c32e9e90f265645641826937b60e18e0bee45709ff92", + "rev": "b775bef9fa3ae9fb8015409554ecdd165c4bc325" + }, + "recipe": { + "sha256": "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.348", + "deps": [] + }, + "helm-rubygems-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/neomantic/helm-rubygems-org.git", + "sha256": "2096b3ee03c19844e452e6e029f2a69ab47340a05118905c67bc42ffd444cee9", + "rev": "6aaed984f698cbdf9f9aceb0221404563e28764d" + }, + "recipe": { + "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140826.656", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "ag": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/ag.el.git", + "sha256": "04f01565d6b032fda4c7d4a8d557d3dcfc3ce802ca7c802520a9fd804aa66393", + "rev": "421202ff9cbe717157ff4baeea891e9f2ec9dfe0" + }, + "recipe": { + "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.1750", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "smartscan": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mickeynp/smart-scan.git", + "sha256": "b79030438356b3ff3794b6b6ec5c3d7260bfb57ec9dd8884e17e1801adeb6ca4", + "rev": "5fd584d29ff8e5cd7a9e689369756868ab2922d3" + }, + "recipe": { + "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131230.939", + "deps": [] + }, + "propfont-mixed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ikirill/propfont-mixed.git", + "sha256": "fcef75491a5270479c4649e40ca6dfc7007873f10c04a421c574f9f20ff047b2", + "rev": "0b461ef4754a469610dba71874a34b6da42176bf" + }, + "recipe": { + "sha256": "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150113.1611", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "jenkins": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rmuslimov/jenkins.el.git", + "sha256": "e44b893caaeeca57a2bb2568737b8d76e1050aa878da6afa89e4a9a02fa99c5f", + "rev": "5ae8759d4799789337df0fd5e0e7d6f732f59b79" + }, + "recipe": { + "sha256": "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.2108", + "deps": [ + "dash", + "emacs", + "json" + ] + }, + "el-init": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HKey/el-init.git", + "sha256": "f63e820fa9e7949044ff74b2f3e89786d97a4f3398a53816d815a7a3c9fc77bb", + "rev": "e9717f7f051b9685cb436e6f87b27c745bf17072" + }, + "recipe": { + "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150728.420", + "deps": [ + "anaphora", + "cl-lib", + "emacs" + ] + }, + "todotxt-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/avillafiorita/todotxt-mode.git", + "sha256": "7cf723972f71cd857ed129f11f67d49a88813453f2d47688d7fcfbe56d4eb134", + "rev": "dc6ae151edee88f329ba7abc5d39b7440002232f" + }, + "recipe": { + "sha256": "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150424.904", + "deps": [] + }, + "alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/alert.git", + "sha256": "5ff43b167c4b20d60c6a0c8176def479f7d86a50214e9dea6df62f129e74fe7c", + "rev": "dfb003476aeb26d08782c17257f3a81934bcf6ce" + }, + "recipe": { + "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.959", + "deps": [ + "gntp", + "log4e" + ] + }, + "slime-ritz": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pallet/ritz.git", + "sha256": "7ff352d5040cab189a14147f50634097f6c2cd451c5d32110660416b45e7b411", + "rev": "4003fdaa5657d4ed1eeb0e244c46658cbb981667" + }, + "recipe": { + "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130218.1737", + "deps": [] + }, + "buffer-flip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/killdash9/buffer-flip.el.git", + "sha256": "7f06d63187d569d0342007ea2de3513485fa32a2bdf295b918cc27897e686632", + "rev": "2bbf74fac037ace991d03336c515c499a8e69c95" + }, + "recipe": { + "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.1050", + "deps": [ + "key-chord" + ] + }, + "point-undo": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/point-undo.el", + "sha256": "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz" + }, + "recipe": { + "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100504.329", + "deps": [] + }, + "frame-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/frame-cmds.el", + "sha256": "1p7ry940wgjpg2vq3m1nr1bs86cc4mhbpzj64znlmlnjgwa4bk2a" + }, + "recipe": { + "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150814.952", + "deps": [ + "frame-fns" + ] + }, + "yaoddmuse": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/yaoddmuse.el", + "sha256": "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4" + }, + "recipe": { + "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150712.621", + "deps": [] + }, + "company-dcd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tsukimizake/company-dcd.git", + "sha256": "34237a92c5549f866da486f767486946fa5375773e45e45838f2658665d27161", + "rev": "1d121dc42906fc58fa3a7febff8dabd29fba34f2" + }, + "recipe": { + "sha256": "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150901.604", + "deps": [ + "cl-lib", + "company", + "flycheck-dmd-dub", + "helm", + "popwin", + "yasnippet" + ] + }, + "focus-autosave-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vifon/focus-autosave-mode.el.git", + "sha256": "cba9ac81a4c923dba9d17914665789d6e4310ca156b8691242dc4d19b285bdcc", + "rev": "592e2c0642ee86b2000b728ea346de084447dda8" + }, + "recipe": { + "sha256": "1zwp99mk360mqk4mjnnjr6islavginc9732p0jn9g5yz62xypxpc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151012.442", + "deps": [ + "emacs" + ] + }, + "bert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/manzyuk/bert-el.git", + "sha256": "4e17f0aa6193b05a22c32a75d94b4ffd811d82842e46a91f810f7a3d015b3f1a", + "rev": "a3eec6980a725aa4abd2019e4c00246450260490" + }, + "recipe": { + "sha256": "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.414", + "deps": [] + }, + "tern-django": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/tern-django.git", + "sha256": "9beb4691af7e824d45de5ccd50f43e9decd3a27287e81d42d181991c9872004c", + "rev": "455326a1732daa58d4d963b0b11bb1a9fd2f2b86" + }, + "recipe": { + "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150121.1327", + "deps": [ + "emacs", + "f", + "tern" + ] + }, + "shell-history": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/shell-history.el", + "sha256": "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r" + }, + "recipe": { + "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100504.350", + "deps": [] + }, + "pager": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/pager.git", + "sha256": "a1202cdca6c8c4ba9748d8afe853a9f9751d18f957e09fea3b2af57cfe8a05b7", + "rev": "347e48d150d5e9a1ce2ca33ec12924d5fa89264d" + }, + "recipe": { + "sha256": "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100330.1331", + "deps": [] + }, + "ido-ubiquitous": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", + "sha256": "702a90c5ce0f80a21f361a3261e2fb8f86b1430bf08d1296b8442587b797f9e9", + "rev": "3bf3c707753969b2c3b534bfe3d09dbd297dfaae" + }, + "recipe": { + "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.1816", + "deps": [ + "cl-lib", + "emacs", + "ido-completing-read+", + "s" + ] + }, + "merlin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/the-lambda-church/merlin.git", + "sha256": "8ae43c2e925c86286953cf60d3ef6560cec72d21ae64628535db140f68beedb3", + "rev": "f8f26df0ceee91a6825362029dfae03bc7bde679" + }, + "recipe": { + "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.525", + "deps": [] + }, + "org-multiple-keymap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-multiple-keymap.el.git", + "sha256": "cc6422cd2e7d14a5797edf35e35f42bdedcd024dad83668e8de20d054006e976", + "rev": "8ebc532df7f0dd6e6c3aa7c380a51d4166c668e8" + }, + "recipe": { + "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150328.2006", + "deps": [ + "cl-lib", + "emacs", + "org" + ] + }, + "bbdb-handy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/bbdb-handy.git", + "sha256": "81e1e452762a24095b2ba14d94deab576b52410d07c432d4778a889dd8a9f7c3", + "rev": "67936204488b539fac9b4a7bfbf11546f3b13de2" + }, + "recipe": { + "sha256": "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150707.1952", + "deps": [ + "bbdb" + ] + }, + "preproc-font-lock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/preproc-font-lock.git", + "sha256": "ed06ad6d9fd8c7014539058732cd9e0f1b5122c3a94a2f37c3d684af706a2e7b", + "rev": "565fda9f5fdeb0598986174a07e9fb09f7604397" + }, + "recipe": { + "sha256": "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.1418", + "deps": [] + }, + "vagrant": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ottbot/vagrant.el.git", + "sha256": "e3a1a6696187c6b9d6935978313ae4c509987b9c7d64407444a9e9513f4fea94", + "rev": "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c" + }, + "recipe": { + "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141125.2159", + "deps": [] + }, + "tramp-term": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/randymorris/tramp-term.el.git", + "sha256": "37aa886d912b5163af049d7480c02cd287088150daeab74c3f1227a21234fd31", + "rev": "983ed67ee65d26a51c641f306fa6b921ec83eeaf" + }, + "recipe": { + "sha256": "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141104.1545", + "deps": [] + }, + "windsize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/grammati/windsize.git", + "sha256": "4184e5352c74edf14664a5255b40230c91d44c92360d7bac8d852da84c713242", + "rev": "beb6376fdf52afa6f220c89032448460faf76e7f" + }, + "recipe": { + "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.740", + "deps": [] + }, + "unbound": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/unbound.el", + "sha256": "0i5km1naxprd4lj20097ph50mjs2364xwxcdw0j3g5569mk5nc06" + }, + "recipe": { + "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140307.328", + "deps": [] + }, + "uuidgen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kanru/uuidgen-el.git", + "sha256": "7c1da219c0fe7fb318bf562b4ae3a2616eea9c49515a25a774302dc1ee366ea5", + "rev": "7eb96415484c3854a3f383d1a3e10b87ae674e22" + }, + "recipe": { + "sha256": "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140918.1801", + "deps": [] + }, + "anti-zenburn-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m00natic/anti-zenburn-theme.git", + "sha256": "d5fe8723188344c68f86953d1333e0d0c9ef8486ba14c95294b66548e6ff0fb3", + "rev": "0153e87f9ee3c2e8a1a41a4066aeafa99dcfde59" + }, + "recipe": { + "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.1846", + "deps": [] + }, + "sws-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianc/jade-mode.git", + "sha256": "a1ea208906058e467379043b34324400ace1077f69b3bc46d75b2a6698f527d2", + "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" + }, + "recipe": { + "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150317.1445", + "deps": [] + }, + "impatient-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/netguy204/imp.el.git", + "sha256": "b1171f36a5a2350d1e13c1e2fd41bd22c7ab75e8c0a906c01c9a54f2c35be06e", + "rev": "eba1efce3dd20b5f5017ab64bae0cfb3b181c2b0" + }, + "recipe": { + "sha256": "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150501.447", + "deps": [ + "cl-lib", + "htmlize", + "simple-httpd" + ] + }, + "ibuffer-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ibuffer-projectile.git", + "sha256": "6cffceb631a956b1dbbe84c34c6acfe280e9224c89eca1ed9ee2b2c482b996fd", + "rev": "8b225dc779088ce65b81d8d86dc5d394baa53e2e" + }, + "recipe": { + "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150121.1037", + "deps": [ + "projectile" + ] + }, + "lentic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/lentic.git", + "sha256": "728e6eac3089a694b29061bd31d7b74b07094d651306341f391f73c1eed98a8e", + "rev": "e27c3f3b2a44777157da02b8ab6f87391ce25913" + }, + "recipe": { + "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151102.239", + "deps": [ + "dash", + "emacs", + "f", + "m-buffer", + "s" + ] + }, + "hgignore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omajid/hgignore-mode.git", + "sha256": "601f2d0dc3da7847c82bff7980c472681e41b8441f2fb1a00b891e84154a151a", + "rev": "054c370c6df1b789f0d9907b30b54ef2287aafbe" + }, + "recipe": { + "sha256": "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150412.1300", + "deps": [] + }, + "ubuntu-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocher/ubuntu-theme.git", + "sha256": "2c0fb1f7928a5e3042e9d250cfde70292c2cee2ebce47cc1e787c90dd80d0ded", + "rev": "88b0eefc75d4cbcde103057e1c5968d4c3052f69" + }, + "recipe": { + "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150805.1006", + "deps": [] + }, + "lfe-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rvirding/lfe.git", + "sha256": "939e5fc7a773120a9dd4789d7d757336b42c8b1a8d0c3d3d31fd6ebb65b5b74c", + "rev": "b0921aacf954e68689c181ec1c4651b02dc51855" + }, + "recipe": { + "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.1835", + "deps": [] + }, + "color-theme": { + "fetch": { + "tag": "fetchbzr", + "url": "http://bzr.savannah.gnu.org/r/color-theme/trunk", + "sha256": "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz", + "rev": "57" + }, + "recipe": { + "sha256": "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20080305.234", + "deps": [] + }, + "mo-vi-ment-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AjayMT/mo-vi-ment.git", + "sha256": "d66eb7686aabd7ac827201852a6e28a1af9b5d584dd43e23e9a895f113651a4c", + "rev": "f45b014261f8fab19254920bd1d92f3a83263411" + }, + "recipe": { + "sha256": "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131029.133", + "deps": [] + }, + "ascii": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ascii.el", + "sha256": "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75" + }, + "recipe": { + "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "flycheck-d-unittest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-d-unittest.git", + "sha256": "4d91af5279adfbb8523ce995ebd5a61e40de1670e7e592876b99f1be3a55e1e4", + "rev": "f2255abf6a5cd9268b1576d9b46356f8151a7311" + }, + "recipe": { + "sha256": "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150709.109", + "deps": [ + "dash", + "flycheck" + ] + }, + "crontab-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/crontab-mode.git", + "sha256": "2db95b55c0a3168d4566d5a083c2ebd20bf28947514908e246015304d1842de5", + "rev": "68341c82b26462a6af4a5e2b624b1c2165243b8e" + }, + "recipe": { + "sha256": "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090510.1555", + "deps": [] + }, + "term+key-intercept": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarao/term-plus-ki-el.git", + "sha256": "be10ceb201cfd3c44e1601c52cc2fa5d45278d13d47993fabd84015f89909e11", + "rev": "fd0771fd66b8c7a909aaac972194485c79ba48c4" + }, + "recipe": { + "sha256": "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140211.150", + "deps": [ + "key-intercept", + "term+" + ] + }, + "nyan-prompt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PuercoPop/nyan-prompt.git", + "sha256": "777ae6ed685c2611742f0f910f5cbb030522e113cd4aa745d8a70d88bcbcfa2d", + "rev": "b5137f2ee9afe640f59786eed17b308df6356c73" + }, + "recipe": { + "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140810.8", + "deps": [] + }, + "keymap-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/keymap-utils.git", + "sha256": "87917c9ab29e61a95d5651385e74310a3cc25ea6df0d83b8b4c9f3451f226ca2", + "rev": "f9164e23dbc58c4fdce635138ed59fe2eb285313" + }, + "recipe": { + "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.526", + "deps": [ + "cl-lib" + ] + }, + "aria2": { + "fetch": { + "tag": "fetchgit", + "url": "https://bitbucket.org/ukaszg/aria2.git", + "sha256": "2713755e56b03e28a5a6e10c85865c1ace0247e71caeb8b89ec65d5618addafc", + "rev": "3c54254e424c6c8b4eb0d8e7c4907b094c27a3f0" + }, + "recipe": { + "sha256": "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141107.1717", + "deps": [ + "emacs" + ] + }, + "spray": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ian-kelling/spray.git", + "sha256": "4975f769e9ad020fb21cbea52f4fd077391eb5ba9d9945bc37a07d6039e37e3b", + "rev": "11623f45955a18115459a2c18dc95bc967980a53" + }, + "recipe": { + "sha256": "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150626.145", + "deps": [] + }, + "xcscope": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dkogan/xcscope.el.git", + "sha256": "aa08ae44578b6a8f4f1d0db8e52efebec03ffc476d4486b39e8c63a764f4c6f1", + "rev": "d845a033058ccb83e32dd9648885e8f608bb6258" + }, + "recipe": { + "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140510.1637", + "deps": [] + }, + "helm-mu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-mu.git", + "sha256": "53c2ed40653c1fa2c281cab124dfcad5706ffcf6715171e98d80c405581ca274", + "rev": "2ae4b26817f13760e6d9e739477e2512292d90d5" + }, + "recipe": { + "sha256": "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151019.1144", + "deps": [ + "helm" + ] + }, + "org-cliplink": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rexim/org-cliplink.git", + "sha256": "b37e9b8e493f38e6f149d0b393296f0ebfe8d79a6810575b6e24d936aa29d438", + "rev": "0e97eb716d66de4e13704f8aa3ac6f99ee0189e2" + }, + "recipe": { + "sha256": "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150922.51", + "deps": [] + }, + "flymake-cppcheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senda-akiha/flymake-cppcheck.git", + "sha256": "c758dd31e6499f225d0720b89c574fb3eb346d9fef4908eadbc40e9d36634bbd", + "rev": "9554f504d425a04fa6a875f7e3179bc7cf07dd03" + }, + "recipe": { + "sha256": "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140415.757", + "deps": [ + "flymake-easy" + ] + }, + "weechat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/the-kenny/weechat.el.git", + "sha256": "6721df4ab04dee9f40f1be832073abab2845e4cf05f37186897a85030c227cb4", + "rev": "a191b4c52e2cca33acfdd82145da42fb2798b185" + }, + "recipe": { + "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.647", + "deps": [ + "cl-lib", + "emacs", + "s", + "tracking" + ] + }, + "psci": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/emacs-psci.git", + "sha256": "560f502edc8b23091b0055482a2fbf3333fb0c3f5cbb62cbcef1f15dde0a4322", + "rev": "64dc931b4fe2a7507b8ac81423b12f7dcda2067a" + }, + "recipe": { + "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150328.1401", + "deps": [ + "dash", + "deferred", + "f", + "purescript-mode", + "s" + ] + }, + "chicken-scheme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dleslie/chicken-scheme.el.git", + "sha256": "a572e151b335fd1f81beb4cc5923ecf4dc7b19e4a314f2b2822aee94f2a6c148", + "rev": "19b0b08b5592063e852cae094b394c7d1f923639" + }, + "recipe": { + "sha256": "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.1339", + "deps": [] + }, + "ample-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jordonbiondo/ample-theme.git", + "sha256": "e67f5858dda1a9095eaee82380c7ebb233aa061a369929334895f19b1e772d15", + "rev": "8259da1cc14e7f7dd3ee0fb01245c58110a95382" + }, + "recipe": { + "sha256": "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150814.1301", + "deps": [] + }, + "cmake-font-lock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/cmake-font-lock.git", + "sha256": "4e9397d97ce32abc5b01a05e0a7f76dafe501a4522cde098a9ec1952ea78130c", + "rev": "982b753e0228bb5189e3bf2283afad9197d93c37" + }, + "recipe": { + "sha256": "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.1527", + "deps": [ + "cmake-mode" + ] + }, + "go-scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shosti/go-scratch.el.git", + "sha256": "f5a2a714ab96abe9ad967f71c501d2af60cadd19a8657e83594ed9c7b778dba8", + "rev": "3f68cbcce04f59eb8e83af109164731ec0454be0" + }, + "recipe": { + "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150809.2340", + "deps": [ + "emacs", + "go-mode" + ] + }, + "finder+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/finder+.el", + "sha256": "01rkp2fa4h9pippa7q3702hn9bqgbdg7ml4w6dn72l8nj4vnrwmn" + }, + "recipe": { + "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1604", + "deps": [] + }, + "vala-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gopar/vala-snippets.git", + "sha256": "d822678ce6e77cec72c0734e972417cfde8b26d61e19370237d3914ad1574c47", + "rev": "671439501060449bd100b9fffd524a86064fbfbb" + }, + "recipe": { + "sha256": "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150428.2252", + "deps": [ + "yasnippet" + ] + }, + "plenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/karupanerura/plenv.el.git", + "sha256": "f4ebb1275c16c4482ab079ecbbbbe9b83d279862626c9ec6f78e11fca867b273", + "rev": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2" + }, + "recipe": { + "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130707.116", + "deps": [] + }, + "random-splash-image": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kakakaya/random-splash-image.git", + "sha256": "e44bcae6d89d4061b0432d713b41f19fe8b2e6d4e4cfd8c754f496f5397b2778", + "rev": "907e2db5ceff781ac7f4dbdd65fe71736c36aa22" + }, + "recipe": { + "sha256": "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151002.2030", + "deps": [] + }, + "typescript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ananthakumaran/typescript.el.git", + "sha256": "ac44cee87338ca5164ec694ede19f2b8a34bd37c1796d4965592698000cac19b", + "rev": "49241bcc1f60b3787ccd9448a559f792156907a9" + }, + "recipe": { + "sha256": "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.2028", + "deps": [] + }, + "git-gutter+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/git-gutter-plus.git", + "sha256": "9da139c6b30eee2733e0f732b95efc3cb75f4561f4f3a165e943586678e7a92c", + "rev": "b7726997806d9a2da9fe84ff00ecf21d62b6f975" + }, + "recipe": { + "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.1123", + "deps": [ + "dash", + "git-commit" + ] + }, + "wrap-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/wrap-region.git", + "sha256": "032967c69689a8bece8d73ded30004e49a02e5efeea86ded792b5adb0b5a6262", + "rev": "0eff3165db36464d28ed303ab25b715307cbdee0" + }, + "recipe": { + "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140117.120", + "deps": [ + "dash" + ] + }, + "flymake-gjshint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/flymake-gjshint-el.git", + "sha256": "1e4e0a5f031148e05e305d2cbd6429d06d4022fe5649a141229b46d45f58ec34", + "rev": "dc957c14cb060819585de8aedb330e24efa4b784" + }, + "recipe": { + "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130327.732", + "deps": [] + }, + "smotitah": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/smotitah.git", + "sha256": "583703125b87fef3b0d94dbc871b082e08a7b7bd0c7fde4fe0fc63bd4df4ff68", + "rev": "f9ab562128a5460549d016913533778e8c94bcf3" + }, + "recipe": { + "sha256": "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150218.430", + "deps": [] + }, + "org-dotemacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/org-dotemacs.git", + "sha256": "c76ba5052f5042a773496001a7f20a86bfcc603adf15b982e297586442b3f997", + "rev": "99a066508fedf8c80a3bfef08e015e612499d417" + }, + "recipe": { + "sha256": "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1222", + "deps": [ + "cl-lib", + "org" + ] + }, + "rnc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TreeRex/rnc-mode.git", + "sha256": "bc4b7628df4ec4e9e9c810da75befb516ef541bf522a7b90996f9fdf9d1a9797", + "rev": "b39dc23218213336b55f28e12a1d0e49ef7c1e21" + }, + "recipe": { + "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121227.1702", + "deps": [] + }, + "pangu-spacing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/pangu-spacing.git", + "sha256": "698db552a307f17d85401e2f7e33ec2120217cf462e147654c74fc6eeb2fa4e6", + "rev": "4662e66d5cb72738d46d3296ac7626536fc88acb" + }, + "recipe": { + "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.224", + "deps": [] + }, + "protobuf-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/google/protobuf.git", + "sha256": "761e69a84eab02c6d7aa506fb781f9d245fca3da7309fc7dc8cdfaaece9d85fa", + "rev": "dc633398af5c87e1fe1ffcedaebd697c4775c918" + }, + "recipe": { + "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150521.2211", + "deps": [] + }, + "metaweblog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/punchagan/metaweblog.el.git", + "sha256": "64ad9529d66e021c252a63cd075333a99759488605ec2b039efa80f5c96aab1a", + "rev": "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb" + }, + "recipe": { + "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141130.805", + "deps": [ + "xml-rpc" + ] + }, + "imenus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/imenus.el.git", + "sha256": "b016d0cb770331681fb33ac922df5dc1c22af8f8c79c9d39c3647e15137c8c82", + "rev": "a153eadef49bcc0a2dd5d045c0e003fdfd8c13cd" + }, + "recipe": { + "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150107.1139", + "deps": [ + "cl-lib" + ] + }, + "systemd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/holomorph/systemd-mode.git", + "sha256": "7224f5e9e09e02e914d35585a01b6022993271d3e06444fc5d978cf8a3e61d38", + "rev": "26de1dd6f4505eb9db606d97c11b0d120c395d76" + }, + "recipe": { + "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.2332", + "deps": [ + "emacs" + ] + }, + "sourcegraph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sourcegraph/emacs-sourcegraph-mode.git", + "sha256": "19e197b244340431f2ab91fab55faa5554d66b90cfd2ab67bb5523e0a13c3ba2", + "rev": "554c55734c23588fce66a8fa966945509b03d395" + }, + "recipe": { + "sha256": "0rl6s1d0y2pggbfiq4f4xg9qp7nhkd708himzilfqyfa4jwna8yz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150403.2127", + "deps": [ + "emacs" + ] + }, + "wordnut": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gromnitsky/wordnut.git", + "sha256": "33b1e34b3c01c50e0ae91c7576a13aedd833c55cc4ab2474a197b109afcdfd1d", + "rev": "3e0184a8a1cc118a985f1cbd0b6d5b7417987169" + }, + "recipe": { + "sha256": "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151002.1657", + "deps": [ + "emacs" + ] + }, + "list-processes+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/list-processes+.el", + "sha256": "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a" + }, + "recipe": { + "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.1335", + "deps": [] + }, + "nav": { + "fetch": { + "tag": "fetchhg", + "url": "https://code.google.com/p/emacs-nav/", + "sha256": "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p", + "rev": "d7f54ce8536e" + }, + "recipe": { + "sha256": "036lf6iirxamlqzq3w6m0hji36l480yx5c9wnwypms85hi8hq0vl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120507.207", + "deps": [] + }, + "seclusion-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dleslie/seclusion-mode.git", + "sha256": "6988d7332164c8f9f49ad59e14d16a58442d922e7c417272fd2e571e25879295", + "rev": "9634e76c52bfb7200ff0f9f01404f743429e9ef0" + }, + "recipe": { + "sha256": "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121118.1753", + "deps": [] + }, + "auto-highlight-symbol": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gennad/auto-highlight-symbol.git", + "sha256": "ace89797051218920a964942b7b997d79d6d6dca5a4e6c29b4df5b8c4357d149", + "rev": "26573de912d760e04321b350897aea70958cee8b" + }, + "recipe": { + "sha256": "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130313.443", + "deps": [] + }, + "hippie-exp-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hippie-exp-ext.el", + "sha256": "1jkjg7zxpc06plzlyvj1a8dcvj8ijqzhkxwlsd12cgkymvp411yl" + }, + "recipe": { + "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151011.345", + "deps": [] + }, + "flycheck-clangcheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kumar8600/flycheck-clangcheck.git", + "sha256": "c2a03f82c01fec22b9dc5380eda40a41b9333540f6f73ee5232854e4b8f0d619", + "rev": "24a9424c484420073a24443a829fd5779752362b" + }, + "recipe": { + "sha256": "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150712.210", + "deps": [ + "cl-lib", + "flycheck", + "seq" + ] + }, + "lisp-extra-font-lock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/lisp-extra-font-lock.git", + "sha256": "4dda2a21fe0400d2b9f81d14cff73abe41e6620e958476f25ab112bf9c845ee4", + "rev": "ff34c8519653824cf4a40979538b334cd2653892" + }, + "recipe": { + "sha256": "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150129.1516", + "deps": [] + }, + "helm-rb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/helm-rb.git", + "sha256": "b34ca30bc5c1eb917ca3a85a03343fee4eff60316b847fec2d410ef46e7e71de", + "rev": "4949d646420a9849af234dacdd8eb34a77c662fd" + }, + "recipe": { + "sha256": "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131123.1039", + "deps": [ + "helm", + "helm-ag-r" + ] + }, + "splitter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chumpage/chumpy-windows.git", + "sha256": "baaf7d7fb21229883f9782f140c099393a24119c9d9efa1d96b45cf9b1c72a19", + "rev": "164be41b588b615864258c502583100d3ccfe13e" + }, + "recipe": { + "sha256": "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130705.250", + "deps": [] + }, + "w3m": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/w3m.git", + "sha256": "9a25153b7bf7aded2bd68b4583c0752bbc2f8c03da2a7311fc2ec80f9f6afbd1", + "rev": "5986b51c7c77500fee3349fb0b3f4764d3fc727b" + }, + "recipe": { + "sha256": "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121224.1947", + "deps": [] + }, + "recentf-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/recentf-ext.el", + "sha256": "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l" + }, + "recipe": { + "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130130.1550", + "deps": [] + }, + "pydoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/statmobile/pydoc.git", + "sha256": "9185e12f5bbb45bdf0884d19c3b01f8b74b546424df4225cbacfe062ebd48907", + "rev": "74fb1a66e9d81661ddd371a03e916ea5e0b01dc8" + }, + "recipe": { + "sha256": "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150525.2045", + "deps": [] + }, + "ov": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/ov.el.git", + "sha256": "a506897ae3286981c6df49e83b557c0cb939bbf5e07d42a3f46bcd5648bfb4c7", + "rev": "fae7215b3dedba2a9ced145284332e4609bfdc38" + }, + "recipe": { + "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150312.28", + "deps": [ + "emacs" + ] + }, + "applescript-mode": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.osdn.jp/svnroot/macemacsjp/applescript-mode/trunk", + "sha256": "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml", + "rev": "584" + }, + "recipe": { + "sha256": "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120205.507", + "deps": [] + }, + "ibuffer-vc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ibuffer-vc.git", + "sha256": "3153d7a4cd775bae0c1b5142565e15c05dd619dbaee159ae026818c7bf3caae5", + "rev": "daae8b8cec4b8e572b065e00c8c8a368fd0a8b8b" + }, + "recipe": { + "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150714.1520", + "deps": [ + "cl-lib" + ] + }, + "kanji-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wsgac/kanji-mode.git", + "sha256": "d7bd8f4107393894ca143c8c982b526f530c896ba7241565e25c585358a684b8", + "rev": "3caaee58f00f69a8c9ee2491b8a2050add9df962" + }, + "recipe": { + "sha256": "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.225", + "deps": [] + }, + "dired-dups": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/dired-dups.git", + "sha256": "d1026902e20accb18f4619d7210bdd0862f7067f022e53b0e8f10d22f9bf95d1", + "rev": "694ad128c822c59348ced16c4a0c1356d43da47a" + }, + "recipe": { + "sha256": "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130527.1625", + "deps": [] + }, + "edebug-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ScottyB/edebug-x.git", + "sha256": "62e1b2c0b8f65fe121aec0d84723e93e3c34abfaf2baac347aa98919a28bf1fd", + "rev": "a2c2c42553d3bcbd5ac11898554865acbed1bc46" + }, + "recipe": { + "sha256": "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130616.125", + "deps": [] + }, + "servant": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/servant.el.git", + "sha256": "b544061f1bc383761404a1204381b50a7a6f976ac6f1e48b7a8c012ab272891f", + "rev": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134" + }, + "recipe": { + "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140216.619", + "deps": [ + "ansi", + "commander", + "dash", + "epl", + "f", + "s", + "shut-up", + "web-server" + ] + }, + "moz-controller": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/RenWenshan/emacs-moz-controller.git", + "sha256": "085ef98174a4ee9abd48873780e9abf202a5d19379b5f03895b09b46c7b05a3b", + "rev": "46f665c03574fa922de767fc29795e0db4a7c5c6" + }, + "recipe": { + "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.2006", + "deps": [ + "moz" + ] + }, + "bitlbee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pjones/elisp.git", + "sha256": "7a3dc9264c8346cd84b7f157de42bfdb9412c582e766651681042a08f22cddb2", + "rev": "5eafcd3ff0725b5826d1e01bfe4c7ed01563b75e" + }, + "recipe": { + "sha256": "15xb0vjamnfwi25yqd37zwfm6xb6p71if88hk2ymxikza4i47x0f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130328.1218", + "deps": [] + }, + "dired-efap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juan-leon/dired-efap.git", + "sha256": "13e4368ca0b2760077581248eb54cc8a7c2d6baa0d4d09956cdb6648152fa69c", + "rev": "624757b2e54d9a13e2183118d6c113e37684b90c" + }, + "recipe": { + "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140122.1056", + "deps": [] + }, + "form-feed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/form-feed.git", + "sha256": "74e90a4b7555d23d2861285dd8f61c600673bbf26f664ecce2ee1c055742b27a", + "rev": "ba1fb2be4b509e98ba7a368176bb13e4a3bb4720" + }, + "recipe": { + "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150926.756", + "deps": [] + }, + "auto-complete-nxml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/auto-complete-nxml.git", + "sha256": "a68a0e5f7305c0b04895f4cdd4f248b6c6a34c277e93aff814311a11cc53a5ed", + "rev": "ac7b09a23e45f9bd02affb31847263de4180163a" + }, + "recipe": { + "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140220.2258", + "deps": [ + "auto-complete" + ] + }, + "time-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/time-ext.el", + "sha256": "0kxgzjwgd979aypjak07k8ss6hnm3x9f96z1rz2zsz2i3vvh6sqv" + }, + "recipe": { + "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130130.1551", + "deps": [] + }, + "ws-butler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/ws-butler.git", + "sha256": "a2840fb726437dce805021c1ee593ad730fa36d125d9d03611511408b65d5ef4", + "rev": "a998a23ee8713808ac1fe3d1523ea1861be4da57" + }, + "recipe": { + "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150126.959", + "deps": [] + }, + "nsis-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/nsis-mode.git", + "sha256": "b7874cb823c778769ea84671f213fc741eb182f904f97d9c2bedd64df9aa00f1", + "rev": "5ea767c326bbe180e42be723605c0b03b16fdb06" + }, + "recipe": { + "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.746", + "deps": [] + }, + "cucumber-goto-step": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gstamp/cucumber-goto-step.git", + "sha256": "7d966792621cbe5a9ce1adfb96edfb07a43fbd51b585b89b8dc06a31a2a297a0", + "rev": "f2713ffb26ebe1b757d1f2ea80e900b55e5895aa" + }, + "recipe": { + "sha256": "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131209.2319", + "deps": [ + "pcre2el" + ] + }, + "strie": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hackscience/strie.el.git", + "sha256": "bc2efad0c9dce6d86e97dd144b757b478f3c9d33a1bea0c9785b945b4e6efaf5", + "rev": "066e72c39ed51162d7d7892c7451a6cac28581b7" + }, + "recipe": { + "sha256": "0i1bgjlwcc2ks8hzjkyrw924q4k8pcz8335z9935m73js0sq0lxl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140109.812", + "deps": [] + }, + "punctuality-logger": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/elzair/punctuality-logger.git", + "sha256": "d8f8e1bc61f21b3217ac92c532925a626997d49053521a77e400f8a7847e73ae", + "rev": "e09e5dd37bc92289fa2f7dc44aed51a7b5e04bb0" + }, + "recipe": { + "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141120.1431", + "deps": [] + }, + "obsidian-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/obsidian-theme.git", + "sha256": "0172da03a8c0a09daf35b8d12a9bd8a5ba432e2b03a40725baaa739e780c6203", + "rev": "0f92ce87245529d5c75d6e5f7862ebbc54bdbc92" + }, + "recipe": { + "sha256": "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140420.1143", + "deps": [] + }, + "firecode-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-firecode-theme.git", + "sha256": "d541500e0a432ac40d6b98a7da690b094d1ce0cda40dba7a430e04accc8e146d", + "rev": "73573192e5e9d14d94dfc5131dd2b7a780b89626" + }, + "recipe": { + "sha256": "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "less-css-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/less-css-mode.git", + "sha256": "c63413fb5345555348285558bdb587bf35a04ddcf3dd29c038595e8b381526bd", + "rev": "d59a3ff4031ae75fbbe77b6cfce7843205394c28" + }, + "recipe": { + "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150511.519", + "deps": [] + }, + "snapshot-timemachine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrBliss/snapshot-timemachine.git", + "sha256": "f508c041c55c8146866a0640827d06e86e8e1e6e57c33823a31946910caacb9e", + "rev": "5c1e29fc771ffc65180faa1366c85aa50a335773" + }, + "recipe": { + "sha256": "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150501.1300", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "python-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wavexx/python-x.el.git", + "sha256": "62e77dada58c7b8e4e06ff54441411c3d07e8403fcea09b47eb66a22e3f81a2a", + "rev": "1ffb8d748d1e01ca12ebf7ff93e0bade5cdf123a" + }, + "recipe": { + "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.909", + "deps": [ + "cl-lib", + "folding", + "python" + ] + }, + "el-spec": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/uk-ar/el-spec.git", + "sha256": "efe2408dd6030ff858729ba1e3d7ba219da4c1097cd7a2fb6b653256a6c10d68", + "rev": "1dbc465401d4aea5560318c4f13ff30920a0718d" + }, + "recipe": { + "sha256": "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121018.204", + "deps": [] + }, + "slime-annot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arielnetworks/cl-annot.git", + "sha256": "5c63ce9db677dd8c03c8b2987cf5d39bcb03892792846677f4cb14285d8fa33d", + "rev": "c99e69c15d935eabc671b483349a406e0da9518d" + }, + "recipe": { + "sha256": "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131230.2108", + "deps": [ + "slime" + ] + }, + "ruby-test-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/r0man/ruby-test-mode.git", + "sha256": "ace5b3115fb0bffb51cf28b48c480debecbf7ee5f94f0e881d0b434e80cdd019", + "rev": "b7a652b5d0492a3c712090787faa5f206c2af5fb" + }, + "recipe": { + "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.218", + "deps": [ + "ruby-mode" + ] + }, + "font-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/font-utils.git", + "sha256": "21a426b301cdbdf4b923423c289f7f1c37dbb426fb7b1dc32d03d395fd56616f", + "rev": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3" + }, + "recipe": { + "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150806.1251", + "deps": [ + "pcache", + "persistent-soft" + ] + }, + "digistar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/retroj/digistar-mode.git", + "sha256": "ba1d51dba40a6776175d491e7047d6566bcb1c204d6000b6456e72a3fc755866", + "rev": "fcc0447b9ad97ac76f86de7485e0947440966d3f" + }, + "recipe": { + "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150402.1922", + "deps": [] + }, + "yatex": { + "fetch": { + "tag": "fetchhg", + "url": "https://www.yatex.org/hgrepos/yatex/", + "sha256": "1n38fn6hcsl5ilq8vdaakv6id426lr7hdnvccqy6jdplqymgj7h6", + "rev": "5b49aea3810d" + }, + "recipe": { + "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.2228", + "deps": [] + }, + "phi-autopair": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/phi-autopair.git", + "sha256": "a5df86ea9306eba430df27bf90cf516e768c99548646e8db04e8e3dc9b35e091", + "rev": "ec4e02f3b1602a6450ece118c79d4beb2430ff08" + }, + "recipe": { + "sha256": "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150527.423", + "deps": [ + "paredit" + ] + }, + "dired-sort": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-sort.el", + "sha256": "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z" + }, + "recipe": { + "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090208.2238", + "deps": [] + }, + "navi2ch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/naota/navi2ch.git", + "sha256": "1ad8b269ca7d917e450ef2e8ca6c634ea39cad8351ce5a74162c06b3282e30d5", + "rev": "faebfd15184de9df6903eae436dafb52c38ee86e" + }, + "recipe": { + "sha256": "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150329.2116", + "deps": [] + }, + "dired-filetype-face": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jixiuf/dired-filetype-face.git", + "sha256": "4ea5150d4251d26df3b0a4a4de4b2e1558bf22f1c5a8b28d4e6799299ffe2dea", + "rev": "a54efd4c127067c90ea1181e1c40beb8aa80abbb" + }, + "recipe": { + "sha256": "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.2210", + "deps": [] + }, + "pandoc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joostkremers/pandoc-mode.git", + "sha256": "37340478289bfa5fd9693332c82edc8871f20968a62c661a4ef72f2b1b2d4f00", + "rev": "23444375a60f44b3439994e969d8aa7acf220f8c" + }, + "recipe": { + "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.513", + "deps": [ + "dash", + "hydra" + ] + }, + "highlight-parentheses": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/highlight-parentheses.el.git", + "sha256": "7280d58782e7e73df9ae5410f46d6bab37672ecd66d7aa0edd883f295c833e22", + "rev": "a821a314942f409cd69660d816cd9a0aebd1ae8f" + }, + "recipe": { + "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.116", + "deps": [] + }, + "elx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/elx.git", + "sha256": "8f12627cbded8035bb19660b5d06c2900ca9d7ea0047abcb6a6c528689d85b8b", + "rev": "8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb" + }, + "recipe": { + "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.905", + "deps": [ + "emacs" + ] + }, + "bibslurp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkmcc/bibslurp.git", + "sha256": "032ae8f0535712055dd9182bb4e790631a08501d4924c6df0b1cb319dd60e391", + "rev": "aeba96368f2a06959e4fe945375ce2a54d34b189" + }, + "recipe": { + "sha256": "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.1746", + "deps": [ + "dash", + "s" + ] + }, + "ensime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ensime/ensime-emacs.git", + "sha256": "fbcea8e51a0ea08a2a1e782ec5628e586e12aaa02c3da2b20522ebfb1012ba0a", + "rev": "dc203a1fd52e05dee4462eb7b9cfb2ea28b833ca" + }, + "recipe": { + "sha256": "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1416", + "deps": [ + "company", + "dash", + "popup", + "s", + "sbt-mode", + "scala-mode2", + "yasnippet" + ] + }, + "hyai": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/hyai.git", + "sha256": "26943fa452e9ca7337aa72eaf63b6fcd1534a5979efd69c64cbd23f2dba056ac", + "rev": "9e0a7848cacbf2c89da135e12ae3209470c512dc" + }, + "recipe": { + "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.935", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "hackernews": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clarete/hackernews.el.git", + "sha256": "08edfb412805a397097cfe3165713b1e26ebae23ff151a226cdfbe3e4e1d61e5", + "rev": "676d72da9fa4743dae34da95138fd022a51fbfdd" + }, + "recipe": { + "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150901.1017", + "deps": [ + "json" + ] + }, + "powerline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/powerline.git", + "sha256": "9a9b7ea855082e87ecb0bc0023c9e56fd332d60c44abd2cd207f8e9bfe36d66e", + "rev": "e886f6fe46c7413befb1de3799a185366fd8b39c" + }, + "recipe": { + "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151008.1649", + "deps": [ + "cl-lib" + ] + }, + "helm-sage": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/helm-sage.git", + "sha256": "b55e09e921dd73d30e0842276609eb7e553c9a2dd2c99af3cf86bacd2c95b784", + "rev": "b42b4ba5fd1b17c4b54c30376a053281686beeb8" + }, + "recipe": { + "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150827.2234", + "deps": [ + "cl-lib", + "helm", + "sage-shell-mode" + ] + }, + "skewer-less": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/skewer-less.git", + "sha256": "0a2050aee6eced6083bf553deb41edc5367e8fa79ebe8ea096635a557e3fe598", + "rev": "5a48dfa627c91f5f94150fab04cd66e890e3929f" + }, + "recipe": { + "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131015.822", + "deps": [ + "skewer-mode" + ] + }, + "eimp": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eimp.el", + "sha256": "024qyipwlj3g0fff06cgq357blkh3hyr14vpmkqsv15x6gb9snir" + }, + "recipe": { + "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140630.947", + "deps": [] + }, + "flymake-perlcritic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/illusori/emacs-flymake-perlcritic.git", + "sha256": "72c6a8eac6fbeffafce76724527896f22e55f4615cc952040a7a80fb481694b8", + "rev": "edfaa86500ddfa8a6a6f51f5581a81a821277df6" + }, + "recipe": { + "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120328.314", + "deps": [ + "flymake" + ] + }, + "dired-single": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-single.el", + "sha256": "1ys38kjnqvks8w207jv6y5yh30rarmib0p78ak761k9sldgd6wvx" + }, + "recipe": { + "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "oneonone": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/oneonone.el", + "sha256": "1810acc61dwdq80jwn5diwg9djzag3n1l9lql72bjkq21my320k5" + }, + "recipe": { + "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150821.1428", + "deps": [ + "hexrgb" + ] + }, + "emamux": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-emamux.git", + "sha256": "40416e8fdb31184f24f85b02747f4831f9445ab26fe42b0a6daeea6c1fdf9fa2", + "rev": "1bb88275e472e131c4c14590b48e2016861724a5" + }, + "recipe": { + "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.2302", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "itail": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/re5et/itail.git", + "sha256": "290b1162e74b6e327c275ccb89991ca731de638e30c51af2f6104934ab41e9ab", + "rev": "ff80d0456a0039062de1cf73932a5a32d46821b1" + }, + "recipe": { + "sha256": "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.1035", + "deps": [] + }, + "rings": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/konr/rings.git", + "sha256": "77ba4a7b1501a208724053b30e4df75bca8ae8080d091b5d5daa78560961ba46", + "rev": "1655dbf88ad877f54d67fab49f292945f70708eb" + }, + "recipe": { + "sha256": "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140102.1736", + "deps": [] + }, + "kill-or-bury-alive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/kill-or-bury-alive.git", + "sha256": "05460a9185d6bcf4d8aaad374316a1830bbab278ecb241ecb50df6e8e071c5f0", + "rev": "04fa76e5baa2fbdfac77c38007a8dacbf0a3f9bc" + }, + "recipe": { + "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.100", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "hiwin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshida-mediba/hiwin-mode.git", + "sha256": "137bdf828646a1aa08f3b1cbaf03a5a35d2b1d5b75a6f843ebb733fbf4a4eb9c", + "rev": "6ee8ed051405653bd9b7332d7e9fbb591d954051" + }, + "recipe": { + "sha256": "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150825.327", + "deps": [] + }, + "ggtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoliu/ggtags.git", + "sha256": "ba40a7b6c89688c5ea7b9b6ad17e95893d0153addfd7f3c5c99419dece8b8259", + "rev": "d2a88922591c2c0dc047e2aad9dc86364507c4da" + }, + "recipe": { + "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.2345", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "move-text": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/move-text.el", + "sha256": "0azda60cbz3kpvy6zd7pvlj40iwvj1zjdxv1brzqa6yfa4kyixv2" + }, + "recipe": { + "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140307.1044", + "deps": [] + }, + "ac-cake2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-ac-cake2.git", + "sha256": "9b738f3f0f1c7bb8dfad1f501fdd5ba67e772592d72ee4034a1f099d68839556", + "rev": "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a" + }, + "recipe": { + "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140320.208", + "deps": [ + "auto-complete", + "cake2" + ] + }, + "elog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lujun9972/elog.git", + "sha256": "fa3c6ce3c473d363caec46267e23ebebdfe059858a8970a06e3170329e87dba7", + "rev": "03c275877301c72fbc61d5fdd72efe5fdc0b6e98" + }, + "recipe": { + "sha256": "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.1937", + "deps": [ + "eieio" + ] + }, + "cfengine-code-style": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cfengine/core.git", + "sha256": "d373c60867db4125313b7809ab3be522420f214e2d95ec0080f7946f1ce005bc", + "rev": "f235637ccfa756d91f042f5254f44631a8840389" + }, + "recipe": { + "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131209.611", + "deps": [] + }, + "rpm-spec-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bjorlykke/rpm-spec-mode.git", + "sha256": "5b6f7dc05c98a51e110523227fc16ee14693f8947bffe6a61dc391a91d362b07", + "rev": "7d06d19a31e888b932da6c8202ff2c73f42703a1" + }, + "recipe": { + "sha256": "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150411.1055", + "deps": [] + }, + "jscs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/papaeye/emacs-jscs.git", + "sha256": "650f62973382801094ad42f10c3d250b183f0909e040ca06eda9b8824d2b4806", + "rev": "9d39d0f2355e69a020bf76242504f3a33e013ccf" + }, + "recipe": { + "sha256": "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151015.1249", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "fm-bookmarks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kuanyui/fm-bookmarks.el.git", + "sha256": "239ff1786f814ea24cdef8de8ecdd9348b3da6eaa2bd016b82ed521b1c740425", + "rev": "e1440334a4fe161bd8872996b6862d079d8eb24e" + }, + "recipe": { + "sha256": "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.803", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "corral": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nivekuil/corral.git", + "sha256": "dcfb6994ba64224c8e64629519f002c22499966dd03d28313d556e38d3eb32e1", + "rev": "9a5ab7f293a23a4fec77ab4fb442d69ecfcc293f" + }, + "recipe": { + "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.1809", + "deps": [] + }, + "look-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/look-mode.el", + "sha256": "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp" + }, + "recipe": { + "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1226", + "deps": [] + }, + "cacoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-cacoo.git", + "sha256": "45f2ad464ea9f76e1c66eababee9aa856e7d083ea2f03d9868181aa616b897ef", + "rev": "c9fa04fbe97639b24698709530361c2bb5f3273c" + }, + "recipe": { + "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120319.1859", + "deps": [ + "concurrent" + ] + }, + "widget-mvc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-widget-mvc.git", + "sha256": "4eba3ef04d97bc132e3d3fbd8b25897b36f6aa6d8c2149207ca5968fea301b3b", + "rev": "2576e6f0c35d8dedfa9c2cd6ea4fb4c14cb72b63" + }, + "recipe": { + "sha256": "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.2206", + "deps": [] + }, + "sprintly-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sprintly/sprintly-mode.git", + "sha256": "70f39254a69befab2cd4c069310dc51a92b566bece821fd2ed43b1f951e0a920", + "rev": "6695892bae5860b5268bf3ae62be990ee9b63c11" + }, + "recipe": { + "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121006.34", + "deps": [ + "furl" + ] + }, + "org-alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/groksteve/org-alert.git", + "sha256": "7b4328d690058cd3552f02415ea4f2aeb29e183dc3e981079969fbfa448efb7b", + "rev": "d9b73febcc4f211406521786a39853c6bc6dd1bf" + }, + "recipe": { + "sha256": "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.537", + "deps": [ + "alert", + "dash", + "s" + ] + }, + "dtrace-script-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dotemacs/dtrace-script-mode.git", + "sha256": "8ea6f445fa1829deea125ad078cced03b5d087aa84f42cdd6a71b42ef2e88eae", + "rev": "801af1ef16075d31a19830ebb8404bbf3a322f10" + }, + "recipe": { + "sha256": "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150214.23", + "deps": [] + }, + "multi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kurisuwhyte/emacs-multi.git", + "sha256": "bd4bebeb7c3243fad37f4fe2b7b7621495c9ce75a4e16d390f0f02fcaa61b038", + "rev": "0987ab71692717ed457cb3984de184db9185806d" + }, + "recipe": { + "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131013.1044", + "deps": [ + "emacs" + ] + }, + "eclipse-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/eclipse-theme.git", + "sha256": "bc54027937aa0a82e28624aeb76097ba878a1ffe07b394b78201923b5133aaef", + "rev": "222f5b37d9c0573f752aa6097c677c91af9d2427" + }, + "recipe": { + "sha256": "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150929.801", + "deps": [] + }, + "json-reformat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/json-reformat.git", + "sha256": "c1dc4b00ab7dcf8df82606986fcdf84f11c515888ef1818ce0370f36b2524660", + "rev": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716" + }, + "recipe": { + "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.1100", + "deps": [] + }, + "unicode-whitespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-whitespace.git", + "sha256": "1995620e374e660bf7cb5651c344d539cb3477eaa9541bab2240de591d205798", + "rev": "a18c6b38d78b94f2eb1dcc4cb4fa91b6a17efabe" + }, + "recipe": { + "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "list-utils", + "pcache", + "persistent-soft", + "ucs-utils" + ] + }, + "kakapo-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/listx/kakapo-mode.git", + "sha256": "80d4998bd5cf67a1e3b08ee3d15e5d42bd58f87512aadbc3271bd86c2172ca2c", + "rev": "fe3d579867f7465cd3ad04f29b4b2b3b820edc01" + }, + "recipe": { + "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.2352", + "deps": [ + "cl-lib" + ] + }, + "pretty-lambdada": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pretty-lambdada.el", + "sha256": "0qda87pz137ki2527v2ji74nibazwxh8ykqv26315z6pz0q1dkin" + }, + "recipe": { + "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1841", + "deps": [] + }, + "pretty-sha-path": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/pretty-sha-path.el.git", + "sha256": "e2b2775316e34d67a382059f51269a1475b916f32752efb3eb7164e32e9decb8", + "rev": "a2b43dd9de423a38d67cda2e3bd9412f7d363257" + }, + "recipe": { + "sha256": "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141105.1226", + "deps": [] + }, + "omni-tags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-tags.el.git", + "sha256": "5fbfc42962288a8fe35c8489355c3043a27c751c4d91b3f4ea66bcd22856fdf6", + "rev": "3f88b087d492e8ef742416d6e4bf8be41e5a46c4" + }, + "recipe": { + "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150513.1253", + "deps": [ + "cl-lib", + "pcre2el" + ] + }, + "hcl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-hcl-mode.git", + "sha256": "87f3f5c568e2694eae1c6e8e83adfdfe5bff63cbedfab5004ebc7560d9765b94", + "rev": "5a5e490509452a1882bea43952e248682577ed2d" + }, + "recipe": { + "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151002.2249", + "deps": [ + "cl-lib" + ] + }, + "polymode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vitoshka/polymode.git", + "sha256": "e1a9c583f74940b92b5b4deb8f07245696372305a76a54deaf16adff79d39c94", + "rev": "b9dc94728e168e0d9365ac6a94c81bdf93df66f3" + }, + "recipe": { + "sha256": "0ndavaan7k55l3ghm5h08i0slmmzc82c0gl4b8w91fa8bi2lq4h4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.1014", + "deps": [ + "emacs" + ] + }, + "restclient": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pashky/restclient.el.git", + "sha256": "7d4fc3e9d3b5348c419c2ad49a1ce0204a6a8a819b28bec238b4f524c1a94422", + "rev": "2075b17e2f8e118cf0739e4087f791ed724be1ad" + }, + "recipe": { + "sha256": "14wxfhb17n2f9wil68lb05abj7m0whwkqvrm3y9dg9mh14lcpbvc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.1712", + "deps": [] + }, + "lentic-server": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/lentic-server.git", + "sha256": "775dab63ede9cb4b4b5f523192329324222dad2836eb7f746b3d8740249b91b2", + "rev": "533e0eadb2dd79c50da7de8fc1d6e6f1e99bd6ff" + }, + "recipe": { + "sha256": "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150320.826", + "deps": [ + "lentic", + "web-server" + ] + }, + "tfs": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tfs.el", + "sha256": "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v" + }, + "recipe": { + "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120508.1320", + "deps": [] + }, + "emms-soundcloud": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osener/emms-soundcloud.git", + "sha256": "8dfecf457196c610a0db8166d2411a38e3e65568d0ba35a10d4a55e9ca5aa55b", + "rev": "87e5cbf9609d1f26c24dc834fdeb78b33d453c2b" + }, + "recipe": { + "sha256": "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131221.545", + "deps": [ + "emms", + "json" + ] + }, + "abl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/afroisalreadyinu/abl-mode.git", + "sha256": "0ed55827c3ba2b6bc54f82f78349f99b0c5204e1acb5d13eb5b77143b0f93920", + "rev": "5a2a65cc5eb1dc2ee80c8b64a7ea352a444abfdb" + }, + "recipe": { + "sha256": "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.335", + "deps": [] + }, + "page-break-lines": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/page-break-lines.git", + "sha256": "77be7733c259b3f0fc0dacb9952c940a9026f656a8ce8be6e0a27b79fb59e228", + "rev": "36d3f93a23b767e7558b9c90f3631b03ce9fbdce" + }, + "recipe": { + "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150226.1017", + "deps": [] + }, + "kpm-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/KMahoney/kpm-list.git", + "sha256": "1d944ff50c5220c93357efbb4b4287dbb773008e15055ca280d77aca688f30d5", + "rev": "397912496d42e57c261ff6d33edc8fc029479b8b" + }, + "recipe": { + "sha256": "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130131.348", + "deps": [] + }, + "edbi-sqlite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/edbi-sqlite.git", + "sha256": "c27f6757ca20befa2ce00029e62390055751df1e27e4be9ab730620687dbe6d5", + "rev": "929009365529b56daec172b87d7632240b15be1f" + }, + "recipe": { + "sha256": "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150115.1301", + "deps": [ + "edbi", + "emacs" + ] + }, + "rope-read-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marcowahl/rope-read-mode.git", + "sha256": "1a3b483b87bb8b857c1d988796cb661702b663a0941f7a7071c66c6a119ab9d6", + "rev": "8837e18405f96aab34821e890141ecf6b749bb73" + }, + "recipe": { + "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.1705", + "deps": [] + }, + "desktop+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ffevotte/desktop-plus.git", + "sha256": "50cc77e0a38624833fb6364d3191a038a7f0fd08262c0e9b6f6d52912e211aec", + "rev": "8ef242d0aa6f715ff4c5abbc4ee6be66a90ffedd" + }, + "recipe": { + "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151004.1440", + "deps": [ + "dash", + "emacs", + "f" + ] + }, + "smart-indent-rigidly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/re5et/smart-indent-rigidly.git", + "sha256": "5143da5cdbb61e0b6c9f3ed7b0fe1f6e6d69de8c7f8a4dd97da9a962c4ebb060", + "rev": "323d1fe4d0b81e598249aad01bc44adb180ece0e" + }, + "recipe": { + "sha256": "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141205.1815", + "deps": [] + }, + "colemak-evil": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/patbl/colemak-evil.git", + "sha256": "c211d3486b8c0e4e1cb959b58597916c1c6a4fca1a9e1b57af955379516b39ee", + "rev": "cd2c75848ab0ad1aec42ca421d03a923166fa228" + }, + "recipe": { + "sha256": "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1812", + "deps": [ + "evil" + ] + }, + "elnode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/elnode.git", + "branchName": "melpa", + "sha256": "1c22485d6b9aca32157e5025199de5bea27d515f27a7d9484468a8f976916c5c", + "rev": "3f2bf225853e40a2a10386ee5ae0bd6ba5d44ce9" + }, + "recipe": { + "sha256": "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140203.1706", + "deps": [ + "creole", + "dash", + "db", + "fakir", + "kv", + "noflet", + "s", + "web" + ] + }, + "bash-completion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/szermatt/emacs-bash-completion.git", + "sha256": "2464bf180b5a39e552bbd5f72d676246d5731660ca527123cb86259f7d2efa55", + "rev": "1659c7ca38e2cf591525a3d0b9d97461de33916d" + }, + "recipe": { + "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150514.928", + "deps": [] + }, + "php-refactor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/keelerm84/php-refactor-mode.el.git", + "sha256": "fd01f8fbef37092496e5cbe035236182cc44fbae265c152547c5ee1b49ce40bb", + "rev": "9010e5e8dde2ad3a2c7a65ff1752b5482dfd4f61" + }, + "recipe": { + "sha256": "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140920.1611", + "deps": [] + }, + "perlbrew": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kentaro/perlbrew.el.git", + "sha256": "46e0f44b1063c4eb403566bedb6551c9e6e896befa3fdbbab1f4b9dff165e071", + "rev": "30e14a606a08948fde5eafda2cbe1cd4eb83b3f3" + }, + "recipe": { + "sha256": "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130127.524", + "deps": [] + }, + "download-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/download-region.git", + "sha256": "d94ebef9f11146dddf22903d0e8092b7981ac6a10760ca9adabedc1573f9873d", + "rev": "51fc808e10803f695ea3d24c22e1af27e080903d" + }, + "recipe": { + "sha256": "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.232", + "deps": [ + "cl-lib" + ] + }, + "swoop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/emacs-swoop.git", + "sha256": "2929778655ddf5c1992f3bd2035c40a4ea76394760afef1713d0fdd3a3b31aac", + "rev": "80a5df8edb86efd9885073b3ec6f475d8b969adf" + }, + "recipe": { + "sha256": "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140605.1610", + "deps": [ + "async", + "emacs", + "ht", + "pcre2el" + ] + }, + "angular-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omouse/angularjs-mode.git", + "sha256": "9e20566b3a6aca00f1379974bdf180febee88db3af996bb549ab68a1b2bfa63a", + "rev": "8720cde86af0f1859ccc8580571e8d0ad1c52cff" + }, + "recipe": { + "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1527", + "deps": [] + }, + "vertigo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/noctuid/vertigo.el.git", + "sha256": "542c531de9f0bce41baa6aa28d33fcf661354fb2b8a5c75fe979178cd723086d", + "rev": "fecc566e9039408303f9b1c979624d546152b7df" + }, + "recipe": { + "sha256": "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.2213", + "deps": [ + "dash" + ] + }, + "flycheck-ats2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/drvink/flycheck-ats2.git", + "sha256": "d0866dac7619eb56a7efa8b0f43b1ff89a4784d9a71f850355b5e38ccd466f3d", + "rev": "431e46d5bbd20941c26270c7ba6872c86451348b" + }, + "recipe": { + "sha256": "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.807", + "deps": [ + "emacs", + "flycheck" + ] + }, + "supergenpass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ober/sgpass.git", + "sha256": "618c7169151e612671e343c506a90883d83102ad313fce6153830835bfd50254", + "rev": "549072ef7b5b82913cadd4758e8a0a9926f0a04a" + }, + "recipe": { + "sha256": "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130329.48", + "deps": [] + }, + "iodine-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/srdja/iodine-theme.git", + "sha256": "6356a29d707b82390bee429dd60a1dea518189e3f47a18fecc041ee690eaee93", + "rev": "02fb780e1d8d8a6b9c709bfac399abe1665c6999" + }, + "recipe": { + "sha256": "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.1139", + "deps": [ + "emacs" + ] + }, + "mkdown": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ajtulloch/mkdown.el.git", + "sha256": "b372e045dbe74cf1e528c658d8effceb70ba5384204aefad210407eb988808b4", + "rev": "8e23de82719af6c5b53b52b3308a02b3a1fb872e" + }, + "recipe": { + "sha256": "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140517.918", + "deps": [ + "markdown-mode" + ] + }, + "ctxmenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-ctxmenu.git", + "sha256": "8b1340e36d68e5adcbc6083b6c8e151525e512cf7a53262634e069cc631599ca", + "rev": "5c2376859562b98c07c985d2b483658e4c0e888e" + }, + "recipe": { + "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140303.1542", + "deps": [ + "log4e", + "popup", + "yaxception" + ] + }, + "python-environment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-python-environment.git", + "sha256": "35d9b16085dcfc957ea189dadc6a3a4fbdf1ec6787c1b1228f90e973c8621c2a", + "rev": "401006584e32864a10c69d29f14414828909362e" + }, + "recipe": { + "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150310.353", + "deps": [ + "deferred" + ] + }, + "flymake-phpcs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senda-akiha/flymake-phpcs.git", + "sha256": "f6424371d6403360abcd1cd4d6224659a71a6b796fc80ba7632a04f67d003f56", + "rev": "a4d383474e055e554aaf1cd617055d5d7181aa50" + }, + "recipe": { + "sha256": "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140713.131", + "deps": [ + "flymake-easy" + ] + }, + "gotham-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/gotham-theme.git", + "sha256": "10717add291b66e3e09292454eedc48a41bf74de5642705c483e274e4d89bf5f", + "rev": "d41b0ea37ad5a4d0060ea05e25d80581f113b662" + }, + "recipe": { + "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.358", + "deps": [] + }, + "evil-quickscope": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/blorbx/evil-quickscope.git", + "sha256": "e7a4256a7c47f86def529dad058a90af1b94da74a850ac42c7f0430182cfa57b", + "rev": "d2f512fa4bd0b0603529a441e474ca551f621650" + }, + "recipe": { + "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150929.1448", + "deps": [ + "evil" + ] + }, + "hl-line+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hl-line+.el", + "sha256": "023l9f74kmg66j2rj5h39b4l6svdd48i4h3bdvq8lwy0lz58g889" + }, + "recipe": { + "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1622", + "deps": [] + }, + "lenlen-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/lenlen-theme.git", + "sha256": "c5fc644261965ffb3a01417c9efca59eff193ce814e9a972e47a7c8523266829", + "rev": "05202458fa0a5242e5c6e4451e375f6c16920272" + }, + "recipe": { + "sha256": "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150307.211", + "deps": [ + "color-theme-solarized" + ] + }, + "orgtbl-aggregate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tbanel/orgaggregate.git", + "sha256": "fe5b7b3b16c331190ccd443f34b52d21cbffd642b0f4d6ae8fea5e57b519b1e8", + "rev": "16b54b2be7cbb87aab9498c0ab7b8bca0f73cb59" + }, + "recipe": { + "sha256": "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1018", + "deps": [] + }, + "cssfmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/KeenS/cssfmt.el.git", + "sha256": "3e41911495416dcd9e685b248cee6de098b172f787ab560c50f3a3756a24ce43", + "rev": "802c82a1aa8d433ec473e253ae1fa4ecad3fb4b0" + }, + "recipe": { + "sha256": "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150818.2328", + "deps": [] + }, + "color-theme-buffer-local": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vic/color-theme-buffer-local.git", + "sha256": "7d32eb146147f908c02eb2e5562733f34ed117d410d72bf9df1c2932bc4c6c3f", + "rev": "ca8470bc34c65a026a6bca1707d95240bfd019af" + }, + "recipe": { + "sha256": "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151012.1828", + "deps": [ + "color-theme" + ] + }, + "xbm-life": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/xbm-life.git", + "sha256": "e598c88c14b4fb9255e218b4eeaf2385ea53a02031ad083382ff95d0dff1f0a5", + "rev": "1f0b9863e33ba68c29e02c5fa8c29ec032e6772c" + }, + "recipe": { + "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.220", + "deps": [] + }, + "grails-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Groovy-Emacs-Modes/groovy-emacs-modes.git", + "sha256": "f06dee27122cb7756a5092497212be7f35e2e4e06d950b0f771b0b2fedff88c5", + "rev": "74f360ee1ad25755707a89bec9eeed571b6748d0" + }, + "recipe": { + "sha256": "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.154", + "deps": [] + }, + "flymake-lua": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sroccaserra/emacs.git", + "sha256": "9bf5e7478c2afd17d1242d32fc5fe09a00f37930698b05ca8556f870b99fe7bb", + "rev": "ee23c427a8eb01773c87e215d0e61cd8b5b5fe76" + }, + "recipe": { + "sha256": "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140310.430", + "deps": [] + }, + "elpa-mirror": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/elpa-mirror.git", + "sha256": "0ab91234502a62610271347718f0769982e41e6265c1082055c3683a87dd55c2", + "rev": "6c32875c2317736e590e067820996010b21acb1d" + }, + "recipe": { + "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.653", + "deps": [] + }, + "e2wm-bookmark": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/e2wm-bookmark.el.git", + "sha256": "00be8e800d331110c58dcc2c72925e54c9e0e0a3b2722ddbc67d09e208693b88", + "rev": "bad816b6d8049984d69bcd277b7d325fb84d55eb" + }, + "recipe": { + "sha256": "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.2321", + "deps": [ + "e2wm" + ] + }, + "p4": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gareth-rees/p4.el.git", + "sha256": "ed284ec82619c7b1fac4a5c0731135faa9f337666415b580f368f975002cc46d", + "rev": "eff047caa75dbe4965defca9d1212454cdb755d5" + }, + "recipe": { + "sha256": "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150721.1437", + "deps": [] + }, + "review-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kmuto/review-el.git", + "sha256": "90697f329b34824ed405c467cadc63c0054655ea1f7e8af268a9ea3391f1fa53", + "rev": "d043b227eb1cd10361f8117c17de9a67caebe96a" + }, + "recipe": { + "sha256": "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.812", + "deps": [] + }, + "peacock-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-peacock-theme.git", + "sha256": "032a7b7afae146884a30e2d39d2d98d8b9cdb8dd49b8025f74ee721977cd9bb2", + "rev": "268a2a7eb48ac750fc939657169ec65f2ac0f4f7" + }, + "recipe": { + "sha256": "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "edit-server": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stsquad/emacs_chrome.git", + "sha256": "59059059edcd5a484df559b1556ca6a4b86ba1a7cb7501dadca6d1bb02876267", + "rev": "0a50fbb524fe256560f481701c000309c627b9ca" + }, + "recipe": { + "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141231.1558", + "deps": [] + }, + "imakado": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/imakado/emacs-imakado.git", + "sha256": "01697d294cbc5bbb2189cc1ce4484dc180e970ef80456798f95baafd05821bab", + "rev": "00a1e7eea2cb9e9066343a23927d6c747707902f" + }, + "recipe": { + "sha256": "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.423", + "deps": [] + }, + "dynamic-ruler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rocher/dynamic-ruler.git", + "sha256": "05125630107314e243bb2aae034e5b8127b6664123b4c085cdf7e9381d9952cb", + "rev": "06318152d6831b1b0cfd814b4f4150a00b47ef67" + }, + "recipe": { + "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150826.1609", + "deps": [] + }, + "fontawesome": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-fontawesome.git", + "sha256": "cfcc536d23a01a8359ca4f96cb92d5b1dd19c5248babdbab343b9142f54c3ae2", + "rev": "66650efea4a044afe0e5f482ccac465082cd5e62" + }, + "recipe": { + "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.830", + "deps": [ + "cl-lib", + "helm-core" + ] + }, + "langdoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tom-tan/langdoc.git", + "sha256": "ced1f335382d6fd13be2943a10dfede0c6ac041a6f24a73ddada47a2fb896c6b", + "rev": "2c7223bacb116992d700ecb19a60df5c09c63424" + }, + "recipe": { + "sha256": "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150218.45", + "deps": [ + "cl-lib" + ] + }, + "o-blog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/renard/o-blog.git", + "sha256": "bc56e26405fb8312fbb115fec4850231c5251743b3d37cbfeeaff25c8946dd6c", + "rev": "e466c59478feddc8126c43c1b98550474af484c0" + }, + "recipe": { + "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.1739", + "deps": [] + }, + "love-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/love-minor-mode.git", + "sha256": "d41bb10f0e9c7b5af36083af562c4d00ee1ffa9cb1412797b9655138fe25399d", + "rev": "31c3fc1ecd31f72f0f736014a4ff905eb3742e74" + }, + "recipe": { + "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130429.1659", + "deps": [ + "lua-mode" + ] + }, + "erc-hl-nicks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/erc-hl-nicks.git", + "sha256": "79a50c10f4d9f6440018926ef0dc3d63cd64a7c387bd10ff05efeb8b8b725040", + "rev": "e536ea57f842f85ecda5a28ceed24cd506b7be2c" + }, + "recipe": { + "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140619.722", + "deps": [] + }, + "quickref": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pd/quickref.el.git", + "sha256": "7ef58cadcc908a0ee43a80337c4f1688f1b100febe7b7ffb36cd45def0c5f8c4", + "rev": "cfedf98c6b8b679b93296f7436e1fb4c2cc7ad25" + }, + "recipe": { + "sha256": "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130113.1700", + "deps": [ + "dash", + "s" + ] + }, + "dash-functional": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/dash.el.git", + "sha256": "2caeefc9b4ee58818efc2a76d3e17c39f4a2b60dbc023cf343ac376067ddff91", + "rev": "6484fb5e77140d7028ac2a96f356385b40d81197" + }, + "recipe": { + "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.613", + "deps": [ + "dash", + "emacs" + ] + }, + "pdf-tools": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/politza/pdf-tools.git", + "sha256": "6e82b64ff57c1066751dd0dc16bf47e1b0e73ac6853493c5ba9da94771753a2b", + "rev": "aac3bdc43eb6ea78dcf7c59653c9aa526fb41f1f" + }, + "recipe": { + "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1658", + "deps": [ + "emacs", + "let-alist", + "tablist" + ] + }, + "beacon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/beacon.git", + "sha256": "9af76de0d71a2ae032eab254d91a2b175d9eb8cabe69bb70c16c32c468ab9fa9", + "rev": "0353da8dd7f78179a721f42cec4df8c23f0908f2" + }, + "recipe": { + "sha256": "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1203", + "deps": [ + "seq" + ] + }, + "image+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-imagex.git", + "sha256": "1746922e553afb50eb0b8ff3cd4b1e323b2c96af5632ea2b98eaa944a90bed9e", + "rev": "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc" + }, + "recipe": { + "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150707.1116", + "deps": [ + "cl-lib" + ] + }, + "dockerfile-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/spotify/dockerfile-mode.git", + "sha256": "b46a6d3e1b57a5f05268823da2a53b05ecd337b86bd7f7e09affd3af37142b71", + "rev": "40be396417535c6721c1b13ca9f99c46192f1d73" + }, + "recipe": { + "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.1057", + "deps": [] + }, + "telepathy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/telepathy.el.git", + "sha256": "8c690fc860b1bdec9d2d6424c5b72b557f6066af0036914bd33ec44fc90d799a", + "rev": "211d785b02a29ddc254422fdcc3db45262582f8c" + }, + "recipe": { + "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131209.658", + "deps": [] + }, + "flycheck-haskell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-haskell.git", + "sha256": "c50bcfe4233247fcf45e805e5c25eee233de4eb3066f4ec22fe155b3c39406a3", + "rev": "d83da3ff856ac59b84e3d84598a5bb30c288bd55" + }, + "recipe": { + "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1347", + "deps": [ + "dash", + "emacs", + "flycheck", + "haskell-mode", + "let-alist", + "seq" + ] + }, + "handoff": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/handoff.el.git", + "sha256": "391c2258c0768e67ec75c2b1804b31959965ba1562e5ffe36316369458461672", + "rev": "75dc7a7e352f38679f65d0ca80ad158798e168bd" + }, + "recipe": { + "sha256": "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150917.100", + "deps": [] + }, + "evil-iedit-state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/evil-iedit-state.git", + "sha256": "0f68dee1632ea8c5a2ae20c6afd26cec0272b421890bb5c997247f91d25b9326", + "rev": "153de161d5a272e3740dd862a3b7530b4240bcf8" + }, + "recipe": { + "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141217.1934", + "deps": [ + "evil", + "iedit" + ] + }, + "unicode-enbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/unicode-enbox.git", + "sha256": "c46645b5d78c6374273a33a44188feeb9cf7f85b26cf422bb5568539052fe811", + "rev": "77074fac1994a4236f111d6a1d0cf79ea3fca151" + }, + "recipe": { + "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "list-utils", + "pcache", + "persistent-soft", + "string-utils", + "ucs-utils" + ] + }, + "arduino-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bookest/arduino-mode.git", + "sha256": "1062865641d61a07243a96bc1cf1a9eef32aee2c079220ef8be48a4c059939c7", + "rev": "bb89ac81e9b206a6da5653fd108a315ad3e8a8d7" + }, + "recipe": { + "sha256": "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.135", + "deps": [] + }, + "flycheck-pos-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-pos-tip.git", + "sha256": "80dfa60f2af94937d2401db5f5714d1b9f3ed535a93ac2b6b0db345bbb349ee2", + "rev": "6209525c675832ae4026d1458cb14fdd9e4b7527" + }, + "recipe": { + "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.258", + "deps": [ + "dash", + "flycheck", + "pos-tip" + ] + }, + "subatomic256-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d11wtq/subatomic256.git", + "sha256": "085f4ac10b86f23d1ebc7b45de0e33b75ba7284f8402c13985b708867d8df5f0", + "rev": "326177d6f99cd2b1d30df695e67ee3bc441cd96f" + }, + "recipe": { + "sha256": "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130620.2110", + "deps": [] + }, + "evil-paredit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/evil-paredit.git", + "sha256": "179d7d5ad76179d2287e43d59b47dd543e8232237448918478845e7535f1082c", + "rev": "e058fbdcf9dbf7ad6cc77f0172d7517ef233d55f" + }, + "recipe": { + "sha256": "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150413.1548", + "deps": [ + "evil", + "paredit" + ] + }, + "ac-dcd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atilaneves/ac-dcd.git", + "sha256": "8bd27e3f90bfafdcc6a6f4fcef3d88a3cbff0f747c8a2000ffb9cd9865f31a62", + "rev": "8fe1a48fcfeeafa1970e5041b0e71a4fcd10f336" + }, + "recipe": { + "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.924", + "deps": [ + "auto-complete", + "flycheck-dmd-dub" + ] + }, + "es-windows": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/es-windows.git", + "sha256": "bce3c91e760a15b53e1469bb8af63febace3c2fb398d8c60ec1f93db2603b3ba", + "rev": "239e30408cb1adb4bc8bd63e2df34711fa910b4f" + }, + "recipe": { + "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140211.304", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "find-by-pinyin-dired": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/find-by-pinyin-dired.git", + "sha256": "9d6006ffdc025fb0328e2bcb8f301ed3ec8d7fef38dedf48ff724f841f505214", + "rev": "d049cc7f507a6f801c497a3d401b260300874f58" + }, + "recipe": { + "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.416", + "deps": [] + }, + "metascript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/metascript/metascript-mode.git", + "sha256": "bc4d1fd0aef5b898d39bd1525c15968a1ae406f8367b8647d463220af235ce10", + "rev": "edb361c7b0e5de231e5334a17b90652fb1df78f9" + }, + "recipe": { + "sha256": "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150708.1957", + "deps": [ + "emacs" + ] + }, + "helm-helm-commands": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/helm-helm-commands.git", + "sha256": "f6320082f041dd825318bc93181cd1466494a37b00f27f7d255264454a777a16", + "rev": "3a05aa19c976501343ad9ae630a36810921a85f6" + }, + "recipe": { + "sha256": "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130902.1248", + "deps": [ + "helm" + ] + }, + "smart-mode-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/smart-mode-line.git", + "sha256": "1ea483bce9c30c99248518c35001f6fa4bb13f9689198b4cd639ab9e2eb6a89e", + "rev": "4b3265ec3e442bd8c596b99cfd4ec73424c395ec" + }, + "recipe": { + "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.837", + "deps": [ + "emacs", + "rich-minority" + ] + }, + "apu": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/apu.el", + "sha256": "1g70yzfsn4wg077biwf2ja6gj1qv728s2map3a1njy664ga3r1k4" + }, + "recipe": { + "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150710.2151", + "deps": [] + }, + "live-py-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/donkirkby/live-py-plugin.git", + "sha256": "cb68a077a30baa9734d5528c6579f8c76f434de47538575c893c0d170ea86f3a", + "rev": "35dda7dadba37ffbcc14d3b0a2711ca4967f1db5" + }, + "recipe": { + "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.1107", + "deps": [ + "emacs" + ] + }, + "virtualenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aculich/virtualenv.el.git", + "sha256": "18d149689022146d338e82726718413e91137ec2456d2f866ce80863b687a765", + "rev": "276c0f4d6493b402dc4d22ecdf17b2b072e911b3" + }, + "recipe": { + "sha256": "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140220.1701", + "deps": [] + }, + "pos-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pitkali/pos-tip.git", + "sha256": "43b8b715e052c32b20416388350d444294f247cb44c65c992dce4898cda11099", + "rev": "051e08fec5cf30b7574bdf439f79fef7d42d689d" + }, + "recipe": { + "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150318.1013", + "deps": [] + }, + "empos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimalik/empos.git", + "sha256": "1668583b29cf0a22a5c7f1faff92df501bfba709de4fe8b6fb4dbcb36d67a02e", + "rev": "7b99ad30e56937adb7e6349777e5a2045597d564" + }, + "recipe": { + "sha256": "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151011.1416", + "deps": [] + }, + "helm-gitlab": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/emacs-gitlab.git", + "sha256": "ae98ce8189b225c44b7a0ca8652bd946b2ccddf68405aba2273dae411e318df7", + "rev": "78deece7f314f9652b50117605e93be9f8c860f4" + }, + "recipe": { + "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150604.233", + "deps": [ + "dash", + "gitlab", + "helm", + "s" + ] + }, + "smart-shift": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hbin/smart-shift.git", + "sha256": "68e21f2db070c5d6fb26127fa7dc6013f1fa44372edd1149976fae509d73f02b", + "rev": "a26ab2b240137e62ec4bce1698ed9c5f7b6d13ae" + }, + "recipe": { + "sha256": "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150203.125", + "deps": [] + }, + "jabber": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.code.sf.net/p/emacs-jabber/git", + "sha256": "1a0f7c2154f863dbefc732a2057d0f7416cb4cd5764bdfa01cbf9e221a3abcb3", + "rev": "d5bfa1c62e6474a997e73a836524fdd322c0af44" + }, + "recipe": { + "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.1804", + "deps": [ + "fsm" + ] + }, + "magit-gerrit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/terranpro/magit-gerrit.git", + "sha256": "bbbbdcd87474e8bd407490f4da1fc7bdce7d3e003b489699eb75595dfe811962", + "rev": "c4e3da19d55229feef8df2e062104ecc9fd4290d" + }, + "recipe": { + "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.1818", + "deps": [ + "magit" + ] + }, + "bubbleberry-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jasonm23/emacs-bubbleberry-theme.git", + "sha256": "48b4657882137c892aa427f03529e5aef9e79dc489929c0118936c1a7f460aaa", + "rev": "22e9adf4586414024e4592972022ec297321b320" + }, + "recipe": { + "sha256": "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141017.444", + "deps": [ + "emacs" + ] + }, + "org-pomodoro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lolownia/org-pomodoro.git", + "sha256": "f777853f661559b761f0df05bbc452593e42bff9e900c29215f110e50b16bce0", + "rev": "749ec04434cae33cdb5c33f1afff0801fb1515d0" + }, + "recipe": { + "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151020.607", + "deps": [ + "alert", + "cl-lib" + ] + }, + "buster-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/buster-snippets.el.git", + "sha256": "a1b627fc446d628fd3a4b95553f3b678ef0523f41d448368e4ccce4a9aed0b67", + "rev": "bb8769dae132659858e74d52f3f4e8790399423a" + }, + "recipe": { + "sha256": "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.410", + "deps": [ + "yasnippet" + ] + }, + "monokai-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/oneKelvinSmith/monokai-emacs.git", + "sha256": "23ece4c7746694079eec5a343c2855ba0566630845653c02b5d4ee8470157527", + "rev": "451a46930b9c5420d526505abe8f157a7292644e" + }, + "recipe": { + "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.507", + "deps": [] + }, + "cloud-to-butt-erc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/cloud-to-butt-erc.git", + "sha256": "ee4e548c3571b308edd910dfc60b4222138c75f59c3091a49f5c9771cdb27b1e", + "rev": "6710c03d1bc91736435cbfe845924940cae34e5c" + }, + "recipe": { + "sha256": "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130627.1808", + "deps": [] + }, + "kurecolor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/kurecolor.git", + "sha256": "df89f5e24502aadd6bf615129221f523ca95ded779d775b889006fe36ef24435", + "rev": "c8c72cea04e51f57701d2dd9be7dba5f3412e2f3" + }, + "recipe": { + "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150423.2322", + "deps": [ + "emacs", + "s" + ] + }, + "dropbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pavpanchekha/dropbox.el.git", + "sha256": "212dbe278e903d1ca488ba1d91e63a201f171fd82c51bedeef46e7ed1a3a6422", + "rev": "fb71a2787030f911b569426596c081a89241056e" + }, + "recipe": { + "sha256": "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130513.1737", + "deps": [ + "json", + "oauth" + ] + }, + "helm-rails": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/asok/helm-rails.git", + "sha256": "e9d72b8f718aa13a4d8927b8ba16520eefe9154cfcb3e31145d698d9ad6b5764", + "rev": "31d79cd0feca11cbb1aa532a8d2112ec794de4f0" + }, + "recipe": { + "sha256": "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130424.1019", + "deps": [ + "helm", + "inflections" + ] + }, + "flymake-haml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-haml.git", + "sha256": "ddfb04b489e80baee8503a064037fe66582daecf7cc59dad4e75434056347764", + "rev": "3117d94ecad908710502e8def42dbae5748e9c1d" + }, + "recipe": { + "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130324.551", + "deps": [ + "flymake-easy" + ] + }, + "highlight-indentation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antonj/Highlight-Indentation-for-Emacs.git", + "sha256": "f3805451aaf4c37b15527f28983c17d9663bf49091d06f3f50444c5cce248502", + "rev": "cd6d8168ccb04c6c0394f42e9512c58f23c01689" + }, + "recipe": { + "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150307.408", + "deps": [] + }, + "runtests": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sunesimonsen/emacs-runtests.git", + "sha256": "ad88c3bb7c09bebf0b336cbac2afd70cda347a36a755f38b931992cfb3965943", + "rev": "ed90249f24cc48290018df48b9b9b7172440be3e" + }, + "recipe": { + "sha256": "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.331", + "deps": [] + }, + "monroe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sanel/monroe.git", + "sha256": "b03a675d71de68b44441b888222d93a8169e5cf5ff65e62e167333ddedf42ffc", + "rev": "7f42a0139a8030407da736ddb0f67132634b70c0" + }, + "recipe": { + "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141111.307", + "deps": [] + }, + "helm-ctest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danlamanna/helm-ctest.git", + "sha256": "3e83ca4371bec877a13ac2f23ba05da267b20039689e39f3e0d69819a932a9a1", + "rev": "973a138aa8ff4c6a1cd798779e8d0dd80522354d" + }, + "recipe": { + "sha256": "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150823.608", + "deps": [ + "dash", + "helm-core", + "s" + ] + }, + "with-namespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/with-namespace.el.git", + "sha256": "437bd6a08124b12a33c22ac6586c1ca6bd31c873b5aa7c7b076b9d2c8743efb0", + "rev": "8ac52da3a09cf46087720e30cf730d00f140cde6" + }, + "recipe": { + "sha256": "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130407.1322", + "deps": [ + "dash", + "loop" + ] + }, + "flymake-google-cpplint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senda-akiha/flymake-google-cpplint.git", + "sha256": "feb4a5d21a0bce78929d847359d1671f1e5f67bb74129529c64b545a0981f12f", + "rev": "905d32e84a27f18a78bec455ca930ab1ff9ae31e" + }, + "recipe": { + "sha256": "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140205.725", + "deps": [ + "flymake-easy" + ] + }, + "names": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/names.git", + "sha256": "925745496c19a41a86451a5267446a086585173029f902ccbf86cd9bdebe1a31", + "rev": "00862c57ae6363ba86d1e5ce138929a1b6d5c7e6" + }, + "recipe": { + "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.604", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "worf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/worf.git", + "sha256": "59ba8b5c26c4392ff671b7c1d32673da76db075a8751e05820f276fd608d3bf6", + "rev": "61a6fc392034c2a588c44fef0a514032cf660e68" + }, + "recipe": { + "sha256": "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.2040", + "deps": [ + "ace-link", + "helm", + "hydra" + ] + }, + "ztree": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fourier/ztree.git", + "sha256": "d6149700fb69170e61f610cff32b57f29e70e9cd195047d4b883ec54877ce8e0", + "rev": "4a935eece004fc5e2e70e6606e564da73fdd90f5" + }, + "recipe": { + "sha256": "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.1213", + "deps": [] + }, + "log4j-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/log4j-mode.git", + "sha256": "73a68146f5c71c639cd6f13842a8704d3009632af69014d1531f30569bacb591", + "rev": "ec3de92cfe60dd3d0de613e9062476196dea0faf" + }, + "recipe": { + "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101016.1022", + "deps": [] + }, + "discover-clj-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/maio/discover-clj-refactor.el.git", + "sha256": "c4bd46d2f22f37ea27e5233d88260737d5f786090e0a2cf6af1fdd521c2a4f50", + "rev": "3fbd5c1162739e606d7cf5d4f5d7426547d99647" + }, + "recipe": { + "sha256": "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150328.959", + "deps": [ + "clj-refactor", + "discover" + ] + }, + "faceup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/faceup.git", + "sha256": "4a727309149603c5e7d44407e254acca397ecc8fbca1ded249dbbaab9a97556a", + "rev": "70fa6be83768adf78f20425d0d76fe809dc44d79" + }, + "recipe": { + "sha256": "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150215.1548", + "deps": [] + }, + "repl-toggle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomterl/repl-toggle.git", + "sha256": "f1afa0c6f8f575dccd6c6829014bc52b542289ee9478a3c0bb94540b72659ff0", + "rev": "903791e3e34f67bca64c47dc2b91e612d3bad09c" + }, + "recipe": { + "sha256": "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140501.731", + "deps": [ + "fullframe" + ] + }, + "gnus-x-gm-raw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/gnus-x-gm-raw.git", + "sha256": "346648168091866ce0f7a8250006be79c05a45ee735dfd546185262afa316ec4", + "rev": "978bdfcecc8844465b71641c2e909fcdc66b22be" + }, + "recipe": { + "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140610.231", + "deps": [ + "log4e", + "yaxception" + ] + }, + "noxml-fold": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paddymcall/noXML-fold.git", + "sha256": "be81f3de17c7676fa19f13bb11aff8de8f893b6b74c9fad6b3700232d826acd7", + "rev": "d10ac9d0282b5efefc23a583c884e3a92be49966" + }, + "recipe": { + "sha256": "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.1418", + "deps": [] + }, + "dropdown-list": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dropdown-list.el", + "sha256": "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a" + }, + "recipe": { + "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120329.1136", + "deps": [] + }, + "look-dired": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/look-dired.git", + "sha256": "92b15024ebe127d55bbcea7b5afebbc0a5069ac0df5b3b161e5c3472995c3771", + "rev": "5b2afe910a904d13674103f5264c6bcdbb9f9fb2" + }, + "recipe": { + "sha256": "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.1956", + "deps": [ + "look-mode" + ] + }, + "salt-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/beardedprojamz/salt-mode.git", + "sha256": "5d933495346eeb087807d6333b2b51fec5283a17cdbdfa7d8bf7abeb5615fcf1", + "rev": "c9147cb78680cc34e6fcff3968c336460a9090a4" + }, + "recipe": { + "sha256": "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150904.1313", + "deps": [ + "mmm-jinja2", + "mmm-mode", + "yaml-mode" + ] + }, + "wand": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cmpitg/wand.git", + "sha256": "31c30b26270f4c61cd3d5cf7fd9a6c3a9da312ee9f40f01cdf606ac1b4d6f825", + "rev": "da6284ab75c3afa1275420faa9934037052e2967" + }, + "recipe": { + "sha256": "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141104.1845", + "deps": [ + "dash" + ] + }, + "docker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/docker.el.git", + "sha256": "dd8cbf88ac190650b2a5a0dace15fc8d56351c94a93a42604a87d63443366b1b", + "rev": "77f646cc10909403a945d188cf9d81abd3bfc2a0" + }, + "recipe": { + "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.413", + "deps": [ + "dash", + "emacs", + "magit-popup", + "s" + ] + }, + "fuzzy-format": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fuzzy-format.el", + "sha256": "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7" + }, + "recipe": { + "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "rpn-calc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/rpn-calc.git", + "sha256": "2807488ab372afef5e15092750a4e8cee09fe67a731ee3857e57db06e1e2b844", + "rev": "ed202e9eb59c4ace74b4703174f7bc7fa7e2d594" + }, + "recipe": { + "sha256": "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150302.734", + "deps": [ + "popup" + ] + }, + "auto-package-update": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rranelli/auto-package-update.el.git", + "sha256": "77fb8ba9f88c9e3fe508428e122e18a2521c372ffdbdaf61f91a20f5aee83a76", + "rev": "cdef79f9fc6f8347fdd05664978fb9a948ea0410" + }, + "recipe": { + "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151026.111", + "deps": [ + "dash", + "emacs" + ] + }, + "map-progress": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/map-progress.git", + "sha256": "e13f2d39788c85c3663b1e829f48ff1393b80595421974e94a05e6cc0f5ca65d", + "rev": "3167eb218510953fb97e7d50948a625eaa3f0005" + }, + "recipe": { + "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140310.1632", + "deps": [] + }, + "eno": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/enoson/eno.el.git", + "sha256": "462f59552505a6ba4e92db160fc711b263a0d556a67500a96dd917e57474f897", + "rev": "c379bf040bab10e52aba44140e9aa1b566cdebb6" + }, + "recipe": { + "sha256": "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150722.726", + "deps": [ + "dash", + "edit-at-point" + ] + }, + "helm-idris": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/helm-idris.git", + "sha256": "603b3640410de1485d85bc60b3998a48aff8559b99f3cc01ab536a8a00cd585b", + "rev": "a2f45d6817974f318b55ad9b7fd19d5df132d47e" + }, + "recipe": { + "sha256": "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141202.1157", + "deps": [ + "helm", + "idris-mode" + ] + }, + "omni-log": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-log.el.git", + "sha256": "57662f117ebccd55060deec8323f1b2b57d9ab82c3ff22f6f90d9136ccfbac5a", + "rev": "e5a8ee7d63eb1e745b37ba4e3e71c5ea025e2342" + }, + "recipe": { + "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150604.1238", + "deps": [ + "dash", + "emacs", + "ht", + "s" + ] + }, + "zombie-trellys-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/zombie-trellys-mode.git", + "sha256": "32166180198f2e9055e44ee1b9119329266dcf02819c9c573e4fdf59de35547e", + "rev": "7f0c45fdda3a44c3b6d1762d116abb1421b8fba2" + }, + "recipe": { + "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150304.848", + "deps": [ + "cl-lib", + "emacs", + "haskell-mode" + ] + }, + "ob-mongo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/ob-mongo.git", + "sha256": "1ca5426d8bfe5c5a2774c0dcef89f914103486efb6b43c5acd48aebf2948cb0e", + "rev": "7eb5524d9c106945b371f9fbb9f1176f6e6f9b13" + }, + "recipe": { + "sha256": "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130718.932", + "deps": [ + "org" + ] + }, + "karma": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/karma.el.git", + "sha256": "0099c9f61844c2bd023e7d59355bb15434766387cface7a8b112a11cd712e35a", + "rev": "07d5ba0fd669b909efdf02ffd0c1f45e6136edc4" + }, + "recipe": { + "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150120.2358", + "deps": [ + "emacs", + "pkg-info" + ] + }, + "jg-quicknav": { + "fetch": { + "tag": "fetchgit", + "url": "https://github.com/jeffgran/jg-quicknav", + "sha256": "a7aa00b03d474549a25faec9ae0394f9d1065c05049268dea507409f84c801a1", + "rev": "67293fdbbb0c6afe2528ec6c03dc54eaa59a2c98" + }, + "recipe": { + "sha256": "1v46ck9imffhrmx6s4c3kbi5g5spf2mn2axy5nfpn7q8sc8bf0s3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150217.2028", + "deps": [ + "cl-lib", + "s" + ] + }, + "imenu-anywhere": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vitoshka/imenu-anywhere.git", + "sha256": "d16c1617e86af7514b1b59cd2eb36d84e668cfc16fbdf25f4f6a0a37d62e24d6", + "rev": "b486c1e80c667504b243a84351cc8751710248e9" + }, + "recipe": { + "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1327", + "deps": [ + "cl-lib" + ] + }, + "js3-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thomblake/js3-mode.git", + "sha256": "9f4ab387bcaec873b657d9ee4ae79b2288d8a6d859994bc50ade172911f4687a", + "rev": "d0767afbb4fc8019f9e90e978937036d3bddbc5e" + }, + "recipe": { + "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150902.1149", + "deps": [] + }, + "scratch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ieure/scratch-el.git", + "sha256": "665d0f7f9a642974b73046bc4fedf279bc70967e54657288206424a48b5b824e", + "rev": "54e31e81cd239e1fd1b3c6a20ff426029bf9aaf5" + }, + "recipe": { + "sha256": "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120830.1228", + "deps": [] + }, + "tangotango-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juba/color-theme-tangotango.git", + "sha256": "0d3d886a5978d1fadec76fc3e18d7bc872daab25cedcd5dcaf9390e59ef06203", + "rev": "92a94756080577c0446b2fc7f06d43d7b76b2005" + }, + "recipe": { + "sha256": "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.304", + "deps": [] + }, + "imgur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/imgur.el.git", + "sha256": "8a6cb0a15924fdec70ad27d768e582835de48639905349b6eeb25685c99a3e9f", + "rev": "ed952eb8f556c6fc0d982e2a689083504558cffb" + }, + "recipe": { + "sha256": "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120307.425", + "deps": [ + "anything" + ] + }, + "auto-auto-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/auto-auto-indent.git", + "sha256": "b60a7b4ed0abc26610ea4f3c8602933924e295eaba54ef5fb3a234047d60c20b", + "rev": "0139378577f936d34b20276af6f022fb457af490" + }, + "recipe": { + "sha256": "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131106.1303", + "deps": [ + "cl-lib", + "es-lib" + ] + }, + "aproject": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vietor/aproject.git", + "sha256": "21f0f2e7073585f66126223f5da5ba9779d78721e207263ad6144d8742e3d8da", + "rev": "3c7d23c341862dfd77fd0a64775df12ddb44ab54" + }, + "recipe": { + "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150605.406", + "deps": [] + }, + "helm-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/projectile.git", + "sha256": "34999000476e13b4b4a88bbd2f56104836b73e50245a0d82a30e4ac8d8e1d0a3", + "rev": "5773d28036c81f44468da58402a32463b278ee1f" + }, + "recipe": { + "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.448", + "deps": [ + "cl-lib", + "dash", + "helm", + "projectile" + ] + }, + "ahk-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ralesi/ahk-mode.git", + "sha256": "bd1a98dc5da3be7ed1075fc70e8e13f8994e9be970535856afbf1ba635d04a88", + "rev": "e08a1b467d42b9d5e719c39407908152011b4573" + }, + "recipe": { + "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.1737", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "requirejs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joeheyming/requirejs-emacs.git", + "sha256": "83cd75fc1826900e3a5fc5e6aedfb9e1495f2f200c68d60bcbbefb28c768d36f", + "rev": "4ea2a5fcbc76e4cbb6a7461e6f05f019b75865b1" + }, + "recipe": { + "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.119", + "deps": [ + "cl-lib", + "js2-mode", + "popup", + "s", + "yasnippet" + ] + }, + "json-rpc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elisp-json-rpc.git", + "sha256": "445167eb6645cf86afe49be836bc59d2f564f1c903b5336479bef2422252794d", + "rev": "a83189b126d8d3d7a856008a5b6ad267b2fcc126" + }, + "recipe": { + "sha256": "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.1601", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gnus-alias": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hexmode/gnus-alias.git", + "sha256": "e46aeca201e0217743a8f307b6b40084163c904df1fad07a77736cafae4547c4", + "rev": "9447d3ccb4c0e75d0468899cccff7aa249657bac" + }, + "recipe": { + "sha256": "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.1942", + "deps": [] + }, + "pastehub": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiyoka/pastehub.git", + "sha256": "4133a47bbabbd8e15a42f8182997f4a6e00003d8cc80adfad0d6ca5f166fc516", + "rev": "37b045c67659c078f1517d0fbd5282dab58dca23" + }, + "recipe": { + "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140615.120", + "deps": [] + }, + "nim-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nim-lang/nim-mode.git", + "sha256": "b604f34fecd885a638dca97e7d2c2ea3f995c995b3e10cdce2e57209e48835a1", + "rev": "1f0a6cdd39460c1d59da79aa8d4b132753448c56" + }, + "recipe": { + "sha256": "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.225", + "deps": [ + "emacs", + "epc" + ] + }, + "elfeed-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remyhonig/elfeed-org.git", + "sha256": "b2485ccb7afde0778449ebcf4ca58df7761ccd52fe9d18115a6da0eae1d2e832", + "rev": "e5206bc983d04c68310181da83147908682de295" + }, + "recipe": { + "sha256": "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151003.531", + "deps": [ + "dash", + "elfeed", + "org", + "s" + ] + }, + "watch-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mjsteger/watch-buffer.git", + "sha256": "221f7dd8dab0571b8bfcea551f09fb35215736f4b8c7e2e6011aa9da6db30445", + "rev": "761fd7252e6d7bf5148283c2a7ee935f087d9427" + }, + "recipe": { + "sha256": "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120331.1544", + "deps": [] + }, + "langtool": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-langtool.git", + "sha256": "897ac3e506ca90af0bd99a72d51171982a85dfc5cd6d596f92d0742dfafd746a", + "rev": "443b3804f9e33e6d96ee8e15ddede7f152ece378" + }, + "recipe": { + "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150917.613", + "deps": [ + "cl-lib" + ] + }, + "toml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dryman/toml-mode.el.git", + "sha256": "e77eec7f3ff5562483f874c37a50f475f4664766207f529a316ceb6e89ff23df", + "rev": "afd98423773c2b9578fc5b2b46a43b5f5ecf7e6b" + }, + "recipe": { + "sha256": "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150818.320", + "deps": [] + }, + "ac-skk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/ac-skk.el.git", + "sha256": "95cba9f0f0955e4e3f5f241e09da2fda627f9b43f46aee0beb2975f29d047fdb", + "rev": "d25a265930430d080329789fb253d786c01dfa24" + }, + "recipe": { + "sha256": "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141229.1919", + "deps": [ + "auto-complete", + "cl-lib", + "ddskk", + "tinysegmenter" + ] + }, + "gnus-spotlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/gnus-spotlight.el", + "sha256": "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4" + }, + "recipe": { + "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130901.935", + "deps": [] + }, + "rbt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joeheyming/rbt.el.git", + "sha256": "f156109e6dccfddc630eb6515f1ad901aa63c5f3c1c12c02828a84f3207e4246", + "rev": "47cf236c732e9c5f468fb24c6a1c2db69a133797" + }, + "recipe": { + "sha256": "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.2255", + "deps": [ + "popup" + ] + }, + "uzumaki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/geyslan/uzumaki.git", + "sha256": "7dc44b70cba824db0d2e37869d0cc5dca541420103a2cdffa2ce71844c45a13b", + "rev": "afae141588ef9407ff86ce1ae9a0f1860843c4a4" + }, + "recipe": { + "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150119.1906", + "deps": [ + "cl-lib" + ] + }, + "eredis": { + "fetch": { + "tag": "fetchsvn", + "url": "http://eredis.googlecode.com/svn/trunk/", + "sha256": "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49", + "rev": "28" + }, + "recipe": { + "sha256": "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120808.2207", + "deps": [] + }, + "creole-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/creole-mode.git", + "sha256": "1068bfca7c74693cbff7ae60bc3749bb73f3e31a6c892aa10a6d27d40be75749", + "rev": "b5e79b2ec5f19fb5aacf689b5febc3e0b61515c4" + }, + "recipe": { + "sha256": "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130721.1950", + "deps": [] + }, + "fvwm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theBlackDragon/fvwm-mode.git", + "sha256": "458c06cb163075419de02d62f2d09649a848a2f577be635f70554ce23705cc84", + "rev": "cfd14546b6905806e0f2ad3df58b08de2401be3c" + }, + "recipe": { + "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141105.2236", + "deps": [] + }, + "factlog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/factlog.git", + "sha256": "f53b69b33f9e9818256b4d0aff902ccbd95ad5e09e5e1e072897641a6c94f8e4", + "rev": "6503d77ea882c995b051d22e72db336fb28770fc" + }, + "recipe": { + "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130209.1940", + "deps": [ + "deferred" + ] + }, + "erc-terminal-notifier": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/julienXX/erc-terminal-notifier.el.git", + "sha256": "e018a041fec73b136ac4799c9a64143c9421be443a741ab0fbc00838355ed831", + "rev": "a3dacb935845e4a20031212bbd82b2170f68d2a8" + }, + "recipe": { + "sha256": "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140115.424", + "deps": [] + }, + "calmer-forest-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/caldwell/calmer-forest-theme.git", + "sha256": "30b58ec531de2fc59b97313364cf5cc209da1b454e7b9935b5988087c727de58", + "rev": "87ba7bae389084d13fe3bc34e0c923017eda6ba0" + }, + "recipe": { + "sha256": "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130926.10", + "deps": [] + }, + "kaesar-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", + "sha256": "e94e51c8cbcf3b294ae5159bc75bd25dff59ba29927fca761f7f285458c6b516", + "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" + }, + "recipe": { + "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150130.1004", + "deps": [ + "kaesar" + ] + }, + "purty-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hackscience/purty-mode.git", + "sha256": "61b352c16c9b4206ec9f5eddcf2f447aea9a716685108d9549e13361ceeea262", + "rev": "8eef77317a3bab07ade212353a50fbd3f20f365a" + }, + "recipe": { + "sha256": "1ackqv95sdphbsjwydbc4dmdzwpaj74v329f55zcwa8hn3li9d5m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131004.1759", + "deps": [] + }, + "idea-darkula-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fourier/idea-darkula-theme.git", + "sha256": "01e33e7f05f961862bb185332db703ee8a7f59454f17ecdfbc394ecfb8e1ac44", + "rev": "6ee45ec8a97d9afadc4d8f96d838b365c36d5f2d" + }, + "recipe": { + "sha256": "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1310", + "deps": [ + "emacs" + ] + }, + "boon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jyp/boon.git", + "sha256": "c734aad225dc9ce1a68010e2f1584a3b31c21cc69cdeb3c65a96390130b7de86", + "rev": "82458a944e9cf3e4c959e63ebad09312aafe6d2c" + }, + "recipe": { + "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1533", + "deps": [ + "emacs", + "expand-region", + "multiple-cursors" + ] + }, + "inflections": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/jump.el.git", + "sha256": "20e006d93a1db36158963a4441c2b671e49d01e22eaa1790c05ca10d5c9837aa", + "rev": "56cec33dd98231a95faa26dd4c0612885d923f78" + }, + "recipe": { + "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121016.357", + "deps": [] + }, + "loccur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fourier/loccur.git", + "sha256": "207441b3076098eac55a0bfbb6b8d1a76b43de100a0213ee9a3bd840218c2389", + "rev": "5e2f33943a18c0b1ae984c24c8000bbaed737067" + }, + "recipe": { + "sha256": "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150611.1237", + "deps": [] + }, + "interval-tree": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/interval-tree.git", + "sha256": "63ddb334b6ae105428fa337d134801d55084c47bd2a9f8a39a30b10c7bb2163b", + "rev": "301302f480617091cf3ab6989caac385d52543dc" + }, + "recipe": { + "sha256": "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130325.907", + "deps": [ + "dash" + ] + }, + "todochiku": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/todochiku.el", + "sha256": "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5" + }, + "recipe": { + "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150112.1454", + "deps": [] + }, + "wide-column": { + "fetch": { + "tag": "fetchhg", + "url": "https://code.google.com/p/phillord-emacs-packages/", + "sha256": "0pq9x73hrp7qwhms7x3dvjfh9imapglba9yd7nkyw68mc0b9wlnl", + "rev": "e14e67d6a5b7" + }, + "recipe": { + "sha256": "1r9mh7756jgf1hdnprci988z07xxh2jvh8d0c1h5rmxmldlbx8az", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120814.312", + "deps": [] + }, + "color-theme-sanityinc-solarized": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/color-theme-sanityinc-solarized.git", + "sha256": "f6f29bbaef71f0c1ca13ef8e6b1d074da7f61f058bfd04c0b0133e03de3d81b9", + "rev": "14beb86aeb5b17451980f192bad72d7edb17321c" + }, + "recipe": { + "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150803.1620", + "deps": [] + }, + "ido-yes-or-no": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/ido-yes-or-no.git", + "sha256": "f43265b7f5db4fb84078fbca0d18979e5fbfc65903fea93daef298f10748ef0d", + "rev": "a9de5731b64f888be38073773c3d72b19c61ed4f" + }, + "recipe": { + "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140625.2306", + "deps": [] + }, + "mode-line-debug": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/mode-line-debug.git", + "sha256": "410383b7838054b573f79c318a38893960c80b7225a46e4d3edb684bad4d7cd2", + "rev": "da44422eeb6a1f055b4ec2f822962c5162fce001" + }, + "recipe": { + "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150307.712", + "deps": [] + }, + "helm-mode-manager": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/helm-mode-manager.git", + "sha256": "902bafc45553c4d39c9451716639f56d359c929c306290aa21da6c6b37597dd1", + "rev": "5d9c3ca4f8205d07ff4e03c4c3e88f596751c1fc" + }, + "recipe": { + "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.338", + "deps": [ + "helm" + ] + }, + "python-docstring": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/glyph/python-docstring-mode.git", + "sha256": "3bfb79130f6c629199e960f49ac065c9cf405ef6b767e99a3e9c7971420a40a8", + "rev": "263879fb339b18ee55d9463697d6f0a73171ee78" + }, + "recipe": { + "sha256": "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150907.1504", + "deps": [] + }, + "helm-aws": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/helm-aws.git", + "sha256": "4e1d9eeb86b2d507d4a50e65683353911baa6974dae1ec970bcc3d0352bedeae", + "rev": "512fb7edcdc6c65303b9641bfc737f836939e5e9" + }, + "recipe": { + "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.333", + "deps": [ + "cl-lib", + "helm", + "s" + ] + }, + "ido-springboard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/springboard.git", + "sha256": "c8b73eb2e39d981e838cbce46c71a57fa7f000eeb77c893d865f1a03ab2afe92", + "rev": "d12119d9dd2b0b64f0af0ba82c273326c8c12268" + }, + "recipe": { + "sha256": "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150505.1211", + "deps": [] + }, + "autotetris-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/autotetris-mode.git", + "sha256": "ac31fa944979ff599d7ad3ac57dd0eec643b4b11febd36a871f25523c0d2f292", + "rev": "7d348d33829bc89ddbd2b4d5cfe5073c3b0cbaaa" + }, + "recipe": { + "sha256": "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141114.1046", + "deps": [ + "cl-lib" + ] + }, + "pcache": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/pcache.git", + "sha256": "48b9b58d79fee288baff3d2930174a11c0aff83a2edb20d2de3047da1ac26b75", + "rev": "4b090f46182fd2ed1f44905dc04acc3121bcf622" + }, + "recipe": { + "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.839", + "deps": [ + "eieio" + ] + }, + "fuzzy-match": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fuzzy-match.el", + "sha256": "1q2qvw2inizw9r47nff7ikvjzfsx1f8n6yf0j31fxvaawcdf91nq" + }, + "recipe": { + "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1609", + "deps": [] + }, + "lolcode-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bodil/lolcode-mode.git", + "sha256": "6b12ce2d888832d751a412af71b578ac9bfc4ce29ef7b6b30a9fda5ab97fce5f", + "rev": "1914f1ba87587ecf5f175eeb2144c28e9f039317" + }, + "recipe": { + "sha256": "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20111002.347", + "deps": [] + }, + "go-playground": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/grafov/go-playground.git", + "sha256": "0f97d77506bf7653d64e13dd653163b94dae6f433233b8d490b33004ccec422b", + "rev": "6de119fe6d1ecb8db2dad1f70831561695c5da58" + }, + "recipe": { + "sha256": "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.1610", + "deps": [ + "emacs", + "go-mode", + "gotest" + ] + }, + "cache": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/cache.git", + "sha256": "7e5199dc732711d3bdf0f41d96fafbbcab812fc51bbe4f8bacf3ed4dd06ce6c2", + "rev": "7499586b6c8224df9f5c5bc4dec96b008258d580" + }, + "recipe": { + "sha256": "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20111019.1800", + "deps": [] + }, + "flymake-go": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/robert-zaremba/flymake-go.git", + "sha256": "629685d2914fc63cc9de345723c31eb441ec778402f3b4c8cad44c445b9ee2df", + "rev": "ae83761aa908c1a50ff34af04f00dcc46bca2ce9" + }, + "recipe": { + "sha256": "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150714.233", + "deps": [] + }, + "reverse-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-reverse-theme.git", + "sha256": "ae3c2830db398454b5778a56c4c19ae6bbf14388e20a55d999cb235d25e45e00", + "rev": "8319d0d5342890a3530ffa4daafdb7c35feda1ca" + }, + "recipe": { + "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141204.1945", + "deps": [] + }, + "menu-bar+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/menu-bar+.el", + "sha256": "1vdqhn9srd8ihp0yjjj6lr0zl4n858wri0h3jzxmk3axc688lks7" + }, + "recipe": { + "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1120", + "deps": [] + }, + "perspective": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/perspective-el.git", + "sha256": "ad6e6f38a86c70744c602c3898913619a834df8a987805e71b2a80b706f555aa", + "rev": "b6f4f05951d3f0d16a503bf462f136c689ede4df" + }, + "recipe": { + "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1654", + "deps": [ + "cl-lib" + ] + }, + "loop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/loop.el.git", + "sha256": "97d32ab49d2cee1411147d70752b988b30bdafd0de12a498bc76d1a2cfa5c91d", + "rev": "186332dfd3f63ab79b53c4e26b46ef75713b308e" + }, + "recipe": { + "sha256": "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130309.1005", + "deps": [] + }, + "offlineimap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jd/offlineimap.el.git", + "sha256": "58fb8303368357f0cd352162b804b039ee04a3ba12a4be87f1f43c3a917c59ae", + "rev": "cc3e067e6237a1eb7b21c575a41683b1febb47f1" + }, + "recipe": { + "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150916.658", + "deps": [] + }, + "pmdm": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/inigoserna/pmdm.el", + "sha256": "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff", + "rev": "f50a54774156" + }, + "recipe": { + "sha256": "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.1236", + "deps": [] + }, + "es-lib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/es-lib.git", + "sha256": "212b21084ced61f6990b77c02ac3ee148811aefe120163405cea1a482cfa7d46", + "rev": "753b27363e39c10edc9e4e452bdbbbe4d190df4a" + }, + "recipe": { + "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141111.1230", + "deps": [ + "cl-lib" + ] + }, + "php-eldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/php-eldoc.git", + "sha256": "115c410563b7b864eb77f3855ea37510d5e46717da1de6bc68c485e4b6afa642", + "rev": "df05064146b884d9081e10657e32dc480f070cfe" + }, + "recipe": { + "sha256": "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140202.1341", + "deps": [] + }, + "sqlplus": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sqlplus.el", + "sha256": "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d" + }, + "recipe": { + "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141009.939", + "deps": [] + }, + "how-many-lines-in-project": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaihaosw/how-many-lines-in-project.git", + "sha256": "92ab293bdce9958e98d24efe0fb47a1a11ccb5c796cdbc41b16737e1655bcf6f", + "rev": "8a37ef885d004fe2ce231bfe05ed4867c6192d9b" + }, + "recipe": { + "sha256": "145zmfmsxcbmfh9s0mvxxgfh1d51q66396zc29k1c0hw94ffhkdd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140806.2342", + "deps": [] + }, + "helm-fuzzier": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/EphramPerdition/helm-fuzzier.git", + "sha256": "b7039f550161690ebc2821c6b2c37dd2bffa9773c74c9f38a9b957890401daca", + "rev": "7e8573de1a639c031056f20c677d13760f2cece0" + }, + "recipe": { + "sha256": "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.838", + "deps": [ + "emacs", + "helm" + ] + }, + "pt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bling/pt.el.git", + "sha256": "f3ef5f61987a1d6a4d578d43c5d42e60ed5e56f51ab41f77558de17de14c5a2e", + "rev": "d63d1c2765160683a7b496aa265024fc8e768ae0" + }, + "recipe": { + "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151024.1051", + "deps": [] + }, + "idle-require": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/idle-require.el.git", + "sha256": "09708cff241a71c5553664a3619cf0662185fd40859ee85a804706c4bc3ed390", + "rev": "33592bb098223b4432d7a35a1d65ab83f47c1ec1" + }, + "recipe": { + "sha256": "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090715.1703", + "deps": [] + }, + "save-visited-files": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/save-visited-files.git", + "sha256": "15f22a1895c8f56b515e87be7f0ccea427b7f96f8b9da8e3700921766da05b02", + "rev": "35f8055a3eb0614721b5b755a3902ba008a4d6fa" + }, + "recipe": { + "sha256": "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.1243", + "deps": [] + }, + "colonoscopy-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-colonoscopy-theme.git", + "sha256": "26028c9f5c592ee6e35b60b04ee3d65f003bd80baba676de87ee3ee70e687acc", + "rev": "7b873d7e7e091b71bf4fdd23ded19e261a1e3936" + }, + "recipe": { + "sha256": "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.101", + "deps": [ + "emacs" + ] + }, + "gitignore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/git-modes.git", + "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.1248", + "deps": [] + }, + "go-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vibhavp/go-complete.git", + "sha256": "0ac2b1fe18c351fe427ddf818e394e1ba5c7734f5de3dc13529f219519111e5e", + "rev": "e39efc356f6e19f17db3f3d2c81f28d38b31a55e" + }, + "recipe": { + "sha256": "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151015.428", + "deps": [ + "cl-lib", + "go-mode" + ] + }, + "ruby-guard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/ruby-guard.git", + "sha256": "41d6e7dfa6e882c5c08096ee53515baeb1f1f1479f400144bcb8f722c45f8d0c", + "rev": "c0bc5c58ad32e1786001aa5cd84f490096a00a4b" + }, + "recipe": { + "sha256": "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141218.2114", + "deps": [] + }, + "dkdo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidkeegan/dkdo.git", + "sha256": "a9907d79c0513774251e2de24421649117fd5d9fc26a61c15aeb8f97b86d7bd9", + "rev": "fd6bb105e8331fafb6385c5238c988c4c5bbe2da" + }, + "recipe": { + "sha256": "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131110.519", + "deps": [ + "dkmisc", + "emacs" + ] + }, + "occidental-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/olcai/occidental-theme.git", + "sha256": "a87628ca895d0457704d965181118c419b4fcaa71321f016441c6726008fd45e", + "rev": "fd2db7256d4f78c43d99c3cddb1c39106d479816" + }, + "recipe": { + "sha256": "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130312.1458", + "deps": [] + }, + "helm-flycheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-flycheck.git", + "sha256": "c03934f14e21de5e5326ef337d8fcec93570b374ee7d682080180d24ed00a74c", + "rev": "361d7f0359cea3dd0bfef1647d65ab61c9e52925" + }, + "recipe": { + "sha256": "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140915.952", + "deps": [ + "dash", + "flycheck", + "helm" + ] + }, + "mb-depth+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mb-depth+.el", + "sha256": "02dszzkcqa2zwnafxyd6avsjgdrmb6c80j9qx0bgdkwm7yii090q" + }, + "recipe": { + "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1822", + "deps": [] + }, + "fold-dwim-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/fold-dwim-org.git", + "sha256": "bc53fd2557b7e0746c973a17998c202dec4b2b7ee8eea4c1e2646f0ed55c5b92", + "rev": "c09bb2b46d65afbd1d0febc6fded7495be7a3037" + }, + "recipe": { + "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131203.751", + "deps": [ + "fold-dwim" + ] + }, + "minesweeper": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/zck/minesweeper.el", + "sha256": "1b2kn4c90hl07lzdg10wamd4lq8f24wmaj4zvr728pwyga99b2av", + "rev": "d29af12fc611" + }, + "recipe": { + "sha256": "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150414.22", + "deps": [] + }, + "fstar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/FStarLang/fstar-mode.el.git", + "sha256": "16620a7f453ea7e843616a5a80d7f943aaf585893806e9a63434dd0c82a15cf5", + "rev": "5e7c3d5a4b5422284d8ef4b69023b1fd71952b81" + }, + "recipe": { + "sha256": "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.953", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "ac-mozc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/igjit/ac-mozc.git", + "sha256": "0a7acdbe1a589e1ace18cf25d111abc9a5820718c32821cc5afeff527d06f738", + "rev": "4c6c8be4701010d9362184437c0f783e0335c631" + }, + "recipe": { + "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150227.1019", + "deps": [ + "auto-complete", + "cl-lib", + "mozc" + ] + }, + "helm-dirset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/helm-dirset.git", + "sha256": "cb93e1bdcc5a786b91bad6859be204190d5ec94414a630d5c4aa9c127d917ba0", + "rev": "eb30810cd26e1ee73d84a863e6b2667700e9aead" + }, + "recipe": { + "sha256": "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1812", + "deps": [ + "cl-lib", + "f", + "helm", + "s" + ] + }, + "logalimacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/logaling/logalimacs.git", + "sha256": "91f685dfc639ab93c05f75911a598933cb47357d5a1bf1c862d846f58884c6a6", + "rev": "8286e39502250fc6c3c6656a7f46a8eee8e9a713" + }, + "recipe": { + "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131021.1329", + "deps": [ + "popup", + "popwin", + "stem" + ] + }, + "outlined-elisp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/outlined-elisp-mode.git", + "sha256": "9bf3caf8d3429dc3b1f2ee8b249f11553dc8dc5ce0d8c61487339b3549763035", + "rev": "c16cb02b540448919ad148f2be6a41523ee5489c" + }, + "recipe": { + "sha256": "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131108.527", + "deps": [] + }, + "achievements": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/gvol/emacs-achievements", + "sha256": "0zjncby2884cv8nz2ss7i0p17l15lsk88zwvb7b0gr3apbfpcpa3", + "rev": "5b4b7b6816aa" + }, + "recipe": { + "sha256": "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150530.1326", + "deps": [ + "keyfreq" + ] + }, + "company-nixos-options": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/travisbhartwell/nix-emacs.git", + "sha256": "9c44131bb762df62b5476871bed5a5d344a4db448854145bf06dc839c0910147", + "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" + }, + "recipe": { + "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.1809", + "deps": [ + "cl-lib", + "company", + "nixos-options" + ] + }, + "mongo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/mongo-el.git", + "sha256": "1df88bc68af523a683359d22ff2a7133f0abc6f337c8e9425ab00822a163157d", + "rev": "595529ddd70ecb9fab8b11daad2c3929941099d6" + }, + "recipe": { + "sha256": "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.719", + "deps": [] + }, + "face-remap+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/face-remap+.el", + "sha256": "13a439ipxy28l91c9gy6skq54xy2m3hj2qgqdjjqbinnhngg7ffi" + }, + "recipe": { + "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1558", + "deps": [] + }, + "flymake-json": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-json.git", + "sha256": "5d0d8db198c77e2c6bb755888191a41ed44d14275e67af2e583c99d5c9c49319", + "rev": "36084b67830bdc6c226115ea8287ea88d14b05dd" + }, + "recipe": { + "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130424.157", + "deps": [ + "flymake-easy" + ] + }, + "sass-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/sass-mode.git", + "sha256": "c52c84b6a2a94b30bcb7e871b5cb00311bed3e24f3b1da7144b83eb4f117cb19", + "rev": "3da9040680880743fddb55a965ecd150d1039df6" + }, + "recipe": { + "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.2212", + "deps": [ + "cl-lib", + "haml-mode" + ] + }, + "string-edit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/string-edit.el.git", + "sha256": "5784fcd8af0859c64011866154d428a2d8ff835286928937e1ce522ab738ddc7", + "rev": "c380e20ca169bd4e7117a99edd5711e673168cbe" + }, + "recipe": { + "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1130", + "deps": [ + "dash" + ] + }, + "flycheck-elm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bsermons/flycheck-elm.git", + "sha256": "67fe08696db12587d868c9383f69a52a8982ee3b9f2c80e12834a326dea8b421", + "rev": "d1395ce80dcad5ed8931b4901471a8980fd3f2b8" + }, + "recipe": { + "sha256": "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.924", + "deps": [ + "emacs", + "flycheck" + ] + }, + "showkey": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/showkey.el", + "sha256": "0fbpwqjgi15l1mk2p1m9apfj9a50566gi97wkin5hrc8zhm41k5r" + }, + "recipe": { + "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150527.1048", + "deps": [] + }, + "proc-net": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-proc-net.git", + "sha256": "2be372ba689f7cfa25b05cc09959b20c3362198e4e2c1711600d71d3002c9e5a", + "rev": "10861112a1f3994c8e6374d6c5bb5d734cfeaf73" + }, + "recipe": { + "sha256": "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130321.1912", + "deps": [] + }, + "phi-grep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/phi-grep.git", + "sha256": "ddf32d0b7c2aa9782063a9bcd2f07aab69e4dd6a7ffe89de9a25ca492eec90e5", + "rev": "9f1eb3548311816920864a171de303245a001301" + }, + "recipe": { + "sha256": "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150212.924", + "deps": [ + "cl-lib" + ] + }, + "xah-replace-pairs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xah-replace-pairs.git", + "sha256": "143ba713c9f1fff9d7174116c87cb12241b0c5a47a88fa8daaba1a7e4892baa2", + "rev": "b80430cd285ba09e2b35d518be0c25ba7db2d0a3" + }, + "recipe": { + "sha256": "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150522.533", + "deps": [] + }, + "sequences": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/timvisher/sequences.el.git", + "sha256": "94eb6ed1077451a6d0df8c81e22d5def0f22f9e64c1ff3a233baea89c48de6da", + "rev": "2bcc54a6738202fffb23e9579b9695337ba6ef26" + }, + "recipe": { + "sha256": "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130908.1322", + "deps": [ + "emacs" + ] + }, + "chronos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dxknight/chronos.git", + "sha256": "04537567c5046366c663bcb99869c6131162311d7af0ff1c405582bef3f80dd7", + "rev": "b360d9dae57aa553cf2a14ffa0756a51ad71de09" + }, + "recipe": { + "sha256": "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150602.1029", + "deps": [] + }, + "flymake-haskell-multi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-haskell-multi.git", + "sha256": "94deeca8956cc2eb5e7029eb8b244475eaa86082444bd18f9eeb941167388bba", + "rev": "6183620ffee429b33c886fffd6106b876245ea47" + }, + "recipe": { + "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130620.622", + "deps": [ + "flymake-easy" + ] + }, + "simple-screen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wachikun/simple-screen.git", + "sha256": "515c1774f176afc8eedbadda26d9fbc914601ac89d06fa0188005870fde3c97d", + "rev": "4fcbdb4575310c0a2b4dd17fc8aeb4d7e6e9ffae" + }, + "recipe": { + "sha256": "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141023.958", + "deps": [] + }, + "git-timemachine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/git-timemachine.git", + "sha256": "ef579a874c0ed6c01bd13f41a89239e25527a8e0146985451657f570f0a61e15", + "rev": "141122e52a80f28b958a8bad128c480567ce3942" + }, + "recipe": { + "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.29", + "deps": [] + }, + "evil-search-highlight-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juanjux/evil-search-highlight-persist.git", + "sha256": "92ce9e360c2e386702bba7f55c604c8fed7d3f75ac2a5d28a60949f1ec831ca1", + "rev": "c563a05de36bb06f5385848aa3b1dae5ebd3d2cd" + }, + "recipe": { + "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150815.1642", + "deps": [ + "highlight" + ] + }, + "edn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/expez/edn.el.git", + "sha256": "4dbf8b2f57167afdcb7d234b29b6359873014098b9835e6b36f76ecae3f7b9fc", + "rev": "501a69696bec2fc09bf5d61e38a3ea344ed77a47" + }, + "recipe": { + "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150929.346", + "deps": [ + "cl-lib", + "dash", + "emacs", + "peg", + "s" + ] + }, + "register-channel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/YangZhao11/register-channel.git", + "sha256": "a9c9bce2743d6afe06b2e6a40c61b438ef8b040d529dad69b1f3f86d0bfeefce", + "rev": "f62f9a62ebd2537d4a8c8f2e358562c67d2aefc1" + }, + "recipe": { + "sha256": "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150513.2259", + "deps": [] + }, + "isearch-prop": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/isearch-prop.el", + "sha256": "190dlmrqk1g7ak5a3p6i97kwxk4lgz8y0kxf9ql75qis3hc4cl09" + }, + "recipe": { + "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.1305", + "deps": [] + }, + "virtualenvwrapper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/porterjamesj/virtualenvwrapper.el.git", + "sha256": "9756d78a2b7b2da44c617833773c1de2b8694ef2062ee084e7ca03ba85b3d6f7", + "rev": "f95094dc7a6e6c0aa6f80fd897dbf380382f35f2" + }, + "recipe": { + "sha256": "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.821", + "deps": [ + "dash", + "s" + ] + }, + "emagician-fix-spell-memory": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jonnay/emagicians-starter-kit.git", + "sha256": "657dec43dc650142aacf062b4341c510b1c3cd17f1e61416e466c0bf04ab308c", + "rev": "5fadbf1bf84091b6ffe6cd1bff48f30e3da6c479" + }, + "recipe": { + "sha256": "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141229.1634", + "deps": [] + }, + "google-contacts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jd/google-contacts.el.git", + "sha256": "b25e676b27c2e6f8f1458f6a25f4105b11794dc9d8ecc8786cfddf7aa66c78a8", + "rev": "92969f5f02f0ec1957c591b248530c0be0cc5432" + }, + "recipe": { + "sha256": "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140530.433", + "deps": [ + "oauth2" + ] + }, + "org-table-comment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/org-table-comment.el.git", + "sha256": "977bb21fca41c5cf63b4c8a75973e024485d470de47bdf8f5dc5b36d54fb3079", + "rev": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e" + }, + "recipe": { + "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120209.1251", + "deps": [] + }, + "govet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/meshelton/govet.git", + "sha256": "ab73f08661b4acd28f8d9fbcc2ec7cae9973bd335506e8cfb044e3e3eb20eebb", + "rev": "736f11850f2d1d62bd417fb57d4f8bb55a176b70" + }, + "recipe": { + "sha256": "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150428.1359", + "deps": [] + }, + "c-eldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/c-eldoc.git", + "sha256": "ea6c3bcfea345cdbb037a32e3ba386bd92e034337d136071553690628c2b9556", + "rev": "3baef9b6300370bd8db3ea7636084afcdebc6e85" + }, + "recipe": { + "sha256": "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150904.332", + "deps": [] + }, + "toc-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/snosov1/toc-org.git", + "sha256": "e070adc368f1d0ed6f889baeac54cbfd1d56b70671ced46d9b0b78d97d21fb3f", + "rev": "72883a08b01d08b74cc03c565eac8d0422770fcf" + }, + "recipe": { + "sha256": "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150921.905", + "deps": [] + }, + "hl-sexp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/hl-sexp.git", + "sha256": "7c9a33cee9837215f78bf4e0dd53a20f66bc05bedb33a7bbb3e5335c59925ebb", + "rev": "0606100422321c18db51ceda80f25cd7717c2e01" + }, + "recipe": { + "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101130.643", + "deps": [] + }, + "find-temp-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisirs/find-temp-file.git", + "sha256": "00d2718456a0496fd845103fae2233e97636b52fd96798f559241d79c337a55b", + "rev": "556cc3afbdc3011c99e92e1ab3fe0744bd1af9ba" + }, + "recipe": { + "sha256": "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.801", + "deps": [] + }, + "avy-migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/avy-migemo.git", + "sha256": "525ba03bb7ce7faf3f2930d831ff2f0f95a9e8bd12a7a68dd014831f82d0fa30", + "rev": "804a02dbd50dcfbdbf327ec800d9f7572e8b9511" + }, + "recipe": { + "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.808", + "deps": [ + "avy", + "emacs", + "migemo" + ] + }, + "crosshairs": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/crosshairs.el", + "sha256": "0m2qggd8q3r32c8ipnp14093p0hbdd7i66nrv3q739wid7j98s8b" + }, + "recipe": { + "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1539", + "deps": [ + "col-highlight", + "hl-line+", + "vline" + ] + }, + "osx-browse": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/osx-browse.git", + "sha256": "800ba903f6a440c92fc857f5d5ac5ac1a1b3475030b0ac5077127802993bf50a", + "rev": "44ded7cc3a7ee426c1c3257fae534c121f7e752e" + }, + "recipe": { + "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "browse-url-dwim", + "string-utils" + ] + }, + "sql-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bsvingen/sql-indent.git", + "sha256": "5e520cd1964765ee18ffb56ea5266d2b562819c6ac07507e26d8a1d2b162cb9e", + "rev": "f85bc91535b64b5d538e5aec2ce4c5e2312ec862" + }, + "recipe": { + "sha256": "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150424.1916", + "deps": [] + }, + "helm-orgcard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/helm-orgcard.git", + "sha256": "632ec2288b0b78b18d0cc54d320ebec2f71a9d1e57eccfb0ecdd1ed572eed2ff", + "rev": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d" + }, + "recipe": { + "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151001.1024", + "deps": [ + "helm-core" + ] + }, + "phpcbf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nishimaki10/emacs-phpcbf.git", + "sha256": "58d57f6efb8bd201dd6eef6345eda1b0d1a04d45ce0eae12062b86452fa9707e", + "rev": "b556b548ceb061b002389d6165d2cc63d8bddb5d" + }, + "recipe": { + "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150302.728", + "deps": [ + "s" + ] + }, + "dispass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ryuslash/dispass.el.git", + "sha256": "81ee51451d3b39f30f08d332b5ed725ed3ea6e8f8d5a1e0cd83b439b0392af1c", + "rev": "b6e8f89040ebaaf0e7609b04bc27a8979f0ae861" + }, + "recipe": { + "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140202.931", + "deps": [ + "dash" + ] + }, + "ac-inf-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ac-inf-ruby.git", + "sha256": "40c5c8e611944ef31f46ac7b327f36ff39962be58d2602062eb5d6903198b875", + "rev": "3a1e741b40b8dba0e9c235dad4b9907411d9dcd3" + }, + "recipe": { + "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131115.550", + "deps": [ + "auto-complete", + "inf-ruby" + ] + }, + "cider-eval-sexp-fu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/cider-eval-sexp-fu.git", + "sha256": "33cef1dee2c1a679ff88a49b99ffadcd75d4679fac0ff67d0bc73ef467de9651", + "rev": "7c54327e6ff8914c7dbc9f8de289e1b255d01fbc" + }, + "recipe": { + "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150320.2215", + "deps": [ + "emacs", + "eval-sexp-fu", + "highlight" + ] + }, + "wn-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/luismbo/wn-mode.git", + "sha256": "5451e4cd0f946e12d209409779683459a51f9f05dbb6edb70acc3002aae48395", + "rev": "f05c3151523e529af5a0a3fa8c948b61fb369f6e" + }, + "recipe": { + "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.2352", + "deps": [ + "emacs" + ] + }, + "professional-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juanjux/emacs-professional-theme.git", + "sha256": "347d15c6b4d0e8932d49996f2e9a3068945018dd8434f22bf329dc19571857c8", + "rev": "0927d1474049a193f9f366bde5eb1887b9ba20ed" + }, + "recipe": { + "sha256": "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.600", + "deps": [] + }, + "goto-last-change": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/camdez/goto-last-change.el.git", + "sha256": "e59710be1894faac74782478467008a0ed5317b8d2a7b383faf1b4a3f6a61fb8", + "rev": "58b0928bc255b47aad318cd183a5dce8f62199cc" + }, + "recipe": { + "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150109.1223", + "deps": [] + }, + "flymake-css": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-css.git", + "sha256": "874738fbcbb2b0f26bf574b846a68f87032eeccc7032d995771a23559ab91fed", + "rev": "4649fc209836498d709bb627e8aa6e50189a06ec" + }, + "recipe": { + "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121104.1304", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-pyflakes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/flycheck-pyflakes.git", + "sha256": "8aeba55672e10a4e0b4a70496e184603ace88c1817f9789925b81d51b45e5499", + "rev": "026ef070f1589bc0ae8f86a02072fa36e57b9912" + }, + "recipe": { + "sha256": "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140630.1721", + "deps": [ + "flycheck" + ] + }, + "vc-check-status": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisirs/vc-check-status.git", + "sha256": "9918eb8a561f6f14c38f12bf6a74920ce6138f635c8fa39624defde968ad6eca", + "rev": "540db724cdd9f517f54fcd9f8c4be3bf274c9333" + }, + "recipe": { + "sha256": "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.301", + "deps": [] + }, + "pbcopy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/pbcopy.el.git", + "sha256": "86970f548da98717a9a1c73bd9d35f8d36c8bb656e26d045ae52d77169031c8d", + "rev": "338f7245746b5de1bb96c5cc2b32bfd9b5d83272" + }, + "recipe": { + "sha256": "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150224.2259", + "deps": [] + }, + "ob-lfe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/ob-lfe.git", + "sha256": "16d26be5099649fe12fe5fc02df4fd03d758f8829ed558c9f4c46d4d1cc367d6", + "rev": "d50a5d76e389501504e060a7005f20b96c895594" + }, + "recipe": { + "sha256": "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150701.855", + "deps": [ + "org" + ] + }, + "auto-yasnippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/auto-yasnippet.git", + "sha256": "117fec8ed9c14f553cb767e221b132011745478dcb712d7f1b82065821adfc35", + "rev": "deb00c74cfc98c32e1e71baf44ee8d2c3df7164e" + }, + "recipe": { + "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.610", + "deps": [ + "yasnippet" + ] + }, + "company-try-hard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/company-try-hard.git", + "sha256": "a8a71f25c760d4cc93f62660218c8c36a9a371fa7ee9a254982392bf38fb9f44", + "rev": "0401e8afa6bd4d3e9d2cf18e58955b83aef93005" + }, + "recipe": { + "sha256": "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150902.1706", + "deps": [ + "company", + "dash", + "emacs" + ] + }, + "clippy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/clippy.el.git", + "sha256": "4cc2e4844cf15eb4279824a690c47a3c492a188570823f7997179e1bff8b5557", + "rev": "23ba8772056a103267611b3757722730740d9f00" + }, + "recipe": { + "sha256": "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140417.614", + "deps": [ + "pos-tip" + ] + }, + "company-coq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cpitclaudel/company-coq.git", + "sha256": "bc01164d09c438cc38cc5d3171506847bca2ff01ff3e158394a37c231d31c996", + "rev": "eba6fee09a02b42ef581fa757314b6b63a11601f" + }, + "recipe": { + "sha256": "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150718.2131", + "deps": [ + "cl-lib", + "company", + "company-math", + "dash", + "yasnippet" + ] + }, + "emacsql-sqlite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" + }, + "recipe": { + "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151004.915", + "deps": [ + "cl-lib", + "emacs", + "emacsql" + ] + }, + "haskell-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/haskell/haskell-snippets.git", + "sha256": "c619b88d3087f574a5516f3bbacd0512bd9fde07143aac42b99aed8d773e6d2c", + "rev": "bcf12cf33a67ddc2f023a55072859e637fe4fa25" + }, + "recipe": { + "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150612.1439", + "deps": [ + "yasnippet" + ] + }, + "ycm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/neuromage/ycm.el.git", + "sha256": "d25b62cb6415c8e64542ebaaabe5a845399d30a80e13ca2b18f3ff849487cc7e", + "rev": "4da8a14abcd0f4fa3235042ade2e12b5068c0601" + }, + "recipe": { + "sha256": "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150822.1336", + "deps": [] + }, + "ldap-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/ldap-mode.git", + "sha256": "c34dc837e595b5ba84840a1958364ce14fa46e75aad54de63ad9eb344d16bb0e", + "rev": "8761a835e90b990fb5fe70173ecdcd6f4b776cb0" + }, + "recipe": { + "sha256": "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091203.1215", + "deps": [] + }, + "golint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/golang/lint.git", + "sha256": "0391e33c7143fded33e9f919566fddb1776526294201785da0a76510db848f9a", + "rev": "32a87160691b3c96046c0c678fe57c5bef761456" + }, + "recipe": { + "sha256": "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150414.1930", + "deps": [] + }, + "typed-clojure-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/typedclojure/typed-clojure-mode.git", + "sha256": "4184ccfcd4972ed5db00ba47db42e811dbd719ca6d4f6382813aaf4a43ce473e", + "rev": "3abd53d8cc1ad77ffe76e02849d0ab7731fd8364" + }, + "recipe": { + "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151003.1322", + "deps": [ + "cider", + "clojure-mode" + ] + }, + "load-theme-buffer-local": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vic/color-theme-buffer-local.git", + "sha256": "7d32eb146147f908c02eb2e5562733f34ed117d410d72bf9df1c2932bc4c6c3f", + "rev": "ca8470bc34c65a026a6bca1707d95240bfd019af" + }, + "recipe": { + "sha256": "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120702.1536", + "deps": [] + }, + "xah-math-input": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xah-math-input.git", + "sha256": "68f1ddfd27479bce44bca27055555580cbbd383cb07c8510d133296f70670d85", + "rev": "dbf055ca2b5497465de57e98d6cc58ddfa09bb8d" + }, + "recipe": { + "sha256": "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150907.1900", + "deps": [] + }, + "vim-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/emacs-vim-region.git", + "sha256": "2ff2a5cf2604f8438749dbc757064b4b09203ff6f0c3d356818801106c84e28d", + "rev": "7c4a99ce3678fee40c83ab88e8ad075d2a935fdf" + }, + "recipe": { + "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140329.1124", + "deps": [ + "expand-region" + ] + }, + "hideshowvis": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hideshowvis.el", + "sha256": "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6" + }, + "recipe": { + "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "tumble": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/febuiles/tumble.git", + "sha256": "8c16ee4d36971e2d8ceb83c3d3863e183b081b8406f2c772240c183bc1c498ce", + "rev": "8d04216752ad94c343ffa507016b893f8252602f" + }, + "recipe": { + "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.1349", + "deps": [ + "http-post-simple" + ] + }, + "evil-tabs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/evil-tabs.git", + "sha256": "79ce6c756c75665de49269a407bf22c6e1cc76fc5310788932da4890ab5978b0", + "rev": "93eba393e86ea4574aebaf4edbd27dce4fd7b2e6" + }, + "recipe": { + "sha256": "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150127.1546", + "deps": [ + "elscreen", + "evil" + ] + }, + "solidity-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ethereum/emacs-solidity.git", + "sha256": "9cb0f6a1bb4b26c949fe08b6cb094d4f7182150ce7c5d2cf6cf0044813f34f97", + "rev": "8bbd7d9e1e823b524d882d996b5c4e7b6a523b41" + }, + "recipe": { + "sha256": "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.1111", + "deps": [] + }, + "ac-math": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vitoshka/ac-math.git", + "sha256": "a62d775b29574891a744eff314de6b8bc3497c5f25ad8b65b54fa29db86aac5c", + "rev": "c012a8f620a48cb18db7d78995035d65eae28f11" + }, + "recipe": { + "sha256": "1gx35m0wv60cfgm87y2c7vrpwdsqjzk9bz4pp9dbs8dhxvji0ay4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.1527", + "deps": [ + "auto-complete", + "math-symbol-lists" + ] + }, + "flex-autopair": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/uk-ar/flex-autopair.git", + "sha256": "14efca11472950338f9433d3583f903e9d8dfa8e8eb835049f6ce40afd81eaa0", + "rev": "4bb757f2556a4a51828e2fed8fb81e31e83052cb" + }, + "recipe": { + "sha256": "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120809.718", + "deps": [] + }, + "company-ghci": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juiko/company-ghci.git", + "sha256": "24008f241721ab96e1baa0b6ea1437127809eab715b05a0ef381cc2ce79e5684", + "rev": "c62617770a457c53d1d49621d4e71a2c36de2f82" + }, + "recipe": { + "sha256": "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1250", + "deps": [ + "company", + "haskell-mode" + ] + }, + "aurel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/aurel.git", + "sha256": "d894cd8e53471212d40e8d9da7b0d8b28886be98380ea49ff863b14cc1f06d9b", + "rev": "0f135e600de3ef60d0cd4d98f3fcaa12a9d1e4c9" + }, + "recipe": { + "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.1515", + "deps": [] + }, + "ob-typescript": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lurdan/ob-typescript.git", + "sha256": "e1c272f28c4f6ebb61a873c87ef97cdce7d79ef8c5be08e4257f124e51ccc683", + "rev": "9dcbd226cbfb75e790dd9de91d9401dde85a889a" + }, + "recipe": { + "sha256": "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.730", + "deps": [ + "emacs", + "org" + ] + }, + "anaconda-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/anaconda-mode.git", + "sha256": "aea3ff085f8d7c28a45973f37a8b5256e975c13937a66d55cfe7542e174f495a", + "rev": "e8f6d910993ac1ecaa41b07abc4cdc9e76e66fb8" + }, + "recipe": { + "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150922.737", + "deps": [ + "dash", + "emacs", + "f", + "pythonic", + "s" + ] + }, + "js2-closure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jart/js2-closure.git", + "sha256": "4cffe59aad5f1494c93cef3e291978e7f23b4c16929b2e76c20119b64edf0504", + "rev": "8e81e90ee0b923b9d053c339e4b328ecc7693998" + }, + "recipe": { + "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141027.1750", + "deps": [ + "js2-mode" + ] + }, + "drag-stuff": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/drag-stuff.git", + "sha256": "858d06f9d795c71f04398caec289d9876ffc0096f295f3ff3ad9b730c50e7a0b", + "rev": "0d7e28bf234037380dbcb24b9175b96ae34ef8fb" + }, + "recipe": { + "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150717.732", + "deps": [] + }, + "epic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshinari-nomura/epic.git", + "sha256": "35466d110cc20f5c181764b685aa8e8e30e1fb9e598900772f7bea834488eea1", + "rev": "02f6472bb490a39d42ed49c0364972173202f6e1" + }, + "recipe": { + "sha256": "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150503.237", + "deps": [ + "htmlize" + ] + }, + "dsvn": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/", + "sha256": "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq", + "rev": "1719971" + }, + "recipe": { + "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130120.1457", + "deps": [] + }, + "clocker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/clocker.el.git", + "sha256": "3b9df19d086c3d67193292e1a9aaed12652207e2ccefe12b9be50621c9696fab", + "rev": "9cb1440ca1fa4f82597f8b053c7f8e44f4682229" + }, + "recipe": { + "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150505.1043", + "deps": [ + "dash", + "projectile" + ] + }, + "ujelly-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marktran/color-theme-ujelly.git", + "sha256": "34dcb1c9c6fbf1e832b7a78a433808a804490f0a4fb888c5b50d076d77be3e33", + "rev": "ff4b9fb4a9469cd807ed712e05cf739a1a900218" + }, + "recipe": { + "sha256": "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.2336", + "deps": [] + }, + "hl-spotlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hl-spotlight.el", + "sha256": "1mvcvd8401w0xw8kjq6rwmmqa41npgdxgpghf4nxl6rghza77nwh" + }, + "recipe": { + "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1624", + "deps": [] + }, + "quick-buffer-switch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/renard/quick-buffer-switch.git", + "sha256": "969c0a175112b464d416d1b2af3ac836c1224fee72a997ca006f3d92ee0e9850", + "rev": "d5fdd67b4c9f04b7a7122da2215e4ae076a03b1b" + }, + "recipe": { + "sha256": "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.1708", + "deps": [] + }, + "jump-char": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/jump-char.git", + "sha256": "f898b75b5feedeae063ff16150cf0175690f6dfde99df812f60e8ceca951f46e", + "rev": "b6011a1cb501c0242d11103bbee4d9138fcc765f" + }, + "recipe": { + "sha256": "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.1435", + "deps": [] + }, + "e2wm-svg-clock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/e2wm-svg-clock.el.git", + "sha256": "cefc7c015e8079d819302ae1246bc40936152b7cf613b36577b80abf2fb52e40", + "rev": "d425925e3afffcbe2ff74edc80b714e4319d4c94" + }, + "recipe": { + "sha256": "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.706", + "deps": [ + "e2wm", + "svg-clock" + ] + }, + "instapaper": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jfm/emacs-instapaper", + "sha256": "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8", + "rev": "8daa0058ede7" + }, + "recipe": { + "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130104.821", + "deps": [] + }, + "tracking": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/circe.git", + "sha256": "d72cca8e58ec8b961a6926e4966469444d13c9298c45ec2d53805fe9869f837e", + "rev": "c9862e432d2dad7cd568d79dbe49849245333fb1" + }, + "recipe": { + "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.519", + "deps": [] + }, + "findr": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/findr.el", + "sha256": "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q" + }, + "recipe": { + "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.707", + "deps": [] + }, + "helm-chrome": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/helm-chrome.git", + "sha256": "9e455817ac4e58ac0abd02061e985f0ed70beb4f899b8dee91888a83ab2f8155", + "rev": "212711d5adcbd3af9195855792ef0166fdf7b8ff" + }, + "recipe": { + "sha256": "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.2327", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "chruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/plexus/chruby.el.git", + "sha256": "34c335e6d277a2bc50f0b900155b0507d0ef5399886f6270b43487234f5ba03f", + "rev": "0b210f5bb8c38dbe4581e660055cf9bac93304d0" + }, + "recipe": { + "sha256": "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.630", + "deps": [] + }, + "whitaker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/whitaker.git", + "sha256": "4b319f011e50d555e510fd4463f482be481c22271f2aec1124c53ebca967e5f8", + "rev": "eaf26ea647b729ca705b73ea70312d5ffdf89448" + }, + "recipe": { + "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150814.622", + "deps": [ + "dash" + ] + }, + "company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/company-mode/company-mode.git", + "sha256": "62e710636351349ad3892477176e45365866bf92ebbf7b9f6f1010b595d86b30", + "rev": "250ca1c395c6f05b733abce69a2d928b6cd31618" + }, + "recipe": { + "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1541", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "twilight-bright-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jimeh/twilight-bright-theme.el.git", + "sha256": "32fb2d83cefcbef6593ceffd6392927f8ee611f0752bcc53cd81c1fb1c45e6ca", + "rev": "322157cb2f3bf7920ecd209dafc31bc1c7959f49" + }, + "recipe": { + "sha256": "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130605.343", + "deps": [] + }, + "macro-math": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/macro-math.el.git", + "sha256": "be7d6302be52cfb1d25d11d2e9f70c270aa568e51878dc79ef36fa3eca93c7c5", + "rev": "216e59371e9ee39c34117ba79b9acd78bb415750" + }, + "recipe": { + "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130328.1104", + "deps": [] + }, + "elscreen-mew": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/elscreen-mew.git", + "sha256": "48f717202e8261d8786b41d47847f54d4552c02a032659d733c7a038586dfcb8", + "rev": "f66a2a5a8dd904791ede5133fdd183522b061bba" + }, + "recipe": { + "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140629.1016", + "deps": [ + "elscreen" + ] + }, + "helm-backup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antham/helm-backup.git", + "sha256": "baeec59b5472d8ac4d86b36791ca65dc609ffbe64930e2d0f4a824816b487dc3", + "rev": "184026b9fe454aab8e7730106b4ca494fe307769" + }, + "recipe": { + "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1247", + "deps": [ + "cl-lib", + "helm", + "s" + ] + }, + "cedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/cedit.git", + "sha256": "7bc8d8b8344c07155e031f4383ebb4f6c4438737e118c34020039372876c0fb9", + "rev": "0878d851b6307c162bfbddd2bb02789e5e27bc2c" + }, + "recipe": { + "sha256": "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141231.1014", + "deps": [] + }, + "dired-sort-menu": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-sort-menu.el", + "sha256": "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi" + }, + "recipe": { + "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.707", + "deps": [] + }, + "rinari": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/rinari.git", + "sha256": "fb86d6dccb24fd0e62e7bda739f250fc2e508b0b2a027d67c9571854c90891ac", + "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" + }, + "recipe": { + "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150709.140", + "deps": [ + "inf-ruby", + "jump", + "ruby-compilation", + "ruby-mode" + ] + }, + "irony-eldoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ikirill/irony-eldoc.git", + "sha256": "6ad813d960762d54d0a6936232766f5db9776f7bb09dcc060da83e1740d21634", + "rev": "bd1fadbc7c806d84aeec098b19238e5328cbbb7b" + }, + "recipe": { + "sha256": "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141227.19", + "deps": [ + "cl-lib", + "emacs", + "irony" + ] + }, + "bm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joodland/bm.git", + "sha256": "633cae4a027da2bc72c9554f8024f92d28b8f1585dc7a37a0098b5084eddcffa", + "rev": "d773ecda1c7aec7d9adf4471884c3aba8be22e2b" + }, + "recipe": { + "sha256": "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.1722", + "deps": [] + }, + "seq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/seq.el.git", + "sha256": "05f8290607ef8fdebf45eeb76ecb554d4183d3212eea96e25fb3e5fd18d6f169", + "rev": "1349714b20daed2e62a21ebdd5244acc0ccbef0c" + }, + "recipe": { + "sha256": "1a4ldmaqsd0jjgcyqwpyklj306xlnfqh2gg44vjlwp95m4aqv58l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1217", + "deps": [] + }, + "ox-textile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yashi/org-textile.git", + "sha256": "5dac91e68b1efddd008f89d5e5c8e2ef4d860e709461d94514c79c1412489a5e", + "rev": "0dfca070e35bc6f4a412319e2474bb88666c8c2d" + }, + "recipe": { + "sha256": "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.2225", + "deps": [ + "org" + ] + }, + "helm-prosjekt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/prosjekt.git", + "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "rev": "a864a8be5842223043702395f311e3350c28e9db" + }, + "recipe": { + "sha256": "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140129.117", + "deps": [ + "helm", + "prosjekt" + ] + }, + "ucs-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/ucs-utils.git", + "sha256": "b595e2a4f08ca3fec2e7fb03bf5e91a57c9766d1156c527765fcd5ab1e7fedba", + "rev": "cbfd42f822bf5717934fa2d92060e6e24a813433" + }, + "recipe": { + "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150826.914", + "deps": [ + "list-utils", + "pcache", + "persistent-soft" + ] + }, + "ids-edit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/ids-edit.git", + "sha256": "f9bab428a2d4a024f3e0e47501e5370cd375b47df8c3201aac9fa959d209f0cc", + "rev": "f40495ecd434c6b39d52cadfed25098f08ce78cb" + }, + "recipe": { + "sha256": "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.635", + "deps": [ + "emacs" + ] + }, + "string-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/string-utils.git", + "sha256": "c3b15fab51598da0e811257ef20138f89edbcb6b2a6e5891073ea498c7dbb3b5", + "rev": "c2232d691617973ecf12a970c6008a161c21da14" + }, + "recipe": { + "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "list-utils" + ] + }, + "nose": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/durin42/nosemacs", + "sha256": "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm", + "rev": "194d7789bf79" + }, + "recipe": { + "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140520.1148", + "deps": [] + }, + "egison-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/egisatoshi/egison3.git", + "sha256": "dd1d9f33c93eeed03d9a13c6ff67b5aea6e5faaf33bf84687b40cdf8e87eb329", + "rev": "dbb8773f8a47655f3b5311e0a87f63c7b39f60db" + }, + "recipe": { + "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150827.2329", + "deps": [] + }, + "hy-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hylang/hy-mode.git", + "sha256": "556062e6488f60f3cddb54fb9c5c9e8cecba0c5fec7e0f9dfa2b0d246f1de49b", + "rev": "af0d848b069ca0cda3ed177d37d94de117f7ffec" + }, + "recipe": { + "sha256": "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.743", + "deps": [] + }, + "shader-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/midnightSuyama/shader-mode.git", + "sha256": "4426dfd26a6a04f57c3c2b0918fb66916fb95828ebb51ea4d9c8aa9db3250950", + "rev": "5d5fcbc614f8d7e9226730dd587faf14115b0e6f" + }, + "recipe": { + "sha256": "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.904", + "deps": [ + "emacs" + ] + }, + "elscreen-separate-buffer-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wamei/elscreen-separate-buffer-list.git", + "sha256": "ce8cdbc0979790e8a0e90d01f3f71f179f2a50c301b1e57cfd9daa4fa8b564f0", + "rev": "1aa66cdbf2b1dc87689725aef004a29bb79dd0f9" + }, + "recipe": { + "sha256": "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150522.145", + "deps": [ + "elscreen", + "emacs" + ] + }, + "helm-cider-history": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Kungi/helm-cider-history.git", + "sha256": "2654b8a50aebac103d577294a770d50b521c7bbfa4e7d49c38af462015fed434", + "rev": "c391fcb2e162a02001605a0b9449783575a831fd" + }, + "recipe": { + "sha256": "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150719.1620", + "deps": [ + "cider", + "helm" + ] + }, + "ido-occur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danil/ido-occur.git", + "sha256": "201119e1fafbf8bb68a1f0416b496df2a05fad249175d5a58438591b7d5e68f7", + "rev": "13dc79ac2bb148b9fcbb470509a06ad1cb7008bb" + }, + "recipe": { + "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150928.1643", + "deps": [ + "dash", + "ido-vertical-mode" + ] + }, + "cus-edit+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cus-edit+.el", + "sha256": "0qqfxnsy124nk61iqgb8rjwziyj6h4nvx0gdpsj03z1zh7gqms9s" + }, + "recipe": { + "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150814.949", + "deps": [] + }, + "outshine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/outshine.git", + "sha256": "973d97d0b43fc25892727cadb683767b8c33c318c60a87cd1b15877e4e39a8df", + "rev": "d1847614727a060e01d1d2f33b414a1b49d3e85b" + }, + "recipe": { + "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1002", + "deps": [ + "cl-lib", + "outorg" + ] + }, + "ack-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chumpage/ack-menu.git", + "sha256": "b090306e58a18c739707d46ebf4edd259ee53824e8cd896a3b0174d85a6fa788", + "rev": "f77be93a4697926ecf3195a355eb69580f695f4d" + }, + "recipe": { + "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150504.1522", + "deps": [ + "mag-menu" + ] + }, + "golden-ratio": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/golden-ratio.el.git", + "sha256": "c4f569c53c384e204056bd4dc0ca97bbac0b2314f73cda992416d0b8ed08666b", + "rev": "72b028808b41d23fa3f7e8c0d23d2c475e7b46ae" + }, + "recipe": { + "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150819.620", + "deps": [] + }, + "evil-mark-replace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/evil-mark-replace.git", + "sha256": "d23ac7591ffca8079c6a16021cca7c9b32725b3622e9e8c6f3cbe3c30572d212", + "rev": "56cf191724a3e82239ca47a17b071c20aedb0617" + }, + "recipe": { + "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150424.218", + "deps": [ + "evil" + ] + }, + "dark-krystal-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-dark-krystal-theme.git", + "sha256": "ddf5188b1ed6142c782df475815820b873241e68a24c8a3001495ff59857851f", + "rev": "bcb3c4ccf17db541e319d60e2eca38a5b22d5664" + }, + "recipe": { + "sha256": "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.101", + "deps": [ + "emacs" + ] + }, + "helm-hoogle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/haskell-config.git", + "sha256": "572d2c743a5b066ec3e266ebc93c759c2df295a6ce85dab8c2a4d81797ff5014", + "rev": "8e4e28c3852376510861f64f00009a63b8ec0c7d" + }, + "recipe": { + "sha256": "0672mqm0c261mknbgc3a4pahq27gw2pfklflxl1y4ykbs6q7vcyw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150919.421", + "deps": [ + "emacs", + "helm" + ] + }, + "kixtart-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ryrun/kixtart-mode.git", + "sha256": "6b931784b85f3e17936b58424d3715f536e25dadbb67606496151e8c1e63a3d1", + "rev": "1c2356797e7b766bbaaa2b341176a8b10499cd79" + }, + "recipe": { + "sha256": "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150611.1104", + "deps": [ + "emacs" + ] + }, + "helm-ag": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-ag.git", + "sha256": "fe494f3515f8d4f4e8b509739390ebd9525a81dafa2c76fbf35678a4e11563dd", + "rev": "47aca7f291eccd81f1b1a4a8f96b8d8caec5242e" + }, + "recipe": { + "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.218", + "deps": [ + "cl-lib", + "helm" + ] + }, + "direx-grep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/direx-grep.git", + "sha256": "b0b822f61e4ec1bc51d5c455ab319740392848446034a1ccd6325eeb31808d6b", + "rev": "1109a512a80b2673a70b18b8568514049017faad" + }, + "recipe": { + "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140515.1006", + "deps": [ + "direx" + ] + }, + "muttrc-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/muttrc-mode.el", + "sha256": "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis" + }, + "recipe": { + "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090804.1752", + "deps": [] + }, + "cycle-resize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pierre-lecocq/cycle-resize.git", + "sha256": "237ac7c81f7df8f6f9aee5ed69aea93f35ab9beab985e3d5e4c7fe6413cac341", + "rev": "1a5ed3ff6f7f5dc097c38b4361708b6882af692c" + }, + "recipe": { + "sha256": "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150602.1423", + "deps": [] + }, + "cmds-menu": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cmds-menu.el", + "sha256": "1dfnvvdlyb8jlrj6zkmry075vmax77kyjnk5mjsfz2wwyk5lsfb5" + }, + "recipe": { + "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1534", + "deps": [] + }, + "centimacro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/centimacro.git", + "sha256": "f0314ef095a1e1c634f340aa2fc41c298c3a1c82da6fdba508950e96b0ba197f", + "rev": "1b97a9b558ed9c49d5da1bfbf29b2506575c2742" + }, + "recipe": { + "sha256": "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140306.827", + "deps": [] + }, + "cmake-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Kitware/CMake.git", + "sha256": "d6cb00eb948877d09d16c084c0463bda8b65de88d16298a3a2c46e7efae7c804", + "rev": "6a6d00aeeffadcb535b5a4cf4adaeda296f91b3a" + }, + "recipe": { + "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151012.926", + "deps": [] + }, + "eyedropper": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eyedropper.el", + "sha256": "1bs8239sv3mjyj2dw72wrl7yp1ds7gs3cs4a9ds7hlzzz7qw9s6s" + }, + "recipe": { + "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150509.1545", + "deps": [ + "hexrgb" + ] + }, + "smart-forward": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/smart-forward.el.git", + "sha256": "0a76a5c2295a86af7b4c8b3a4bc77bbedca8758d60c61f874c1542f9713f84a6", + "rev": "7b6dbfdbd4b646376a567c70e1a161545431b72b" + }, + "recipe": { + "sha256": "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140430.213", + "deps": [ + "expand-region" + ] + }, + "majapahit-theme": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/franksn/majapahit-theme.git", + "sha256": "ab910e3f9ddaec984d05be53cf4f4a593e67d95fbe90705d9fa708ca41377c45", + "rev": "09a038826ef00b82684e569eaca07ceff7228219" + }, + "recipe": { + "sha256": "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.1243", + "deps": [] + }, + "interleave": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rudolfochrist/interleave.git", + "sha256": "11059f527efb7aca797796516cd1c14cc3acc87f5bf8e15a02474f1d95f35472", + "rev": "4b8ce53ee8ca075029ce88d203735256a875e516" + }, + "recipe": { + "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.835", + "deps": [] + }, + "workgroups2": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pashinin/workgroups2.git", + "sha256": "2bcf5853ea97d94154c1317085d741855960eca6cdf3852f8d8f429442773656", + "rev": "928d509157ec8a4a2e343b6115dff034c3243a7a" + }, + "recipe": { + "sha256": "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141102.1322", + "deps": [ + "anaphora", + "cl-lib", + "dash", + "f" + ] + }, + "eyebrowse": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/eyebrowse.git", + "sha256": "47e108da168fe02e2d186f98ac2b10ca36ec682762a8eb0bf409b109c5e68549", + "rev": "6d75409a81a6447765ad2171e3d0b5a272e1f207" + }, + "recipe": { + "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.816", + "deps": [ + "dash", + "emacs" + ] + }, + "ido-occasional": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/ido-occasional.git", + "sha256": "99e2134a58e14f40ef357434c68e9237c0d29414ba190ede266ab4ce93c0937e", + "rev": "d405f1795e1e0c63be411ee2825184738d29c33a" + }, + "recipe": { + "sha256": "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150214.648", + "deps": [ + "emacs" + ] + }, + "extempore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/extemporelang/extempore-emacs-mode.git", + "sha256": "20215de3e1eaf3e3834b2411eb1164a0af5a486eb0152f6a62917600ac6524ec", + "rev": "e1efe28b29e2a5caf03a0cf1f1406e6a375be919" + }, + "recipe": { + "sha256": "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.40", + "deps": [ + "emacs" + ] + }, + "oauth": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/psanford/emacs-oauth.git", + "sha256": "920e98b72e57d7713a0aec4fca2e8d38e688f7d4d76564d18d80c7c1c2f40d15", + "rev": "ee4744ad76a1560281b0c4944575a3bd598c6458" + }, + "recipe": { + "sha256": "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130127.1951", + "deps": [] + }, + "delight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/delight.el", + "sha256": "1gap2icsqi7cryfvcffh41zqg2ghl4y7kg9pngzdfjrc3m7sf635" + }, + "recipe": { + "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141128.837", + "deps": [] + }, + "apropospriate-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/apropospriate-theme.git", + "sha256": "7d674a3fbe7a33e0aef29f2c9fbe12252cfd7a702eb8904515f194db17bd36dd", + "rev": "3cc7729e266058c3c080ee67769cb0ff3e0789a6" + }, + "recipe": { + "sha256": "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.1059", + "deps": [] + }, + "speech-tagger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cosmicexplorer/speech-tagger.git", + "sha256": "44c382b456b23dea6c9dbda97e9b0ca48f91bff789c5b6158a10b5d4ce865b33", + "rev": "10135e324630d25ae8c16f052cf4d97bda592164" + }, + "recipe": { + "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150903.2", + "deps": [ + "cl-lib" + ] + }, + "dokuwiki-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kbkbkbkb1/emacs-dokuwiki-mode.git", + "sha256": "f929dfd835a5c005c1b7f742ddec218f3d5a8d4ed3286f794c55c32aeeb69680", + "rev": "e0cecc9551f490318e7a23ed9e0a3082c7196bc7" + }, + "recipe": { + "sha256": "0q5ybyj35dyh8k0nfvbglsq3ad2apc8cdijw4wqczc5180fckgy9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140130.1136", + "deps": [] + }, + "wakatime-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wakatime/wakatime-mode.git", + "sha256": "363cc9b5737c48a6b2fe4b94ef54ce0b6834284f7c340e3006d197b7cadc8dad", + "rev": "883f969c1502994b55912c6ade7155220e3c2cea" + }, + "recipe": { + "sha256": "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.1830", + "deps": [] + }, + "evil-vimish-fold": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alexmurray/evil-vimish-fold.git", + "sha256": "58c6a0315e57b059c1ae2f30cf82b1186e497236145afda45f6fccd2c7bf9154", + "rev": "d187a685d9610ec8159040c90030cb8ada4f54a5" + }, + "recipe": { + "sha256": "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.2326", + "deps": [ + "emacs", + "evil", + "vimish-fold" + ] + }, + "try": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/larstvei/Try.git", + "sha256": "ccc50f794e672eb1a96723fc78a7cbd42bf05e1e95703ed6794945792664df16", + "rev": "464cfb73599c88a4b57c83adfa93173c41d28a35" + }, + "recipe": { + "sha256": "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150608.411", + "deps": [ + "emacs" + ] + }, + "whole-line-or-region": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/whole-line-or-region.git", + "sha256": "2d30e199cdd52d3ad438df540340274c13f7bbf289f1f77147a836b2f0dce046", + "rev": "a60e022b30c2f4d3118bcaef1adb77b90e0ca941" + }, + "recipe": { + "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110901.330", + "deps": [] + }, + "flymake-elixir": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syl20bnr/flymake-elixir.git", + "sha256": "088e8c33a45862b0147925a9677c2b4c4d59fb15db01acf45e5224338bd80bf9", + "rev": "3810566cffe35d04cc3f01e27fe397d68d52f802" + }, + "recipe": { + "sha256": "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130810.917", + "deps": [] + }, + "flatui-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/john2x/flatui-theme.el.git", + "sha256": "163fc66d83f917801fbfb7679b9613815e4dd48032be61b4eb8de6908ab3f848", + "rev": "80d1967ea73c10aa8aa10620c2b343010e9ce5b9" + }, + "recipe": { + "sha256": "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150531.343", + "deps": [] + }, + "seti-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/caisah/seti-theme.git", + "sha256": "9617807672e6c8483be459f026a06c441422ef0a9f21d34483bcaf5ce9ea2fa2", + "rev": "f2f472af00f251f8cdced29faadbb3380d3c7ff1" + }, + "recipe": { + "sha256": "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150314.322", + "deps": [] + }, + "git-link": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sshaw/git-link.git", + "sha256": "aee955bf9d1d95a1c5fd6e1ed2e2ceabb5324659294b4adaecef572bd9ff43d1", + "rev": "00a8ed924d837d43bfdc486ab389ee400b6c2a8f" + }, + "recipe": { + "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.1225", + "deps": [] + }, + "evil-nerd-commenter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/evil-nerd-commenter.git", + "sha256": "7b486a366a536fc2fa6e879bda4a9a76cef552e673879c2056e4361b9f644c33", + "rev": "770981cffd7e8d967e6291c738534a04bcd7f753" + }, + "recipe": { + "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.625", + "deps": [] + }, + "aes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sauermann/emacs-aes.git", + "sha256": "4aad119c1eb346ee70401cef0aba0ffe98ee6db5985066557af30ce38f94dba1", + "rev": "61d0da553ad980e5b9079444aed8214a28b409d9" + }, + "recipe": { + "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1603", + "deps": [] + }, + "vcl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ssm/vcl-mode.git", + "sha256": "e76590efe0e4d5a4054a71505d55851aa78d0eea5b650d5c25996696ccbd7de1", + "rev": "9f315654ec2ab13e5a14b752cac57dc832bef893" + }, + "recipe": { + "sha256": "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1323", + "deps": [] + }, + "orgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/orgit.git", + "sha256": "e1665631714e9d84f9341d3ec21945862b93db4418411ba4b404ec125781f934", + "rev": "731c5cb4f1c7e2ee5b819ca159c0c01e2b306c73" + }, + "recipe": { + "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151008.1614", + "deps": [ + "dash", + "emacs", + "magit", + "org" + ] + }, + "jump-to-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/jump-to-line.git", + "sha256": "7a6057656a200f741cdaf7c8c694d4f4838f3dd0d3e25e84b9a10e315ea537e9", + "rev": "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8" + }, + "recipe": { + "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130122.1053", + "deps": [] + }, + "browse-at-remote": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rmuslimov/browse-at-remote.git", + "sha256": "98cc9ce77720195e07e46f5ecc0668c5728f28ad6ed470baf1e1cfd4a1666ce0", + "rev": "54853e0047cd8b20143f839a2f06e86ad31aaccc" + }, + "recipe": { + "sha256": "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1952", + "deps": [ + "cl-lib", + "f", + "s" + ] + }, + "pkg-info": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/pkg-info.el.git", + "sha256": "a6d32a57e310aa3ab9adbf5bc6fb0be052c3accc2625b33180467554820e1a3e", + "rev": "4dbe328c9eced79e0004e3fdcd7bfb997a928be5" + }, + "recipe": { + "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150517.643", + "deps": [ + "epl" + ] + }, + "dollaro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/dollaro.git", + "sha256": "b2bd1e5db291d4bec8108b797649338deea3cfe68f8aaf068ba8b557bdd5d8f7", + "rev": "500127f0172ac7a1eec627e026b59136580a74ac" + }, + "recipe": { + "sha256": "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.702", + "deps": [ + "s" + ] + }, + "rustfmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fbergroth/emacs-rustfmt.git", + "sha256": "a9d6dc2ddcff1cc72938c79b60e806228d32bd8a6850481deb4ce2eb22095944", + "rev": "b54e77b2287bfc558c0b4dbfa8908b4face48320" + }, + "recipe": { + "sha256": "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.1311", + "deps": [ + "emacs" + ] + }, + "helm-css-scss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/helm-css-scss.git", + "sha256": "f05aa3614eeb1c1e5aacd40c477c230bff77e8f5fdb9d94a6867757da1ba4305", + "rev": "ab8348aa98e0daa2f1b771e35bdb06bfacbe5016" + }, + "recipe": { + "sha256": "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140626.1925", + "deps": [ + "emacs", + "helm" + ] + }, + "flycheck-protobuf": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/edvorg/flycheck-protobuf.git", + "sha256": "1fe0fda77559bcea3d4572c3e3d299ba2bc6eca9e8105fe5b71af1c9d8a90fed", + "rev": "2f0ab48b1b2e8f6c4b86ce876598f9ac9868d1da" + }, + "recipe": { + "sha256": "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150731.512", + "deps": [ + "protobuf-mode" + ] + }, + "evil-space": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/linktohack/evil-space.git", + "sha256": "be67ad6727d40618d7d065c74ea5613d159b662540de5035466f538425bc96f4", + "rev": "a9c07284d308425deee134c9d88a2d538dd229e6" + }, + "recipe": { + "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.628", + "deps": [ + "evil" + ] + }, + "ipretty": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/ipretty.git", + "sha256": "f430a6686892d57825c2a294871f61757d4d553e040ea94ed8c8fc7b586a7e6a", + "rev": "6f6da8907abea53d6d246d61e1a0f4ebeb0b9f38" + }, + "recipe": { + "sha256": "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140407.20", + "deps": [] + }, + "wcheck-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tlikonen/wcheck-mode.git", + "sha256": "bb800e20b75c79f4226caf92570c5d4c5e616ccacc11e0546734b4bbcc72f095", + "rev": "6f5e9faabb04f9e7c6698b90487ebe5913a13aed" + }, + "recipe": { + "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1205", + "deps": [] + }, + "overseer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/overseer.el.git", + "sha256": "52710482081e8a7a202626dd1a6e4bb72d15de484690e565b18bede3ec4086ac", + "rev": "db27cbbb10fb9b072d638a1b345102b42b20a37d" + }, + "recipe": { + "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150801.1202", + "deps": [ + "dash", + "emacs", + "pkg-info" + ] + }, + "pp-c-l": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pp-c-l.el", + "sha256": "0czz6qakz55776ji5472clvw13y32k3jvq8w5k9rdlmyxnc2vafd" + }, + "recipe": { + "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1839", + "deps": [] + }, + "win-switch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/genovese/win-switch.git", + "sha256": "7efc05e7e7315d63e8cf0e8e020b2ae1b211d3ce7e7d2584ddbd7dc86214cd4b", + "rev": "a0da96c23e8775a2dfdbe55ed3ec5b57f1ebb26a" + }, + "recipe": { + "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150208.2111", + "deps": [] + }, + "nrepl-sync": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/lein-sync.git", + "sha256": "d9448f7fa709ae1a1428a493cbf7f74cfe0b15e2857b7afd1ea53a38b69cee86", + "rev": "bab53a2361526d63a24cda176d07a1247bf5b399" + }, + "recipe": { + "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140807.1054", + "deps": [ + "cider" + ] + }, + "smtpmail-multi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/smtpmail-multi.git", + "sha256": "0f5b5b95fc93ca121d88937f70ddd8bb1477d0f8e073f81fa15a8a7365b41766", + "rev": "21885f6f7ec46facb64fafc2caa2be01caa4b6db" + }, + "recipe": { + "sha256": "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130921.2242", + "deps": [] + }, + "gitty": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/gitty.git", + "sha256": "00142aa99ec2d24381429241ae7fd2f00bbf92574b9d40da81dc7d2a84d51579", + "rev": "c7c3d622d59531d023b9184d2479316c28045ca2" + }, + "recipe": { + "sha256": "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.148", + "deps": [] + }, + "dmenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lujun9972/el-dmenu.git", + "sha256": "227eeeb36d2601b1a3b7311494aa7bb2ab7354088ad1799c8fecc83d9a100400", + "rev": "8026fbb51140fd8afd0ffa859c7bdfc6e27b8575" + }, + "recipe": { + "sha256": "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.932", + "deps": [ + "cl-lib" + ] + }, + "stem": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/stem.git", + "sha256": "d3ae23dc5ea9feba8eda5d0a7b5d091610ffd01914712f511a03f17fdef6ef29", + "rev": "d74e6611d6ba5025e0276a2cc7c8a90f46bfa9ac" + }, + "recipe": { + "sha256": "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131102.609", + "deps": [] + }, + "erefactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-erefactor.git", + "sha256": "313db0762385e6a74ffb52f8c63e729a1f2a5c61ec2e036b9c3e83eaec31259e", + "rev": "fde3fd42c815c76e8015f69518a92f6bfcfde990" + }, + "recipe": { + "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150620.1943", + "deps": [ + "cl-lib" + ] + }, + "mwe-log-commands": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/mwe-log-commands.git", + "sha256": "832b60f89e9034600a9cf90a867d75e972c23b4d1ac55cb02f26bf43b05fb461", + "rev": "8253f2a311f35b03f72a035744f0cbdd776ea17e" + }, + "recipe": { + "sha256": "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100703.741", + "deps": [] + }, + "livescript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yhisamatsu/livescript-mode.git", + "sha256": "e1521fd17de14375ec52e285d004440f9669b4128d572f26bf3a788dea5e22f5", + "rev": "90a918d9686e256e6d4d439cc20f24dad8d3b804" + }, + "recipe": { + "sha256": "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140612.2321", + "deps": [] + }, + "identica-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gabrielsaldana/Emacs-Identica-mode.git", + "sha256": "47664da51942255bb81207362c4da74e36190b6a83be33859df273ab1bc1c29b", + "rev": "cf9183ee11ac922e85c7c908f04e2d00b03111b3" + }, + "recipe": { + "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130204.1653", + "deps": [] + }, + "org-ehtml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/org-ehtml.git", + "sha256": "ea2859eddeb89895b9252b4caba86b891426f6de2f9f09dacec0b3bb0f6827b5", + "rev": "9df85de1a0fe1e7b2d6c000777c1a0c0217f92d0" + }, + "recipe": { + "sha256": "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150506.1858", + "deps": [ + "emacs", + "web-server" + ] + }, + "mentor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skangas/mentor.git", + "sha256": "67d0b598dc2f5e3b322ef2d77a664f62313d646fe04689d5d974d7c0e84df08e", + "rev": "f5d653348140cdab1d8ee9143b14a50ea88ed3fb" + }, + "recipe": { + "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140904.1910", + "deps": [ + "xml-rpc" + ] + }, + "etags-table": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/etags-table.el", + "sha256": "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf" + }, + "recipe": { + "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.657", + "deps": [] + }, + "dtrt-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jscheid/dtrt-indent.git", + "sha256": "874f4fdc708f2d7c668ddb070592c873b77e9176882870fa616ac3c09a44499d", + "rev": "7f212888fbacc262080ab2740eda673b376c6b7b" + }, + "recipe": { + "sha256": "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.414", + "deps": [] + }, + "bracketed-paste": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hchbaw/bracketed-paste.el.git", + "sha256": "1ab1391a3494bccded0d48adfd243ac8ff217effe919f23dc9337740ce1f8600", + "rev": "6c2aee346e2f5cdb4ed1386c3e3c853cecd72eff" + }, + "recipe": { + "sha256": "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140222.2001", + "deps": [ + "emacs" + ] + }, + "ac-alchemist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-alchemist.git", + "sha256": "f50e8a0995757a766ac85edbd03c97161177391018f21e88d4e5de8f317eeeeb", + "rev": "b1891c3d41aed83f61d78a609ea97be5cc2758d9" + }, + "recipe": { + "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150908.156", + "deps": [ + "alchemist", + "auto-complete", + "cl-lib" + ] + }, + "jvm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/martintrojer/jvm-mode.el.git", + "sha256": "3cda59672aba3f06674139d5870fcd2c90f9447ffa8f46d8b588c64b6563214d", + "rev": "3355dbaf5b0185aadfbad24160399abb32c5bea0" + }, + "recipe": { + "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150422.208", + "deps": [ + "dash", + "emacs" + ] + }, + "replace-symbol": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmastenbrook/replace-symbol-el.git", + "sha256": "ba83dea6b1519770ce1379a0972f983a2b8bc4d49dc4dac310bc7d8e7fdacd19", + "rev": "6af93ad5a23790c90595c92bf2dcb69cd6d5f820" + }, + "recipe": { + "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1857", + "deps": [] + }, + "which-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/justbur/emacs-which-key.git", + "sha256": "a3d2a8668d5629c0fce5c4b5e75b3fef0fce1cd95489568867b6f500532c9a62", + "rev": "14a11c6d69fea066a56cec0ce2702580ef86a9f1" + }, + "recipe": { + "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1429", + "deps": [ + "emacs" + ] + }, + "myanmar-input-methods": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yelinkyaw/emacs-myanmar-input-methods.git", + "sha256": "d91ba0ffae8a519b2461482e7a0c9ad9246dfbce4e95809317ea34f172ca1496", + "rev": "601f5342ee2fd01263f6e04579d90cc22ad623f7" + }, + "recipe": { + "sha256": "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150806.707", + "deps": [] + }, + "spaces": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chumpage/chumpy-windows.git", + "sha256": "baaf7d7fb21229883f9782f140c099393a24119c9d9efa1d96b45cf9b1c72a19", + "rev": "164be41b588b615864258c502583100d3ccfe13e" + }, + "recipe": { + "sha256": "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130610.249", + "deps": [] + }, + "esxml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tali713/esxml.git", + "sha256": "633773cc02d68b35e63b5e8075c860944222a88c5e801c31634e6a26079e2e57", + "rev": "ca09423c3172820ba97dcc68204911d06f55f851" + }, + "recipe": { + "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.1328", + "deps": [ + "kv" + ] + }, + "iss-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rasmus-toftdahl-olesen/iss-mode.git", + "sha256": "11ffbfe33a1174816061493f24f5fb08341091019f90237f5f9a513ac46ab5e4", + "rev": "3b517aff31529bab33f8d7b562bd17aff0107fd1" + }, + "recipe": { + "sha256": "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141001.1413", + "deps": [] + }, + "dpaste": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gregnewman/dpaste.el.git", + "sha256": "fac7f92fe1bc5641247717584dca381bfcd69106078f4f49f75c2b6e72df4487", + "rev": "d073030e6b7feae84f0e2118e5fc454833848629" + }, + "recipe": { + "sha256": "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150528.800", + "deps": [] + }, + "python-cell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisch/python-cell.el.git", + "sha256": "c7d886aef5743507dda99cbbffd11a5e39a55871afb3ce792fb7ff2a9ab4b4e5", + "rev": "ccacd91a19be784860d687eb1e8ce88fddaacaf6" + }, + "recipe": { + "sha256": "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131029.1816", + "deps": [] + }, + "japanese-holidays": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/japanese-holidays.git", + "sha256": "fb263cfc6d7d414a3f2a79ef929a0f45419114204e02ea0eb703e36e2f4f95d7", + "rev": "3c82e33a942e495bbfdf3f40d965dafc87b51336" + }, + "recipe": { + "sha256": "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150208.1937", + "deps": [ + "cl-lib" + ] + }, + "pyimpsort": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/pyimpsort.el.git", + "sha256": "088777e80a2f2a3b349dfc5a53dea7826af22a5fe52882f379bde6d03b511b1e", + "rev": "e90d1b09e35356e3eed890fe38875bc7216d0f4e" + }, + "recipe": { + "sha256": "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.1317", + "deps": [ + "emacs" + ] + }, + "fwb-cmds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/fwb-cmds.git", + "sha256": "755678b6cbad8999c37fb907b7d680abbb4aba70f3faf0248768a44252f61623", + "rev": "93504c2022799a84cc14d598e1413f8d9df4ee0e" + }, + "recipe": { + "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131209.1800", + "deps": [] + }, + "thread-dump": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nd/thread-dump.el.git", + "sha256": "3769c8db04dacd20250f8209cb7bc7fc32b6f81a4565e6a102c18b9df8ce4c66", + "rev": "1cee07775ac8c13bb52217be6c383562c617542b" + }, + "recipe": { + "sha256": "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130323.1225", + "deps": [] + }, + "highlight-stages": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/highlight-stages.git", + "sha256": "cf0d65a63dca1236e83630bc0ac4ed07cff0cc813d2a89bf7b895536710bd93e", + "rev": "c5a01b29cf79cebd09da863d45f9f35f6ad3bd06" + }, + "recipe": { + "sha256": "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150421.2257", + "deps": [] + }, + "notmuch-labeler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/notmuch-labeler.git", + "sha256": "4042f18604b37bace249928115b040dcbb99b0fa500f95b0abe31220eb484345", + "rev": "d65d1129555d368243df4770ecc1e7ccb88efc58" + }, + "recipe": { + "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131230.1119", + "deps": [ + "notmuch" + ] + }, + "arjen-grey-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/credmp/arjen-grey-theme.git", + "sha256": "0219d5dee87c02d4c3aa6eacbe41c7500c04cdde85a0761f7226c62df61cdec4", + "rev": "d67a1da021269cb1aeb25ff1aa56249d67371266" + }, + "recipe": { + "sha256": "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150731.845", + "deps": [] + }, + "phi-search": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/phi-search.git", + "sha256": "c274136b2d4f52600c9cba34b96ab26d1c8038609fab446190755538e9c07e82", + "rev": "40b86bfe9ae15377fbee842b1de3d93c2eb7dd69" + }, + "recipe": { + "sha256": "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.312", + "deps": [] + }, + "helm-c-yasnippet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/helm-c-yasnippet.git", + "sha256": "ede5088a064804f8a17e00f552b1f604a74377a2a7d862605ddd58403867580b", + "rev": "660e18131a91e08a6a797ae6c17e2067416b93d1" + }, + "recipe": { + "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.1705", + "deps": [ + "cl-lib", + "helm-core", + "yasnippet" + ] + }, + "codic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-codic.git", + "sha256": "bba3722e294d452a6aaece2665b2de49e4f5aa61fe5c2069bb0b7ecf55c3af12", + "rev": "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557" + }, + "recipe": { + "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150926.627", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "perl-completion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/imakado/perl-completion.git", + "sha256": "457e9efd79b0572de3f022ebe8f4266e039a80bbb783bf3c9bf497d63bbbfe3b", + "rev": "f2ec91b88a8b7d97d40d6c90a89eaf8e595c2b89" + }, + "recipe": { + "sha256": "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090528.136", + "deps": [] + }, + "ahungry-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ahungry/color-theme-ahungry.git", + "sha256": "efab0f5bea88e902531cd60a51f35af9738ba200901bea4620072419ff289336", + "rev": "52b050992ef6fe0e6e57b51bcb5c98e02c616541" + }, + "recipe": { + "sha256": "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.2138", + "deps": [ + "emacs" + ] + }, + "spaceline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TheBB/spaceline.git", + "sha256": "5da81cbeb31e20e7b6b253c4e7283f8c372470850c913135e9a61c5721583c58", + "rev": "f08cecdf58f2bb60715114db155b2062695016d8" + }, + "recipe": { + "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.754", + "deps": [ + "cl-lib", + "dash", + "emacs", + "powerline", + "s" + ] + }, + "auto-complete-clang-async": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Golevka/emacs-clang-complete-async.git", + "sha256": "f65fc7a8e9b8ace0a1cc5badb9166d65e3ac7366572a10a743187df50c4ef4ea", + "rev": "5d9c5cabbb6b31e0ac3637631c0c8b25184aa8b4" + }, + "recipe": { + "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130526.1014", + "deps": [] + }, + "gscholar-bibtex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/gscholar-bibtex.git", + "sha256": "13f709143302e9840486acbc9a4801a2ae63815d9b5e4e3262e0bf248c10cdb5", + "rev": "00b32521de3aa689bc58516ae10ba7f3ef1b6c92" + }, + "recipe": { + "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151022.1225", + "deps": [] + }, + "elscreen-multi-term": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wamei/elscreen-multi-term.git", + "sha256": "a1642a0916bfb347cb6838d229f2d38779312f8aa0cb3ba77fe0fdfe56b6d1b2", + "rev": "7b6048a0dd80f69460a62bbc6f1af8856141a5ea" + }, + "recipe": { + "sha256": "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.2133", + "deps": [ + "elscreen", + "emacs", + "multi-term" + ] + }, + "hive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/r0man/hive-el.git", + "sha256": "7da53b652b44baf5c1f3d8f51b6c18714dce3da69088c1f9d747b94793ccf424", + "rev": "11b5172e081ad8079fc78758bef6f306f82ae32b" + }, + "recipe": { + "sha256": "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131217.912", + "deps": [ + "sql" + ] + }, + "anyins": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antham/anyins.git", + "sha256": "6dc915ed4bad45619ff769db368b7afe5f050559ab94103f34e90c666e597284", + "rev": "83844c17ac9b5b6c7655ee556b75689e4c8ea663" + }, + "recipe": { + "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131229.441", + "deps": [] + }, + "d-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode.git", + "sha256": "922dd6bbd35a57917a44a281d6e2e9b0b518e02c0b6baec1f293512aa7cd6b4b", + "rev": "5501b77a1e212e27dd78e8c0e86424064b439cbb" + }, + "recipe": { + "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.154", + "deps": [] + }, + "google-this": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/emacs-google-this.git", + "sha256": "0f195d4be81c55f733b907225cc5ea233ab63124c1935f875f0b13106d52641f", + "rev": "5274167553071fadaebe9c2d3b061470a684ae22" + }, + "recipe": { + "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150522.440", + "deps": [ + "emacs" + ] + }, + "goto-chg": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/goto-chg.el", + "sha256": "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij" + }, + "recipe": { + "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.859", + "deps": [] + }, + "iterator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/iterator.git", + "sha256": "d7f91503c7e8326f7eaab1457baf350041ed4671c296e35b315d80430e7eea21", + "rev": "7bd349d559a6e1c3da575e579a7cb35a7bee9190" + }, + "recipe": { + "sha256": "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150321.2325", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "jss": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/segv/jss.git", + "sha256": "7efe1018838a890736211cbee301e1ef7fd157987078afc7ac7dbb91700d13b4", + "rev": "41749257aecf13c7bd6ed489b5ab3304d06e40bc" + }, + "recipe": { + "sha256": "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130508.923", + "deps": [ + "emacs", + "js2-mode", + "websocket" + ] + }, + "dired-fdclone": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/dired-fdclone.el.git", + "sha256": "482d03f29cd197cbc39fcc23cf5859524cd657614176136c2966fbfcd794d8d2", + "rev": "e9bf4f16248cb5d187a323b7887d236a4a203c59" + }, + "recipe": { + "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150417.332", + "deps": [] + }, + "package-safe-delete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/package-safe-delete.git", + "sha256": "2d9fcfbf1a808d9167cdf283d87e0122fcaed5dfcc2787e5bb5596ba4c33bbdd", + "rev": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194" + }, + "recipe": { + "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150116.1007", + "deps": [ + "emacs", + "epl" + ] + }, + "emacsc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/emacsc.git", + "sha256": "475b2879d5622980b1aee0f1e3b7099683a008aed48186eb191c1e201f0219e7", + "rev": "02325c640232ee184314eb58d0051f365f7f085c" + }, + "recipe": { + "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150807.457", + "deps": [] + }, + "react-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/johnmastro/react-snippets.el.git", + "sha256": "47714fc4ab7f9e7fb25df793ee8185593159df7daca3f6723fedfb33148e4002", + "rev": "1b56f99e1f26c6dea4315c14fa58a851caa9d84f" + }, + "recipe": { + "sha256": "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.1740", + "deps": [ + "yasnippet" + ] + }, + "dirtree-prosjekt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/prosjekt.git", + "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "rev": "a864a8be5842223043702395f311e3350c28e9db" + }, + "recipe": { + "sha256": "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140129.304", + "deps": [ + "dirtree", + "prosjekt" + ] + }, + "indicators": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/indicators.el.git", + "sha256": "3b3234f1673a31fc2d68e36f23447cecc363e6401cb046d94850cafd3f325cff", + "rev": "c6d520eb3536cf3a77c635fa36fec031d3f84fe4" + }, + "recipe": { + "sha256": "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130217.1605", + "deps": [] + }, + "fuzzy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/auto-complete/fuzzy-el.git", + "sha256": "3bda40b1e3394a5503bada130415c37b8cdf8a24da89fa5e398713130443f767", + "rev": "534d723ad2e06322ff8d9bd0ba4863d243f698e7" + }, + "recipe": { + "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150729.2237", + "deps": [] + }, + "evil-snipe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hlissner/evil-snipe.git", + "sha256": "d89c9e89e1b77995461267ffccf9210b4491ddf7d5107befd072b07bec45d347", + "rev": "71f0f7df2300be390227e3f78619630c32bddbe9" + }, + "recipe": { + "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.1602", + "deps": [ + "evil" + ] + }, + "jedi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-jedi.git", + "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" + }, + "recipe": { + "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.905", + "deps": [ + "auto-complete", + "emacs", + "jedi-core" + ] + }, + "god-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/god-mode.git", + "sha256": "95e9db820509f0db8218e83758b1e1ab6ef508357bc32aee278cae901ba2fc35", + "rev": "6cf0807b6555eb6fcf8387a4e3b667071ef38964" + }, + "recipe": { + "sha256": "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.1125", + "deps": [] + }, + "cask-package-toolset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/cask-package-toolset.el.git", + "sha256": "f0dcebf81debbe5d2137b72aba544f1f0bf3b283104f545cc45488b840022e1b", + "rev": "27467a52e243f3ba4024ce19d8e1f4dbd5dd7c0b" + }, + "recipe": { + "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.130", + "deps": [ + "ansi", + "cl-lib", + "commander", + "dash", + "emacs", + "f", + "s", + "shut-up" + ] + }, + "firebelly-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/startling/firebelly.git", + "sha256": "dd18169683a043210686adba32b08e5f013e143ce410f76d3b635a0abc6a5209", + "rev": "5fd621102c676196319579b168da1476e8552d00" + }, + "recipe": { + "sha256": "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140410.355", + "deps": [ + "cl-lib" + ] + }, + "wc-goal-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bnbeckwith/wc-goal-mode.git", + "sha256": "8c2f47fe65cd83a69563365253b44098d7dd92d87de8a42c70d2bbce3624f25c", + "rev": "bf21ab9c5a449bcc20dd207a4915dcec218d2699" + }, + "recipe": { + "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140829.859", + "deps": [] + }, + "toml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/emacs-toml.git", + "sha256": "c0365a4c780e5534b612feea0b2509b07dbcf0c937e40a77b40665cc78d0cc4c", + "rev": "9633a6872928e737a2335aae1065768b23d8c3b3" + }, + "recipe": { + "sha256": "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130903.755", + "deps": [] + }, + "grin": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/dariusp686/emacs-grin", + "sha256": "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2", + "rev": "f541aa22da52" + }, + "recipe": { + "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110806.158", + "deps": [] + }, + "find-things-fast": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eglaysher/find-things-fast.git", + "sha256": "63bd72bb924951dbf219602a096d0de844513eaf753fcede7cb96e9a2cc91520", + "rev": "efc7c189019ed65430e2f9e910e8e0a5ca9d2d03" + }, + "recipe": { + "sha256": "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150519.1726", + "deps": [] + }, + "github-issues": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/inkel/github-issues.el.git", + "sha256": "885f0a9daa6bf051ad10978a8224ccee507a6b07bdddf0eaecd99aac6b0d871b", + "rev": "ebe83ec18e7b874b05e7bc9c25b8cf0800ad20c1" + }, + "recipe": { + "sha256": "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120425.1735", + "deps": [] + }, + "window-numbering": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/window-numbering.el.git", + "sha256": "5621d032ff17f622be1f924a80bd72b88134dbbfeb9032f11ff2b314b60be5c7", + "rev": "575ad203545b01e21d28fefc0d8b809d1016ea3a" + }, + "recipe": { + "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150228.1447", + "deps": [] + }, + "company-math": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vspinu/company-math.git", + "sha256": "31056c3b2cb66d57636124d8451a09c92fc084e49afc885199ecd01b0a4aaf5f", + "rev": "f5cedcfa73e5ddd445167969e87ddf8e1bbd2bc1" + }, + "recipe": { + "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.1837", + "deps": [ + "company", + "math-symbol-lists" + ] + }, + "window-number": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/window-number.el", + "sha256": "1as3qbvj6d171qp2s8ycqqi16bgqm47vfk3fbxrl9szjzaxh9nw6" + }, + "recipe": { + "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140123.2102", + "deps": [] + }, + "creole": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/elwikicreole.git", + "sha256": "744ab3f2825ddbd921c577fd889471bb1e15bc23dbe966b4a3fb92adf72a06fe", + "rev": "7d5cffe93857f6c75ca09ac79c0e47b8d4410e53" + }, + "recipe": { + "sha256": "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140924.1000", + "deps": [ + "kv", + "noflet" + ] + }, + "minibuffer-complete-cycle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/minibuffer-complete-cycle.git", + "sha256": "d3951a23cacadd51805ef40315fedfdd35c9d6ae20f6636f3bf337de0733cbff", + "rev": "3df80135887d0169e02294a948711f6dfeca4a6f" + }, + "recipe": { + "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130813.1145", + "deps": [] + }, + "imgix": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/imgix/imgix-emacs.git", + "sha256": "946ff48d3242604a2db010afe7dd0484ef49f269b3f70d402d19c6d676b857b7", + "rev": "4906ff0b4f7c9e84a5beb81630fe6d522ec91eaa" + }, + "recipe": { + "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141226.1532", + "deps": [ + "cl-lib", + "dash", + "ht", + "json", + "s" + ] + }, + "anything-project": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/imakado/anything-project.git", + "sha256": "f7023c00604968accb5c655f392a1b58662572e3560e1de07d13638403884799", + "rev": "9f6f04bc1911474e97e99faf52e204cf159add83" + }, + "recipe": { + "sha256": "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.427", + "deps": [ + "anything", + "imakado" + ] + }, + "powerline-evil": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/raugturi/powerline-evil.git", + "sha256": "849e55c8921bbc0527bd044f36fa3eb2a632a021e71d7a7433b89b7547876db0", + "rev": "98b3a102b6dba6632aa0755a7257300c9b164309" + }, + "recipe": { + "sha256": "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.910", + "deps": [ + "evil", + "powerline" + ] + }, + "bog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyleam/bog.git", + "sha256": "419e95df5e4d96bfc7add15c7c10aab2f2692f88594b19cbeefa3dee0a77e379", + "rev": "ea55493083ba08ac96e6cf130f24ac38c94abb45" + }, + "recipe": { + "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150918.1730", + "deps": [ + "cl-lib" + ] + }, + "pydoc-info": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jonwaltman/pydoc-info", + "sha256": "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh", + "rev": "151d877c8fb8" + }, + "recipe": { + "sha256": "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110301.234", + "deps": [] + }, + "evil-indent-textobject": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/evil-indent-textobject.git", + "sha256": "bfb60d9f510fa0fbc7e6efce2d3fdec28f8d17a3cdb5564d813b26c2ac8ef059", + "rev": "70a1154a531b7cfdbb9a31d6922482791e20a3a7" + }, + "recipe": { + "sha256": "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130831.1719", + "deps": [ + "evil" + ] + }, + "fixmee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/fixmee.git", + "sha256": "2d5794d02e16cb334f190daabcc466d62fdebff9b2722a65ffd2ee56605946ba", + "rev": "1b8b3460f1e3c3c1784b2a63fb9f4fb3bb4dc084" + }, + "recipe": { + "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.755", + "deps": [ + "back-button", + "button-lock", + "nav-flash", + "smartrep", + "string-utils", + "tabulated-list" + ] + }, + "haxe-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpsecher/haxe-mode", + "sha256": "106a7kpjj4laxl7x8aqpv75ih54569b3bs2a1b8z4rghmikqc4aw", + "rev": "850f29d9f70e" + }, + "recipe": { + "sha256": "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131004.342", + "deps": [] + }, + "atom-dark-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/whitlockjc/atom-dark-theme-emacs.git", + "sha256": "c490160fc5ed13e6ec92030bbcc430b06830508caae03d4db684eedad0fed749", + "rev": "b6963e486d27eae7cd472736c106c7079c2a3d3c" + }, + "recipe": { + "sha256": "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.135", + "deps": [] + }, + "ox-tiddly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dfeich/org8-wikiexporters.git", + "sha256": "ba88de9da279819f90ba36e7619f447d12cf6c020ab82e1e034edbad45e7b4e6", + "rev": "0cd92e84ad22c103b078f285ec66ff98f7ca98ca" + }, + "recipe": { + "sha256": "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.440", + "deps": [ + "cl-lib", + "org" + ] + }, + "thesaurus": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thesaurus.el", + "sha256": "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq" + }, + "recipe": { + "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121125.1337", + "deps": [] + }, + "semi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wanderlust/semi.git", + "sha256": "e37ff0b96d681304a8e253da6b80faf56f54b5ab1349b801c35717b5c4943ce8", + "rev": "35c9ff77db07ace4b7178189c1fe45118ebf9a65" + }, + "recipe": { + "sha256": "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150525.619", + "deps": [ + "flim" + ] + }, + "boron-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-boron-theme.git", + "sha256": "0baa3c31856713a4602cbcc2cad0aa5cffaec5a923cac68b285a6853622edabf", + "rev": "ea5873139424d6ca013b915876daf0399432015b" + }, + "recipe": { + "sha256": "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150117.1152", + "deps": [ + "emacs" + ] + }, + "relax": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/relax.el.git", + "sha256": "c6c86243ef3c1d6012d19c56b3cd3b144c4aa57fc0e570d3d664211722870b53", + "rev": "6e33892623ab87833082262321dc8e1977209626" + }, + "recipe": { + "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131029.1634", + "deps": [ + "json" + ] + }, + "omni-kill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-kill.el.git", + "sha256": "9944a0ac72273338f13b9366571f1ed9d44d26966a3b6a71b2c5e85c9451b7d2", + "rev": "4c8dbb6b2c9f1afc0f82077c04eab022e5387e85" + }, + "recipe": { + "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150527.149", + "deps": [] + }, + "jenkins-watch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ataylor284/jenkins-watch.git", + "sha256": "c6e0b9f51d82611daf3213cc06ca3ebd88ae4e039a6d58633ba2ac23d1865e49", + "rev": "37b84dfbd98240a57ff798e1ff8bc7dba2913577" + }, + "recipe": { + "sha256": "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121004.1826", + "deps": [] + }, + "git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/git.el.git", + "sha256": "ce3770100e0fbcc11da6f9a1ec63091ff9c9dd78bbe490707ceb9889a227d1b8", + "rev": "2b523c1975d4f258effaf826656c4b7120b2a19f" + }, + "recipe": { + "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140128.441", + "deps": [ + "dash", + "f", + "s" + ] + }, + "operate-on-number": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/operate-on-number.el.git", + "sha256": "c94969e74b1a015fd277c86bbe803b912052fb2b6dd754e28c5f806335628347", + "rev": "ceb3be565a29326c1098244fac0c50606723a56e" + }, + "recipe": { + "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150707.123", + "deps": [] + }, + "easy-escape": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cpitclaudel/easy-escape.git", + "sha256": "6701d633daa0db07450adcac3ea89b90ce7cfec320ed6d91f00f48587b947088", + "rev": "c87d76e5001f36fbbf975e9ce7e776acd2dd7776" + }, + "recipe": { + "sha256": "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150718.2133", + "deps": [] + }, + "thumb-frm": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thumb-frm.el", + "sha256": "1zyx30awgdvhfbr7fzgizm7gl93j0hqckiafp2jmlaarl8s2i36i" + }, + "recipe": { + "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1226", + "deps": [ + "frame-cmds", + "frame-fns" + ] + }, + "browse-url-dwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/browse-url-dwim.git", + "sha256": "b0470ced3378a3653528a5972bd1e9c463fa402ee842ba708e55c9b45f624f06", + "rev": "3d611dbb167c286109ac53995ad68286d87aafb9" + }, + "recipe": { + "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140731.1422", + "deps": [ + "string-utils" + ] + }, + "bats-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dougm/bats-mode.git", + "sha256": "4e163eae2d989af754797e05878b6eaa416a9794768d30bdc568edaeb9c5c9bb", + "rev": "9469a9a9de4fe7d1aab4600294c43898bf5cf638" + }, + "recipe": { + "sha256": "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141115.901", + "deps": [] + }, + "requirejs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ricardmo/requirejs-mode.git", + "sha256": "9b45b72a582b5b1404a1774e67da1f5d3ca5fc0b950b5d675180ed8a70519b0b", + "rev": "bbb0c09f8eb2d6a33c17319be8137f68bb16bc92" + }, + "recipe": { + "sha256": "1sq1kim17bcmh39106vfgm7gq9nj9943lw8by0bpi5qr8xdjsn5r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130215.1504", + "deps": [] + }, + "emmet-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/smihica/emmet.git", + "sha256": "992bc872ca2348f479b37c0045f8124270e2df3c54e9b0fe73ea856334210f35", + "rev": "3a29a1ae17271a3dfe3cd47db034ee4036b2b144" + }, + "recipe": { + "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.938", + "deps": [] + }, + "trident-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/johnmastro/trident-mode.el.git", + "sha256": "58bce0e75c0ebd7825b50c55c454059842502012568d51d90cd7fa085a8f7bcc", + "rev": "ad3201f47e114de35df189c3d80f0fdea9507ea9" + }, + "recipe": { + "sha256": "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130726.1407", + "deps": [ + "dash", + "emacs", + "skewer-mode", + "slime" + ] + }, + "gnu-apl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lokedhs/gnu-apl-mode.git", + "sha256": "19ff62260107a43de03223138a6df922ada50608c28c67ab8c358808e00b8872", + "rev": "c34a231250622519a606ac5013c67b7307efa645" + }, + "recipe": { + "sha256": "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.2335", + "deps": [ + "emacs" + ] + }, + "edbi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-edbi.git", + "sha256": "7a645752aeeffde178aab432d99312e39e00f2ccd1384d5b8b88b0cc4a0bbef4", + "rev": "3edb409245d8a3bca7a5b25c70c98954c0ab42b2" + }, + "recipe": { + "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140920.235", + "deps": [ + "concurrent", + "ctable", + "epc" + ] + }, + "markdown-toc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/markdown-toc.git", + "sha256": "705ad7e1d67d3f35ed290da3de720f51e40ed5c556aaaad642fb7b202044ecd5", + "rev": "44c79a3b57224337fdaca5d2bdedba918e908fcd" + }, + "recipe": { + "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150715.1114", + "deps": [ + "dash", + "markdown-mode", + "s" + ] + }, + "sly-named-readtables": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/sly-named-readtables.git", + "sha256": "5790d3861e42e76d900c1cd69799f54676e547e84c2c8fce6c857dde04cc7bca", + "rev": "df4ed79064cf85275804e201899b677bef4ab3f5" + }, + "recipe": { + "sha256": "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.1016", + "deps": [ + "sly" + ] + }, + "ac-html": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/ac-html.git", + "sha256": "dca39461ecadc2406281152b88cf9f79fb48c86527c989e2ec2dd79aef375aba", + "rev": "3de94a46d8cb93e8e62a1b6bdebbde4d65dc7cc2" + }, + "recipe": { + "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.231", + "deps": [ + "auto-complete", + "dash", + "f", + "s" + ] + }, + "rails-log-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ananthakumaran/rails-log-mode.git", + "sha256": "e5a3e165e02aad20bc5d4d9dbadba33399fbe81ecf39dc2465379acf5004ed43", + "rev": "ff440003ad7d47cb0ac3300f2a632f4cfd36a446" + }, + "recipe": { + "sha256": "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140407.2325", + "deps": [] + }, + "swiper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/swiper.git", + "sha256": "db228997b044bf1c4fc778a200e54a03095327b8c6ee7f13d8b84d24e012e2e0", + "rev": "83f89d8c3160b968a422127d14d245f3f4a2c733" + }, + "recipe": { + "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.241", + "deps": [ + "emacs" + ] + }, + "simple-call-tree": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vapniks/simple-call-tree.git", + "sha256": "52d67825f4bd91ab47dee92e1c5ea677e811306da84a2643c68b06a902637425", + "rev": "9f2fd423a3b86878d84e8c97e3ba45647b4d165e" + }, + "recipe": { + "sha256": "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1625", + "deps": [] + }, + "eldoc-eval": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/eldoc-eval.git", + "sha256": "59a14ba30e067d74376fc1392edf36c176932e56814778f3390759187b52f76e", + "rev": "e87b89f89a2aed0bb3b31c014fc1b72f00413866" + }, + "recipe": { + "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150512.706", + "deps": [] + }, + "elm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jcollard/elm-mode.git", + "sha256": "28396168e91a980f9ccb68d5cbf9877743164c7a80ec487cf87bd530f02d468e", + "rev": "e0318ebb288be638f4a98cfd56a516b20ed5e723" + }, + "recipe": { + "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1250", + "deps": [ + "emacs", + "f", + "let-alist", + "s" + ] + }, + "axiom-environment": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/pdo/axiom-environment", + "sha256": "1vk7jjbf8wp183c4nagkgxvzcyrdlr53avzsxl111rm5rsxbvdli", + "rev": "d7ea57a27527" + }, + "recipe": { + "sha256": "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1509", + "deps": [ + "emacs" + ] + }, + "speed-type": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hagleitn/speed-type.git", + "sha256": "33391e361943034df19b88097fc8ccc6180f7e2c999ea026aa9c348918a80f26", + "rev": "d3a6745dbaaf6b1eacee10ce9b50108482dbe758" + }, + "recipe": { + "sha256": "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150120.2234", + "deps": [ + "cl-lib" + ] + }, + "el-pocket": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pterygota/el-pocket.git", + "sha256": "677352f6f5522257154a6d70135620de6d50730067c84da0c981c5c05884d3c7", + "rev": "e79b5a4c7762be4ea88f43f17203d44a5c8ad310" + }, + "recipe": { + "sha256": "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.1728", + "deps": [ + "emacs", + "web" + ] + }, + "helm-descbinds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-descbinds.git", + "sha256": "f7ee2610b7d887961267184f1532445d94ecb7abe9e2442660d0d6b5e299c7a2", + "rev": "90f4597dad00230a06e5ce40e34c843a705bebd7" + }, + "recipe": { + "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1247", + "deps": [ + "helm" + ] + }, + "popup-switcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kostafey/popup-switcher.git", + "sha256": "e5103de3e70c9ccb9b57a689a3b70dcc46fa292d9cacdf0f2d5e0ac07f038ebd", + "rev": "a858f680898ef9631c21eebbe5cb527622179305" + }, + "recipe": { + "sha256": "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150331.908", + "deps": [ + "cl-lib", + "popup" + ] + }, + "edit-color-stamp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/edit-color-stamp.git", + "sha256": "598ced40af165593e0b01bc643ba8e79458716fd5788b0f0c14b54421c29696e", + "rev": "32dc1ca5bcf3dcf83fad5e39b55dc5b77becb3d3" + }, + "recipe": { + "sha256": "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130529.1233", + "deps": [ + "cl-lib", + "es-lib" + ] + }, + "flycheck-typescript-tslint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Simplify/flycheck-typescript-tslint.git", + "sha256": "15b0bf370cd8481fd2bd21986dbb946c0171c05e848de15aa1f2da501143e045", + "rev": "79d33ba8fbc23df604c239cfc32c21e07339faa1" + }, + "recipe": { + "sha256": "141x4scl13gqxyg0nlc8vig1iaybc3g95il5r51k4k83isi62iyq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.1647", + "deps": [ + "emacs", + "flycheck" + ] + }, + "wispjs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/wispjs-mode.git", + "sha256": "d56c52ca1757ed777470ca389a175936c7162aec25106242cf2b9b75ff27dc1b", + "rev": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f" + }, + "recipe": { + "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140103.1632", + "deps": [ + "clojure-mode" + ] + }, + "org-wunderlist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/org-wunderlist.el.git", + "sha256": "1510b08b43c7aaae7eb12d3ee9a43c2b1e42b579881aae9378a16aa41f1bdd78", + "rev": "b89633fcfd74e83dd8a5d81619244a666a45715c" + }, + "recipe": { + "sha256": "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.2113", + "deps": [ + "alert", + "cl-lib", + "emacs", + "org", + "request-deferred", + "s" + ] + }, + "discover-js2-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/discover-js2-refactor.git", + "sha256": "7667d1181f050d17df9d43690cf09b0f644375fc5013bf9976918eaf15b1cbee", + "rev": "3812abf61f39f3e73a9f3daefa6fed4f21a429ba" + }, + "recipe": { + "sha256": "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140129.952", + "deps": [ + "discover", + "js2-refactor" + ] + }, + "glsl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jimhourihan/glsl-mode.git", + "sha256": "12d922967a42dd00efc6a1fda5651b57c1d067aa1f01caf2afc0b6f51d6bd42c", + "rev": "6bd83d429307d682fef0efd46c78b3e055e2caf1" + }, + "recipe": { + "sha256": "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150114.1033", + "deps": [] + }, + "py-import-check": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/psibi/emacs-py-import-check.git", + "sha256": "5b03a1176c5b51d55d35faae8c3a88da03c351e9aed3f4104b963f62d8822690", + "rev": "9787f87745a4234cd9bed711860b707902bc8ae4" + }, + "recipe": { + "sha256": "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130802.611", + "deps": [] + }, + "neotree": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jaypei/emacs-neotree.git", + "sha256": "c966a868628038f4e2e6282b58ddf5ce46d427cf3a0690e26dd580096a24effd", + "rev": "cd02617453a0a780bc8fa13efb2426f1623cfd4d" + }, + "recipe": { + "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151101.807", + "deps": [] + }, + "magit-topgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-topgit.git", + "sha256": "636089034ec8e55e4b01c77c8c44ee723eb258f340bdaac44c7f5b78f7404136", + "rev": "732de604c31c74e9da24616428c6e9668b57c881" + }, + "recipe": { + "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.1231", + "deps": [ + "emacs", + "magit" + ] + }, + "gildas-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/smaret/gildas-mode.git", + "sha256": "bc43c28ef1e20659e24864a7c43d04ab8950756e26e22785881f90f4c2bd48d9", + "rev": "23e8a2e6066ff74af592de6d5d0d858442e2bf8a" + }, + "recipe": { + "sha256": "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150919.1701", + "deps": [ + "emacs", + "polymode" + ] + }, + "express": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/express.git", + "sha256": "88c2f02f936f65ac74535fff4061d562b7a7fcd6266b8261fd1636a2e076bd73", + "rev": "93dae7377eace4a5413ba99aecb6f26f90798725" + }, + "recipe": { + "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [ + "string-utils" + ] + }, + "easy-lentic": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/easy-lentic.git", + "sha256": "967d6249e404345f51a6e85ff38a9d983430c045fe397637f4b341ffec7f2f9a", + "rev": "ecf7bac5e3ab760ab1e46f1955575b3c25ac99fe" + }, + "recipe": { + "sha256": "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.2116", + "deps": [ + "cl-lib", + "lentic" + ] + }, + "ox-twiki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dfeich/org8-wikiexporters.git", + "sha256": "ba88de9da279819f90ba36e7619f447d12cf6c020ab82e1e034edbad45e7b4e6", + "rev": "0cd92e84ad22c103b078f285ec66ff98f7ca98ca" + }, + "recipe": { + "sha256": "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.440", + "deps": [ + "cl-lib", + "org" + ] + }, + "company-web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/company-web.git", + "sha256": "ed9aa143219acacfec9042d989c57f261c2a83067a58567904663dd161bb3a7c", + "rev": "8fafaf180cade7633dc5fcbbf12b1e4843e4e365" + }, + "recipe": { + "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.1546", + "deps": [ + "cl-lib", + "company", + "dash", + "web-completion-data" + ] + }, + "yandex-weather": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abstractionlayer/yandex-weather.el.git", + "sha256": "c38d52d17218bc65aaa47d9c0e49b0ecb894ead99ffa7e81ed49af14226ed59f", + "rev": "41cb91bd1e5aa0e4a317a99e88742631f487ab37" + }, + "recipe": { + "sha256": "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150821.614", + "deps": [] + }, + "howdoi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atykhonov/emacs-howdoi.git", + "sha256": "688b978da5d3c52a7da3b919131bdb072bf999d8e97f03397251e15e114b5207", + "rev": "5fbf7069ee160c597a328e5ce5fb32920e1ca88f" + }, + "recipe": { + "sha256": "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150203.1843", + "deps": [] + }, + "helm-recoll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-recoll.git", + "sha256": "e647f286c979d6fa56f6defb89d683c7c7017a764b2a34e66b350859643ec87c", + "rev": "e3e010d084697137d0b3cb802b19ab34c488094b" + }, + "recipe": { + "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.658", + "deps": [ + "helm" + ] + }, + "anything-milkode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ongaeshi/anything-milkode.git", + "sha256": "671b2b07271a95e1554015bce542f698fe6fafe02528c04f0ddd0dca387e86cb", + "rev": "d6b2be13a351c41793e9cc13c1320953939d3ac9" + }, + "recipe": { + "sha256": "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140518.943", + "deps": [ + "anything", + "milkode" + ] + }, + "sr-speedbar": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sr-speedbar.el", + "sha256": "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i" + }, + "recipe": { + "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.1151", + "deps": [] + }, + "emr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/emacs-refactor.git", + "sha256": "05c1737bd3a3f0fcae7cf73e133fe4aec0c1cbe7ebceb870eb3ba5d82c86d349", + "rev": "fd20fc1887e2ebcf752f0170b1f3bf697043fd4b" + }, + "recipe": { + "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140817.1804", + "deps": [ + "cl-lib", + "dash", + "emacs", + "list-utils", + "paredit", + "popup", + "projectile", + "redshank", + "s" + ] + }, + "emacs-eclim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senny/emacs-eclim.git", + "sha256": "657e809f6b155567373a87eb78cb91716b89162974a782a47e9a5a9e8cd90a61", + "rev": "79d6e3a70e99d2e47fdaaba7a030300f6a010b99" + }, + "recipe": { + "sha256": "0lj91lfhiy6hwglv62bzqk2qjqg3dvwv0nff6cbv0za3zdwdj5yv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150816.420", + "deps": [ + "dash", + "json", + "popup", + "s" + ] + }, + "pillar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pillar-markup/pillar-mode.git", + "sha256": "6eab37afc90f9912f5c1e16f1d25efd8625e54037421cc7e3df5bfbdc3e7aaf0", + "rev": "13a7f676544cc66005ccd8e6fc1c25e4ccd6f909" + }, + "recipe": { + "sha256": "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141112.1211", + "deps": [ + "makey" + ] + }, + "esqlite-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-esqlite.git", + "sha256": "4f31dc12b04d76d1f5c66fa35189959ffcddecc46b70fd106ef6263e5ea5b6d6", + "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" + }, + "recipe": { + "sha256": "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.250", + "deps": [ + "esqlite", + "helm" + ] + }, + "docean": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/docean.el.git", + "sha256": "9a50bd4c7ae346f165ac63c9739c27d142484b65734c8b082aa8f7cb852e5f17", + "rev": "dcc296782b08531b768d3cf851cc7959ec486bf1" + }, + "recipe": { + "sha256": "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.1318", + "deps": [ + "cl-lib", + "emacs", + "request" + ] + }, + "noflet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-noflet.git", + "sha256": "ee7a31fa81c8c65cc470c9a1755ec4c1ae6481cc3645e6be24c2a2e8aa7de03c", + "rev": "7ae84dc3257637af7334101456dafe1759c6b68a" + }, + "recipe": { + "sha256": "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141102.854", + "deps": [] + }, + "typo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/typoel.git", + "sha256": "73cf8b09a6fced7f76c79c7c3bf39fb88391de67c916bd9a14fd75dc84a53938", + "rev": "a6b9e0400706aeda99fe29012ff017bef300f580" + }, + "recipe": { + "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.843", + "deps": [] + }, + "org-jekyll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juanre/org-jekyll.git", + "sha256": "f57f74c9cfb9205f3c0dc9b160d37e95bad0748499d3022bd8e12069816160dd", + "rev": "66300a1a6676ab168663178e7a7c954541a39992" + }, + "recipe": { + "sha256": "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130508.439", + "deps": [ + "org" + ] + }, + "foreman-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/foreman-mode.git", + "sha256": "9d067c88048997a6a871067253f0a752452f4ad99a4cbefd0529775020b29803", + "rev": "9496018b0c202442248d4983ec5345501ea18a84" + }, + "recipe": { + "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150611.356", + "deps": [ + "dash", + "dash-functional", + "emacs", + "f", + "s" + ] + }, + "timesheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tmarble/timesheet.el.git", + "sha256": "e84007a97898e46267ffc384c5aa22c6399d688b1b65c4e7bb9416a9aee35ec2", + "rev": "6aba2bac0be92b38c245135cebe5bf1f0d8406ab" + }, + "recipe": { + "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.804", + "deps": [ + "auctex", + "org", + "s" + ] + }, + "crab": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/puffnfresh/crab-emacs.git", + "sha256": "d42e872fc5807beb38eb022a0a057928caeb7cb926b27319390a75f848776778", + "rev": "6d66844856c1864157cef3dea9332c319b05d7d5" + }, + "recipe": { + "sha256": "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150126.2337", + "deps": [ + "json", + "websocket" + ] + }, + "slideview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-slideview.git", + "sha256": "a830e4990b729151df2ad1cbdf7e423cf4c9b694bba4d43225164802a1bd9b2d", + "rev": "b6d170bda139aedf81b47dc55cbd1a3af512fb4c" + }, + "recipe": { + "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150324.1740", + "deps": [ + "cl-lib" + ] + }, + "latest-clojure-libraries": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdamClements/latest-clojure-libraries.git", + "sha256": "933c43913f70022028cb0037faf6d0eded961a8d14666c0e5f1d343de66b0bb3", + "rev": "6db8709a746194800a3ffea3f906e3c9f5d4ca22" + }, + "recipe": { + "sha256": "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140314.817", + "deps": [] + }, + "direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/direx-el.git", + "sha256": "d962d9a09a8fe55d53d55f37b8d81bf58efef2952aa28ad1dd748f474d1d3a56", + "rev": "9497231cf50767987494718db073731b05a4f970" + }, + "recipe": { + "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.1806", + "deps": [] + }, + "yaxception": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/yaxception.git", + "sha256": "088d3adc32c3aef876de4a66b324a28e4791b5b671eef8daf5ec2edc2c322fc3", + "rev": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875" + }, + "recipe": { + "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150105.852", + "deps": [] + }, + "haskell-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/haskell/haskell-mode.git", + "sha256": "d8f5a57a1210813dc6c03030f0f69c36407b0464468720eca76bf31c47068c78", + "rev": "0fe7688a7e5a765a0cc4de74f3fe336a383fe1e1" + }, + "recipe": { + "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1550", + "deps": [ + "cl-lib" + ] + }, + "icicles": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/icicles.el", + "sha256": "1vr4wp808rv8kiq324ph2jfbqdw1wzii41rca45v5w21gway169s" + }, + "recipe": { + "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151015.1751", + "deps": [] + }, + "linum-relative": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/linum-relative.git", + "sha256": "32cbf3c1037228249443feddff6465350f7888e317ac4b94e1ecaffa96a47b28", + "rev": "3bed92ac52495938f3f23b626b2097e64a3d9dc0" + }, + "recipe": { + "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1956", + "deps": [] + }, + "fingers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgeller/fingers.el.git", + "sha256": "2f7bd242aae7a75bf7ee2075ae24c7dec87526341ff8915f24e78afd7d674fee", + "rev": "8fc8ae143736c4761fef69cb53c6083c5be5d914" + }, + "recipe": { + "sha256": "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150809.1916", + "deps": [] + }, + "flymake-jslint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-jslint.git", + "sha256": "71a81a3421b67f7e80af7bb10e321120aae28f059dfa58f59e10dad51aca60cc", + "rev": "68ca28a88cffdd317f50c712b09abd2ccda8d7bc" + }, + "recipe": { + "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130613.402", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-nim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ALSchwalm/flycheck-nim.git", + "sha256": "2fc71cbc6e6f9660ab2ff2a2f21696a3d90a516a8df2917643a0c24068201a1a", + "rev": "4cf6a70864e594c24b33c1032e2692ad1b310d6c" + }, + "recipe": { + "sha256": "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150911.1847", + "deps": [ + "dash", + "flycheck" + ] + }, + "org-bullets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sabof/org-bullets.git", + "sha256": "1ce0cbfaa8541518c6c079db12ef59d97a1ff73553d56736a50b5be7a426d982", + "rev": "b70ac2ec805bcb626a6e39ea696354577c681b36" + }, + "recipe": { + "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140918.1337", + "deps": [] + }, + "org-beautify-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jonnay/emagicians-starter-kit.git", + "sha256": "657dec43dc650142aacf062b4341c510b1c3cd17f1e61416e466c0bf04ab308c", + "rev": "5fadbf1bf84091b6ffe6cd1bff48f30e3da6c479" + }, + "recipe": { + "sha256": "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.1156", + "deps": [] + }, + "bitly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/bitly-el.git", + "sha256": "abe6a67879075939fe10c63b57d30e15ff596075a9f2a8da1d192fb658827425", + "rev": "fca9d8da070402fa62d9289e56f7f1c5ce40f664" + }, + "recipe": { + "sha256": "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.1048", + "deps": [] + }, + "scala-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/scala/scala-tool-support.git", + "sha256": "04b38efd9f5cb0899df7bc2e24c2dc15db015240076e9f7d3cbb273fabb94015", + "rev": "0a217bc446b970116c67c933a747d5f57b853d34" + }, + "recipe": { + "sha256": "1vbgphmvvsj5jl8f78rpsidlmlgyp1kq3nkmziqhwkcq8hfywssm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141205.1451", + "deps": [] + }, + "wimpy-del": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/wimpy-del.el", + "sha256": "05gmqx9qj95fd4lryvpp7rk93f1ibsvl3lqanraph0s73ir48x3z" + }, + "recipe": { + "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1909", + "deps": [] + }, + "help+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help+.el", + "sha256": "0vdga10l8vslsicrspl3wyhf6a5jxdwzqb7r8g07fbd4f09d57a4" + }, + "recipe": { + "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.1143", + "deps": [] + }, + "org-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/IvanMalison/org-projectile.git", + "sha256": "78a66404464246dc2d2163245f08eaeb657e098ba62fc562f918a6bec820d7b8", + "rev": "df1d4a843724f2e556305aea53567a0b3b403fb1" + }, + "recipe": { + "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150902.2356", + "deps": [ + "dash", + "projectile" + ] + }, + "doremi-mac": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi-mac.el", + "sha256": "1zlb6r5qy46yf5x499gzk6kvdy427qf3s9gzmpf5mzszcy6rzsfx" + }, + "recipe": { + "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1553", + "deps": [] + }, + "magit-rockstar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/magit-rockstar.git", + "sha256": "d2246288dd71e9e1bf5f8cd131d025981658301ec6d66da7d4cfa3006fea2e5d", + "rev": "6e09d3d1589e5bde7279f9bd5b8f27352ea26ef4" + }, + "recipe": { + "sha256": "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.928", + "deps": [ + "dash", + "magit" + ] + }, + "list-environment": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dgtized/list-environment.el.git", + "sha256": "d6ce67343753c11650fd3ecaf99f2206fcf380e08f3d23e600fe8831ee7ea1c8", + "rev": "70919f3f75cfee6a68bf617baf417d672deb8c4b" + }, + "recipe": { + "sha256": "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150620.2218", + "deps": [] + }, + "flyspell-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/flyspell-popup.git", + "sha256": "2c3ae892b4c4ecbaf22a23da8b64b741348b9271cb2ab260a64a034aa37667e6", + "rev": "a3890c9272c0cfa1e2cde6526f7d6280ad4af00c" + }, + "recipe": { + "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150926.1003", + "deps": [ + "popup" + ] + }, + "nameframe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/john2x/nameframe.git", + "sha256": "855f462993a0e81d7e903a249446b96e373801ac1c424b2f5a7e08adb3e7ef1f", + "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" + }, + "recipe": { + "sha256": "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151017.2319", + "deps": [] + }, + "pyvenv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/pyvenv.git", + "sha256": "c4b1285322289b33bc661a797251e52e1b252208fabb3d7d75e821cc4029cc6a", + "rev": "a0331f52ba2c9fe994ee423e4d82263b6f68a38a" + }, + "recipe": { + "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.1719", + "deps": [] + }, + "persp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Bad-ptr/persp-mode.el.git", + "sha256": "eb606912f03b1e0d7e56daa7280fa713d105e12cd1fb9be7912567f255a12c89", + "rev": "00e5f345f13b2b9e615082ac9ccbfd076592cc22" + }, + "recipe": { + "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.207", + "deps": [] + }, + "replace-from-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/replace-from-region.el", + "sha256": "1clxkzxqsm91zbzv8nffav224ldr04ww5lppga2l41xjfl6z12qb" + }, + "recipe": { + "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150406.1930", + "deps": [] + }, + "fuel": { + "fetch": { + "tag": "fetchgit", + "url": "git://factorcode.org/git/factor.git", + "sha256": "380414f580ea0f96f31195609826e74c91a1d2a8d488039e2d33f0df657302c6", + "rev": "cbba6bbf959fdb739f8500c5adb2194b3d61f4d9" + }, + "recipe": { + "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.543", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "what-the-commit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danielbarbarito/what-the-commit.el.git", + "sha256": "e6bc110ddbb238972e387a259cc02d240a46ca5ba2e479abdf18e3bb55138613", + "rev": "868c80a1b8614bcbd2225cd0290142c72f2a7956" + }, + "recipe": { + "sha256": "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150901.816", + "deps": [] + }, + "xterm-keybinder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/xterm-keybinder-el.git", + "sha256": "afc218e00fd75909a93465d04059c7a1c81479b8b762c95311f76148dfab91cb", + "rev": "08d7c9b4c71db05df092010ba92f87567004b8c7" + }, + "recipe": { + "sha256": "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.101", + "deps": [ + "cl-lib", + "emacs", + "let-alist" + ] + }, + "mic-paren": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mic-paren.el", + "sha256": "1ibim60fx0srmvchwbb2s04dmcc7mv7zyg1vqavas24ya2gmixc5" + }, + "recipe": { + "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140714.219", + "deps": [] + }, + "helm-core": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm.git", + "sha256": "da5c76e602f2f11c68ac027e5a67bed942faeebba337461a5663053fea18387f", + "rev": "b99615090efa622cba280fff0615dc7f269877fd" + }, + "recipe": { + "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.217", + "deps": [ + "async", + "cl-lib", + "emacs" + ] + }, + "ssh-agency": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/ssh-agency.git", + "sha256": "e8dcb13ee83ef6f90d4c6ca9b5a02981c48573f7ff95ace26d87f8ca0d092c45", + "rev": "528122b182e9e8ade2361720ea05a5594f926c18" + }, + "recipe": { + "sha256": "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.1754", + "deps": [ + "dash", + "emacs" + ] + }, + "bf-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/bf-mode.git", + "sha256": "d6a421ab57af13717637e358ed5d70b7a62d7fbb0f49922b93d6138019a86209", + "rev": "7cc4d09aed64d9db6be95646f5f5067de68f8895" + }, + "recipe": { + "sha256": "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130403.942", + "deps": [] + }, + "wonderland": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kurisuwhyte/emacs-wonderland.git", + "sha256": "9329fb320b8086b5ed13bc4e093bcbed151c20b743dd38f96384f0a220624c41", + "rev": "89d274ad694b0e748efdac23ccd60b7d8b73d7c6" + }, + "recipe": { + "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130912.2019", + "deps": [ + "dash", + "dash-functional", + "emacs", + "multi" + ] + }, + "plsense": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-plsense.git", + "sha256": "e75dfda39ae5d77d6143388c28f6846757af0998a17fa694ce1b2b6d4a3953f8", + "rev": "d50f9dccc98f42bdb42f1d1c8142246e03879218" + }, + "recipe": { + "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.845", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "synonyms": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/synonyms.el", + "sha256": "1vqsi13ygbzjh3a6hdzidjy1p1xjxxvbisax8lcppy99l2cymr20" + }, + "recipe": { + "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150920.38", + "deps": [] + }, + "clipmon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bburns/clipmon.git", + "sha256": "943bf9b94c296094f3de752f86888ff9232167bc9152885caadd395068c30487", + "rev": "0789be82a19bcdc556a93a287579c9eab2cc5c43" + }, + "recipe": { + "sha256": "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150306.1423", + "deps": [] + }, + "datomic-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/datomic-snippets.git", + "sha256": "c055a99cc2c4949609e5f80df144828c6a70bf7e77c9abc4eec3f4e49faac767", + "rev": "7116eac8e15a16fc72973b96fa855fd9784bbbb8" + }, + "recipe": { + "sha256": "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130707.1515", + "deps": [ + "dash", + "s", + "yasnippet" + ] + }, + "save-load-path": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/save-load-path.el", + "sha256": "1p8p5b85sdnq45rdjq5wcr3xz7c22mr5bz41a21mkabc4j4fvd3z" + }, + "recipe": { + "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.1352", + "deps": [] + }, + "fic-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fic-mode.el", + "sha256": "110h0ff7bkwx7icph0j997hq53zpyz426dji4vs89zf75cf1nl7s" + }, + "recipe": { + "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140421.1122", + "deps": [] + }, + "dionysos": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/dionysos.git", + "sha256": "cf3191b71b5d90416cf8681411ac729633b8f7517e4e04f1bb340c8bb6c8d69d", + "rev": "98907a38e98ff1b02171a1ad8df246a291e04750" + }, + "recipe": { + "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.303", + "deps": [ + "alert", + "cl-lib", + "dash", + "libmpdee", + "pkg-info", + "s" + ] + }, + "company-qml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/company-qml.git", + "sha256": "631a1e769a0c6db0ec2d767905b68a4dba69e37d142d9dfc7b274aeb31ef6c1f", + "rev": "ae4a5f1ac30eb31e74e2eebf98c895c2cb5a51df" + }, + "recipe": { + "sha256": "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1035", + "deps": [ + "company", + "qml-mode" + ] + }, + "graphene": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/graphene.git", + "sha256": "961ff5be2e0aa1fe05befc9293a5c8022134ddf29b4e6c12f6225ddbb2a29f54", + "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" + }, + "recipe": { + "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.140", + "deps": [ + "company", + "dash", + "exec-path-from-shell", + "flycheck", + "graphene-meta-theme", + "ido-ubiquitous", + "ppd-sr-speedbar", + "smartparens", + "smex", + "sr-speedbar", + "web-mode" + ] + }, + "flycheck-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flycheck-package.git", + "sha256": "1d2a7426c8438728fb4dd86d6968df624712946ecc67b7799c62f762de427671", + "rev": "ff93e8986a1021daf542c441c1fd50436ee83cba" + }, + "recipe": { + "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.1338", + "deps": [ + "cl-lib", + "emacs", + "flycheck" + ] + }, + "btc-ticker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/niedbalski/emacs-btc-ticker.git", + "sha256": "5ff4da37e7fbd63fc02f36b91799f9556c17b5ef126f701cfab24f5cf8035208", + "rev": "845235b545f070d0812cd1654cbaa4997565824f" + }, + "recipe": { + "sha256": "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.859", + "deps": [ + "json", + "request" + ] + }, + "org-mac-iCal": { + "fetch": { + "tag": "fetchgit", + "url": "git://orgmode.org/org-mode.git", + "sha256": "e7b0fb86fdabdc5107a7118b4526bf219dce01f768ddff3fdf90404308d2f388", + "rev": "f57778090e7545142c4c997cf78149f5a0a4796d" + }, + "recipe": { + "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140107.719", + "deps": [] + }, + "annotate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bastibe/annotate.el.git", + "sha256": "1a0c56181a476323596c8eda5f6d6064befe3ed16dd1a52cbeb87df4c3b6d1a2", + "rev": "a1690384317ce366e5a33aec916949e3328a0117" + }, + "recipe": { + "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.1133", + "deps": [] + }, + "elfeed-goodies": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/algernon/elfeed-goodies.git", + "sha256": "c928ff995deb397ad816aa8d789be0d52d1c6091ded2b63e2e3481f91223c26f", + "rev": "319d88242c78d6073d25f8bb68336603c35904d0" + }, + "recipe": { + "sha256": "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.801", + "deps": [ + "ace-jump-mode", + "cl-lib", + "elfeed", + "noflet", + "popwin", + "powerline" + ] + }, + "ox-mediawiki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomalexander/orgmode-mediawiki.git", + "sha256": "44db117b9d44901c4c778714213019a0ad9d7604de1559a92015aeb2c9727f24", + "rev": "973ebfc673dfb4beeea3d3ce648c917b58dcf879" + }, + "recipe": { + "sha256": "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150923.1102", + "deps": [ + "cl-lib", + "s" + ] + }, + "indy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/attichacker/indy.git", + "sha256": "36505f800f207f9938b44f15508762e345ef01d7e83bb6f5fc5944428854604f", + "rev": "bc1edbaa6db7264dd64fbd04331406d889b44501" + }, + "recipe": { + "sha256": "1brmsgnkhr5nlma1p8f5s78y9gw3rfm8sah55n6vyhr0dpb4z7kl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150610.1206", + "deps": [] + }, + "company-inf-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/company-mode/company-inf-ruby.git", + "sha256": "35f825e5042a2250a5a9302551c47c2c83773393433c8374fe3827bd7726db3a", + "rev": "fe3e4863bc971fbb81edad447efad5795ead1b17" + }, + "recipe": { + "sha256": "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140805.1554", + "deps": [ + "company", + "emacs", + "inf-ruby" + ] + }, + "envdir": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/envdir-mode.git", + "sha256": "977b066c32e4f3631ae7fa571711e27a58dc1c0ac92fea92fc66f7b8bf59367d", + "rev": "efbfc45de320d33cd5c52edfa73a399a8b4dc34b" + }, + "recipe": { + "sha256": "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150519.955", + "deps": [ + "dash", + "emacs", + "f" + ] + }, + "flycheck-ghcmod": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/scturtle/flycheck-ghcmod.git", + "sha256": "0d16d421807cbc2b389d73875a53c3d94a19123b547370e3048ca3a3615ac07d", + "rev": "6bb7b7d879f05bbae54e99eb04806c877adf3ccc" + }, + "recipe": { + "sha256": "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150114.32", + "deps": [ + "dash", + "flycheck" + ] + }, + "zerodark-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/zerodark-theme.git", + "sha256": "f8b05c33fd34b61b0cbcfa88c2607611515afdb5f2a62f4e66a5943418e769f3", + "rev": "98135542bad1fc894c718bc37e611f79434b693a" + }, + "recipe": { + "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.534", + "deps": [] + }, + "py-test": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Bogdanp/py-test.el.git", + "sha256": "eebe48e81368ca6b9f563da6f2e0a47e087de4161b6a5d3208bfe7f10f2069e8", + "rev": "3b2a0bdaacb54df6f2bee8317423e5c0d159d5cf" + }, + "recipe": { + "sha256": "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.22", + "deps": [ + "dash", + "emacs", + "f" + ] + }, + "py-gnitset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/quodlibetor/py-gnitset.git", + "sha256": "48d9038ce9f6f634b5f1d2dceaf07dbfdf380f6c625ed7ae0f9889b401b0b615", + "rev": "471eb99b83eb9f6915d8ca241e9770ddd6244a78" + }, + "recipe": { + "sha256": "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140224.2210", + "deps": [] + }, + "org-cua-dwim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mlf176f2/org-cua-dwim.el.git", + "sha256": "157a4f785e59188bd17e97bca57637981b63be916d713201b6f082b370dd2e5b", + "rev": "a55d6c7009fc0b22f1110c07de629acc955c85e4" + }, + "recipe": { + "sha256": "0p7v564p8n1hm7rzlrbm2pnhyha8aif2r9g7g4kg0iqln89f5yhc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120202.2334", + "deps": [] + }, + "docbook-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jhradilek/emacs-docbook-snippets.git", + "sha256": "3833570d87ba3147f92a975d5791188aaab0c4598631ca2dcc3a8bd03e1f75d9", + "rev": "b06297fdec039a541aaa6312cb328a11062cfab4" + }, + "recipe": { + "sha256": "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150714.1125", + "deps": [ + "yasnippet" + ] + }, + "quick-preview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/quick-preview.el.git", + "sha256": "fafa790a570802e364f6c2a950012746567d3d08baa586de5247d47f32303e60", + "rev": "29c884c6ab385ef67d9aa656ebb7c94cabeb5c35" + }, + "recipe": { + "sha256": "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.2339", + "deps": [] + }, + "scad-preview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/scad-preview.git", + "sha256": "6cd12f46aaeffef484b62626fbefcb6c451269a73635c92b1248be55c95ba5d7", + "rev": "a444532126bdec3dec9cacf55bc183780decf040" + }, + "recipe": { + "sha256": "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150818.824", + "deps": [ + "scad-mode" + ] + }, + "flx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/flx.git", + "sha256": "50a03447d54f82ebbf790f4e4086aedbb040598e690d16adf0d44868beda309c", + "rev": "807d69455585d89804ecef233a9462db7d0524d8" + }, + "recipe": { + "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1312", + "deps": [ + "cl-lib" + ] + }, + "hardhat": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/hardhat.git", + "sha256": "4e072ba44c9922e326cff667399a2ba713ddc729d989689aa49622c3c4d84dbd", + "rev": "9355d174d49a514f3e176995ba93d5da7a25cbba" + }, + "recipe": { + "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140827.2056", + "deps": [ + "ignoramus" + ] + }, + "pinyin-search": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/pinyin-search.el.git", + "sha256": "2111c7b1e1d8cab01273e15540b2edfeda5214eae0ec8165b70c71e99efad124", + "rev": "53e75c2e32c03920dcc10334c7b62922779f2c8b" + }, + "recipe": { + "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150719.1955", + "deps": [] + }, + "mouse+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mouse+.el", + "sha256": "1l29smg3r2b2b08869wsrwyr5239gznd88xwf40q7qi350cj8fwy" + }, + "recipe": { + "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.1052", + "deps": [] + }, + "sexp-move": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/elzair/sexp-move.git", + "sha256": "7564a95c172eae85ce9b69ad3bd11c136f3daf4a4cc88f1f6107605e9ff80586", + "rev": "117f7a91ab7c25e438413753e916570122011ce7" + }, + "recipe": { + "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150915.1230", + "deps": [] + }, + "mc-extras": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/mc-extras.el.git", + "sha256": "c116350ee989d65b83cd1ba26bed085060656a7bc35ee0dd87d2344d70e3a208", + "rev": "71cf966be06d9c74e781a87bb30fa4cf657ee852" + }, + "recipe": { + "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150218.434", + "deps": [ + "multiple-cursors" + ] + }, + "desktop-registry": { + "fetch": { + "tag": "fetchgit", + "url": "git://ryuslash.org/desktop-registry.git", + "sha256": "7c7727dd1d63be98e428700bfe340f2c4e7ff713fcc9b2b743a3366d786ae02d", + "rev": "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd" + }, + "recipe": { + "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140119.1543", + "deps": [] + }, + "seoul256-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ChrisDavison/seoul256.el.git", + "sha256": "cc53d35307f50bb07f8b05d5346e86b9c46ab65a96b55d6b5146215971687597", + "rev": "32790703847b868e8fdd9c0736b0b8a0167f97cf" + }, + "recipe": { + "sha256": "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150714.1735", + "deps": [] + }, + "test-kitchen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jjasghar/test-kitchen-el.git", + "sha256": "b95a5b0156083fe7ae4c6c6fa20185a0ffdda24cc47e02d83069f687f508b388", + "rev": "3f3647bf437563493331821638f5f5829ae7dd26" + }, + "recipe": { + "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.627", + "deps": [] + }, + "llvm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "http://llvm.org/git/llvm", + "sha256": "89edd9b31a3e2ad5ce10a69d36b5b74846e62f193a76331a216c3af4e427e3b2", + "rev": "a4527729ac58c83b4411b7bf1adab07cd7c3b050" + }, + "recipe": { + "sha256": "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.844", + "deps": [] + }, + "dired-rainbow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141214.743", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "thrift": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/apache/thrift.git", + "sha256": "9bc1b3055986de1f3abc17753e5f3bae1f095a6b29f19de905a1f382ce062288", + "rev": "e68ccc23bebde961767e47e6751dcf764b8503f2" + }, + "recipe": { + "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140312.1548", + "deps": [] + }, + "better-defaults": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/better-defaults.git", + "sha256": "6a6f29ba4c980ef1d49165aab86084c2eb123210990451b0e5c2083c08bf7c48", + "rev": "b7888289ed702aff1616cbff832c97d4e5fc2463" + }, + "recipe": { + "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150404.423", + "deps": [] + }, + "wwtime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ndw/wwtime.git", + "sha256": "197517336742b66c64eb9a57544f8149dab527a9de7d08cba0e7564ce348412d", + "rev": "d04d8fa814b5d3644efaeb28f25520ada69acbbd" + }, + "recipe": { + "sha256": "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.1010", + "deps": [] + }, + "color-theme-solarized": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sellout/emacs-color-theme-solarized.git", + "sha256": "ed0307e52c24c3b433792854a5d9f99fded3af0353d044ed604f3804950e2960", + "rev": "412713a0fcedd520d208a7b783fea03d710bcc61" + }, + "recipe": { + "sha256": "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150619.1934", + "deps": [ + "color-theme" + ] + }, + "cinspect": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/inlinestyle/cinspect-mode.git", + "sha256": "1fc71c6a3ecd258988246947b8d08a85e559623c7bb052e81fd8c1dddd4eb0a0", + "rev": "4e199a90f89b335cccda1518aa0963e0a1d4fbab" + }, + "recipe": { + "sha256": "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150715.2133", + "deps": [ + "cl-lib", + "deferred", + "emacs", + "python-environment" + ] + }, + "nu-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pyluyten/emacs-nu.git", + "sha256": "f1bb924a4d9d11bd1b80d86c20053ebadd88eaf37e52bd2da38016a283fc390b", + "rev": "e2b509a9b631e98f6feabdc783c01a6b57d05fc2" + }, + "recipe": { + "sha256": "0h5jaw577vgm3hfiwc2c0k1wn8zda8ps06vj6mqj952m8bqhf4i7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150413.1515", + "deps": [ + "helm", + "undo-tree" + ] + }, + "plsense-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/plsense-direx.git", + "sha256": "410606f05b1ef21eb65bcb2dc70d01835c5cd71585c83e428858198ff1b26468", + "rev": "8a2f465264c74e04524cc789cdad0190ace43f6c" + }, + "recipe": { + "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140520.1508", + "deps": [ + "direx", + "log4e", + "plsense", + "yaxception" + ] + }, + "cygwin-mount": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cygwin-mount.el", + "sha256": "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw" + }, + "recipe": { + "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131111.1546", + "deps": [] + }, + "aggressive-fill-paragraph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidshepherd7/aggressive-fill-paragraph-mode.git", + "sha256": "0de15f4d0f54a6eacdda38660c3e8915a358b157dc52ddbbe5f5eab9480861f5", + "rev": "9af6a31b7c47306fb524bcc8582e0a3738701f25" + }, + "recipe": { + "sha256": "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.141", + "deps": [ + "dash" + ] + }, + "eshell-git-prompt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/eshell-git-prompt.git", + "sha256": "2c01ccf4ec9c355a288254d5fa26245df1a8de3cd9f34537354289b4aaba24ad", + "rev": "1751dd26dab245fd9567ed5eb09ba0b312699eac" + }, + "recipe": { + "sha256": "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150929.47", + "deps": [ + "cl-lib", + "dash", + "emacs", + "s" + ] + }, + "stgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://repo.or.cz/stgit.git", + "sha256": "c5d424f34ca33d2c19e3888a9dc249d0398203e5199bf2b4bdd9e604390b500b", + "rev": "e4e04764009f749665636c4d11e0cafd9c4971e1" + }, + "recipe": { + "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140213.548", + "deps": [] + }, + "poporg": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/QBobWatson/poporg.git", + "sha256": "2020a9a1e20f963303e11e795d95baef9648d459d803d8615641155027de65b9", + "rev": "d4d8b3e6206b0af4044d1dcecfc0bd2193704e07" + }, + "recipe": { + "sha256": "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150603.2047", + "deps": [] + }, + "cdb": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skk-dev/ddskk.git", + "sha256": "003be81094d22aa34b472dab82673037a34ca2b9a928c9d2fa865a990b360630", + "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" + }, + "recipe": { + "sha256": "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.743", + "deps": [] + }, + "kite-mini": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tungd/kite-mini.el.git", + "sha256": "0d754c1e47c72da9fb1784b6c748405e562af8a4308f53bcc408e1cf220c0ed4", + "rev": "d9eb14593364f7d58eed3f26b45e8aef5b845b20" + }, + "recipe": { + "sha256": "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150811.1329", + "deps": [ + "dash", + "websocket" + ] + }, + "ac-html-bootstrap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osv/ac-html-bootstrap.git", + "sha256": "47e6824a102b840e82838fc04624abc18ce06b551df23c5a15875b410817d246", + "rev": "3c1880294585054fe8345f25d002a7a4633b2fae" + }, + "recipe": { + "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150930.241", + "deps": [ + "web-completion-data" + ] + }, + "zlc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/emacs-zlc.git", + "sha256": "1de1c90dd509460b3f5f9cf2cb4612055c900036f3d91ff48afe20d7f00a65bd", + "rev": "4dd2ba267ecdeac845a7cbb3147294ee7daa25f4" + }, + "recipe": { + "sha256": "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151010.2057", + "deps": [] + }, + "julia-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/JuliaLang/julia.git", + "sha256": "17603f2155b805b149c85aa4fd575be73d0920b5b757a1a4b6f95c47c4492fd4", + "rev": "bbbd9d2089479c703fa9a000d093896533dd1236" + }, + "recipe": { + "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150912.1000", + "deps": [] + }, + "term+mux": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarao/term-plus-mux-el.git", + "sha256": "fe9149cb025d7101cab81ce1da32e5b0bf3c64f95aae3e80ada8554f762c5020", + "rev": "81b60e80cf008472bfd7fad9233af2ef722c208a" + }, + "recipe": { + "sha256": "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140211.149", + "deps": [ + "tab-group", + "term+" + ] + }, + "chinese-remote-input": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/chinese-remote-input.git", + "sha256": "9b4103a9a04bbe15d8f99adbf0d3dae67b0be44b71e0cf14201ca762261f611a", + "rev": "d05d0bd116421e6fd19f52e9e576431ee5de0858" + }, + "recipe": { + "sha256": "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.2303", + "deps": [] + }, + "flycheck-status-emoji": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/liblit/flycheck-status-emoji.git", + "sha256": "4cd4fa46b29aee507cc17b103658405451b603195e6b36de2ad7af45b6fa2fda", + "rev": "a6ae7b108110acc4dba32e616c8b02555455ea67" + }, + "recipe": { + "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150924.1314", + "deps": [ + "emacs", + "flycheck", + "let-alist" + ] + }, + "gitlab": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/emacs-gitlab.git", + "sha256": "ae98ce8189b225c44b7a0ca8652bd946b2ccddf68405aba2273dae411e318df7", + "rev": "78deece7f314f9652b50117605e93be9f8c860f4" + }, + "recipe": { + "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.238", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "ivariants": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/emacs-ivariants.git", + "sha256": "51279d7ba4f629acf36ec65d73f950b56723fe60d4848be6e5449c5fd9bfd88a", + "rev": "f9deff2e6fba5647f69771546fb2283136d0fb0d" + }, + "recipe": { + "sha256": "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140720.2327", + "deps": [ + "emacs", + "ivs-edit" + ] + }, + "highlight-tail": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight-tail.el", + "sha256": "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg" + }, + "recipe": { + "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140415.2041", + "deps": [] + }, + "common-lisp-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/common-lisp-snippets.git", + "sha256": "1aa6265fb02b2a91bb2eb5c8c752ffa4571daeb1c4e5dc6e73019c88b3c433f9", + "rev": "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284" + }, + "recipe": { + "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.547", + "deps": [ + "yasnippet" + ] + }, + "apples-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tequilasunset/apples-mode.git", + "sha256": "5b27e5269fba70f2f686d387eb7e06ae725bc0c11d3bb84c601c1c553fdaf08f", + "rev": "83a9ab0d6ba82496e2f7df386909b1a55701fccb" + }, + "recipe": { + "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110120.2218", + "deps": [] + }, + "reveal-in-osx-finder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kaz-yos/reveal-in-osx-finder.git", + "sha256": "5bac2fcfa9a9bb5a4921e76a433c6f8f0b3f3c5774298236b6f073f2ef6323e0", + "rev": "5710e5936e47139a610ec9a06899f72e77ddc7bc" + }, + "recipe": { + "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150802.1157", + "deps": [] + }, + "minitest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arthurnn/minitest-emacs.git", + "sha256": "72f2ff4570cf56c36471c83bc371ed095096e29c4b3929b6e99d6dca83c33069", + "rev": "56bb89ee5e96983ca53021587aba6703b38e5c97" + }, + "recipe": { + "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151015.1331", + "deps": [ + "dash" + ] + }, + "evil-god-state": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gridaphobe/evil-god-state.git", + "sha256": "50cc662ddc6dab98b06d6ed5b47ea1b4278f7632a958e2f20bd6b8de2d2662b3", + "rev": "3d44197dc0a1fb40e7b7ff8717f8a8c339ce1d40" + }, + "recipe": { + "sha256": "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.2055", + "deps": [ + "evil", + "god-mode" + ] + }, + "org-mac-link": { + "fetch": { + "tag": "fetchgit", + "url": "git://orgmode.org/org-mode.git", + "sha256": "e7b0fb86fdabdc5107a7118b4526bf219dce01f768ddff3fdf90404308d2f388", + "rev": "f57778090e7545142c4c997cf78149f5a0a4796d" + }, + "recipe": { + "sha256": "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.616", + "deps": [] + }, + "occur-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juan-leon/occur-x.git", + "sha256": "ca51136a35fe9a2013cd0f819c589bf695d194b773bf68e66533748ad4e02cb2", + "rev": "352f5fab207d8a1d3dd048073ff127a83e97c82b" + }, + "recipe": { + "sha256": "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130610.843", + "deps": [] + }, + "evil-matchit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/evil-matchit.git", + "sha256": "90ab83764c00c926081508f8d41d10dfe111558a0113c2b85ae5f3fbd48bd6c3", + "rev": "8b80b3df9472217d55962981025539f2da603296" + }, + "recipe": { + "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.535", + "deps": [] + }, + "sqlup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/trevoke/sqlup-mode.el.git", + "sha256": "dadea8b37baaaa84d8f8df71f42b94efda5077442075a73dd2f84fe178f318cb", + "rev": "9cb9662673b7bed891582cfc1080d91a254048f7" + }, + "recipe": { + "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.830", + "deps": [] + }, + "ox-impress-js": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kinjo/org-impress-js.el.git", + "sha256": "824c1e9f2dd05364346170242a97449a4e75675f69aa2513044b78a10042cc7c", + "rev": "91c6d2af6af308ade352a03355c4fb551b238c6b" + }, + "recipe": { + "sha256": "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150412.1216", + "deps": [ + "org" + ] + }, + "flycheck-gometalinter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/favadi/flycheck-gometalinter.git", + "sha256": "a03d0e23b43b80f5cdfae95e1ad91de0eb3b2279dbad604e5c69bcacf25e72c3", + "rev": "bc82ffa3ad4a4407a4eddc9bc06ff0b7df9d4ab3" + }, + "recipe": { + "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1128", + "deps": [ + "emacs", + "flycheck" + ] + }, + "hipster-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xzerocode/hipster-theme.git", + "sha256": "8332d6db387093e7e0324974d5e702b6214587d3b4c711317ac4102f3abfac9d", + "rev": "0583bcef489c0bbe2393f813c17f634a9487e04f" + }, + "recipe": { + "sha256": "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141205.2205", + "deps": [] + }, + "ir-black-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jmdeldin/ir-black-theme.el.git", + "sha256": "22061c96562d46800a7be368fcd91eb58a9a99c826e48f1e543b49ae21efc9b3", + "rev": "36e930d107604b5763c80294a6f92aaa02e6c272" + }, + "recipe": { + "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130303.155", + "deps": [] + }, + "password-store": { + "fetch": { + "tag": "fetchgit", + "url": "http://git.zx2c4.com/password-store", + "sha256": "9c3ee0155b9d6b96acacaab8e799b23e92550ef136ffa2c07880029af3061733", + "rev": "bffca1ee21a38f1e808fa83e5df2fcf0f808cb9f" + }, + "recipe": { + "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1649", + "deps": [ + "f", + "s" + ] + }, + "subr+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/subr+.el", + "sha256": "16k141aikvwg5dsw8mfkv222ikjdch0178dm8w58km0mjj7j81wk" + }, + "recipe": { + "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1855", + "deps": [] + }, + "memento": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ehartc/memento.git", + "sha256": "18d426d0f1fede3b1d1bd5cba3666386729e17513ca2e54131eb9a784757585e", + "rev": "35733b79101f694346792a57df686cbffe64bd79" + }, + "recipe": { + "sha256": "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150823.539", + "deps": [] + }, + "django-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andrzejsliwa/django-theme.el.git", + "sha256": "76b21c549174a22a1a407dcbfc93625de92b1169a013f3ad7f56e6340eb61d21", + "rev": "86c8142b3eb1addd94a43aa6f1d98dab06401af0" + }, + "recipe": { + "sha256": "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131022.402", + "deps": [] + }, + "vimrc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mcandre/vimrc-mode.git", + "sha256": "e06249edfe8e47a8621ab6f7a39dc5a127c7f937d904ab105668b35fa0d00e00", + "rev": "d4c7d41091eb282e617c973f5b1fc29c69dc9a28" + }, + "recipe": { + "sha256": "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150607.1113", + "deps": [] + }, + "highlight-unique-symbol": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hitode909/emacs-highlight-unique-symbol.git", + "sha256": "5dc24c0a561956fece5d8adf262d15185104685966d37ba58d089b7f09150c42", + "rev": "4141bf86a94e30d94d9af9c29d40b16886226e1c" + }, + "recipe": { + "sha256": "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130612.42", + "deps": [ + "deferred" + ] + }, + "extend-dnd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/extend-dnd.git", + "sha256": "cc3d9ed7b44fd772e63e5f5b123a53704958a8953571bf61e03d2dc456b71ce9", + "rev": "80c966c93b82c9bb5c6225a432557c39144fc602" + }, + "recipe": { + "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.1250", + "deps": [] + }, + "bts-github": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-bts-github.git", + "sha256": "e9b5b44e3a25b83ec7d52ffb88068d73974dee2a2026e5ac4c937c19821cd9e9", + "rev": "57c23f2b842f6775f0bbbdff97eeec78474be6bc" + }, + "recipe": { + "sha256": "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.227", + "deps": [ + "bts", + "gh" + ] + }, + "ac-haskell-process": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ac-haskell-process.git", + "sha256": "81281a4b2377a45976daa01dcdcc442a6c64eb9ea7dfea58d467f8e163da6354", + "rev": "0362d4323511107ec70e7165cb612f3ab01b712f" + }, + "recipe": { + "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150423.902", + "deps": [ + "auto-complete", + "haskell-mode" + ] + }, + "erc-view-log": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Niluge-KiWi/erc-view-log.git", + "sha256": "5ed4b8918ee45433d71aab6a747a365b05e29e3470145f64223f4327a016f12f", + "rev": "c5a25f0cbca84ed2e4f72068c02b66bd0ea3b266" + }, + "recipe": { + "sha256": "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140227.1439", + "deps": [] + }, + "jst": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/jst-mode.git", + "sha256": "2272037c73c79a5c056424c81f5d2ba66c2c7a71c30bae95d370ba0ef70566ca", + "rev": "2a3fd16c992f7790dc67134ef06a814c3d20579c" + }, + "recipe": { + "sha256": "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150604.638", + "deps": [ + "dash", + "emacs", + "f", + "pcache", + "s" + ] + }, + "flx-ido": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/flx.git", + "sha256": "50a03447d54f82ebbf790f4e4086aedbb040598e690d16adf0d44868beda309c", + "rev": "807d69455585d89804ecef233a9462db7d0524d8" + }, + "recipe": { + "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1312", + "deps": [ + "cl-lib", + "flx" + ] + }, + "helm-open-github": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-open-github.git", + "sha256": "1f63975d65cc1bbbb984cdbc7cc6dc9b8ed064729f9e7cbfa2c9b0c3722e1652", + "rev": "95140bbacc66320a032d3cdd9e1c31aeb47eb83d" + }, + "recipe": { + "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151010.131", + "deps": [ + "cl-lib", + "gh", + "helm-core" + ] + }, + "xresources-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CQQL/xresources-theme.git", + "sha256": "e2328c36ea9cf46c499b7d4093262ee6cdc9d8c61029ce2150846bfd9213e68d", + "rev": "4842144f9f83e9d6f71f5ba2fd3abdcf6887de8f" + }, + "recipe": { + "sha256": "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141219.1117", + "deps": [] + }, + "enclose": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/enclose.git", + "sha256": "e2905d2664b590c6ab87bf2514bba08d1a9a3b28919e6779a23d9ba40cd0dd7a", + "rev": "2747653e84af39017f503064bc66ed1812a77259" + }, + "recipe": { + "sha256": "04gs468qqhdc9avx7lgibr0f1i444714i7rifad37dfmim8qk759", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121008.1114", + "deps": [] + }, + "magic-latex-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/magic-latex-buffer.git", + "sha256": "e3abaf6be2ac571ffe9786cb49dd0809454af5a8c59b7f698e53c78b26db5880", + "rev": "9039acc76000d3c11444fc8782343344247f6fb3" + }, + "recipe": { + "sha256": "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.202", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "nvm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/nvm.el.git", + "sha256": "5590f78dd36c98131fde18b0276759072b227b04b82d95445d318c4c133145f0", + "rev": "d6c7ad048f1d2854ec3c043d80528857aa1090a8" + }, + "recipe": { + "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.255", + "deps": [ + "dash", + "dash-functional", + "f", + "s" + ] + }, + "organic-green-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kostafey/organic-green-theme.git", + "sha256": "4fafa62849c445d9131c7eb85664ff3b1e570633b495f7d38349eff145dd2061", + "rev": "c4d68c3329147aedd066a88b6d5e5266bcd59dcc" + }, + "recipe": { + "sha256": "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151028.720", + "deps": [] + }, + "ruby-factory": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sshaw/ruby-factory-mode.git", + "sha256": "cdb36ac2d8ae2dcf5e9841c817c3582ada413161656870f1a0185979673890f7", + "rev": "134a91c854c06d0d06038005769ce20b2a8177bd" + }, + "recipe": { + "sha256": "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151011.1023", + "deps": [ + "inflections" + ] + }, + "kv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-kv.git", + "sha256": "b5c83b8605f3f2d27534ed9b49a02185382d9131513965b923c0ef67b4f81464", + "rev": "721148475bce38a70e0b678ba8aa923652e8900e" + }, + "recipe": { + "sha256": "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140108.934", + "deps": [] + }, + "org-mobile-sync": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/org-mobile-sync.git", + "sha256": "b0d91cefe3436b1e691e26fd80318b063d59c2f724f2bd3a0687ff584fc14234", + "rev": "3b086ffebfead48feccc629f7a6571df2f94c8e0" + }, + "recipe": { + "sha256": "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131118.1316", + "deps": [ + "emacs", + "org" + ] + }, + "websocket": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ahyatt/emacs-websocket.git", + "sha256": "57d91fd04b1523cf7468094d68720c21883f7e86a48a343432884ec59479d8f0", + "rev": "e5cd7c955734f6864fd9f2fa001f076b1a024044" + }, + "recipe": { + "sha256": "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150719.1248", + "deps": [] + }, + "editorconfig-core": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/editorconfig/editorconfig-emacs.git", + "sha256": "acef59b5bc48c0369744d91ee949a6fb573592f999880775f92f747669652095", + "rev": "44b93337549fa501b404767852a25b7a8b9af02f" + }, + "recipe": { + "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1035", + "deps": [ + "cl-lib", + "editorconfig-fnmatch" + ] + }, + "gnomenm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-nm.git", + "sha256": "62c9c2a717e23f5455e73c35ef27e2e14c8eff0dc14a9966aea463ec52dd76eb", + "rev": "9065cda44ffc9e06239b8189a0154d31314c3b4d" + }, + "recipe": { + "sha256": "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150316.1418", + "deps": [ + "dash", + "kv", + "s" + ] + }, + "imenu-list": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmag/imenu-list.git", + "sha256": "3390b22fee598f5350ff8fa7d5f0dd28b5e42ff1149a09049521260bb6859942", + "rev": "0c725825ad13fca6b1eea2d28c42ffb172fa6de9" + }, + "recipe": { + "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150911.446", + "deps": [ + "cl-lib" + ] + }, + "minor-mode-hack": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/minor-mode-hack.el", + "sha256": "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0" + }, + "recipe": { + "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141226.1420", + "deps": [] + }, + "flymake-less": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-less.git", + "sha256": "445295365a279e027a5701572db511c40f70218bd17d07937ccce15bc338785d", + "rev": "32d3c28a9a5c52b82d1741ff9d715013b6498421" + }, + "recipe": { + "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.138", + "deps": [ + "flymake-easy", + "less-css-mode" + ] + }, + "go-rename": { + "fetch": { + "tag": "fetchgit", + "url": "https://go.googlesource.com/tools", + "sha256": "8db229f334a755903a5cd68980b5345c6899c8201bd15e956436998ea2c4a3ce", + "rev": "1cdaff4a02c554c9fb39dda0b56241c5f0949d91" + }, + "recipe": { + "sha256": "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.838", + "deps": [ + "go-mode" + ] + }, + "malinka": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/LefterisJP/malinka.git", + "sha256": "73102ae0ffc0e8f9b5150e9081e6686b55cf54a72e13ea6df8ee2be84f1b02fb", + "rev": "cd451d32dcdfa3e6b34f47c6956ff310de8a9a06" + }, + "recipe": { + "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.216", + "deps": [ + "cl-lib", + "dash", + "f", + "projectile", + "rtags", + "s" + ] + }, + "aggressive-indent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/aggressive-indent-mode.git", + "sha256": "79e28034ef883b02be23f969bd538e6d276f0d52eac51b96927156ad6f96982a", + "rev": "e613e7eb5179ae0caf4b96501923276bccd30d83" + }, + "recipe": { + "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1448", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "helm-pt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ralesi/helm-pt.git", + "sha256": "bebcf54af1626b77190c91255d03a8df04366eff74317df2f2bec9b0fef28c07", + "rev": "afdf50913c49b8bbb0ff40ee5d9dfe3eb8b7c71a" + }, + "recipe": { + "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.2130", + "deps": [ + "helm" + ] + }, + "subemacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kbauer/subemacs.git", + "sha256": "1d991faf26aade9b28d6b7b182a9e5f1350736f5d9566917527a92c44dc0ebff", + "rev": "24f0896f1995a3ea42a58b0452d250dcc6802944" + }, + "recipe": { + "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.1054", + "deps": [] + }, + "magit-find-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bradleywright/magit-find-file.el.git", + "sha256": "67c9ea64736ffcb18e38571b8350a6e9dc0e3a0a14bc056a06449812d9883979", + "rev": "035da838b1a19e7a5ee135b4ca8475f4e235b61e" + }, + "recipe": { + "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.330", + "deps": [ + "dash", + "magit" + ] + }, + "awk-it": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/awk-it.el", + "sha256": "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw" + }, + "recipe": { + "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130917.1348", + "deps": [] + }, + "c0-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/catern/c0-mode.git", + "sha256": "5d7617a5b173e3b0412b96e167c12c2d6febcdf56e317c93956dcec948066982", + "rev": "c214093c36864d6208fcb9e6a72413ed17ed5d60" + }, + "recipe": { + "sha256": "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.1252", + "deps": [] + }, + "dizzee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davidmiller/dizzee.git", + "sha256": "6dd8abcb431cbe60f23146b41e5855dbf2503c17f040d28bbc303ac9872c6d4d", + "rev": "37629f390afb8da03ef0ce81c2b3caff660e12f6" + }, + "recipe": { + "sha256": "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20111009.816", + "deps": [] + }, + "mvn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/apgwoz/mvn-el.git", + "sha256": "a6190c980b4dd7eb891313704974921fbbf6d3255b0b09e8b4723d9a880276bf", + "rev": "01ede605d49c5fb6f2da038f5df6f31112de802f" + }, + "recipe": { + "sha256": "1ykiz5fviq2n2474izwp0vvqanpbmxg7lzh1xbpn281kwmp0mwin", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151001.129", + "deps": [] + }, + "figlet": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/figlet", + "sha256": "0xnr709vmwbryyfxngxs80gjfxv009ik6wcs4jd74ph5lm6gqh4f", + "rev": "255e7570a3e2" + }, + "recipe": { + "sha256": "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141104.1037", + "deps": [] + }, + "caroline-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xjackk/caroline-theme.git", + "sha256": "4b2e23722cafe6c19290647c3ab86afcbe29f96eec546c5544fb858bd3623292", + "rev": "742bf4ac4521ff9905294812919051cec768b1a0" + }, + "recipe": { + "sha256": "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1804", + "deps": [ + "emacs" + ] + }, + "ace-isearch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tam17aki/ace-isearch.git", + "sha256": "d92fce7a5ce841964a3b107940ec5e88cbfd60325f20c62e5063bb79667f230a", + "rev": "9a32a039623e3907a4fce959aa48c26a79fb249b" + }, + "recipe": { + "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150808.756", + "deps": [ + "ace-jump-mode", + "avy", + "emacs", + "helm-swoop" + ] + }, + "flycheck-perl6": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hinrik/flycheck-perl6.git", + "sha256": "34474e12ded34a4159b85c21ad0bef7a8a39b392088b60562df3d5b2aa817a7c", + "rev": "6a9a929ffb58595bbe9fe3d7c2e78617c8e9bb5a" + }, + "recipe": { + "sha256": "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150414.2032", + "deps": [ + "emacs", + "flycheck" + ] + }, + "sparkline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/woudshoo/sparkline.git", + "sha256": "77b304f838db6560b33bae6efe52dc14d79e0ca38ee33f85a5b577ee991f0dbb", + "rev": "a2b5d817d272d6363b67ed8f8cc75499a19fa8d2" + }, + "recipe": { + "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.719", + "deps": [ + "cl-lib" + ] + }, + "slime-volleyball": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fitzsim/slime-volleyball.git", + "sha256": "2303f2a7c5f45d650df2af0ee3d0ca423d7f650bc566c2e744cd394500ac6403", + "rev": "159b5c0f40b109e3854e94b89ec5383854c46ae3" + }, + "recipe": { + "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140717.2341", + "deps": [] + }, + "free-keys": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/free-keys.git", + "sha256": "e0228557750dd20dc1cb205dda77209e6b2fe0f3cf2a9912132ba6fa8ee3358b", + "rev": "368820cb361161f10a2ae7a839ab758146fd222c" + }, + "recipe": { + "sha256": "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.522", + "deps": [ + "cl-lib" + ] + }, + "emms-player-simple-mpv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/momomo5717/emms-player-simple-mpv.git", + "sha256": "2e7fefdeec0b541f7ce21b89de804e6cf86abbbe4c1dfd6343d192eecff65d2a", + "rev": "92be36ef158df3db3a2f9e2d0186a609fc2d3702" + }, + "recipe": { + "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151020.801", + "deps": [ + "cl-lib", + "emacs", + "emms" + ] + }, + "ta": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kuanyui/ta.el.git", + "sha256": "d59f817553db651829fe53fe8ef4e0f580ea79c0256416ccc03ba6d96b1c9414", + "rev": "0d946b15a88239982ec66eaa8a55ad53d85e7c3f" + }, + "recipe": { + "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150604.1224", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "mote-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/inkel/mote-mode.git", + "sha256": "27d69cfa3fc6078f536b9348237cba14571fbbccc2644275e15f7c0f37dee9c3", + "rev": "18dfc3af0cee7d6d522616f07134364c1c3e54ba" + }, + "recipe": { + "sha256": "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121014.2319", + "deps": [ + "ruby-mode" + ] + }, + "xml-rpc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hexmode/xml-rpc-el.git", + "sha256": "8a95d4709f5656fe924cbfccd16e078ab9d108e796cf977969e37141c373724e", + "rev": "a190759da8765d3b22ceb6774cefc610fda404d8" + }, + "recipe": { + "sha256": "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150902.2027", + "deps": [] + }, + "cmm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bgamari/cmm-mode.git", + "sha256": "33e68149ef8c82af6b19fc9416f0e9c17ce3e90158bc9d0143f7b9fd220ad7ff", + "rev": "c3ad514dff3eb30434f6b20d953276d4c00de1ee" + }, + "recipe": { + "sha256": "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150225.146", + "deps": [] + }, + "enlive": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/enlive.git", + "sha256": "50a2c620272ccd94fff08f8dc5b0d89885ed16a05c384ba55761616b80ffa76d", + "rev": "0f6646adda3974e7fe9a42339a4ec3daa532eda5" + }, + "recipe": { + "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150824.749", + "deps": [] + }, + "wiki-summary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jozefg/wiki-summary.el.git", + "sha256": "310c90837536a3cf464221c92f94ec55367f2b33fc96efb30a9a855503fb6c09", + "rev": "ed3755dd09f5f73ef78ec295fe842d08b316c8a0" + }, + "recipe": { + "sha256": "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150408.1622", + "deps": [ + "emacs" + ] + }, + "nexus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juergenhoetzel/emacs-nexus.git", + "sha256": "47f81c3d5aba872024bbf46a40fc7ae95ed0d25d843a82e1fa4b9998c836ddf6", + "rev": "c46f499951b90839aa8683779fe43d8f01672a60" + }, + "recipe": { + "sha256": "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140114.705", + "deps": [] + }, + "rake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/asok/rake.git", + "sha256": "b92c442fd114b40d6155cb428ba8561c176ce0a64fe6b9554b01d57adf66f817", + "rev": "eba311a8f5ccfb6535efbc26fa58c43e3f1e5515" + }, + "recipe": { + "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150831.358", + "deps": [ + "cl-lib", + "dash", + "f" + ] + }, + "slim-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/slim-template/emacs-slim.git", + "sha256": "216ef4f08cad6ef20baad193abb97d045694c6233e91908b43b6e2e4ad60fe6d", + "rev": "869c84821cf3e556b380c5c35d8ad62287c4df58" + }, + "recipe": { + "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140611.1150", + "deps": [] + }, + "ox-html5slide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/org-html5slide.git", + "sha256": "b5272081d491e381b596e0b8b8ced204a00260951d9e2dc096c068c5dce003a6", + "rev": "4703dfbd9d79161509def673d2c1e118d722a58f" + }, + "recipe": { + "sha256": "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.6", + "deps": [ + "org" + ] + }, + "waher-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-waher-theme.git", + "sha256": "8c76c6d11a43783c3264edf0040768281204579e1b318110849eadc5508fa970", + "rev": "60d31519fcfd8e797723d47961b255ae2f2e2c0a" + }, + "recipe": { + "sha256": "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141115.630", + "deps": [ + "emacs" + ] + }, + "zotxt": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/egh/zotxt-emacs.git", + "sha256": "f47b0203b523bb56da6cec85af00db38f33d783c0e996c60e164eba7a37ebd04", + "rev": "3809f0932660c09910639eaecb3d0a8e784420b3" + }, + "recipe": { + "sha256": "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.1159", + "deps": [ + "request-deferred" + ] + }, + "mu4e-maildirs-extension": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/agpchil/mu4e-maildirs-extension.git", + "sha256": "c365b9e066e9f10f1d252c560619aaf74833e698ed322c61ac6cf933ec243cf9", + "rev": "17eacf2d0b3a57ebf26a6aaa9eeb51d579457d25" + }, + "recipe": { + "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.1126", + "deps": [ + "dash" + ] + }, + "gvpr-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rodw/gvpr-lib.git", + "sha256": "7500d583d2881cb3c2fafef2991b069e9ee71f23f36c8d8e313051012e7b04d2", + "rev": "3d6cc6f4416faf2a1913821d12ba6eb624362af0" + }, + "recipe": { + "sha256": "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131208.1118", + "deps": [] + }, + "header2": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/header2.el", + "sha256": "04gp3km2d163cw8gqzb02dj3kq23s96ncip5c03whpja2sj9ji6f" + }, + "recipe": { + "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1610", + "deps": [] + }, + "move-dup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wyuenho/move-dup.git", + "sha256": "47f52e9264cdc64f139bbd0dc57bdffbf54887dc2ca019a5e7375cafa134c27e", + "rev": "964d1bbaacd4559d2dbde9cb44015c400d5a71b5" + }, + "recipe": { + "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140925.1008", + "deps": [] + }, + "stash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vermiculus/stash.el.git", + "sha256": "a978095d85317bd5dcc19f32a37677a6fd7fa22a5077f17ac5cba56d9ef2af5f", + "rev": "c2e494d20c752b80ebbdffbf66687b3cdfc425ad" + }, + "recipe": { + "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.827", + "deps": [] + }, + "autopair": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/autopair.git", + "sha256": "cc2e494c276b7bba057190b81d81c175137346352e593796d6564fb71dc587ff", + "rev": "4f4bd30b341e7fb15a452b59f3e5c34cbd5c97d8" + }, + "recipe": { + "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140825.627", + "deps": [ + "cl-lib" + ] + }, + "chinese-word-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/chinese-word-at-point.el.git", + "sha256": "c37a27f8c28d536a287ac8d3f569b88395bc5bd3625e9477a5a63fd29862c764", + "rev": "36a03cce32fe059d2b581cb2e029715c0be81074" + }, + "recipe": { + "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150618.2038", + "deps": [ + "cl-lib" + ] + }, + "key-seq": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vlevit/key-seq.el.git", + "sha256": "0dc5cafd836164af6fbedb7ef7da378d3fad6464dc11f54b570823209b396d3d", + "rev": "e29b083a6427d061638749194fc249ef69ad2cc0" + }, + "recipe": { + "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150907.256", + "deps": [ + "key-chord" + ] + }, + "ox-pandoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/ox-pandoc.git", + "sha256": "194ecb815e045df3a81d39ad5875d0bfce87f2d8535be1bff85771a29d9d1031", + "rev": "c2ee3801e1df4e865afc9ce271771479ce2b248b" + }, + "recipe": { + "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150706.2009", + "deps": [ + "dash", + "emacs", + "ht", + "org" + ] + }, + "helm-ghc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/helm-ghc.git", + "sha256": "4ee8874e41fa67ff4a7c847c3485196129e4878006715aa6f41e8bddb9f20cd5", + "rev": "e5ee7b8d3b745d162553aecfbd41381c4de85f35" + }, + "recipe": { + "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141105.859", + "deps": [ + "cl-lib", + "emacs", + "ghc", + "helm" + ] + }, + "projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/projectile.git", + "sha256": "34999000476e13b4b4a88bbd2f56104836b73e50245a0d82a30e4ac8d8e1d0a3", + "rev": "5773d28036c81f44468da58402a32463b278ee1f" + }, + "recipe": { + "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.1239", + "deps": [ + "dash", + "pkg-info" + ] + }, + "fabric": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nlamirault/fabric.el.git", + "sha256": "bd5cbee2b608c56ad1196cb74f96cc5d210955dced3bc7b4ad4f3ea62c086f96", + "rev": "004934318f63d8cf955022f87b2c33eb97ada280" + }, + "recipe": { + "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.522", + "deps": [] + }, + "sage-shell-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stakemori/sage-shell-mode.git", + "sha256": "d7cecfe82569543852f3c65eef30d8d0bbab1154c3616aa6c8ba1279777ecdc9", + "rev": "7daed23524a74fee8ce0a87b72bddff8bc0ac725" + }, + "recipe": { + "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151020.809", + "deps": [ + "cl-lib", + "deferred" + ] + }, + "flycheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck.git", + "sha256": "77845737d168f4ccaf65fb153cd8f512893052b28fb12ee1e455faeedd3b5997", + "rev": "757c32644a38b95cd3ee7faa25a1ac3675c4850e" + }, + "recipe": { + "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.611", + "deps": [ + "dash", + "emacs", + "let-alist", + "pkg-info", + "seq" + ] + }, + "cuda-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chachi/cuda-mode.git", + "sha256": "56bc5dc66334339e1d840887f4b4ce8612d1ededad2c89d3ab5daaa8e1e98f26", + "rev": "9ae9eacfdba3559b5456342d0d03296290df8ff5" + }, + "recipe": { + "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.2121", + "deps": [] + }, + "ob-cypher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/ob-cypher.git", + "sha256": "36316bbe0613f3817621646b5f7e5cda84594f7953f42d0d2f2f36ecb0ff6cf5", + "rev": "b3511df05f175c1947996802e9e199432ea9ced8" + }, + "recipe": { + "sha256": "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150224.2037", + "deps": [ + "cypher-mode", + "dash", + "dash-functional", + "s" + ] + }, + "company-ycm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/neuromage/ycm.el.git", + "sha256": "d25b62cb6415c8e64542ebaaabe5a845399d30a80e13ca2b18f3ff849487cc7e", + "rev": "4da8a14abcd0f4fa3235042ade2e12b5068c0601" + }, + "recipe": { + "sha256": "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140904.1317", + "deps": [ + "ycm" + ] + }, + "dired+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired+.el", + "sha256": "0nizzrahz0fm2w9qfnx34l3jy8nwp9vxjk3xn5sj44k7p2j11m8s" + }, + "recipe": { + "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.1121", + "deps": [] + }, + "bfbuilder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/bfbuilder.git", + "sha256": "27b49a8f58aeb87a6dc8debad53831704459e14bb5105e91d51db86583ee2ef9", + "rev": "49560bdef131fa5672dab660e0c62376dbdcd906" + }, + "recipe": { + "sha256": "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150924.1150", + "deps": [ + "cl-lib" + ] + }, + "debug-print": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kenoss/debug-print.git", + "sha256": "b77b791ef71d831eac43fa49218295da2f72c2b7a12121caf5956a416eb629d9", + "rev": "d817fd9ea2d3f8d2c1ace4d8af155684f3a99dc5" + }, + "recipe": { + "sha256": "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140125.1819", + "deps": [ + "emacs" + ] + }, + "gorepl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/manute/gorepl-mode.git", + "sha256": "0b3cbf483ce9c9426da0dde4d4e458211e073203f46a3808e5ea3ddd3b3a6ba9", + "rev": "17e025951f5964a0542a4b353ddddbc734c01eed" + }, + "recipe": { + "sha256": "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.622", + "deps": [ + "emacs" + ] + }, + "mocker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/mocker.el.git", + "sha256": "5a57867381d4716ca8b2f61e038fcc43bda32810c1265b5561175e9595fdcf36", + "rev": "b56f0f2839d4a395979816b40089a77050518eb6" + }, + "recipe": { + "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150916.2054", + "deps": [ + "eieio", + "el-x" + ] + }, + "ido-hacks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/scottjad/ido-hacks.git", + "sha256": "7d3603070b80d386113da55a96384304987fd07b50bf1053db324c24c257e406", + "rev": "b7e7514a0e011e4d767d1f5755c5eae9d85f83dc" + }, + "recipe": { + "sha256": "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150331.1409", + "deps": [] + }, + "subatomic-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cryon/subatomic.git", + "sha256": "1fe0959b6a4bffe88bb567e6bd6b20c918d55f18f417e3bd04a02698bde44eda", + "rev": "2543881f9bbb8520f845b7fe8f370793c36f7df2" + }, + "recipe": { + "sha256": "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150704.1009", + "deps": [] + }, + "jar-manifest-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/omajid/jar-manifest-mode.git", + "sha256": "b80af9bcf58b4d1f5717f0910bdbea199f3fe77f058b444c800e7a543c90cd5b", + "rev": "200dcf6ec5116b506ae24a83511837adf0acedef" + }, + "recipe": { + "sha256": "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150329.1733", + "deps": [] + }, + "psc-ide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/epost/psc-ide-emacs.git", + "sha256": "1fb75010c4538c8092511262a8e8856229db7a826e8e8046a29a403074feb9f1", + "rev": "44d9bc5e0cfadb4fd03b32c0c0b8ea01e5b1c1ae" + }, + "recipe": { + "sha256": "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.817", + "deps": [ + "cl-lib", + "company", + "dash" + ] + }, + "quelpa-use-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/quelpa/quelpa-use-package.git", + "sha256": "a6ceca3db578afa7da3852d3a1bb441369ae65792a602f43e33caa26b8df9603", + "rev": "d18b55508ceaeb894f5db3d775f5c1b27e4be81b" + }, + "recipe": { + "sha256": "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150805.528", + "deps": [ + "emacs", + "quelpa", + "use-package" + ] + }, + "hide-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hide-region.el", + "sha256": "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval" + }, + "recipe": { + "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140201.514", + "deps": [] + }, + "dna-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jhgorrell/dna-mode-el.git", + "sha256": "7664eb5682a8100b519daf4784b4b16187de200d7f061c1e0b6c3e7efa91487c", + "rev": "c3fed6b9d98deafbc1525d445a920b969120fe6a" + }, + "recipe": { + "sha256": "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130821.1305", + "deps": [] + }, + "pungi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mgrbyte/pungi.git", + "sha256": "41c0d044dd2160a142d590934c92f31100d64fb6fa7019ac404741677c493cee", + "rev": "a2d4d439ea371be0b064a12248288903b8a521a0" + }, + "recipe": { + "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150222.646", + "deps": [ + "jedi", + "pyvenv" + ] + }, + "mpages": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/slevin/mpages.git", + "sha256": "d42b0d23c3661b43e0a48180e28ed0c1f9f27b7a6010cb5826d3fb1244ebd1ee", + "rev": "39a72a0931ab1cdbfdf0ab9f412dc12d43a3829f" + }, + "recipe": { + "sha256": "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150710.904", + "deps": [] + }, + "colorsarenice-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/colorsarenice-theme.git", + "sha256": "2aca79f4bc2c2e01cf18e86dda2d76bea71b066d2f1bd2e7a2d251fefda91fa2", + "rev": "3cae55d0c7aeda3a8ef731ebc3886b2449ad87e6" + }, + "recipe": { + "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150421.1536", + "deps": [ + "emacs" + ] + }, + "isearch-symbol-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/re5et/isearch-symbol-at-point.git", + "sha256": "69bf83ab2b9a75452268f6496696889d80f23a1b40bc0e59065d0c060a4ae427", + "rev": "51a1029bec1ec414885f9edb7e5947603dffdab2" + }, + "recipe": { + "sha256": "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130728.1721", + "deps": [] + }, + "flycheck-mypy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lbolla/emacs-flycheck-mypy.git", + "sha256": "1331403a59f4decaf7ecb18fdc85edcf69473ecea231dc34c30a3d68a1e1b6ed", + "rev": "263339e6e44c3d0d4c10ff3528e5575db97a353f" + }, + "recipe": { + "sha256": "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150915.333", + "deps": [ + "flycheck" + ] + }, + "backup-walker": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/backup-walker.git", + "sha256": "1b194e000693a5fc2818b11874c07e91865b9043793f0ac401a5a94953478d7c", + "rev": "934a4128c122972ac32bb9952addf279a60a94da" + }, + "recipe": { + "sha256": "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130720.1016", + "deps": [] + }, + "workgroups": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tlh/workgroups.el.git", + "sha256": "56d8f51f631645f8e953b3be7e37ff55d750dd8802f5e5c755483a8549f96260", + "rev": "9572b3492ee09054dc329f64ed846c962b395e39" + }, + "recipe": { + "sha256": "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110726.1141", + "deps": [] + }, + "browse-kill-ring+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/browse-kill-ring+.el", + "sha256": "0av8fv2xf8b3qs32hxv90pglv9a90z2865rlja21hsyi5isw8vca" + }, + "recipe": { + "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1532", + "deps": [ + "browse-kill-ring" + ] + }, + "ace-jump-buffer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/ace-jump-buffer.git", + "sha256": "3e84481b62f94ce2869a2a47adcd597cbea08d8a92bdbd3806f1d704b3938985", + "rev": "9299ebd4bbbf6ba78dcb40440b3aadd7b540375c" + }, + "recipe": { + "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150215.34", + "deps": [ + "ace-jump-mode", + "dash" + ] + }, + "find-dired+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/find-dired+.el", + "sha256": "1x0zn9kpnvxhgljp4ii4f11hgncj9smdkn64ihih00w7qgg7sif2" + }, + "recipe": { + "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150829.2355", + "deps": [] + }, + "codebug": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shano/emacs-codebug.git", + "sha256": "f79e54c476ef9400cd8be2e9d63c8fb0e8d4c9bdfed4ba7ed40b8d4158386687", + "rev": "ac0e4331ba94ccb5203fa492570e1ca6b90c3d52" + }, + "recipe": { + "sha256": "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140929.1637", + "deps": [] + }, + "bts": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-bts.git", + "sha256": "efaf89571dabf2ab36f32462dcfcabfb4577f5a0d327a2a78dc3c791d2d465bc", + "rev": "df42d58a36447697f93b56e69f5e700b2baef1f9" + }, + "recipe": { + "sha256": "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.733", + "deps": [ + "dash", + "log4e", + "pos-tip", + "s", + "widget-mvc", + "yaxception" + ] + }, + "fyure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mooz/fyure.git", + "sha256": "76c53cc1a100b9b8a774a7f6c3a3f30808eef3313d9bedb9f4f5b1c9ca16d8e6", + "rev": "b6977f1eb148e8b63259f7233b55bb050e44d9b8" + }, + "recipe": { + "sha256": "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130216.714", + "deps": [] + }, + "wedge-ws": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aes/wedge-ws.git", + "sha256": "c69975093876af8c2ae3cad3283183a898ec2ab9d046cfb3d9f85321bac2aee9", + "rev": "4669115f02d9c6fee067cc5369bb38c0f9db88b2" + }, + "recipe": { + "sha256": "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140714.1649", + "deps": [] + }, + "ctl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/emacs-grads.git", + "sha256": "cf67b5c75559f52ea0168ad3d6fdcc2be449ea50cd33de0e75f8a8314eb7b64c", + "rev": "1a13051db21b999c7682a015b33a03096ff9d891" + }, + "recipe": { + "sha256": "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.406", + "deps": [] + }, + "ac-octave": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/ac-octave.git", + "sha256": "f8d4d4df0a7c4a2a752a1fb19d2031f531a6e297ae6652f0e9430804de176f99", + "rev": "28dfce296dd2aa0ea46b51803109f3fdd1e5c379" + }, + "recipe": { + "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150111.1908", + "deps": [ + "auto-complete" + ] + }, + "color-moccur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/color-moccur.el.git", + "sha256": "1decf8c11ad22649d75580512c346d4073b8cd7d9947513d52a559f231182edc", + "rev": "4f1c59ffd1ccc2ab1a171cd6b721e8cb9e002fb7" + }, + "recipe": { + "sha256": "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141222.1835", + "deps": [] + }, + "simple-mpc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorenvo/simple-mpc.git", + "sha256": "0522e28df1140d9d5fa492572ea5270d3ff489536f2c3eb44e877d0ff37cd4f8", + "rev": "fdf0ccb2a157325386e6997c119d87a9aa0865d1" + }, + "recipe": { + "sha256": "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150802.406", + "deps": [] + }, + "ansi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ansi.git", + "sha256": "890f93330ed499250775fa2dbdc5003e78b900d4ea5b6513ae54ae1c39e42fe0", + "rev": "12b4c5d91b3da1902838f421e5af6d40e2cd57dd" + }, + "recipe": { + "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150703.326", + "deps": [ + "dash", + "s" + ] + }, + "evil-magit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/justbur/evil-magit.git", + "sha256": "a74a24f11136c9eb0ccf46acd7743bf4c749bf709bb9bcac326603a26b244c3e", + "rev": "de0de28f1e0d1a0de5ba2482588c359d30f20bee" + }, + "recipe": { + "sha256": "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.2118", + "deps": [ + "evil", + "magit" + ] + }, + "ido-describe-bindings": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danil/ido-describe-bindings.git", + "sha256": "389e0aa707e366d878f1fa16a3c82ffea086999739d7a3ca5b8e5cab549e90a5", + "rev": "a4048d5d1a6aad93c0206dbe4f34f4edb21a04d2" + }, + "recipe": { + "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.1438", + "deps": [ + "dash", + "ido-vertical-mode" + ] + }, + "birds-of-paradise-plus-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jimeh/birds-of-paradise-plus-theme.el.git", + "sha256": "b1f3d31f65e50ebaae63d1ef6397b080209e2e03f6484e2611b805342dfe01c0", + "rev": "bb9f9d4ef7f7872a388ec4eee1253069adcadb6f" + }, + "recipe": { + "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130419.1629", + "deps": [] + }, + "term+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarao/term-plus-el.git", + "sha256": "7292ff7eeacc343778205cfd7e426ebcd8167bb143398113b7ada89dabea452b", + "rev": "090807985673755720c5533b2fc684f88a3554ad" + }, + "recipe": { + "sha256": "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130612.852", + "deps": [] + }, + "elixir-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/elixir-lang/emacs-elixir.git", + "sha256": "3f28e9e72c97f12129ddaa0ebd6301abc74767c8af9cce9aee19b3db1c259a84", + "rev": "25f3995ea34b23b7ffa304159a2508dbf9b3d075" + }, + "recipe": { + "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.612", + "deps": [ + "emacs", + "pkg-info" + ] + }, + "jbeans-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/synic/jbeans-emacs.git", + "sha256": "665cf0042ecd23468008fa5762eb1f2b973f601eedffb22fdfb8795608f46362", + "rev": "9bf942ca383c559d2c94da67a94d8c3e680eb96c" + }, + "recipe": { + "sha256": "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.926", + "deps": [ + "emacs" + ] + }, + "fakespace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elisp-fakespace.git", + "sha256": "da0d29dcc08b6705f25b6638a3538ad8ad96d17ef58ca0c338c5d3981304d585", + "rev": "d1bd1f4b14b2690d7a67f9a52622ec51ed84813a" + }, + "recipe": { + "sha256": "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120817.1906", + "deps": [] + }, + "auto-complete-chunk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/auto-complete-chunk.git", + "sha256": "91a6e619ed0b57297171d7003f91b33b70e62493c8c444e7856f10426fbf0bfe", + "rev": "a9aa77ffb84a1037984a7ce4dda25074272f13fe" + }, + "recipe": { + "sha256": "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140225.346", + "deps": [ + "auto-complete" + ] + }, + "hookify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/hookify.git", + "sha256": "0c1a84847e65a4cf3e5c3bf21852efb14c5c6f7f2e69e39a86fdda034b4b7ffb", + "rev": "e76127230716f7fab6662410c03c3872d17a172b" + }, + "recipe": { + "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141216.1609", + "deps": [ + "dash", + "s" + ] + }, + "gntp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tekai/gntp.el.git", + "sha256": "6af8626fba745e8b7a159551b81aad14657da206e95d467cbf35e6e6a5947edb", + "rev": "767571135e2c0985944017dc59b0be79af222ef5" + }, + "recipe": { + "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.2150", + "deps": [] + }, + "github-browse-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osener/github-browse-file.git", + "sha256": "e814a5b24d59275e690f08f5604e292b443f08997d38b8071c6f4d605db56f1f", + "rev": "fa5cc00a40869430fb44596792961a4cddf9c265" + }, + "recipe": { + "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.1825", + "deps": [ + "cl-lib" + ] + }, + "diminish": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/diminish.git", + "sha256": "09a8ac18ded366d54941d415e2b77b3adf6d8d5c931cdedfeef82257fee15043", + "rev": "b50752d7e2ed87e2c729ccbb82f418c2145b3983" + }, + "recipe": { + "sha256": "03sskxgvkj8zrkh1p6kc993609r6261q4ww9hr78kr2f2a98lj88", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091203.1212", + "deps": [] + }, + "easy-kill-extras": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/easy-kill-extras.el.git", + "sha256": "08504928461648c965fd8893adc8b6f938667c748a9b6d0ff18d33502d4ed6a1", + "rev": "aff957b4fd699331d21648780b2f0f6ffc3cb70b" + }, + "recipe": { + "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.2117", + "deps": [ + "easy-kill" + ] + }, + "projekt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tekai/projekt.git", + "sha256": "bc325975f73b587097670288ee7b492e2f469a106f69817e97f8944004a47b43", + "rev": "a65e554e5d8b0def08c5d06f3fe34fec40bebd83" + }, + "recipe": { + "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150324.348", + "deps": [ + "emacs" + ] + }, + "ob-ipython": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gregsexton/ob-ipython.git", + "sha256": "1a7efd33ef8a6ee6f79af4a18b83ee95a167e073844658693a9cc47cf213b764", + "rev": "15011a8e1694d09a74094c5361a588bf586458f6" + }, + "recipe": { + "sha256": "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151010.507", + "deps": [ + "dash", + "dash-functional", + "emacs", + "f", + "s" + ] + }, + "naked": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/naked.el", + "sha256": "0fr7l8ab6wmffyjs7vc38x6ca37w8c00fjhi3br3g7cgi0bna0wi" + }, + "recipe": { + "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1832", + "deps": [] + }, + "flex-isearch": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/flex-isearch", + "sha256": "02z1w8z9fqdshyyf03c26zjwhmmclb02caw3b6nhhk4w1rkbh6is", + "rev": "bb9c3502057d" + }, + "recipe": { + "sha256": "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130508.1703", + "deps": [] + }, + "ranger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ralesi/ranger.el.git", + "sha256": "f1ac1d266754855b608732b8f45af8a916bcf4938dc295d49a264b3aed0e867b", + "rev": "bec7f51db0aa2fd6c08304b61475352ee54b6692" + }, + "recipe": { + "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.36", + "deps": [ + "emacs" + ] + }, + "jq-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ljos/jq-mode.git", + "sha256": "f7016ae21fb8965e8269e65fd06eb7274b80a2277bb8c493ba43300ce8779804", + "rev": "305ead8f087b1b817291d5f0365e5226199ec58c" + }, + "recipe": { + "sha256": "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.651", + "deps": [ + "emacs" + ] + }, + "jedi-direx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-jedi-direx.git", + "sha256": "57b18e630cce9b19d09bbda1096bac6b392bf61b8fdbe3f7cd4f95cfed2ef1dd", + "rev": "7a2e677400717ed12b959cb5988e7b3fb1c12117" + }, + "recipe": { + "sha256": "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140310.436", + "deps": [ + "direx", + "jedi" + ] + }, + "yascroll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/yascroll-el.git", + "sha256": "e59b1cc7968ce1e7950542936b02359fc8e898153f0fef22623978a7e1498a23", + "rev": "f7743df1cf6d8e55607141d1ea5f50b562582c51" + }, + "recipe": { + "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.805", + "deps": [ + "cl-lib" + ] + }, + "general-close": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-berlin/general-close.git", + "sha256": "c4354bac232091576c3759147f5ed3c7e3e86d957e80839ce8769a062ecde6db", + "rev": "77aac6f98a7c136c88794b0e3d50915a027e185f" + }, + "recipe": { + "sha256": "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150922.213", + "deps": [] + }, + "date-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/date-at-point.el.git", + "sha256": "115bc42208de7d0f747bb0639051d56f5f149c79d8e086d727e73ef3144051db", + "rev": "65733210479812a70a6dd5978ba0e2a4a6fcd08b" + }, + "recipe": { + "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.618", + "deps": [] + }, + "boogie-friends": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/boogie-org/boogie-friends.git", + "sha256": "518abffd5f4721af0f22e0f85058591a57357763a74a7003e8c3f1621445b188", + "rev": "d7b67730e9d4ac2ad5dc886bdc27e9b441497b96" + }, + "recipe": { + "sha256": "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1549", + "deps": [ + "cl-lib", + "company", + "dash", + "flycheck", + "yasnippet" + ] + }, + "flycheck-ledger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flycheck-ledger.git", + "sha256": "3b8fabb65c3ffecc21a401c935a6b46c19ed36db5fe8f763c4de0e6be8c28f95", + "rev": "78392ba2c0c177c47bb795a1a191c29846837f57" + }, + "recipe": { + "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140605.1346", + "deps": [ + "flycheck" + ] + }, + "killer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/killer.git", + "sha256": "1d8ce6eb72cd91309365324edcf631c3c45b54694461c06fb25a0e3961812b17", + "rev": "7bbb223f875402a7b2abee4baa5a54f10bd97212" + }, + "recipe": { + "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120808.622", + "deps": [] + }, + "flycheck-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/flycheck-tip.git", + "sha256": "0a47344a7c2a751307adeaf55363b884d0da1c93861ad885e546ccbc95330427", + "rev": "9eefbea4ccc9e348d356faf28c9a1902ba28f29e" + }, + "recipe": { + "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150726.356", + "deps": [ + "emacs", + "flycheck", + "popup" + ] + }, + "ibuffer-rcirc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/ibuffer-rcirc.git", + "sha256": "c8a0a22a1243f973460f1641f685bbabc6cde0f652c3c73dc6850df96a38aa86", + "rev": "8a4409b1c679d65c819dee4085faf929840e79f8" + }, + "recipe": { + "sha256": "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150215.1518", + "deps": [ + "cl-lib" + ] + }, + "tablist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/politza/tablist.git", + "sha256": "8e0be5e3ec0828f2b78f8aa64e6bffde4dff39d26b653b205842eb877f353348", + "rev": "ef38312867bc0268b1584dd890b1c420bb77ec11" + }, + "recipe": { + "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150619.18", + "deps": [ + "emacs" + ] + }, + "iedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/victorhge/iedit.git", + "sha256": "3f1c515cf74a96cc3683aef5b841b846ed378eda957a9887dd55a7e5b931b86a", + "rev": "2d9017daeaeb408568992f5c9cad5df5ca4f1d12" + }, + "recipe": { + "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150915.2222", + "deps": [] + }, + "term-alert": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CallumCameron/term-alert.git", + "sha256": "48ac0392a98827400ae7238cf3d983a51a933915179fcf5a87695b3158fcaa00", + "rev": "46cc46dba6957a7081a360692e58b9bffb2cfa86" + }, + "recipe": { + "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141121.1405", + "deps": [ + "alert", + "term-cmd" + ] + }, + "org-vcard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flexibeast/org-vcard.git", + "sha256": "bee5e91a9b759b0cd070ecc7bb506556e152072bc744a24fe4213cc7cd6d5dd4", + "rev": "928827c1de3c90045df3ea4fb07db4af9d3b0a22" + }, + "recipe": { + "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.22", + "deps": [] + }, + "eide": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.tuxfamily.org/gitroot/eide/emacs-ide.git", + "sha256": "3f41ade3332a3f1dc5cfb0b33077396feb7b683b2cf2c235b7a5f07f0b2e3271", + "rev": "524494fd2b23217c6807b30b43bb95b5724f809e" + }, + "recipe": { + "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1406", + "deps": [] + }, + "simple+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/simple+.el", + "sha256": "0y1c87288cj7kwdq5ww6rvd4g4afssw22b7d0wa5ihl85nnf21kv" + }, + "recipe": { + "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150616.1522", + "deps": [ + "strings" + ] + }, + "mbo70s-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-mbo70s-theme.git", + "sha256": "bf9cac357637994a5571a28b57c4c4d82545ef6d16801d5a7cfc93459b2b28ef", + "rev": "d50414697760896dbe6b06d2a00c271c16e0e4a2" + }, + "recipe": { + "sha256": "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141122.842", + "deps": [ + "emacs" + ] + }, + "weather-metno": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ruediger/weather-metno-el.git", + "sha256": "2adc62107ddf5904cc834c04a1fdd00743f3f470e83ef2e71558362b1e5799d6", + "rev": "bfc7137095e0ee71aad70ac46f2af677f3c051b6" + }, + "recipe": { + "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150831.2007", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gitconfig": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tonini/gitconfig.el.git", + "sha256": "e898334574359b9a8d899f6b5ec4557fb871f221ba9e6203833b27d5f51e98a0", + "rev": "7612a37ca14009cac8fb8d6b6f54adad739a5741" + }, + "recipe": { + "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130718.435", + "deps": [] + }, + "auth-password-store": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/auth-password-store.git", + "sha256": "066ba82c4c5061bc11c1d390bfbacded48d91e6ccabd9328c8e09aaeb287e063", + "rev": "d7fc1f026c3f43190cacedfa6eff8da916e607f5" + }, + "recipe": { + "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.1547", + "deps": [ + "cl-lib", + "emacs", + "password-store", + "seq" + ] + }, + "org-context": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thisirs/org-context.git", + "sha256": "545940c9afdf0cccc8d99fd55518c326b8486f374e5f1837600cca7899cb2eed", + "rev": "47d1f0c9b9fb7547dbeed5b3315102a2d3c3e16f" + }, + "recipe": { + "sha256": "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.1506", + "deps": [] + }, + "eyuml": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antham/eyuml.git", + "sha256": "b6557c7b2dbdff6cfba93f3850754e4a7e55c3c5cd077092a77af430beff0184", + "rev": "2f259c201c6cc63ee608f75cd85c1ae27f9d2532" + }, + "recipe": { + "sha256": "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141028.1727", + "deps": [ + "request", + "s" + ] + }, + "cpputils-cmake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/cpputils-cmake.git", + "sha256": "23357bdb09873ddab28422f822c2e23c4c78fd7887e02777ddd435486e056197", + "rev": "9a496c9c14d1f287d9819aa0ed017be9fad9d3f4" + }, + "recipe": { + "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.603", + "deps": [] + }, + "anzu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-anzu.git", + "sha256": "f4f3f307cc0cd85d544782557d703ce2224420042aaf9f04e89befb683f5364d", + "rev": "6fded24b366efc4cf27166104c1928f7d1fedaa7" + }, + "recipe": { + "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151015.605", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "tj-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/katspaugh/tj-mode.git", + "sha256": "896b4c6c4500ba9caf79a468109f4bba03accd49b96ada33d22d9222fe29a30e", + "rev": "492b271c3736616c84a99c5b43897848bc350c96" + }, + "recipe": { + "sha256": "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150826.1051", + "deps": [ + "emacs", + "js2-mode", + "tern" + ] + }, + "speechd-el": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.freebsoft.org/git/speechd-el", + "sha256": "2c1bff3e5a182b8150c6ba6c3be7e70ab2b733cac0a758521c0b941dff215c32", + "rev": "3d729817296b2ed8ad414a6aa044a8aa762259eb" + }, + "recipe": { + "sha256": "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141025.1112", + "deps": [] + }, + "web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-web.git", + "sha256": "c5132c8b28a28d6a1809c11510481cb3cfd90b87d92dc33b2c0f064e6f53ac0f", + "rev": "483188dac4bc6b409b985c9dae45f3324a425efd" + }, + "recipe": { + "sha256": "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141231.1401", + "deps": [ + "dash", + "s" + ] + }, + "python-django": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/python-django.el.git", + "sha256": "d0a8f70f0599f6414a176cf0a0620667affd39c6a5fa851f2465c51057b193e1", + "rev": "fc54ad74f0309670359b939f64d0f1fff68aeac4" + }, + "recipe": { + "sha256": "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150821.2304", + "deps": [] + }, + "helm-google": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/helm-google.git", + "sha256": "6246633b3f929063c8f7552da721bf60b0ddaed78c2af92a1ce73781c4ae8556", + "rev": "21443456eefab39a2bfef00f1387c015e7dfac51" + }, + "recipe": { + "sha256": "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141228.540", + "deps": [ + "google", + "helm" + ] + }, + "format-sql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/format-sql.el.git", + "sha256": "adb8870c0f12e930843a7b5455a8f9c03d1d0e57680fc910b0b565b2f0be44bc", + "rev": "97f475c245cd6c81a72a265678e2087cee66ac7b" + }, + "recipe": { + "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150422.833", + "deps": [] + }, + "writegood-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bnbeckwith/writegood-mode.git", + "sha256": "2b0c3987112ed453007aec5b32b5cba812c0c9559c52e6dddf1b266372b0d2da", + "rev": "4302169c1563cab9319745083f9b9a7f5f4af0bd" + }, + "recipe": { + "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150325.1315", + "deps": [] + }, + "simpleclip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/simpleclip.git", + "sha256": "0e1724351d66f424aedad16f60e04bf58c7df472ae5463b2fe03615258c96279", + "rev": "7079086ec09a148fcc9146ba9bd10e12fb011861" + }, + "recipe": { + "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.1210", + "deps": [] + }, + "pallet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/pallet.git", + "sha256": "dbedee607b66db70fe1c49c2cdc3f3c8bcc69726889d2cd2daba07c8849c7ebb", + "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" + }, + "recipe": { + "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150512.202", + "deps": [ + "cask", + "dash", + "f", + "s" + ] + }, + "org-sync": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arbox/org-sync.git", + "sha256": "05e493fd5f3ee4efe9fb584fdf71b39ebc04d61c4bf7b11fb80ac142931303b3", + "rev": "1e9045e38cd6f12dc0d60e2f7bd2d414a49a5722" + }, + "recipe": { + "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.954", + "deps": [ + "cl-lib", + "emacs", + "org" + ] + }, + "rcirc-styles": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aaron-em/rcirc-styles.el.git", + "sha256": "8beb3500e35ce58d62c9856672d56710fe9b8fd5641d7ca2c31f783adb2267a1", + "rev": "a1a166ad34e6096d6b5dde9ea4312b3104899a75" + }, + "recipe": { + "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150720.2031", + "deps": [ + "cl-lib" + ] + }, + "jasminejs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stoltene2/jasminejs-mode.git", + "sha256": "e29b56085b3d1dbd6ac500333f3e128468222b45d48cc3e4856b1cd2411fd328", + "rev": "9f8044bf81ab5b4841a30b0bd099916e1b7ff54a" + }, + "recipe": { + "sha256": "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150526.1905", + "deps": [] + }, + "key-chord": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/key-chord.el", + "sha256": "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg" + }, + "recipe": { + "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.304", + "deps": [] + }, + "twilight-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/developernotes/twilight-theme.git", + "sha256": "daf14286114bdb311ee5d423965403e28268857fadcee40ecc8ff30c6068fb34", + "rev": "77c4741cb3dcf16e53d06d6c2ffdc660c40afb5b" + }, + "recipe": { + "sha256": "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120412.803", + "deps": [] + }, + "apel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wanderlust/apel.git", + "branchName": "apel-wl", + "sha256": "3531d891f7af7ee3e26bcea3ddda1f941e59fbe643c02e170b1a67b488b3bd69", + "rev": "8402e59eadb580f59969114557b331b4d9364f95" + }, + "recipe": { + "sha256": "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141024.1842", + "deps": [] + }, + "cn-outline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mori-dev/cn-outline.git", + "sha256": "99959dd3be36375031fc49b7aa0b2163c4dd1086d10970c43678c77b43996598", + "rev": "47d33a99b7ae26b1cd456441970b4bab2173d981" + }, + "recipe": { + "sha256": "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100321.1114", + "deps": [] + }, + "yatemplate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mineo/yatemplate.git", + "sha256": "0c708b036320bbb6707c29219f09dc229f71af047ef79e8d36d8493e0518b6bf", + "rev": "499e7f2ea245686c09915523657fa95905f70561" + }, + "recipe": { + "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.107", + "deps": [ + "yasnippet" + ] + }, + "nginx-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ajc/nginx-mode.git", + "sha256": "68383ec0f80d1a797def7f0af17b6d56acaee6fdc842e401151df4bcc0f47721", + "rev": "8a296e30b01adbc40d1aa9ccde369a972ac5ceab" + }, + "recipe": { + "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150824.1611", + "deps": [] + }, + "anything-git-grep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mechairoi/anything-git-grep.git", + "sha256": "fbcefa3ca15d3ed4a2f781d0cab1036b885cb1ca5814e9cc532a7cc9cedcde19", + "rev": "6ee26e68bb8ec23ffacf5c5f9698c451a4bc905c" + }, + "recipe": { + "sha256": "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130608.2140", + "deps": [ + "anything" + ] + }, + "emoji-fontset": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zonuexe/emoji-fontset.el.git", + "sha256": "393ff52a3d1632495bc3ea893750aa2e5d7604f3804d8415acc35a955fb82762", + "rev": "3b8c2204284b95934383836b5b36efeefb65663b" + }, + "recipe": { + "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151107.2247", + "deps": [] + }, + "ergoemacs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ergoemacs/ergoemacs-mode.git", + "sha256": "32a88fc9f5da06f181b048ef0caf0deb334cbfbaa2f76bf667bded681402a078", + "rev": "ca73f109122db03563b792158034cf333d97a5a9" + }, + "recipe": { + "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.1038", + "deps": [ + "emacs", + "undo-tree" + ] + }, + "cyphejor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/cyphejor.git", + "sha256": "51a549c4e6140d896060d9e6603f7af1aa7e3bf06b5ba4ef1498afda67026c6a", + "rev": "1025d82a9abaca132f5855e72d56c0c2ccc0eef4" + }, + "recipe": { + "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.627", + "deps": [ + "emacs" + ] + }, + "motion-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ainame/motion-mode.git", + "sha256": "fb5a955bafd44e89f58fa3fb186b7c3e1a0e796abaf23dea857405c2fed47fc5", + "rev": "4c94180e3ecea611a61240a0c0cd48f1032c4a55" + }, + "recipe": { + "sha256": "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140919.2056", + "deps": [ + "flymake-cursor", + "flymake-easy" + ] + }, + "guide-key-tip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/guide-key-tip.git", + "sha256": "d2772007877e1985f1d2440cb0389fb7ca5ce464270c8dcc74a5e3d5b427d7e8", + "rev": "d1773156b62566e1245f39936abd151844bd471c" + }, + "recipe": { + "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140406.2020", + "deps": [ + "guide-key", + "pos-tip" + ] + }, + "apache-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/apache-mode.el", + "sha256": "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik" + }, + "recipe": { + "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150828.914", + "deps": [] + }, + "ac-racer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-racer.git", + "sha256": "8d70ad5e88997bc6204eceda076111598f40f380eecf7b9fa26b3dd7508a17fb", + "rev": "2708b0a49afc89fb99a6d74a016cff6b94138ed0" + }, + "recipe": { + "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150831.341", + "deps": [ + "auto-complete", + "cl-lib", + "racer" + ] + }, + "iregister": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/atykhonov/iregister.el.git", + "sha256": "65a1fb8e59301217d37e1981c0aada3152af0b18899c4b5fb7a38336160806b2", + "rev": "6a48c66187289de5f300492be11c83e98410c018" + }, + "recipe": { + "sha256": "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150515.1607", + "deps": [] + }, + "nemerle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rsdn/nemerle.git", + "sha256": "013689d40795030567acec8010576b1ca3a7c3c064d1149142cf152967db646c", + "rev": "57c4b84b40cd7b2aa186baae78e79f0a4f521d97" + }, + "recipe": { + "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130328.946", + "deps": [] + }, + "tango-plus-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tmalsburg/tango-plus-theme.git", + "sha256": "4e6e1feb1e7018ba011bf3b9a801978e992485f341657e4274e2a6e5bd0fd6bd", + "rev": "99c3484eeb4e6f7f62a6dacfd665a4d46f4cbdaf" + }, + "recipe": { + "sha256": "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140425.1711", + "deps": [] + }, + "debpaste": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alezost/debpaste.el.git", + "sha256": "cc2775b327347e1fee64ff7211c747a3dc042dd8e03032eb6441e6d7d3a07946", + "rev": "c296c063e5a75da1ebeea84ee35c6988651de416" + }, + "recipe": { + "sha256": "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140618.58", + "deps": [ + "xml-rpc" + ] + }, + "kerl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/correl/kerl.el.git", + "sha256": "697a536809445368c0af71aab808544326258a54db145283c5e46496edd17fce", + "rev": "1732ee26213f021bf040919c45ad276aafcaae14" + }, + "recipe": { + "sha256": "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150424.1505", + "deps": [] + }, + "haskell-emacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knupfer/haskell-emacs.git", + "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151004.1230", + "deps": [] + }, + "terraform-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-terraform-mode.git", + "sha256": "78a9871673a5852644bceccc58e025812aab890211da389a744ed09a1771f79f", + "rev": "06b06b415f05f73d1d8bb1a8ba236e8ffe45793b" + }, + "recipe": { + "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.945", + "deps": [ + "cl-lib", + "hcl-mode" + ] + }, + "octopress": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aaronbieber/octopress.el.git", + "sha256": "1e28c0ea69621d6d70093add1b20fe59dadafa5f2f87210359d857d7978a89b9", + "rev": "2e068887b17b72a69e29349d477333d067867eec" + }, + "recipe": { + "sha256": "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151006.514", + "deps": [] + }, + "helm-dired-recent-dirs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/akisute3/helm-dired-recent-dirs.git", + "sha256": "20848dec32498e5530f1b3ac993b7dce2d78dd1215235953dccda3e772735193", + "rev": "3bcd125b44f5a707588ae3868777d91192351523" + }, + "recipe": { + "sha256": "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131228.814", + "deps": [ + "helm" + ] + }, + "gap-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/gvol/gap-mode", + "sha256": "1jdaysi5rbl0m2lmz41xldxbh3z5b89cnxka7r2ndldcqiq5j9q7", + "rev": "38e9eb6cbd0f" + }, + "recipe": { + "sha256": "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140913.1458", + "deps": [] + }, + "elpa-audit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/elpa-audit.git", + "sha256": "3c02d197e84b70c5f5924db65d935d08eccc161476b6b49c6fb5f18e64e2b4b6", + "rev": "1ca4e6073f8c4cbb41688b69d3b3feaa1a392efc" + }, + "recipe": { + "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141023.831", + "deps": [] + }, + "sublimity": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/sublimity.git", + "sha256": "ec1a17d32b64c14ce46dc20ea4cd8f056da6604eac10834b2970d6002554e875", + "rev": "45fabc1a63625bd0181f2bd4f39f154df5110338" + }, + "recipe": { + "sha256": "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150918.1417", + "deps": [] + }, + "helm-w3m": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-w3m.git", + "sha256": "3fc602c483e64148f2e64130b28b350d05796004fe6e2370536e7eb222ae8734", + "rev": "280673470672c9fbc57fd6a91defeb9f6641fc8a" + }, + "recipe": { + "sha256": "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150722.1024", + "deps": [ + "cl-lib", + "emacs", + "helm", + "w3m" + ] + }, + "ietf-docs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/choppsv1/ietf-docs.git", + "sha256": "47b7fd4501a9853ff1a7cf9ca1a84f21568eccc01900783d2b54aecb95df24f7", + "rev": "ede30d6d26044069e1731fd20c0ab2324552c0b4" + }, + "recipe": { + "sha256": "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150928.457", + "deps": [] + }, + "ruby-block": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ruby-block.el", + "sha256": "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq" + }, + "recipe": { + "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131210.2131", + "deps": [] + }, + "inline-crypt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sodel-the-Vociferous/inline-crypt-el.git", + "sha256": "e6bbefa731000bdf9779889ce712d6394031e75afd95462a52621042906e374a", + "rev": "497ce9dc29a8ccac0b6dd6854f5d120514350282" + }, + "recipe": { + "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130409.707", + "deps": [] + }, + "fsharp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rneatherway/emacs-fsharp-mode-bin.git", + "sha256": "309fbe02556433c469d88b4204b369d97c774e275fdc62e20f068f63ca69d788", + "rev": "6c6111980b2bfa0664bf4032039d6dca3d00b4f4" + }, + "recipe": { + "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.936", + "deps": [ + "auto-complete", + "dash", + "popup", + "pos-tip", + "s" + ] + }, + "mmm-mako": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/pjenvey/mmm-mako", + "sha256": "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr", + "rev": "5c9ff92137b5" + }, + "recipe": { + "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121020.151", + "deps": [ + "mmm-mode" + ] + }, + "auto-complete-pcmp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/auto-complete-pcmp.git", + "sha256": "46c81ffdb423e2f7110a631ca3730bc3d85775ea4ef897a1722a79384072c2c1", + "rev": "2595d3dab1ef3549271ca922f212928e9d830eec" + }, + "recipe": { + "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140227.51", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "regex-tool": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/regex-tool.git", + "sha256": "7424939a09f4338ac4eb9a90cb868022d0ec0012bcbfde17627b3268821421f3", + "rev": "62b292d93f29e4c4767b0800d53c656b9f626892" + }, + "recipe": { + "sha256": "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131104.1634", + "deps": [] + }, + "macrostep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joddie/macrostep.git", + "sha256": "29828872878cc8812c5f84f890be881cc49a7aee1cd73d41ee3e071f90f45aca", + "rev": "a3338d351e18bfbacd970d371735f840e7d5fe38" + }, + "recipe": { + "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.345", + "deps": [ + "cl-lib" + ] + }, + "keydef": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/keydef.git", + "sha256": "7b43cf0aaa3d43dd4dafd2a51528a5588cb9d1dfe671a13f438bf45857286c36", + "rev": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0" + }, + "recipe": { + "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20090428.1431", + "deps": [] + }, + "flymake-coffee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-coffee.git", + "sha256": "afb781c703f30ebbe1216bd222ecc3b78c0e4c696d8aab5967756680d50bd3e3", + "rev": "325ab379592fdf9017d7c19625c7a978f6f3af3b" + }, + "recipe": { + "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140809.524", + "deps": [ + "flymake-easy" + ] + }, + "magit-svn": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-svn.git", + "sha256": "daba06765907b213c286c2563ae840e8b3c057331d7406a6b4c2aa2e8e8ef43f", + "rev": "04ade0b554a7c3e326860989ccc0da03ea6f9bcf" + }, + "recipe": { + "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.257", + "deps": [ + "emacs", + "magit" + ] + }, + "scion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nominolo/scion.git", + "sha256": "b9366874463b0236c000ce442318ddccdbf586484869a244c7b894b3f23cc52e", + "rev": "99b4589175665687181a932cd836850205625f71" + }, + "recipe": { + "sha256": "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130315.755", + "deps": [] + }, + "hl-defined": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hl-defined.el", + "sha256": "19pvwdkw833c84j9ynn2x8s8lv1bi98gkkmppn01v08yyzi3kr7y" + }, + "recipe": { + "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1620", + "deps": [] + }, + "company-arduino": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/company-arduino.git", + "sha256": "dd6de2ec33694733b30ddd5297fed6fe3c770239e190edbcc4ab5ac72b59fd18", + "rev": "fd31103ab73acd6c77e4361db86e472619903f80" + }, + "recipe": { + "sha256": "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150614.326", + "deps": [ + "arduino-mode", + "cl-lib", + "company", + "company-c-headers", + "company-irony", + "emacs", + "irony" + ] + }, + "diffview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mgalgs/diffview-mode.git", + "sha256": "ae33123df7ab7fe60aa9690fde399e63fc5078eb76adbedb5bf360d20f423c36", + "rev": "031b70913e755c5e55222680f80185032a7d1728" + }, + "recipe": { + "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150929.11", + "deps": [] + }, + "tree-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tree-mode.el", + "sha256": "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx" + }, + "recipe": { + "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.731", + "deps": [] + }, + "scf-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/scf-mode.git", + "sha256": "6885487ca009259dfa43dcd822e70bc383d0ba0802d481ced7756ac1ae55f054", + "rev": "dbfcdcd89034f208d65e181af58e0d73ad09f8b2" + }, + "recipe": { + "sha256": "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.2048", + "deps": [] + }, + "go-projectile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dougm/go-projectile.git", + "sha256": "9df1f0685b613de731c56b949683097f5ceee9ee1bc7f643eb6ec8cce020e55e", + "rev": "afbc4705ecab448f972a883ccc9ddf33dc0fcb11" + }, + "recipe": { + "sha256": "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1229", + "deps": [ + "go-eldoc", + "go-mode", + "go-rename", + "projectile" + ] + }, + "align-cljlet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gstamp/align-cljlet.git", + "sha256": "572b4fb3fc9aa49984bf08aff72fdb47da6e04cd74fd8cdb7c078520250e7187", + "rev": "eb8d18058838167a13e3272ac9fd597d7c183b35" + }, + "recipe": { + "sha256": "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.154", + "deps": [ + "clojure-mode" + ] + }, + "framesize": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-framesize.git", + "sha256": "b3915afb41d4f8af203c152433d272f0dc7e8e1290c9b03d53ed702b0def0986", + "rev": "f2dbf5d2513b2bc45f2085370a55c1754b6025da" + }, + "recipe": { + "sha256": "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131017.1632", + "deps": [ + "key-chord" + ] + }, + "helm-cscope": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alpha22jp/helm-cscope.el.git", + "sha256": "1d245016c28d75f0265727aa3f359c989ede8919bb787f57d4171fc76047115a", + "rev": "ddc3f750a92044d6712585e29d3dbaface2e34db" + }, + "recipe": { + "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150609.849", + "deps": [ + "cl-lib", + "emacs", + "helm", + "xcscope" + ] + }, + "cil-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ForNeVeR/cil-mode.git", + "sha256": "a1119e63ab9ebe52b74ebc8e19e070626fc5c9ada1b95464781a674308501ef0", + "rev": "fcd2e407aeefab9ae465b072eea33dc115506fff" + }, + "recipe": { + "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.450", + "deps": [] + }, + "dylan-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dylan-lang/dylan-mode.git", + "sha256": "90178b5c4796e8e9aa17840b6903119143f080e3eaa064c84d332b500746ddaf", + "rev": "2a5b8a65a3e3e9543e935dceea1a121e69e78c8e" + }, + "recipe": { + "sha256": "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140611.37", + "deps": [] + }, + "babel": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/juergenhoetzel/babel.git", + "sha256": "d8846bf882a27727e7c8a46976cf17c0b4e5e44e6bb7932745495e03de882f01", + "rev": "9bc1c3cf6de50b0e34fa1a7640eb68c650e72fd6" + }, + "recipe": { + "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131231.925", + "deps": [] + }, + "hide-lines": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hide-lines.el", + "sha256": "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2" + }, + "recipe": { + "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.1240", + "deps": [] + }, + "todotxt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rpdillon/todotxt.el.git", + "sha256": "54bd83090c4888458e8dba884db2e32b2a0e2bc8c8d85b59bdaba627afaa4457", + "rev": "fc83f954aea75065aa9788ee07027c94e76a9364" + }, + "recipe": { + "sha256": "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150513.2129", + "deps": [] + }, + "helm-firefox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-firefox.git", + "sha256": "c40b2b06571e657a0b81f215102dc0f35ed0aeaede97ea894350867687096c5f", + "rev": "73d2dc49f4f3efa3f68881cf7cb5da27419d13a9" + }, + "recipe": { + "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150720.1318", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "nanowrimo": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/gvol/nanowrimo.el", + "sha256": "1nzkamy53kl1g4y1jm7j5zgpkdsyg5ykp8zp1f0bg5mhy8mmf75w", + "rev": "25e2ca20ed34" + }, + "recipe": { + "sha256": "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.2028", + "deps": [] + }, + "engine-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hrs/engine-mode.git", + "sha256": "93b4c36aa192ad911c3ac04aeed2597817e71d9a4ca1e39de834d5e45bf827cc", + "rev": "98020c5c8fcc3c675999fc6215af6a6259c5c017" + }, + "recipe": { + "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150902.1235", + "deps": [] + }, + "company-c-headers": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/randomphrase/company-c-headers.git", + "sha256": "5a661af7448f5e67a2571a746e3025b8b997711856cda7502d649a32e74c55e9", + "rev": "0b8c63cdc7864c3e3939c4b8cda314d05ae0a352" + }, + "recipe": { + "sha256": "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150801.1101", + "deps": [ + "company", + "emacs" + ] + }, + "textmate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/defunkt/textmate.el.git", + "sha256": "5f4b8084d501ce9dfbd7bb356d56465c00fb857532fdc4f36b713f8f73476ec3", + "rev": "350918b070148f0ace6d9d3cd4ebcaf15c1a8781" + }, + "recipe": { + "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110816.1646", + "deps": [] + }, + "flycheck-clojure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/squiggly-clojure.git", + "sha256": "dfb00ae36fb4091db04d4a6e90ebc5b89d9910d51c3cdfad6c72e7af71059e08", + "rev": "308044d58c4e16567ae818cc1d1e90f29947ada3" + }, + "recipe": { + "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150831.831", + "deps": [ + "cider", + "emacs", + "flycheck", + "let-alist" + ] + }, + "sotclojure": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/speed-of-thought-clojure.git", + "sha256": "ecb1f94ac96bbef1f0189da55108d830cad7367ca6b9ae44137c0fa7e9bea2b2", + "rev": "8396cdb4c479ef0c12d3786bc8356746e7ffb354" + }, + "recipe": { + "sha256": "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.1856", + "deps": [ + "cider", + "clojure-mode", + "emacs", + "sotlisp" + ] + }, + "modeline-char": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/modeline-char.el", + "sha256": "0z3izd0wvnqh3r8535rzxi0xab6hz46njw4m24nl6xps2n7fcwmi" + }, + "recipe": { + "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150710.2153", + "deps": [] + }, + "el-autoyas": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/el-autoyas.el.git", + "sha256": "9640fb6be024cc1d1dbf4cd8f739288fe3bfa88b84a1d2723d958d94fe177735", + "rev": "bde0251ecb504f585dfa27c205c8e312655310cc" + }, + "recipe": { + "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120918.817", + "deps": [] + }, + "px": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aaptel/preview-latex.git", + "sha256": "c352bf8aa5bc257b88a36057d0ae07e87b8b85eba74f0c8804eaecfb7a8de481", + "rev": "c698a650997a1d5b06b92acc8f30d620342e1f37" + }, + "recipe": { + "sha256": "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141006.748", + "deps": [] + }, + "osx-pseudo-daemon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/osx-pseudo-daemon.git", + "sha256": "e0e01db9b041c9f4e4cc8d26537684a1bf39810a10757082a47888a4137669cc", + "rev": "0b9f330a66b4e8d2ff9bcd57e09b8d304dfb5841" + }, + "recipe": { + "sha256": "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131026.1930", + "deps": [] + }, + "system-specific-settings": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DarwinAwardWinner/emacs-system-specific-settings.git", + "sha256": "2ffc62b6e1232bf3189693186ffc8be4943d1e116f9660bd0d05cc15642893d6", + "rev": "0050d85b2175095aa5ecf580a2fe43c069b0eef3" + }, + "recipe": { + "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140818.957", + "deps": [] + }, + "haskell-emacs-base": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knupfer/haskell-emacs.git", + "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150714.1059", + "deps": [ + "haskell-emacs" + ] + }, + "leerzeichen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgeller/leerzeichen.el.git", + "sha256": "7637866b4efd0378e88ffe931ec87d92ea59dabf92298f57319e87d72ba7397b", + "rev": "e67e59a0e15bc4a41006fdd9822c4b3e6d7da626" + }, + "recipe": { + "sha256": "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151106.28", + "deps": [] + }, + "rcirc-groups": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dimitri/rcirc-groups.git", + "sha256": "6498eafb8560e57a860437828158040a1f19890aefaca3bf6002f90846c7092c", + "rev": "af15e550339c1b8b2971eb2958e0029c353abfb2" + }, + "recipe": { + "sha256": "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.1113", + "deps": [] + }, + "windata": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/windata.el", + "sha256": "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz" + }, + "recipe": { + "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20080412.955", + "deps": [] + }, + "clues-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jasonm23/emacs-clues-theme.git", + "sha256": "591dbf7fcb044674b12e64e24bac823a7a72bb0ea150a119a5e95126cc1ad43a", + "rev": "69d873c90fbf24590c765309b7fb55cd14bb6bda" + }, + "recipe": { + "sha256": "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140922.2256", + "deps": [ + "emacs" + ] + }, + "ert-async": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ert-async.el.git", + "sha256": "89290775f84a76ef9802584e9ee104e0afd5ed2092db9d6068123a5b0089c942", + "rev": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526" + }, + "recipe": { + "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151011.859", + "deps": [] + }, + "http": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/http.el.git", + "sha256": "6c21f9ddd09225eb4ffdc2e1f5eb3d44e0b76b435e9af8daa3f3f4989174d4b3", + "rev": "3984230ea8b413bc634fb72d097c7f3b8c92b988" + }, + "recipe": { + "sha256": "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150716.959", + "deps": [ + "cl-lib", + "emacs", + "request" + ] + }, + "textmate-to-yas": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/textmate-to-yas.el.git", + "sha256": "09fde68627dab32b179dee96309479add568a6a3e3b6a3ab9fde4209ae83b0c5", + "rev": "74cbf0877ab6391f920d2d7a588e363423d61227" + }, + "recipe": { + "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.746", + "deps": [] + }, + "password-vault": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PuercoPop/password-vault.git", + "sha256": "13cb87a3852e4a4d2aea6466e7460008ba1de9e15d5e0d0c10f1e9eee8bf0425", + "rev": "e47d99bb092e150472f1989ab3ac5a4752863515" + }, + "recipe": { + "sha256": "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.2141", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "mustache": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/mustache.el.git", + "sha256": "b3f952149d862839c727d60bb3ffad2e9844d7caec7151c453cd9195e55d3665", + "rev": "b0ea352813592424164520a49e86c04600242752" + }, + "recipe": { + "sha256": "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.1607", + "deps": [ + "dash", + "ht", + "s" + ] + }, + "dracula-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenorocha/dracula-theme.git", + "sha256": "7b30a4c99e4d2d6d11bcf4d1ce1d9678b3ff51ca5872c8bf10c2a5888bf4f0f4", + "rev": "ee065fed126eecdfe33a1a578d9f1e20687d2f3a" + }, + "recipe": { + "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.1045", + "deps": [ + "emacs" + ] + }, + "sibilant-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jbr/sibilant-mode.git", + "sha256": "50d7c2c154ef3853e9296c3e44657ec1f29d87f701465b8b404c7e4bb9bbea98", + "rev": "bc1b5d8cd597918bafc9b2880ee49024740e54ab" + }, + "recipe": { + "sha256": "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1545", + "deps": [] + }, + "elixir-yasnippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hisea/elixir-yasnippets.git", + "sha256": "0d1a4941cca786503235aa01a50d2fee1797833a648cdb6e6f3c8528ce20b8e9", + "rev": "980ca7626c14ef0573bec0035ec7942796062783" + }, + "recipe": { + "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150417.739", + "deps": [ + "yasnippet" + ] + }, + "misc-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/misc-cmds.el", + "sha256": "0akrb0gd4ywrib9bg3q5qjf991gnkggivmg1nsn9snc6il8yjaxq" + }, + "recipe": { + "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150602.1427", + "deps": [] + }, + "drupal-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/arnested/drupal-mode.git", + "sha256": "8040a65a84757b8f862263d351935cef84e15c35ae3ded8c66788361ac8ed951", + "rev": "b4a66092bddc471884b2746d69fd7e8853b4b79f" + }, + "recipe": { + "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150830.1427", + "deps": [ + "php-mode" + ] + }, + "livid-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pandeiro/livid-mode.git", + "sha256": "d7f43c2e637a9d57f412e8cedbc2518c3d596ca7977664974a352934ef6f149d", + "rev": "dfe5212fa64738bc4138bfebf349fbc8bc237c26" + }, + "recipe": { + "sha256": "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131116.744", + "deps": [ + "s", + "skewer-mode" + ] + }, + "company-flx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PythonNut/company-flx.git", + "sha256": "dd6d9acc81050a79010ed70f42e5849214b4670a77c61aa058d72e0b79194b1f", + "rev": "da73fc0d306fdb7335a801353b9798d1e1cfc1c1" + }, + "recipe": { + "sha256": "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151020.1301", + "deps": [ + "company", + "emacs", + "flx" + ] + }, + "org-pandoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/robtillotson/org-pandoc.git", + "sha256": "3e09172f6aaf2e8651bad2c8c2dfeffa20227619bede404eaebdc095389c5584", + "rev": "84b5df1f5516704540e19e048e18f437dc090a7d" + }, + "recipe": { + "sha256": "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130729.2050", + "deps": [] + }, + "company-jedi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-company-jedi.git", + "sha256": "919b6adf148800782f89d8e14e22aad116323b9a0bc39d81258a5ed799fcfb2a", + "rev": "5aaf08f6ed32b1d749c6f1aeb424227256fd7f51" + }, + "recipe": { + "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.1641", + "deps": [ + "cl-lib", + "company", + "emacs", + "jedi-core" + ] + }, + "hoa-mode": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.lrde.epita.fr/spot/emacs-modes.git", + "sha256": "bf4056192044808554a5dfd537512ec939cbcf628a9becd61736d6409f7e7ce8", + "rev": "3c608e15b655d2375c5f81323ac561c7848dc029" + }, + "recipe": { + "sha256": "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1050", + "deps": [] + }, + "termbright-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bmastenbrook/termbright-theme-el.git", + "sha256": "e4acb7b0ffd4e4bbee976e41a4f044e32d84ae4fc9634cddbd1b0b6cbafe5426", + "rev": "bec6ab14336c0611e85f45486276004f16d20607" + }, + "recipe": { + "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.2135", + "deps": [ + "emacs" + ] + }, + "jape-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tanzoniteblack/jape-mode.git", + "sha256": "4d1ce0799ac7e614a261de0adeed0603d7079c42eb9f104b77ad7ce613075abf", + "rev": "85b9182850707b5d107391f6caee5bd401507a7d" + }, + "recipe": { + "sha256": "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140903.1006", + "deps": [] + }, + "list-utils": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/list-utils.git", + "sha256": "45192672fbfd9b6c54a81e18e3187e2c2866cd1914ad64cbf36ba2b747024439", + "rev": "36ade42f7cac835d1b8e3dcaf6beeba55ce89832" + }, + "recipe": { + "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "helm-ack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-ack.git", + "sha256": "0548d12d2f09d331ee7cc788f7fde023ec5e04cd1e5edad94d19ae4f4c759192", + "rev": "889bc225318d14c6e3be80e73b1d9d6fb30e48c3" + }, + "recipe": { + "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141030.726", + "deps": [ + "cl-lib", + "helm" + ] + }, + "fasd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/emacs-fasd.git", + "sha256": "e5a3c3a919967d0f0ab9033473f142ace97196242a39c33d54479bd0f2b05854", + "rev": "8726a367048054add81ecea7543de00688056735" + }, + "recipe": { + "sha256": "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.116", + "deps": [ + "grizzl" + ] + }, + "packed": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/packed.git", + "sha256": "ab8d3c5083ea7ad023df60592a79773b08c253c361e3e5d21cae97171ad3831c", + "rev": "9d77e39c9df29c6224302cb7973b2de7e05f8bd7" + }, + "recipe": { + "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150723.638", + "deps": [ + "dash", + "emacs" + ] + }, + "guide-key": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kai2nenobu/guide-key.git", + "sha256": "6084978f3067e86f41bc1cce6fbb134be3e1a6a5ed0fd868762e100e0019c6ad", + "rev": "9236d287a7272e307fb941237390a96037c8c0a2" + }, + "recipe": { + "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150108.35", + "deps": [ + "dash", + "popwin", + "s" + ] + }, + "jabber-otr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/legoscia/emacs-jabber-otr.git", + "sha256": "e89d6593fc5b75ea6c641cd4738ed00c9fe8048c3d8c76a611aecb8fbcc290f7", + "rev": "2692b1530234e0ba9a0d6c1eaa1cbe8679f193c0" + }, + "recipe": { + "sha256": "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150918.644", + "deps": [ + "emacs", + "jabber" + ] + }, + "pip-requirements": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/pip-requirements.el.git", + "sha256": "94def724a3c7064c2d85515c25bde09e0373439fa782aba0d9632af9a1f0d51e", + "rev": "f8d3ecaee9090cee267476d4551c905c412d6017" + }, + "recipe": { + "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150423.1558", + "deps": [ + "dash" + ] + }, + "flx-isearch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/PythonNut/flx-isearch.git", + "sha256": "a06592cd6abb9c030d2d16da1db73d5fde7103567702ac44c0e2accb04bd24f4", + "rev": "1c44a76bb6f9af925db6cee4102c635ef8d76318" + }, + "recipe": { + "sha256": "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.2259", + "deps": [ + "cl-lib", + "emacs", + "flx" + ] + }, + "runner": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thamer/runner.git", + "sha256": "095fcab6fd5e78ef847e7a93c3c3d1d2033326642fa0ed4bc0222a1178c9bf9d", + "rev": "f5983931899282cf8b10ad197d61860a61cf070d" + }, + "recipe": { + "sha256": "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.416", + "deps": [] + }, + "cliphist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/redguardtoo/cliphist.git", + "sha256": "634ff318460a740fb524aa96349778d9a1b6c47469b20e504adff7fa8b58d1e6", + "rev": "c0db2da95fa3d3a58160f465c636989bb4b251d5" + }, + "recipe": { + "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151012.729", + "deps": [ + "popup" + ] + }, + "chinese-fonts-setup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tumashu/chinese-fonts-setup.git", + "sha256": "b37f7a04811777f19d048a571a69794a6fef25e204cef73c9d1833561669022e", + "rev": "bac9c65f7a78b0c70a6cce9658395d3bc24b02fa" + }, + "recipe": { + "sha256": "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.259", + "deps": [ + "cl-lib" + ] + }, + "mark-multiple": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/mark-multiple.el.git", + "sha256": "6ea686792a8b34e7638bce6e376a2f9c67578550944a30db4107cb07f075adbe", + "rev": "f6a53c7c5283d640ae718f4548b0fda78877a375" + }, + "recipe": { + "sha256": "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121118.954", + "deps": [] + }, + "zossima": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/zossima.git", + "sha256": "6944685180d61180f934c1f5977883250be7fa3c7da1d8cf02dbfd910feffc39", + "rev": "991676635c374d2a12714dcf48c1ce2d6f97a375" + }, + "recipe": { + "sha256": "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121123.1835", + "deps": [ + "inf-ruby" + ] + }, + "haskell-emacs-text": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knupfer/haskell-emacs.git", + "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150713.916", + "deps": [ + "haskell-emacs" + ] + }, + "flycheck-rust": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-rust.git", + "sha256": "842eeccd86b9ea7efa4c8f80b5da244a5e6ef47828622191a7d2a907354a3c2e", + "rev": "4da768e82579d63c648a6db2a7b60659df87302b" + }, + "recipe": { + "sha256": "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150609.1448", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "ido-sort-mtime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pkkm/ido-sort-mtime.git", + "sha256": "6d8be4014ecb87a2f96fe7e940ec8a56f114f721211b8e1e888418e4bcc86c70", + "rev": "7b7c77f6856125a59aff99ba0ff8d2b369896b5e" + }, + "recipe": { + "sha256": "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.730", + "deps": [] + }, + "synosaurus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rootzlevel/synosaurus.git", + "sha256": "5a989222da909804b137ffd3e0d014d68c09692e7b292faf2b2953a6b8cde9ff", + "rev": "9be71a2df0c19ddb5e0cb8cba29ded5368a0fcae" + }, + "recipe": { + "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1249", + "deps": [ + "cl-lib" + ] + }, + "php-boris": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tomterl/php-boris.git", + "sha256": "1430f0fef09c288cf6cd9da99bcd0658b6caeb0eb34fc482bee52c0c6af37181", + "rev": "d2caaba8f42375b47389240c647c03c2a305d3fb" + }, + "recipe": { + "sha256": "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130527.321", + "deps": [] + }, + "flycheck-color-mode-line": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flycheck/flycheck-color-mode-line.git", + "sha256": "3d8b41cf124b25b20620ea11b3367b8fc77a6d0ed4fe27addb54ad8e936e470f", + "rev": "c85319f8d2579e770c9060bfef11bedc1370d8be" + }, + "recipe": { + "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131125.2338", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "yaml-tomato": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/RadekMolenda/yaml-tomato.git", + "sha256": "4e00121f5fb706fb25f6762affdc59a166e69e227ba57770f6041117fc26f0b4", + "rev": "f9df1c9bdfcec629b03031b2d2032f9dc533cb14" + }, + "recipe": { + "sha256": "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.153", + "deps": [ + "s" + ] + }, + "ph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gromnitsky/ph.git", + "sha256": "6acf0fbdc61d5541617afa9858b70ec2f6ce76e958d54309b424efb864489834", + "rev": "ed45c371642e313810b56c45af08fdfbd71a7dfe" + }, + "recipe": { + "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130312.1337", + "deps": [ + "emacs" + ] + }, + "auto-complete-auctex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/monsanto/auto-complete-auctex.git", + "sha256": "223f32ed236d8495abc937ef14915fcec837ad9593304560c0c15f4a0b4631f3", + "rev": "855633f668bcc4b9408396742a7cb84e0c4a2f77" + }, + "recipe": { + "sha256": "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140223.1158", + "deps": [ + "auto-complete", + "yasnippet" + ] + }, + "py-smart-operator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rmuslimov/py-smart-operator.git", + "sha256": "0f24aae1ad61a5fa845f81460bc2d19f0545651a6ab032aba9644c41b73a0c97", + "rev": "be4e32572d4128143f46e1874eaa6f3da94fdffe" + }, + "recipe": { + "sha256": "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150824.2110", + "deps": [ + "s" + ] + }, + "es-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dakrone/es-mode.git", + "sha256": "33491a6f2f6a38c304f0c265e4e3d8bf5b794beba1ac9beb87a40abc459982b1", + "rev": "c5dd41e453e83da2e841894d9a51598f03318f7c" + }, + "recipe": { + "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150916.2233", + "deps": [ + "dash" + ] + }, + "flymake-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-ruby.git", + "sha256": "c97059feedb295806e47b30bec7527c1bbda4f7dafb276ac2bfd5c7ce1fcebb0", + "rev": "8dc4ca44ec2acfaab25f5501fca1bd687fae94f2" + }, + "recipe": { + "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121104.1259", + "deps": [ + "flymake-easy" + ] + }, + "projector": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/projector.el.git", + "sha256": "83f29b16d8e64810af54b5a9347ccb04e5744223fddba2338336251bb95f1f79", + "rev": "fd9553a27d665889646b881b64a8f1577b47882b" + }, + "recipe": { + "sha256": "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.1441", + "deps": [ + "alert", + "cl-lib", + "projectile" + ] + }, + "font-lock-studio": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/font-lock-studio.git", + "sha256": "1388d6eaf6d895414c9e95e4b59a06260b57bf20125c14a524a29edf5e16c312", + "rev": "35d510e4b16939621d7200bf67021f773cdb4ae5" + }, + "recipe": { + "sha256": "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141201.1858", + "deps": [ + "emacs" + ] + }, + "commander": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/commander.el.git", + "sha256": "fe3ba67fab270b2df01713f841072f3e91f6bb779b94be8656f8f1b423b6b1fd", + "rev": "2a4f1fd6cf9aa1798559dbdd5fbd9dcd327cd859" + }, + "recipe": { + "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140120.1252", + "deps": [ + "cl-lib", + "dash", + "f", + "s" + ] + }, + "olivetti": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rnkn/olivetti.git", + "sha256": "3019cd51f9d186f80c5cb9a60ea98d7eb488a18ae693453140d1252b9e3f49e6", + "rev": "26f3db0bc37324444e41a1d4797056b61b56b004" + }, + "recipe": { + "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.2129", + "deps": [] + }, + "gmpl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/gmpl-mode.git", + "sha256": "6443d44f30b5a918ebeb76e43b698ae9669d2960318c3bdcb3cf0acd7991a621", + "rev": "c4cf8896aef89b4c08c0c8764c9f2330fc987f9e" + }, + "recipe": { + "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.1349", + "deps": [ + "emacs" + ] + }, + "helm-ag-r": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/helm-ag-r.git", + "sha256": "8267620953548bf32fa9637019ffb7bf2595d6d0089abd47e9abdfe6006b232c", + "rev": "67de4ebafe9b088db950eefa5ef590a6d78b4ac8" + }, + "recipe": { + "sha256": "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131123.931", + "deps": [ + "helm" + ] + }, + "back-button": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/back-button.git", + "sha256": "58e1221a3f6ad4c07f86324716aa07e21f152a9d3c6a46a6c4cfc916f4c7369c", + "rev": "98d92984a740acd1547bd7ed05cca0affdb21c3e" + }, + "recipe": { + "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150804.1504", + "deps": [ + "list-utils", + "nav-flash", + "pcache", + "persistent-soft", + "smartrep", + "ucs-utils" + ] + }, + "evil-indent-plus": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TheBB/evil-indent-plus.git", + "sha256": "46639181a2d738d70eccb8e99a1645732b72951d98bc1f20ac5b72a69b0fd9bc", + "rev": "0c7501e6efed661242c3a20e0a6c79a6455c2c40" + }, + "recipe": { + "sha256": "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.1306", + "deps": [ + "cl-lib", + "evil" + ] + }, + "flymake-puppet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/benprew/flymake-puppet.git", + "sha256": "b5b051da20ebc85022236b274af16372cf6a52d4f8a04341a1478a173b967ee4", + "rev": "fc4cd25aeac37ed5722bc586d5350fd06ee3067c" + }, + "recipe": { + "sha256": "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141006.2055", + "deps": [ + "flymake-easy" + ] + }, + "nclip": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/maio/nclip.el.git", + "sha256": "3a4e5e36116bf889b1f477b6887ae190d5bd543f147765494cf7243ccf960f9d", + "rev": "af88e38b1f04be02bf2e57affc662dbd0f828e67" + }, + "recipe": { + "sha256": "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130617.1515", + "deps": [] + }, + "tango-2-theme": { + "fetch": { + "tag": "fetchgit", + "url": "https://gist.github.com/2024464.git", + "sha256": "7342a670559cd296dba4b676607641a05d6203255951b17473ccdda4e35713d3", + "rev": "64e44c98e41ebbe3b827d54280e3b9615787daaa" + }, + "recipe": { + "sha256": "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120312.1525", + "deps": [] + }, + "ox-twbs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marsmining/ox-twbs.git", + "sha256": "79a728c56477fcac5aeb19c3bb6e1c51b6f79660b2a7b60d3bb3ce79640fba5e", + "rev": "20b97120eed058a03312157c6646c4569c0168ac" + }, + "recipe": { + "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.1248", + "deps": [] + }, + "mediawiki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hexmode/mediawiki-el.git", + "sha256": "13da948080fde997ddf15b0f8372d514cc542f168fcf4a1e71e4b84835673f76", + "rev": "47875f753599e309f1c3da5beb4805487ab75636" + }, + "recipe": { + "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150711.1934", + "deps": [] + }, + "jknav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aculich/jknav.el.git", + "sha256": "3256a49defa4e45326cb8661fe7d38ff27ab8cffa4e1914a419cea29b3f0abc5", + "rev": "861245715c728503dad6573278fdd75c271dbf8b" + }, + "recipe": { + "sha256": "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121006.1525", + "deps": [] + }, + "oldlace-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/oldlace-theme.git", + "sha256": "027df16abd88614e195aba6ada9735eb68f14e4ec6912bbd432584db75ee2e79", + "rev": "5c6f437203b0783b36a7aff4a578de4a0c8c4ee6" + }, + "recipe": { + "sha256": "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150705.800", + "deps": [ + "emacs" + ] + }, + "0blayout": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/etu/0blayout-mode.git", + "sha256": "26ad62cd0038a2f12d6aee27ead70d041ceea772efb8c034bb9572adc4bf2ff6", + "rev": "e256da71d4e0f126a0fd8a9b8fb77f54931f4dfc" + }, + "recipe": { + "sha256": "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.549", + "deps": [] + }, + "afternoon-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/osener/emacs-afternoon-theme.git", + "sha256": "8bfaab7f653532842259e29e8bcd10e49665553668e96c84bb95dba2b169a5a5", + "rev": "89b1d778a1f8b385775c122f2bd1c62f0fbf931a" + }, + "recipe": { + "sha256": "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140104.1259", + "deps": [ + "emacs" + ] + }, + "helm-pydoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-pydoc.git", + "sha256": "fa1e182466b4e2fc880ac4f75f4afd7ade47f3da443810199b10c9e8c9a7fd4e", + "rev": "d4f409127bc77e7c79dcc87320b2db10466caed2" + }, + "recipe": { + "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151008.924", + "deps": [ + "cl-lib", + "helm-core" + ] + }, + "visual-regexp-steroids": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/benma/visual-regexp-steroids.el.git", + "sha256": "150471be3a7d1586568a82fa68331ff653def23641e16ea3190cc8f2ad7e4f0e", + "rev": "2a50710dea5be872b31ea56f74b4cd57d6e61461" + }, + "recipe": { + "sha256": "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150411.616", + "deps": [ + "visual-regexp" + ] + }, + "org-pdfview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/markus1189/org-pdfview.git", + "sha256": "2086bb415a309d69de4784cbc3b69e4cffb846634ea7bf31af13e489ef8aac1f", + "rev": "8f66629e883e0d490584bbf4610cc91938694889" + }, + "recipe": { + "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.1544", + "deps": [ + "org", + "pdf-tools" + ] + }, + "company-edbi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/company-edbi.git", + "sha256": "668dcf4440a6836c7150ffa6f39fb86155020e4a95e633c0652a79c057a60ac2", + "rev": "38758829b7fd9c1bb152b4d54b5317a20a96e411" + }, + "recipe": { + "sha256": "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150525.414", + "deps": [ + "cl-lib", + "company", + "edbi", + "s" + ] + }, + "flyparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jiyoo/flyparens.git", + "sha256": "5a82bf6372c569887e08dcd829aefd8f5f1b86e2963b102d050eac0357c1045f", + "rev": "af9b8cfd647d0e5f97684d613dc2eea7cfc19398" + }, + "recipe": { + "sha256": "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140723.1346", + "deps": [] + }, + "aozora-view": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/aozora-view.git", + "sha256": "7474aff942ce2a27f41d8a546d33c93b8d1bfceb92ecd59c78f456d9d5f84814", + "rev": "b0390616d19e45f15f9a2f5d5688274831e721fd" + }, + "recipe": { + "sha256": "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140310.817", + "deps": [] + }, + "tinkerer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yyr/tinkerer.el.git", + "sha256": "54af1856cfbbb1e056adcdc79a3501392fa3ade256b51a938ca26f2804dc115b", + "rev": "1125780d1fba0330435fcbe943716032ed543a57" + }, + "recipe": { + "sha256": "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.49", + "deps": [ + "s" + ] + }, + "readability": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ShingoFukuyama/emacs-readability.git", + "sha256": "0f01cca469c74c6b957c86244c422251275e2c1fad281f5dd9b033fe9647e14d", + "rev": "6c220ab8e0ca63946574ed892add5c8fd14002ce" + }, + "recipe": { + "sha256": "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140715.1927", + "deps": [ + "emacs", + "oauth", + "ov" + ] + }, + "pushbullet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theanalyst/revolver.git", + "sha256": "23634cf3c651f1d7e50aad79308265f1395436d059d7de95ee2b65c2e4f5ca80", + "rev": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445" + }, + "recipe": { + "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140809.732", + "deps": [ + "grapnel", + "json" + ] + }, + "git-blame": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tsgates/git-emacs.git", + "sha256": "02d658e3799da5e2ee4b41f19742f31a949e7b10c993445b216e7a53ff81cfa3", + "rev": "5c7e8c546c7e99a2424d484b253c1581bfd7ff7d" + }, + "recipe": { + "sha256": "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110509.1126", + "deps": [] + }, + "io-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/superbobry/io-mode.git", + "sha256": "371f85a0e705c9b9b5ab360a1717ddc1e19157eef566e157a52056f857edb783", + "rev": "79f2de13d8a448892266da26642525747d048aa8" + }, + "recipe": { + "sha256": "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140814.521", + "deps": [] + }, + "command-log-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lewang/command-log-mode.git", + "sha256": "956ac8c1ed5004b0f55c2f7ee5a0f6232c7365073a129706ddb552eb979ede3a", + "rev": "7408c0cb96709b8449f25a58a2203ed90bb5b850" + }, + "recipe": { + "sha256": "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150615.916", + "deps": [] + }, + "vline": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/vline.el", + "sha256": "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj" + }, + "recipe": { + "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120108.645", + "deps": [] + }, + "helm-wordnet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/raghavgautam/helm-wordnet.git", + "sha256": "4d5ace400079ed22ff9a20fefb2111cba833c12c93201791a475556b47285249", + "rev": "71fe718cccdb172614b5e2e55192301a44f6d7d4" + }, + "recipe": { + "sha256": "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150921.1633", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "artbollocks-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sachac/artbollocks-mode.git", + "sha256": "40ace8470ac6dc6212023887548c9c2e9b0c8ee5558f5efc96e7560348bc510a", + "rev": "583c7048a1b09cd79554423d5115f5ddd129d190" + }, + "recipe": { + "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141212.1532", + "deps": [] + }, + "firefox-controller": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/emacs-firefox-controller.git", + "sha256": "04f4b8b21bddcd044bd471eeab5efaddfbf80f71dbb035175bc9ac7c1e4ed35f", + "rev": "aeed30509fefc78463531b9e006a795d868d4e74" + }, + "recipe": { + "sha256": "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1440", + "deps": [ + "cl-lib", + "moz", + "popwin" + ] + }, + "org-elisp-help": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/org-elisp-help.git", + "sha256": "408bb412ede61b95635f668d5f4974c3b3688ae9558020013f7cef1446e5486d", + "rev": "df319441e528a0cad42d29e71fc3547a61dde1c5" + }, + "recipe": { + "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130423.1745", + "deps": [ + "cl-lib", + "org" + ] + }, + "pinboard-api": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/danieroux/pinboard-api-el.git", + "sha256": "81264dcde676e3a792d12d733d601b89bfaee4aa0970a4a0d6dc11dca31d655d", + "rev": "b7b5214d0c35178f8dca08cf22d6ef3c21f0fce4" + }, + "recipe": { + "sha256": "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140324.648", + "deps": [] + }, + "elpy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/elpy.git", + "branchName": "release", + "sha256": "b56fa2c4336daa907c3f472b659a9544aaab06e7d028fa604fee24ff29d63edc", + "rev": "96fa05708629600fd79c4b0fcafe63ec97f5ce07" + }, + "recipe": { + "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151101.601", + "deps": [ + "company", + "find-file-in-project", + "highlight-indentation", + "pyvenv", + "yasnippet" + ] + }, + "fcitx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/fcitx.el.git", + "sha256": "fffb9b725fe97058c7ccfc4500ddaed5b11c769c0d507d320543b16e665033e0", + "rev": "5c4ec4181226b9846bc227e20c61645280fc26c1" + }, + "recipe": { + "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.901", + "deps": [] + }, + "smart-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dryman/smart-window.el.git", + "sha256": "bac9037e58650846ff96c9cb300d8088bd045c012616ebb9ec5bc637795b46db", + "rev": "a87e0d2007de40033deee39496f791f4b047f138" + }, + "recipe": { + "sha256": "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130214.1342", + "deps": [] + }, + "avy-zap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cute-jumper/avy-zap.git", + "sha256": "ef9a9654ac6b640179c23414710516f56c5fd39a762404f82c05e8673485f468", + "rev": "ee3a2ad9911384e21537bc641a2f794dd192bbe8" + }, + "recipe": { + "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1348", + "deps": [ + "avy" + ] + }, + "inf-ruby": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/inf-ruby.git", + "sha256": "90870b6e1656c52f20424eb12e2a5c19c7e8a5862dd1620a741832b448abe765", + "rev": "24c08fca2a18b76a3a200c79bdb5e41b50e04296" + }, + "recipe": { + "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151104.1437", + "deps": [] + }, + "confluence": { + "fetch": { + "tag": "fetchsvn", + "url": "http://confluence-el.googlecode.com/svn/trunk/", + "sha256": "1l6970ng046hw2izzb15cbbbf83l6m8c9mvic8fzjixfi3g1dl55", + "rev": "170" + }, + "recipe": { + "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140410.1923", + "deps": [ + "xml-rpc" + ] + }, + "tea-time": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krick/tea-time.git", + "sha256": "80480aa4120996a33c303236c1327ea34edd4d4bac832109a3281236f9e48c2c", + "rev": "1f6cf0bdd27c5eb3508989c5095427781f858eca" + }, + "recipe": { + "sha256": "18fsbh78c5408zg5bk44gxdynp6kn8253xdg7ap2pr3mjknq9kld", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120331.320", + "deps": [] + }, + "dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myrkr/dictionary-el.git", + "sha256": "886b331bc9ef9c9ab171a4c370c80c342417fb8fcb9793edf17baa9984c11587", + "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" + }, + "recipe": { + "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140717.2229", + "deps": [ + "connection", + "link" + ] + }, + "cargo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/attichacker/cargo.el.git", + "sha256": "5b5121df1c639b32970b3f6e64936d0e97e7f8518948940fa186e74188e40dce", + "rev": "1b28b29d641a52d23861f241c54c098d6f070e76" + }, + "recipe": { + "sha256": "0kr8mj3i4fd2x6ymaikzmj1m4q0s4lfvnafcpi7jch0za0qixjcq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151017.1620", + "deps": [ + "emacs" + ] + }, + "helm-flymake": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tam17aki/helm-flymake.git", + "sha256": "701cb814a924eada9ce76dc50f91d3cfe2cbf92324493a46581a7542498b2ad2", + "rev": "afb1089d6a0dc9a63bc2aa1df19d80830cc33c6a" + }, + "recipe": { + "sha256": "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130717.44", + "deps": [ + "helm" + ] + }, + "scratch-ext": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kyanagi/scratch-ext-el.git", + "sha256": "f7d9b54045bf4952bce0147c5527d28f53fe4e6258d67d54ac89e4438c5fe059", + "rev": "388c53cddd0466b451264894667ed64a6947ad67" + }, + "recipe": { + "sha256": "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140103.2316", + "deps": [] + }, + "backup-each-save": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/backup-each-save.el", + "sha256": "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7" + }, + "recipe": { + "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130704.932", + "deps": [] + }, + "cl-lib-highlight": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/cl-lib-highlight.git", + "sha256": "aac757d69220f7a8d29bd586c6ef6d0f58c00a82fd5f2b092b910b08b4b0af58", + "rev": "fd1b308e6e989791d1df14438efa6b77d20f7c7e" + }, + "recipe": { + "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140127.1512", + "deps": [ + "cl-lib" + ] + }, + "hlint-refactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mpickering/hlint-refactor-mode.git", + "sha256": "6e730e1af472e1a9e27fc78740d7aff41deedb19659d200d59621545ba4c506c", + "rev": "695d39b3434a5e35fab70aa5251f824ffaa30d6b" + }, + "recipe": { + "sha256": "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.1441", + "deps": [] + }, + "ob-http": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zweifisch/ob-http.git", + "sha256": "4d1cf942e6be6882c6de7268540fbdbe82f63c162e2e414fceb273ec9b787cde", + "rev": "d9af67c6726c50447d8cf21b9c1c25a3a07dc0ce" + }, + "recipe": { + "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.430", + "deps": [ + "cl-lib", + "s" + ] + }, + "wiki-nav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/button-lock.git", + "sha256": "0c649aebcf12e0d1c86816154504ebc98670be8baf369f5b9f0fc78cd95c236e", + "rev": "f9082feb329432fcf2ac49a95e64bed9fda24d58" + }, + "recipe": { + "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150223.754", + "deps": [ + "button-lock", + "nav-flash" + ] + }, + "ac-clang": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yaruopooner/ac-clang.git", + "sha256": "edece03ab5ccc0f59c42c8cb78b56f3078b0c9ef9dcc34aa2a2d2c1be87352d1", + "rev": "6b3365063ddfb88d5527618217bb56166349ad4e" + }, + "recipe": { + "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.1208", + "deps": [ + "auto-complete", + "cl-lib", + "emacs", + "pos-tip", + "yasnippet" + ] + }, + "ert-modeline": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/ert-modeline.git", + "sha256": "53171cf3c91db7dab2d75f8ed10ca6ed79c489ad8ab6307a0a4ddbbe8d0bbefc", + "rev": "e7be2b81191afb437b70368a819770f8f750e4af" + }, + "recipe": { + "sha256": "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140115.415", + "deps": [ + "dash", + "emacs", + "projectile", + "s" + ] + }, + "pc-bufsw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ibukanov/pc-bufsw.git", + "sha256": "35b4d02d22d3c490ce78188650b349fcdeb306a1bb21d44a4b364f85458245ca", + "rev": "a76120bca9821c355069f135b4e6978351b66bc2" + }, + "recipe": { + "sha256": "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150923.213", + "deps": [] + }, + "stekene-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fanael/stekene-theme.git", + "sha256": "439286c1ec6c106e19c69798df97fba41c8cfd218250e4162cb1676b325a3870", + "rev": "45b643a5af7dac70997d6a60e69c2f2473337d98" + }, + "recipe": { + "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141108.1411", + "deps": [ + "emacs" + ] + }, + "git-annex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/git-annex-el.git", + "sha256": "4b45cd5217d04fe0a8d800d72bc250c75e3752169baff5c8ebfaec099343cf40", + "rev": "a37648ae83783bb48221ef6299aa4ef5ceccf51b" + }, + "recipe": { + "sha256": "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131119.1645", + "deps": [] + }, + "checkbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/camdez/checkbox.el.git", + "sha256": "27825e86446141eedde93bddc90d0d8f352fd40c96f08a82c180f63b13a871eb", + "rev": "335afa4404adf72973195a580458927004664d98" + }, + "recipe": { + "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.1858", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "color-theme-modern": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/replace-colorthemes.git", + "sha256": "1cd3cfe06fc887baf08a4df7fcc75bfff79db3a927f64e297edf25146094773b", + "rev": "0a804c611da57b2d7c02c95f26eb8a7fc305f159" + }, + "recipe": { + "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.2106", + "deps": [ + "emacs" + ] + }, + "jtags": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.code.sf.net/p/jtags/code", + "sha256": "4fce3cbd26e010869736aae584753dca0b2201d31efaa8e52ee04b885edd859a", + "rev": "89eca29499dd9516e6d70456dcd9f163777c786d" + }, + "recipe": { + "sha256": "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20111208.1222", + "deps": [] + }, + "opam": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/opam.el.git", + "sha256": "85c863174ad8d64d51810c2a0340ba128a5c91378b1744c2b5ba44c662ba19fb", + "rev": "4d589de5765728f56af7078fae328b6792de8600" + }, + "recipe": { + "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150719.720", + "deps": [ + "emacs" + ] + }, + "jira-markup-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mnuessler/jira-markup-mode.git", + "sha256": "afba107b9fdf47c473182b705dfb90417dd920a4fa322bc11dcf1ef5a51b1812", + "rev": "4fc534c47df26a2f402bf835ebe2ed89474a4062" + }, + "recipe": { + "sha256": "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150601.1609", + "deps": [] + }, + "number": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/number.git", + "sha256": "16ecaf532726a889dec3a4ae5e79ee89bbe43ce846276f20bed267dcf240b510", + "rev": "f483365c330392b3e9362481b145acf3db040baf" + }, + "recipe": { + "sha256": "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141127.1204", + "deps": [] + }, + "org-drill-table": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/org-drill-table.git", + "sha256": "56c12b8fcbb18bb4bd7ec0ff5b06b5d52d449e3bafc9cd83b15a8d3ef4605474", + "rev": "d7b5b3743ac04f8cb1087c5c049c0520058fa89c" + }, + "recipe": { + "sha256": "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140117.337", + "deps": [ + "cl-lib", + "dash", + "emacs", + "org-plus-contrib", + "s" + ] + }, + "crappy-jsp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/crappy-jsp-mode.git", + "sha256": "6bf559a5ab2c810c82ffcce4b3473e0df790e6931e4d5a301130e945bba1e689", + "rev": "6c45ab92b452411cc0fab9bcee2f456276b4fc40" + }, + "recipe": { + "sha256": "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140311.431", + "deps": [] + }, + "peep-dired": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/asok/peep-dired.git", + "sha256": "2de2a543a76434214242ef817a9f0a30fab2150178c0870cd06ae1c63d016653", + "rev": "6c18727fc58e2a19638f133810e35bd5d918a559" + }, + "recipe": { + "sha256": "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150518.900", + "deps": [] + }, + "docker-tramp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/docker-tramp.el.git", + "sha256": "a24b1149809b254b96dd12b127c162cb7cfa6b40b23ea085ade084e964560d0b", + "rev": "8e9ae1b170fc320e38806c3957c6f01dbb46c26e" + }, + "recipe": { + "sha256": "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150908.2155", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "ycmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/emacs-ycmd.git", + "sha256": "a91b9027a3812e2e71525cb3a38e1c798149e0baa53d605b1551983f6c7f7e4c", + "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" + }, + "recipe": { + "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.625", + "deps": [ + "dash", + "deferred", + "emacs", + "f", + "popup" + ] + }, + "springboard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jwiegley/springboard.git", + "sha256": "c8b73eb2e39d981e838cbce46c71a57fa7f000eeb77c893d865f1a03ab2afe92", + "rev": "d12119d9dd2b0b64f0af0ba82c273326c8c12268" + }, + "recipe": { + "sha256": "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150505.1211", + "deps": [ + "helm" + ] + }, + "zone-nyan": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/zone-nyan.git", + "sha256": "5e3e539355f66c16a3eb87c37c55e941ca9424877042add9c9716db65d8e2fd3", + "rev": "e36875d83ad3dce14f23864688959fa0d98ba410" + }, + "recipe": { + "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1514", + "deps": [ + "esxml" + ] + }, + "cursor-chg": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/cursor-chg.el", + "sha256": "1mvfg2m3wq5rbbxs2a84pd69yb82dag4g5mpzr16xi0gn6ybj4s7" + }, + "recipe": { + "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1539", + "deps": [] + }, + "haste": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rlister/emacs-haste-client.git", + "sha256": "08c550a82e164424efa0ed39b216418711e1a75b3857e442703135a84a21b0be", + "rev": "22d05aacc3296ab50a7361222ab139fb4d447c25" + }, + "recipe": { + "sha256": "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141030.1534", + "deps": [ + "json" + ] + }, + "gitattributes-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/git-modes.git", + "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.1248", + "deps": [] + }, + "emojify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iqbalansari/emacs-emojify.git", + "sha256": "52a9f660c521aa2601c708b746bc2247d09393fa7c0dc753b65449cfe1f0c159", + "rev": "651173daddfafb6d9a84643d46c4eeb93874fe18" + }, + "recipe": { + "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.2054", + "deps": [ + "emacs", + "ht", + "seq" + ] + }, + "sx": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vermiculus/sx.el.git", + "sha256": "22b7666fa9c29a0a7140030fc9e5670e0ef878edec91254eccfbc2d2eaf57d5f", + "rev": "75db6c18ceee1e75f8be0c312c6241d359b7a28b" + }, + "recipe": { + "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.2046", + "deps": [ + "cl-lib", + "emacs", + "json", + "let-alist", + "markdown-mode" + ] + }, + "mykie": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yuutayamada/mykie-el.git", + "sha256": "b96f795c73b1d2ee3ad2599239a338e86bb91e53bc9aaa6514951b6ef9a87059", + "rev": "7676f0e883af1d1054e404e97691f3c13aba196f" + }, + "recipe": { + "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150808.1705", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "esup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jschaf/esup.git", + "sha256": "655878e4ba2e05c7d59fe9bb6a8bfc9d4dddcc6a5a28a1a006829a4936652211", + "rev": "733cec953d88657f3fcf0b3d9efe48f95821be86" + }, + "recipe": { + "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.2111", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "evil-rsi": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/linktohack/evil-rsi.git", + "sha256": "b862cf5a63aa79e75078b534f5c8186db35d72f15e7c722221e110a49cbbf9f9", + "rev": "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61" + }, + "recipe": { + "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1719", + "deps": [ + "evil" + ] + }, + "letcheck": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/letcheck.git", + "sha256": "169eba5c3fe6e9117420c91271436320a1be3e93f5d61845346e28b27c9538d1", + "rev": "e85b185993a2eaeec6490709f4c131fde2edd672" + }, + "recipe": { + "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150726.1112", + "deps": [] + }, + "zoom-frm": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/zoom-frm.el", + "sha256": "0y424lw7j0p0i0s7az7fabk9k4d0shcp4mimlkfl3whci24rbq6y" + }, + "recipe": { + "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151101.1224", + "deps": [ + "frame-cmds", + "frame-fns" + ] + }, + "ido-exit-target": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/ido-exit-target.git", + "sha256": "7d48ddbb9679a7c1cf6c5ab98d30a2007b6434029ef850b7f55635c50ec123e9", + "rev": "322520c665284ce6547eb9dcd3aa888a02a51489" + }, + "recipe": { + "sha256": "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150904.937", + "deps": [ + "emacs" + ] + }, + "find-file-in-repository": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hoffstaetter/find-file-in-repository.git", + "sha256": "d1f0d5686683e034aca416bf5b7ad320bccc423859815e27eb776133cce25713", + "rev": "8a8c84a6dbe7a2bba4564c3b58c92d157abfa3f8" + }, + "recipe": { + "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.719", + "deps": [] + }, + "auto-install": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/auto-install.el", + "sha256": "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d" + }, + "recipe": { + "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150418.1902", + "deps": [] + }, + "clojure-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mpenet/clojure-snippets.git", + "sha256": "82ca6e88a1945b866e010311dadbb628608bfbcf8f2aac199e680d2133fc11f1", + "rev": "24ebfd34665e1a3b74aaa823f8b2e3e4a5e0b827" + }, + "recipe": { + "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150504.344", + "deps": [ + "yasnippet" + ] + }, + "zonokai-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ZehCnaS34/zonokai-emacs.git", + "sha256": "e3d025e8aaeba351e37f2ca1b0c7b02b51c04508801890ed4de98de97a3148d5", + "rev": "b6f9eb7eb7e3f9954d786144e74dc6e392df3a69" + }, + "recipe": { + "sha256": "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150408.2202", + "deps": [] + }, + "helm-lobsters": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/julienXX/helm-lobste.rs.git", + "sha256": "160e558e98c65db83293115a43f87f57ce2809fd3acc5b084cc389dfbc354e07", + "rev": "4121b232aeded2f82ad2c8a85c7dda17ef9d97bb" + }, + "recipe": { + "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150213.946", + "deps": [ + "cl-lib", + "helm" + ] + }, + "moe-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kuanyui/moe-theme.el.git", + "sha256": "31d9d62abf6aab75207ed875b3ccfd2b44ad3330dda54737caea53e5d79de310", + "rev": "56b0833e3549e1b2f008388549972971936b053f" + }, + "recipe": { + "sha256": "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151124.1709", + "deps": [] + }, + "sproto-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2q1n9/sproto-mode.git", + "sha256": "ab18ef262f0274f1b946b52d21f9495ff6d69d2d5ff4a19e863833d559c6f511", + "rev": "0583a88273204dccd884b7edaa3590cefd31e7f7" + }, + "recipe": { + "sha256": "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.1205", + "deps": [] + }, + "helm-commandlinefu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/helm-commandlinefu.git", + "sha256": "32cd3f6f48226460a5d77ebbc3add0e9b22a1a51e307a3b1225b5162d6aeb93b", + "rev": "9ee7e018c5db23ae9c8d1c8fa969876f15b7280d" + }, + "recipe": { + "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150611.45", + "deps": [ + "emacs", + "helm", + "json", + "let-alist" + ] + }, + "ac-emoji": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-emoji.git", + "sha256": "3b31df8022f3b579cfe304b22d27b88ef46f05ee26590f4b1232c2ea325c9867", + "rev": "f4b3a5b3548dc36f69daeff742f53b5bda538bae" + }, + "recipe": { + "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150823.211", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "gh-md": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/gh-md.el.git", + "sha256": "114d1b331fb039fd629248239d3e71f3279c2d421f6e9aad14082d2fd148ef5b", + "rev": "693cb0dcadff70e813e1a9d303d227aff7898557" + }, + "recipe": { + "sha256": "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.1140", + "deps": [ + "emacs" + ] + }, + "badger-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ccann/badger-theme.git", + "sha256": "e113aeecc000ab243eeba530f634d6b5f41acae3cf7558d1d9988b784daf1a3d", + "rev": "80fb9f8ace37b2e8807da639f7da499a53ffefd4" + }, + "recipe": { + "sha256": "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140716.2132", + "deps": [] + }, + "ox-asciidoc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yashi/org-asciidoc.git", + "sha256": "1b2e41e490cc25afc64115414275e46a8afe0ad217cef050e0287a8c71d8bb6b", + "rev": "e34b1df9fa061d395e600660620ab6c3b7e59ac1" + }, + "recipe": { + "sha256": "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150919.1459", + "deps": [ + "org" + ] + }, + "ember-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/madnificent/ember-mode.git", + "sha256": "5f92a80f7a1befbd853ba52dbd80a9663c0fc37acb89dc3d22268593a1f16833", + "rev": "e82d88eee1882ac104857ec42a4fed731a99c13e" + }, + "recipe": { + "sha256": "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151103.421", + "deps": [ + "cl-lib" + ] + }, + "ido-load-library": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/ido-load-library.git", + "sha256": "de0cb9bc7a82509b0f3a070a91b4585c9bf1eb34e05ac4e019bf6f0d7cb0ead1", + "rev": "e03b55957c93aa1a7dd190e173e16ec59dbb2ba7" + }, + "recipe": { + "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140611.1100", + "deps": [ + "pcache", + "persistent-soft" + ] + }, + "therapy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/therapy.git", + "sha256": "60bf5c7fb723d4301518a0ef70047b264f850d1965077d023170222b1da85101", + "rev": "775a92bb7b6b0fcc5b38c0b5198a9d0a1bef788a" + }, + "recipe": { + "sha256": "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.1353", + "deps": [ + "emacs" + ] + }, + "isend-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ffevotte/isend-mode.el.git", + "sha256": "7523ce3b202af1e8fb3a436936c09b61d48a260f3cdd35f2c69d99d9439a48cd", + "rev": "274163f5c42834ce0391fcc8800e169104ad518f" + }, + "recipe": { + "sha256": "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130419.458", + "deps": [] + }, + "cd-compile": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jamienicol/emacs-cd-compile.git", + "sha256": "8cb007eb0a52914991ad2820952ae62bed938bd81252169054ca241e6a6423a9", + "rev": "10284ccae86afda4a37b09ba90acd1e2efedec9f" + }, + "recipe": { + "sha256": "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141108.1357", + "deps": [] + }, + "flycheck-irony": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sarcasm/flycheck-irony.git", + "sha256": "5038bd12912bb463145f94522adab568e386401ef79fe4c24711e1e4a02fa5ab", + "rev": "b92e881fdf9c9cea192bfb8fa228784af5e27ea4" + }, + "recipe": { + "sha256": "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150728.1431", + "deps": [ + "emacs", + "flycheck", + "irony" + ] + }, + "tabula-rasa": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/idomagal/tabula-rasa.git", + "sha256": "d67421006dcec972da9c4b83aa91ff0c341d8cad980620a29450517127ef4a56", + "rev": "e85fff9de18dc31bc6a7aca726e34a95cc5459f5" + }, + "recipe": { + "sha256": "186lph964swg7rs5gvby3p1d0znq9x3xzsmirfb3cdbazvz6hhxi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141215.2347", + "deps": [ + "emacs" + ] + }, + "auctex-lua": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vermiculus/auctex-lua.git", + "sha256": "5f3ffbdc324a0f27eda1ad77e3d4d3e83f2017ccfc67f63884b958aaec7eee51", + "rev": "799cd8ac10c96991bb63d9aa60528ae5d8c786b5" + }, + "recipe": { + "sha256": "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.1010", + "deps": [ + "auctex", + "lua-mode" + ] + }, + "elmacro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Silex/elmacro.git", + "sha256": "3fba10e7b3a7edb6798398129619f22ed52c8e49f49e555fee56985d9e6730a0", + "rev": "ff5d8a0d7f5154707f1d0a2b22894c6c0b0b9f94" + }, + "recipe": { + "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141109.1006", + "deps": [ + "dash", + "s" + ] + }, + "fit-frame": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fit-frame.el", + "sha256": "15697xc2gr5x9wj472jyzjhnim1jlx3ai3anzx8apngpqa9caiq1" + }, + "recipe": { + "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1604", + "deps": [] + }, + "helm-make": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/helm-make.git", + "sha256": "efac6d8b02e770237fa3b2932805ae106069ed794c104bf1d142b6c703d0e117", + "rev": "0f29d09002653a2b3cb21ffdecaf33e7911747d8" + }, + "recipe": { + "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151117.1120", + "deps": [ + "helm", + "projectile" + ] + }, + "go-autocomplete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nsf/gocode.git", + "sha256": "74ecbb430ff799ee9f47b524b141f582f5fcf810e746687b8b39742f1ade2d6f", + "rev": "2b99fc4d372b017483b7596c4577bf5f15479772" + }, + "recipe": { + "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150903.2140", + "deps": [ + "auto-complete" + ] + }, + "beeminder": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sodaware/beeminder.el.git", + "sha256": "952901cfc27fa5ebdbe024952cff5561ff9b31e6ece98eb09601dd543ea26bb2", + "rev": "92fa1a8d1df3e2fd0698192008f604b1794ee5f8" + }, + "recipe": { + "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1634", + "deps": [ + "org" + ] + }, + "idris-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/idris-hackers/idris-mode.git", + "sha256": "5832968881992872d05b52f00e43e593afca613d6999f605bb8f49d7e6c4e71b", + "rev": "f2f0a19f1a23fac618442d7d2187cc3ac5d9e445" + }, + "recipe": { + "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.607", + "deps": [ + "cl-lib", + "emacs", + "prop-menu" + ] + }, + "bliss-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-bliss-theme.git", + "sha256": "b9d5cc780a8e19ccf3c71ab14999a3b65fda1ad8e19ed0d212a8e1dced88c036", + "rev": "2c6922cb24118722819bea79a981f066039d34a3" + }, + "recipe": { + "sha256": "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.101", + "deps": [ + "emacs" + ] + }, + "mozc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/google/mozc.git", + "sha256": "937331c3adb3ebde9e93baf6724fb8013da649b28473a5575bb2db5ccbcef2a0", + "rev": "b499f9e8adac54f03d310ea17c3751c321084f91" + }, + "recipe": { + "sha256": "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150815.503", + "deps": [] + }, + "drill-instructor-AZIK-force": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/drill-instructor-AZIK-force.el.git", + "sha256": "4704f22d81ffb676d2a4371236a3a800a2363b36a7e8c5b22f7a48086705f853", + "rev": "008cea202dc31d7d6fb1e7d8e6334d516403b7a5" + }, + "recipe": { + "sha256": "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.2314", + "deps": [ + "popup" + ] + }, + "exec-path-from-shell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/exec-path-from-shell.git", + "sha256": "66a414b026f24372dc0f9fa9f49d448512d6ccbfbe671a789c72175694aca9d4", + "rev": "673f1fc0606ca9a30eb62cb1ac2094d15ab9377e" + }, + "recipe": { + "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.1333", + "deps": [] + }, + "highlight-symbol": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/highlight-symbol.el.git", + "sha256": "5ce0f39ab7e53eba8d64fd09d70eef4666d450a69e0a0bf3372f20c3790242f1", + "rev": "c2e15fee52aebf5c8e618460b8f924331d0df2a3" + }, + "recipe": { + "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.651", + "deps": [] + }, + "ppd-sr-speedbar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/ppd-sr-speedbar.git", + "sha256": "7f9e18af90aec5dc5e59e5a6a26c2ddb213352569cd295bc8df8a0005397b955", + "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" + }, + "recipe": { + "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.624", + "deps": [ + "project-persist-drawer", + "sr-speedbar" + ] + }, + "reveal-next": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/reveal-next.el", + "sha256": "0bpcx6jlv0m5bg1zrkak471fa2yj4m517zn72ajvp5r9y408i82y" + }, + "recipe": { + "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1843", + "deps": [] + }, + "vbasense": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/emacs-vbasense.git", + "sha256": "f631dc0c3adcf84c1d1e9e39283d86880c4e3f8c9e499f07967bf96b9cc045a6", + "rev": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db" + }, + "recipe": { + "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140221.1753", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "lively": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lively.el", + "sha256": "1z9b0arn7vby4fkwzgj3ml537lh94gvf61vs03cqfkc95lv14r76" + }, + "recipe": { + "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120728.913", + "deps": [] + }, + "org-redmine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gongo/org-redmine.git", + "sha256": "05ce455f00351031f9719e331d21f19c3f67ab4073158b7830aa4bf8f6d8a422", + "rev": "4289eb06c506f19ef8c467acb2a05bcf04f187c9" + }, + "recipe": { + "sha256": "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.931", + "deps": [ + "anything" + ] + }, + "creds": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ardumont/emacs-creds.git", + "sha256": "e452ea4163989317d9329a19c41ad64e6b2668098e1103eb92fdcd343957d8af", + "rev": "b059397a7d59481f05fbb1bb9c8d3c2c69226482" + }, + "recipe": { + "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140510.1206", + "deps": [ + "dash", + "s" + ] + }, + "helm-project-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sliim/helm-project-persist.git", + "sha256": "1bf6c5b5f3771fa295e2f1fa488d35dc6faea81f2f17d17101f949fd6760a448", + "rev": "357950fbac18090985a750e40d5d8b10ee9dcd53" + }, + "recipe": { + "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.943", + "deps": [ + "helm", + "project-persist" + ] + }, + "phabricator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ajtulloch/phabricator.el.git", + "sha256": "965b712583083b9795cafd9872c11354c52cc7a684e5c15cdd136dd2462d38b6", + "rev": "b1450350cc3c45c732252bb13860156d824ead10" + }, + "recipe": { + "sha256": "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.307", + "deps": [ + "dash", + "emacs", + "f", + "projectile", + "s" + ] + }, + "make-it-so": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/make-it-so.git", + "sha256": "e99805543f05dfaed127ec704caa447c04616e2655ed9f2b9911071a6fb24502", + "rev": "ed83b8b9787441cc6be4994d571529852a8cce4a" + }, + "recipe": { + "sha256": "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150319.1407", + "deps": [ + "emacs", + "helm" + ] + }, + "eval-sexp-fu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hchbaw/eval-sexp-fu.el.git", + "sha256": "82f966c5bec578bf9bf170ab733ff473fc9c78164ecefd12b6cd8fe7db54d8eb", + "rev": "6cffd33155d10c3e58b39cbb170f42e910fd8595" + }, + "recipe": { + "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131230.1551", + "deps": [ + "highlight" + ] + }, + "mustang-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/mustang-theme.git", + "sha256": "24b3b7eb16dc64e874aa5a333ab4e617e52b30fc0778728330fb6ac71a190da7", + "rev": "79c3381dd50601775402fe2fddd16fffa9218837" + }, + "recipe": { + "sha256": "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141017.1823", + "deps": [] + }, + "httprepl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gregsexton/httprepl.el.git", + "sha256": "968a514e736f8ea97a1e602f78ef2084abdf7a93c6df4a9591950894b6c7a6b0", + "rev": "cfa3693267a8ed1c96a86a126823f37dbfe077d8" + }, + "recipe": { + "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141101.1234", + "deps": [ + "dash", + "emacs", + "s" + ] + }, + "tern-auto-complete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marijnh/tern.git", + "sha256": "ef89363dc2e2065bed8aa4203cffa25e3f5f6b39fa1bd3c11bb225982fe7e4a8", + "rev": "f585fe7d6f4da28770fdd3dc7ddf88a39ad9b105" + }, + "recipe": { + "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.853", + "deps": [ + "auto-complete", + "cl-lib", + "emacs", + "tern" + ] + }, + "ox-ioslide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/coldnew/org-ioslide.git", + "sha256": "431a9ff36e738fb5f7306d8ea1a70b67b7c5c233d9bb006806bdacade7eafc74", + "rev": "79fb2c161ded934c3a4ddf623100103212a4d2d8" + }, + "recipe": { + "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.2352", + "deps": [ + "cl-lib", + "emacs", + "f", + "makey", + "org" + ] + }, + "hungry-delete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nflath/hungry-delete.git", + "sha256": "d44bba87be3adab33401b31b0aa5a32554e053ae09c85b190dca042b6910c5ef", + "rev": "ed1694ca3bd1fe7d117b0176d417341915ad4f1f" + }, + "recipe": { + "sha256": "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1514", + "deps": [] + }, + "n3-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/doriantaylor/n3-mode-for-emacs.git", + "sha256": "304d9b0db018e0a02cbac065443fde380d3ddb456a93c4b9fc788310525fe1d2", + "rev": "0145e7938c30183edb03a55a4f16390dabd191ec" + }, + "recipe": { + "sha256": "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141027.1257", + "deps": [] + }, + "quasi-monochrome-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lbolla/emacs-quasi-monochrome.git", + "sha256": "81f146dad25b69acfe6d01ab0a41a32e4c2cec7269d822f4147b489f9c457c27", + "rev": "b2456aaa71b51d4f9b06c5dfb529e60732574fc7" + }, + "recipe": { + "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150801.1525", + "deps": [] + }, + "rfringe": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/rfringe.el", + "sha256": "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh" + }, + "recipe": { + "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110405.1020", + "deps": [] + }, + "projectile-codesearch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/codesearch.el.git", + "sha256": "2ae930b98fb21a90138b9f979ff7fc6926fc84f4d81c01afc26165d09212af80", + "rev": "9a887f8d440ba98a72a7619dd744c0a9e3892919" + }, + "recipe": { + "sha256": "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150419.45", + "deps": [ + "codesearch", + "projectile" + ] + }, + "editorconfig": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/editorconfig/editorconfig-emacs.git", + "sha256": "acef59b5bc48c0369744d91ee949a6fb573592f999880775f92f747669652095", + "rev": "44b93337549fa501b404767852a25b7a8b9af02f" + }, + "recipe": { + "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1035", + "deps": [ + "editorconfig-core" + ] + }, + "bbyac": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/baohaojun/bbyac.git", + "sha256": "b4094c2ed0ddc7431ac1cd19aedd038c83bd7f03d87a784b227538e94c23b5b1", + "rev": "8dc5a7c0ada7ac729a87343149970ced139bb659" + }, + "recipe": { + "sha256": "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150316.501", + "deps": [ + "browse-kill-ring", + "cl-lib" + ] + }, + "evil-anzu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-evil-anzu.git", + "sha256": "7bb64bf480e4763e2c504b7cee2789a58353a28b0d936f9014fc0a7ed037ac35", + "rev": "a041db15bd6e2eb353b24f6f984f6c5ee618d460" + }, + "recipe": { + "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150124.1809", + "deps": [ + "anzu", + "evil" + ] + }, + "cloc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cosmicexplorer/cloc-emacs.git", + "sha256": "5b98c39be6d9cb778ac8f31d80ebb81a5a4c9c54a43004ddef67adec0160d4e5", + "rev": "15e63b83dd6261f543d25aac4c72e764e3274d53" + }, + "recipe": { + "sha256": "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151007.401", + "deps": [ + "cl-lib" + ] + }, + "hl-anything": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/boyw165/hl-anything.git", + "sha256": "e5a9ee3cb1d45a4378e67695a8b60d196d243a7c9300411cb67cafde4b201bfc", + "rev": "018da4cdf891529b4769d59c0400b6cf3456b9c4" + }, + "recipe": { + "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150219.731", + "deps": [ + "emacs" + ] + }, + "restart-emacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iqbalansari/restart-emacs.git", + "sha256": "565e0567e2dd390743441e29c90a4cc93e56a66c52210bd9af89b2ecb43d7609", + "rev": "f0e8e1ae1bb5f4e50a99d220c39913ef300f44c8" + }, + "recipe": { + "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.1035", + "deps": [] + }, + "lispxmp": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lispxmp.el", + "sha256": "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf" + }, + "recipe": { + "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.707", + "deps": [] + }, + "dummyparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/snosov1/dummyparens.git", + "sha256": "f07750f1d3e7a87b02c00e786f88d7e79ab7c3078267df3da5bb1909beb5e23c", + "rev": "9798ef1d0eaa24e4fe66f8aa6022a8c62714cc89" + }, + "recipe": { + "sha256": "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141009.524", + "deps": [] + }, + "clean-aindent-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pmarinov/clean-aindent-mode.git", + "sha256": "e00e581ef09d5ca7056c9394e7bbab2bdd38e697f8fe19fc41eb871aff34d3c0", + "rev": "9ae15997cd75c5625a4f759a3aff39bf202fc36f" + }, + "recipe": { + "sha256": "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150816.2229", + "deps": [] + }, + "passthword": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/passthword.git", + "sha256": "784a88bd7bfe8653a08e1370cd69306b409052faa2a3e9ef43e9a8b483819379", + "rev": "30bace842eaaa6b48cb2251fb84868ebca0467d6" + }, + "recipe": { + "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141201.323", + "deps": [ + "cl-lib" + ] + }, + "tab-jump-out": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/tab-jump-out.git", + "sha256": "d589f85e264f9aa70dfba028f450a7b673237d11f71fcaa997ecdba0d872fa40", + "rev": "1c3fec1826d2891177ea78e4e7cce1dc67e83e51" + }, + "recipe": { + "sha256": "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.2030", + "deps": [ + "dash", + "emacs" + ] + }, + "smyx-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tacit7/smyx.git", + "sha256": "bd24cd4e4bc8170012fe6e5b9ce4ca7f2848b43b6fe599c38705f2109c6d5afc", + "rev": "6263f6b401bbabaed388c8efcfc0be2e58c51401" + }, + "recipe": { + "sha256": "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141127.228", + "deps": [] + }, + "evil-cleverparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/luxbock/evil-cleverparens.git", + "sha256": "a6a293c2e0dc06c9831a72970f2629e6eca71a247a9c705147e2862a025efedf", + "rev": "28fc9a9b465b908cb01bf99b538d50069bda8107" + }, + "recipe": { + "sha256": "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151201.2238", + "deps": [ + "dash", + "emacs", + "evil", + "paredit", + "smartparens" + ] + }, + "s": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/s.el.git", + "sha256": "d0208102b6938f071af8892b5830d5eec739eb2e6eae2688d04c47b0ebb0c8fe", + "rev": "372e94c1a28031686d75d6c52bfbe833a118a72a" + }, + "recipe": { + "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150924.606", + "deps": [] + }, + "sweetgreen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CestDiego/sweetgreen.el.git", + "sha256": "99c88f0d206ce35ab5da19fa9108cffd49a6e5141e6b2753b67c29b8ed03794f", + "rev": "d61b7dfb2b588997efd9d11d3b248c874bceda52" + }, + "recipe": { + "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.2106", + "deps": [ + "cl-lib", + "dash", + "helm", + "request" + ] + }, + "transpose-mark": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/attichacker/transpose-mark.git", + "sha256": "5dd4326870e169ae20e0fd734e50cfe28aab2ebf0668f8bf7db9ce6037288c0f", + "rev": "667327602004794de97214cf336ac61650ef75b7" + }, + "recipe": { + "sha256": "16xn9d33nylbb4pr65i8x4rbf5ncd4vxhmcbd136k5b6hj62mg7i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150405.216", + "deps": [] + }, + "javadoc-lookup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/javadoc-lookup.git", + "sha256": "7b48944fdc982187daaf648054540901d502b454fca5c62f4638f7e0936c6b32", + "rev": "e580d85b2ae37900672b6b2fd3381919b47a5a2f" + }, + "recipe": { + "sha256": "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150425.1203", + "deps": [ + "cl-lib" + ] + }, + "immutant-server": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leathekd/immutant-server.el.git", + "sha256": "9048d80fe6fc2ac76a3c8fb1cc9f3e92adb6f269e1a1673bd7efc68d53ad6a65", + "rev": "2a21e65588acb6a976f2998e30b21fdabdba4dbb" + }, + "recipe": { + "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140311.1708", + "deps": [] + }, + "git-ps1-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/10sr/git-ps1-mode-el.git", + "sha256": "cefb41d9e6822b0ae55a31d19c9a33c383a97d67edbeeb18250d2d663b0a8994", + "rev": "18f143cfcc7163606daefdaae8ab6b8d81536aa0" + }, + "recipe": { + "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150421.2301", + "deps": [] + }, + "evil-textobj-anyblock": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/noctuid/evil-textobj-anyblock.git", + "sha256": "1c7a29cc075d83167ef3edf55822cf67c55401ed67d3873c13e33d4aad169fec", + "rev": "a9e1fdd546312fa787cd0a0acc7ca5e0253de945" + }, + "recipe": { + "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151017.1617", + "deps": [ + "cl-lib", + "evil" + ] + }, + "osx-plist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/osx-plist.git", + "sha256": "db5963b9f18431b1c1cd7aaaa67c771dd6a3cb91e373879f3f5a0fb6eb9c6020", + "rev": "5e6de2622fdfe552d4902904f05ea03bc5a6ebd0" + }, + "recipe": { + "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20101130.648", + "deps": [] + }, + "cyberpunk-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/n3mo/cyberpunk-theme.el.git", + "sha256": "bf5346e0b1c427e35fc35e72f1461d7d882fb4f19f16fd2ffa7c7890bb503ab9", + "rev": "8eada5a95d18ad3a5d77d18de9a304877f952948" + }, + "recipe": { + "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151115.2235", + "deps": [] + }, + "ido-migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/ido-migemo.el.git", + "sha256": "f9bb01ac8ab702d7222ae740d9fbc589c43c41c955b4486d044f84eacf717f8e", + "rev": "e71114a92dd69cb46abf3fb71a09ce27506fcf77" + }, + "recipe": { + "sha256": "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150921.1744", + "deps": [ + "migemo" + ] + }, + "elwm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/elwm.git", + "sha256": "a2a32a6ad854864c032fbfc7a1e2a377e37ff3a31ff5030cd6b9ae3e92bbf6cc", + "rev": "c33b183f006ad476c3a44dab316f580f8b369930" + }, + "recipe": { + "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150817.507", + "deps": [ + "dash" + ] + }, + "airline-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AnthonyDiGirolamo/airline-themes.git", + "sha256": "dda2dfbe91fa63cd36078ef02ec903dfc1206f7809a4146abd64c04a417f4902", + "rev": "8355460678b95a2ef38d6ef6c046b451e4a0255e" + }, + "recipe": { + "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.2135", + "deps": [ + "powerline" + ] + }, + "shackle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wasamasa/shackle.git", + "sha256": "543bdf111a1221da53e2eaf19b4ba0ac7f62203a2a0be922eacb4dec32aa17ed", + "rev": "7542039876325d9b2051b77a0cbe15986154ac1a" + }, + "recipe": { + "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.816", + "deps": [ + "cl-lib" + ] + }, + "scpaste": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/scpaste.git", + "sha256": "319a5b8ba780cbe8dd61ed14070e8141fa93238ab8e667332efa41984d08efc9", + "rev": "677f9b7c5a1b533bef44747d6331b671ffcb8a9c" + }, + "recipe": { + "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1935", + "deps": [ + "htmlize" + ] + }, + "helm-themes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-helm-themes.git", + "sha256": "dca8123a0044b5c8b1d4a448a6b854001fbd7d34836fc0043de27169e44f85a3", + "rev": "a6449a40c5a219b43a92c975917a07337f864b4f" + }, + "recipe": { + "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.121", + "deps": [ + "helm-core" + ] + }, + "gnuplot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bruceravel/gnuplot-mode.git", + "sha256": "b9633b84408a5c3d50c9123714f4b8108147d0af7d8836d5729a32dedfa5b5a4", + "rev": "21f9046e3f5caad41b750b5c9cee02fa4fd20fb9" + }, + "recipe": { + "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141231.1537", + "deps": [] + }, + "brainfuck-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tom-tan/brainfuck-mode.git", + "sha256": "4d027c217051f8c46bc7a1549b6b266b735eda8c165149b4a337fb16ff93efdb", + "rev": "36e69552bb3b97a4f888d362c59845651bd0d492" + }, + "recipe": { + "sha256": "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150113.242", + "deps": [ + "langdoc" + ] + }, + "auto-complete-rst": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/auto-complete-rst.git", + "sha256": "68b91f7b40baa692522c7f4d29d0096829660a84c3d7cc66d2d63d26d0dafa80", + "rev": "4803ce41a96224e6fa54e6741a5b5f40ebed7351" + }, + "recipe": { + "sha256": "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140225.344", + "deps": [ + "auto-complete" + ] + }, + "ess-smart-equals": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/genovese/ess-smart-equals.git", + "sha256": "c672236d29a2a2a4f6823862f82bb39fb7804c4f2b358f3b5dce250e202e23af", + "rev": "e0f5f18f01ed252fde50d051adf1fa6254a254c9" + }, + "recipe": { + "sha256": "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.1", + "deps": [ + "emacs", + "ess" + ] + }, + "gom-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-gom-mode.git", + "sha256": "6bad1cebc66b599bbf4d2eb07280820da6f991ef0baac6a4c34dce511efdd2aa", + "rev": "972e33df1d38ff323bc97de87477305826013701" + }, + "recipe": { + "sha256": "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131007.2153", + "deps": [] + }, + "ac-etags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-ac-etags.git", + "sha256": "d1fc417efe657d1ee4f78b3d8a2aa10e01016766c42005dc1a3334b4297ebd3e", + "rev": "e53cb3a8dd44e41fba3d2b737f90a8cfc529e2a6" + }, + "recipe": { + "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.2121", + "deps": [ + "auto-complete" + ] + }, + "rect+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-rectplus.git", + "sha256": "0fca6cf13046301f9ed9897304687e4bb71141dcc2fbbc49aeb7c33d10202183", + "rev": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc" + }, + "recipe": { + "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150620.1944", + "deps": [] + }, + "flymake-hlint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-hlint.git", + "sha256": "5870a86cd25ea7c2312700d7ee731a39bc75bbae999496a2d9b150f5f6c4b104", + "rev": "fae0c16f938129fb933e4c4625287816e8e160f0" + }, + "recipe": { + "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130309.345", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-ycmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/emacs-ycmd.git", + "sha256": "a91b9027a3812e2e71525cb3a38e1c798149e0baa53d605b1551983f6c7f7e4c", + "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" + }, + "recipe": { + "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150727.231", + "deps": [ + "dash", + "emacs", + "flycheck", + "ycmd" + ] + }, + "ansible-doc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/ansible-doc.el.git", + "sha256": "cdfd044552a6cdb91bd6c27f229c9b605ad8f0acbb673dbc1993976461d5d9df", + "rev": "d0ce210674b5bee9836e6773c4e823747a6f1946" + }, + "recipe": { + "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150524.1205", + "deps": [ + "emacs" + ] + }, + "ido-vertical-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/creichert/ido-vertical-mode.el.git", + "sha256": "6a017b0155077192e96f459b6d7ac234f9134b0f073cfe43a76c4cc0cdff7529", + "rev": "0beaf1eaa8509bece9419b663826665322b22b4c" + }, + "recipe": { + "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151003.2033", + "deps": [] + }, + "hemisu-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andrzejsliwa/hemisu-theme.git", + "sha256": "2799f06f193aadfbe5c1656e1a0a5ec30a1e8cbba8b6d303a8c2041e5fdc0d9d", + "rev": "5c206561aa2c844ecdf3e3b672c3235e559ddd7f" + }, + "recipe": { + "sha256": "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130508.1344", + "deps": [] + }, + "naquadah-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jd/naquadah-theme.git", + "sha256": "02fbc2274fa388a04e11fb255af0a471d67bdb32f348d2b0c8a7b5e06730ae57", + "rev": "f6308bb7d110f1e6d6a91db901f8fb3f99da12ac" + }, + "recipe": { + "sha256": "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150923.341", + "deps": [] + }, + "stan-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stan-dev/stan-mode.git", + "sha256": "71e11b48e374c1868b6aee957858ceff5598ba3c55b21c6cd654a0eaaa3ababd", + "rev": "58826c65f3351eb69bf999f3364afe50dc31645e" + }, + "recipe": { + "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150728.2254", + "deps": [ + "stan-mode", + "yasnippet" + ] + }, + "emacsql-mysql": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/emacsql.git", + "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" + }, + "recipe": { + "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151004.915", + "deps": [ + "cl-lib", + "emacs", + "emacsql" + ] + }, + "cdlatex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cdominik/cdlatex.git", + "sha256": "2d45f8847aaaacfd72dfebc80cc40d3fa0c8bb60a1ca8500647e68c260dd49ca", + "rev": "b7183c2200392b6d85fca69390f4a65fac7a7b19" + }, + "recipe": { + "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140707.626", + "deps": [] + }, + "yalinum": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tm8st/emacs-yalinum.git", + "sha256": "e05a95dde79375acfce71d3ad689d6c682def579893481d24824b8f4a022ad89", + "rev": "d3e0cbe3f4f5ca311e3298e684901d6fea3ad973" + }, + "recipe": { + "sha256": "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130217.443", + "deps": [] + }, + "org-download": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/org-download.git", + "sha256": "61a7b3a24caef7e76f3d8b8bb14fbf9c92d8cd923862e64b9220725ca0ad3d81", + "rev": "501920e273b32f96dfbafcf769d330296a612847" + }, + "recipe": { + "sha256": "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.916", + "deps": [ + "async" + ] + }, + "oberon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/oberon.git", + "sha256": "c659c89cc8b2116d1109f51ddf5e9f58f05db4fe801078523c4f86841f138698", + "rev": "fb57d18ce13835a8a69b6bafecdd9193ca9a59a3" + }, + "recipe": { + "sha256": "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120715.409", + "deps": [] + }, + "inkpot-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/siovan/emacs24-inkpot.git", + "sha256": "bb32504ecf392f0c424464f90df96041550c8cd6dadb2c517425ea818e1a7b18", + "rev": "374a72794ebcb92bd7b50b5578d4c2ffa6049966" + }, + "recipe": { + "sha256": "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120505.908", + "deps": [] + }, + "pixie-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/johnwalker/pixie-mode.git", + "sha256": "a704c62dbfc02babde9ca45980e91e7e002ab11436570f7230736cb4f486aa8b", + "rev": "f32d5d812c7b5b72d7ff7bad52b41035f9ef6e96" + }, + "recipe": { + "sha256": "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150121.2324", + "deps": [ + "clojure-mode", + "inf-clojure" + ] + }, + "sourcekit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nathankot/company-sourcekit.git", + "sha256": "5ef13118b89257ac54da5dc9c45d76269a8bfdf2c8393684cadae9b7ea853c7b", + "rev": "5e1adf8d201fd94a942b40983415db1b28b6eef1" + }, + "recipe": { + "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.714", + "deps": [ + "dash", + "dash-functional", + "emacs" + ] + }, + "gandalf-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ptrv/gandalf-theme-emacs.git", + "sha256": "3b157a72098054008153d71bd4c3c006e1bf6ffc1507925e15a3bc4563f0c36a", + "rev": "4e472fc851431458537d458d09c1f5895e338536" + }, + "recipe": { + "sha256": "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130809.447", + "deps": [] + }, + "guru-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bbatsov/guru-mode.git", + "sha256": "591ee650a45f760a8906bf3e9ee8e8a2969d639fa14ec9ba3ee360e2117a019a", + "rev": "062a41794431d5e263f9f0e6ae1ec4a8d79980dd" + }, + "recipe": { + "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151028.28", + "deps": [] + }, + "msvc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yaruopooner/msvc.git", + "sha256": "03213023196270362c218b8028bd984b942730766f546b64ce2438498f00bb6c", + "rev": "e7a61fa5b98a129637f970ac6db9163e330b3d02" + }, + "recipe": { + "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150530.351", + "deps": [ + "ac-clang", + "cedet", + "cl-lib", + "emacs" + ] + }, + "phi-search-migemo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/phi-search-migemo.git", + "sha256": "704658d8fd9ea2dc370bad805411d95aa86b8ddc5e37da71f2bd7d1ba79510cd", + "rev": "57623e4b67ee766cbb299da00a212f3ebf7d6fb0" + }, + "recipe": { + "sha256": "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150116.706", + "deps": [ + "migemo", + "phi-search" + ] + }, + "describe-number": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/netromdk/describe-number.git", + "sha256": "98792e2a86cdf48b5102e108451186a6bcb574a9af08cf06948471d9e0d2ca8d", + "rev": "40618345a37831804b29589849a785ef5aa5ac24" + }, + "recipe": { + "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.1955", + "deps": [ + "yabin" + ] + }, + "smex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nonsequitur/smex.git", + "sha256": "4654e7c87e8fb95d227b53254fbad534be72ee65c90418e56dca1f3ed89d2b77", + "rev": "55aaebe3d793c2c990b39a302eb26c184281c42c" + }, + "recipe": { + "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1609", + "deps": [ + "emacs" + ] + }, + "fancy-battery": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lunaryorn/fancy-battery.el.git", + "sha256": "8895443fa449b64087aee747a5bd6ae74877ba2d62ca963c817a77b2e29de420", + "rev": "bcc2d7960ba207b5b4db96fe40f7d72670fdbb68" + }, + "recipe": { + "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150101.604", + "deps": [ + "emacs" + ] + }, + "erc-track-score": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jd/erc-track-score.el.git", + "sha256": "a2835be9868e92ca7fa9edcf4d3648c4ac398b09c2c2a3ae878a807f4e3b2058", + "rev": "5b27531ea6b1a4c4b703b270dfa9128cb5bfdaa3" + }, + "recipe": { + "sha256": "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130328.715", + "deps": [] + }, + "wgrep-ack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", + "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141012.511", + "deps": [ + "wgrep" + ] + }, + "nameframe-perspective": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/john2x/nameframe.git", + "sha256": "855f462993a0e81d7e903a249446b96e373801ac1c424b2f5a7e08adb3e7ef1f", + "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" + }, + "recipe": { + "sha256": "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.407", + "deps": [ + "nameframe", + "perspective" + ] + }, + "nrepl-eval-sexp-fu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/samaaron/nrepl-eval-sexp-fu.git", + "sha256": "6cd78dee4be926b45d2b29ad0c1a11a46178953c0bcc48c952b4562cba0a92db", + "rev": "3a24b7d4bca13e87c987a4ddd212da914ff59191" + }, + "recipe": { + "sha256": "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140311.541", + "deps": [ + "highlight", + "smartparens", + "thingatpt" + ] + }, + "org-trello": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/org-trello/org-trello.git", + "sha256": "d72c3558d0f69429802002f34352aea065217d9aee0a0fec04afdba42034906f", + "rev": "ae291d19752d86d01bb21cec6fb410c1eb9145d7" + }, + "recipe": { + "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.936", + "deps": [ + "dash", + "dash-functional", + "deferred", + "emacs", + "request-deferred", + "s" + ] + }, + "codesearch": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/codesearch.el.git", + "sha256": "2ae930b98fb21a90138b9f979ff7fc6926fc84f4d81c01afc26165d09212af80", + "rev": "9a887f8d440ba98a72a7619dd744c0a9e3892919" + }, + "recipe": { + "sha256": "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.754", + "deps": [ + "dash" + ] + }, + "know-your-http-well": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/for-GET/know-your-http-well.git", + "sha256": "8fcadb6272122913db6a834fdf012dc5545373032989c7a126412f6b58e9ccf1", + "rev": "139fe4e1c2d2a43f500366b8ed61d613330ec438" + }, + "recipe": { + "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1331", + "deps": [] + }, + "homebrew-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dunn/homebrew-mode.git", + "sha256": "2a2bff3881e8e61e0b5ffb26fad0d44943353e413652a1b2db5fa17577991f37", + "rev": "767b4934c02c7b4117b6bd6cae8224848bc49db2" + }, + "recipe": { + "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.851", + "deps": [ + "dash", + "emacs", + "inf-ruby" + ] + }, + "erc-social-graph": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vibhavp/erc-social-graph.git", + "sha256": "4a5ff1a6599d6b064639bc19f89e4dc5ed36fc35ebd3b4cfe4aa3c7218b96f4c", + "rev": "e6ef3416a1c5064054bf054d9f0c1c7bf54a9cd0" + }, + "recipe": { + "sha256": "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.704", + "deps": [] + }, + "caml": { + "fetch": { + "tag": "fetchsvn", + "url": "http://caml.inria.fr/svn/ocaml/trunk/emacs/", + "sha256": "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw", + "rev": "16548" + }, + "recipe": { + "sha256": "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151009.1045", + "deps": [] + }, + "indent-guide": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/indent-guide.git", + "sha256": "2739eaf3c2c863af9a62faf3d014b9bd2d02295009834ad8b6e6b0c95be2a4dc", + "rev": "0ef4813c538d5afba210681a8e81848b0927d421" + }, + "recipe": { + "sha256": "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.917", + "deps": [] + }, + "deft": { + "fetch": { + "tag": "fetchgit", + "url": "git://jblevins.org/git/deft.git", + "sha256": "3073db99375de84c335c93d44d520c1a2ed471fb1a7c7f1febef014a6e2d16c1", + "rev": "a3e25d94424e2acd516d818e83d74c56e884b0a4" + }, + "recipe": { + "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151008.1022", + "deps": [] + }, + "autodisass-java-bytecode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gbalats/autodisass-java-bytecode.git", + "sha256": "3f3637a5af9850efb764e3a02dae38b6eb66af0b49c6d9d3f7857c0089315f04", + "rev": "3d61dbe266133c950b39e880f78d142751c7dc4c" + }, + "recipe": { + "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.1112", + "deps": [] + }, + "projmake-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ericbmerritt/projmake-mode.git", + "sha256": "c4bc2f7c8a8de41c2b19242383e79955b7f88b3ee275f2e580c4d6d2f01060cd", + "rev": "25e2f28ca2c528e42c6422735829fc77bab8b451" + }, + "recipe": { + "sha256": "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150619.1620", + "deps": [ + "dash", + "indicators" + ] + }, + "nm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tjim/nevermore.git", + "sha256": "53591bdf6757c95c174fa6fe8d6a19b900fdded4cf6a70088bd1ff197d956bea", + "rev": "5a3f29174b3a4b2b2e7a700a862f3b16a942687e" + }, + "recipe": { + "sha256": "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151110.1310", + "deps": [ + "company", + "emacs", + "notmuch", + "peg" + ] + }, + "helm-bundle-show": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/masutaka/emacs-helm-bundle-show.git", + "sha256": "b2b31cc89c0d2f6d88515e27704cc8a4616484e9aa1219f469d7849eec221df0", + "rev": "6dffd602a4cc5d85eade7de3be99a22b246fc437" + }, + "recipe": { + "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151207.241", + "deps": [ + "helm" + ] + }, + "irony": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sarcasm/irony-mode.git", + "sha256": "78dc00c2fb295482e8c691a8812a8a5043b7ca74857415d1fb570859992f5ab4", + "rev": "8a4b1019a36c08a2158a83af3ec29dcae63f699f" + }, + "recipe": { + "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.1201", + "deps": [ + "cl-lib", + "json" + ] + }, + "elein": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/remvee/elein.git", + "sha256": "fcbaf920371415f5c65fd60d12035c0554de42a05ea59c03e505febc538559c6", + "rev": "d4c0c0491dbb7c90e953d7a16172107c37103605" + }, + "recipe": { + "sha256": "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120120.516", + "deps": [] + }, + "ruby-interpolation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoc/ruby-interpolation.el.git", + "sha256": "05e3cbd3f06c0c1d9eb480613cdcee5bbe9322d40f6fad43aed37213bb2c4ee4", + "rev": "1978e337601222cedf00e117bf4b5cac15d1f203" + }, + "recipe": { + "sha256": "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131112.1052", + "deps": [] + }, + "swiper-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/swiper-helm.git", + "sha256": "4b28889617d39430b9a91134a149233dc39164b5453484701de9915380de29bb", + "rev": "57012ab626486fcb3dfba0ee6720b0625e489b8c" + }, + "recipe": { + "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.530", + "deps": [ + "emacs", + "helm", + "swiper" + ] + }, + "cal-china-x": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xwl/cal-china-x.git", + "sha256": "9abf50b719fca3d93ca280ec58f6ee0c1851a888df303646814e7562d908290d", + "rev": "b6186a729899ae141c546dd3efde461160d8b172" + }, + "recipe": { + "sha256": "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.1547", + "deps": [ + "cl-lib" + ] + }, + "chinese-wbim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zilongshanren/chinese-wbim.git", + "sha256": "8f5f05647c2cb66d1f535954f5c0c08bf57c3991c7c9de30f60fe5999b79a133", + "rev": "57ff61ff3895d77335709d24b40cefc4d10b0095" + }, + "recipe": { + "sha256": "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150623.2250", + "deps": [] + }, + "n4js": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tmtxt/n4js.el.git", + "sha256": "97a194366ffbdf39af380d3f9998461607d7dee90d9369471cbdffc02460a6dd", + "rev": "3991ed8975151d5e8d568e952362df810f7ffab7" + }, + "recipe": { + "sha256": "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150713.2131", + "deps": [ + "cypher-mode", + "emacs" + ] + }, + "emoji-display": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ikazuhiro/emoji-display.git", + "sha256": "49085a0601b8dfefd73e48692df6fb36269f993e5dd3bab7cfa848b234c1046a", + "rev": "bb4217f6400151a9cfa6d4524b8427f01feb5193" + }, + "recipe": { + "sha256": "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140117.413", + "deps": [] + }, + "e2wm-sww": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-sww.git", + "sha256": "af8ccce28cf07e4a8d641a50b8ba1555f6d6a5a5ce9e956e6281f9c7781de457", + "rev": "1063f9854bd34db5ac771cd1036cecc89834729d" + }, + "recipe": { + "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140524.358", + "deps": [ + "e2wm" + ] + }, + "pomodoro": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/baudtack/pomodoro.el.git", + "sha256": "3fec04ad6e3f28afaeef31334483673cfca8b63b57fcb3f6db260cc4af0793b6", + "rev": "4a299b8f5e6623010224dcb3e524ff288c6a082c" + }, + "recipe": { + "sha256": "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150716.1246", + "deps": [] + }, + "wisp-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/ArneBab/wisp", + "sha256": "0ppj8mrlc20i2syyiwvj5rp53swrm929h0ksxxlqvn3nvl9gsajd", + "rev": "34fc6f12d740" + }, + "recipe": { + "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150623.1234", + "deps": [] + }, + "syntactic-sugar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/syntactic-sugar.git", + "sha256": "54019635be28de99a32aa8c5f3ea837c101f5b1226ac96eb7f1826568e0b473b", + "rev": "7ddc4502c831abe1c4ad4c7d1ca628a2c9e13968" + }, + "recipe": { + "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140508.1541", + "deps": [] + }, + "savekill": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/savekill.el", + "sha256": "1qfq83cb4qixdl15j28rlslkq6g88ig55ydg747jqb3dqyp3qaah" + }, + "recipe": { + "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140417.2134", + "deps": [] + }, + "ido-at-point": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/katspaugh/ido-at-point.git", + "sha256": "f7e6544b19bfb654c7bad5ffd3cc3c3a2ae227d3410dbc2f93b1d68be43e31ae", + "rev": "e5907bbe8a3d148d07698b76bd994dc3076e16ee" + }, + "recipe": { + "sha256": "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.257", + "deps": [ + "emacs" + ] + }, + "smartrep": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/smartrep.el.git", + "sha256": "26126f625e696cc7ad900f1b233cf82afc5cf906ff5456318c1d0fc451c45cea", + "rev": "f0ff5a6d7b8603603598ae3045c98b011e58d86e" + }, + "recipe": { + "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.2130", + "deps": [] + }, + "prodigy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/prodigy.el.git", + "sha256": "e8f9aa96f7eb852872f687f70676cfdbba019ba37d80bc4bceaf751e311eed67", + "rev": "1f3b5a3309122bae01150738c3d8da910ffbee71" + }, + "recipe": { + "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141109.452", + "deps": [ + "dash", + "emacs", + "f", + "s" + ] + }, + "toggle-quotes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/toctan/toggle-quotes.el.git", + "sha256": "6f9ea8c72f843aec3da6d656f724c4668ee201daf4269f602a7725fb1fae34f0", + "rev": "33abc221d6887f0518337851318065cd86c34b03" + }, + "recipe": { + "sha256": "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140710.426", + "deps": [] + }, + "scss-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/antonj/scss-mode.git", + "sha256": "0d099c4937f65aaed5632f4a1a025f99d909b13fedc86a9655ff3773bba70b20", + "rev": "b010d134f499c4b4ad33fe8a669a81e9a531b0b2" + }, + "recipe": { + "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150107.1600", + "deps": [] + }, + "unipoint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/apgwoz/unipoint.git", + "sha256": "00ee1616c866d51f051d85382356e8712bdda1f1a7c402036122ffa0fdcf89f2", + "rev": "5da04aebac35a5c9e1d8704f2231808d42f4b36a" + }, + "recipe": { + "sha256": "1nym2wlr50wk62cbagq1qyjczzf56nb6i9dfzcwikdck8p4p2dr7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140113.1624", + "deps": [] + }, + "buttercup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jorgenschaefer/emacs-buttercup.git", + "sha256": "33cf135dcbf36e8afd56ba30b51973a68314fa18f7b78e3c230e16b1d4e5160c", + "rev": "14718c0087b7b2b5e0ff8a1a377a9e4d9f310c60" + }, + "recipe": { + "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150927.506", + "deps": [] + }, + "jdee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jdee-emacs/jdee.git", + "sha256": "00cbd306417e79c1421d36296dfe000bcfa40e7522ef67e5b4ba0a148d9d28f2", + "rev": "0fde60adf8ca805fec23e82d393bd39d0b45598d" + }, + "recipe": { + "sha256": "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151005.1437", + "deps": [ + "emacs" + ] + }, + "maude-mode": { + "fetch": { + "tag": "fetchsvn", + "url": "svn://svn.code.sf.net/p/maude-mode/code/trunk", + "sha256": "06k07qvhm2mbqasn72649lx3pwzb0r466854a18g6lciwhiww7vy", + "rev": "63" + }, + "recipe": { + "sha256": "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140212.502", + "deps": [] + }, + "display-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawabata/emacs-display-theme.git", + "sha256": "4a7bf5dc48af1930a52b9ed036840b3bdf15eea599bdf998bbe216feee02a664", + "rev": "b180b3be7a74ae4799a14e7e4bc2fe10e3ff7a15" + }, + "recipe": { + "sha256": "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140115.956", + "deps": [ + "emacs" + ] + }, + "list-register": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/list-register.el", + "sha256": "1sv1x2bc1xg7z3q4r9pbvjspj041q4zn883w9m071h7dgx8i9a6l" + }, + "recipe": { + "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "scratch-pop": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/scratch-pop.git", + "sha256": "217712d2ed13e6aaad7aca5cb5e8386d18b146cfbeafdf990479201d767475fb", + "rev": "2c9648a669ce8e3a9e35e8e1e3c808531d20c549" + }, + "recipe": { + "sha256": "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150820.339", + "deps": [ + "popwin" + ] + }, + "erc-image": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kidd/erc-image.el.git", + "sha256": "2e21234a666016b185ade6c53a24e9d9a19b51a3bcc40c2c9890f80e451f210f", + "rev": "270a60706e3e0669350bb7aaea465570ef5074cf" + }, + "recipe": { + "sha256": "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.514", + "deps": [] + }, + "thingatpt+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thingatpt+.el", + "sha256": "1fyx4z7ci5yisfng0ps2q1nwvziidamam1m2n53rkfmm2gprxqhb" + }, + "recipe": { + "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150823.1911", + "deps": [] + }, + "mysql2sqlite": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/echosa/emacs-mysql2sqlite.git", + "sha256": "31407a4da86f248cbb1b74cd3adca57840391ce750e45e7aff1e0a816102a860", + "rev": "07415c5fcd895ebccf1b774d0eab175f2700652f" + }, + "recipe": { + "sha256": "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.1539", + "deps": [] + }, + "hide-comnt": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hide-comnt.el", + "sha256": "1xvchpbrfwnqlh32pj0fg7n0x8csfm0mn09z7p45w3wf1mz0ckbn" + }, + "recipe": { + "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150801.1120", + "deps": [] + }, + "emms-player-mpv": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dochang/emms-player-mpv.git", + "sha256": "a3e7b955d60dd0b71e08dfe538148eb7717e6317a0fa17c74eed43ca6537cf19", + "rev": "a1be1d266530ede3780dd69a7243d898f1016127" + }, + "recipe": { + "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.102", + "deps": [ + "emms" + ] + }, + "decl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/preetpalS/decl.el.git", + "sha256": "017f4ac9a942df293dcea653b060de37ef4b06785a370f1e21e8dbf95fd355da", + "rev": "75cca6bb1203f4d00cf10f7c4e87400f7c456e75" + }, + "recipe": { + "sha256": "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151204.2249", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "flatland-black-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsfodder/emacs-flatland-black-theme.git", + "sha256": "419f17824d1220fbe28c7c4f4c4d98b03376ba2da269fc78eb732e4eb0c96645", + "rev": "75fc4f1815feb23563a60477c02d70326b45c59e" + }, + "recipe": { + "sha256": "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.30", + "deps": [ + "emacs" + ] + }, + "kibit-helper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brunchboy/kibit-helper.git", + "sha256": "d9122972365cb1f84ae0a78194f891e706e6948a8b3c17eca89b55b7a9585068", + "rev": "16bdfff785ee05d8e74a5780f6808506d990cef7" + }, + "recipe": { + "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.1033", + "deps": [ + "emacs", + "s" + ] + }, + "recompile-on-save": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/maio/recompile-on-save.el.git", + "sha256": "31d350b682b235ff5279a83b62b136df764bdac5e302bfe241494f67e9426272", + "rev": "92e11446869d878803d4f3dec5d2101380c12bb2" + }, + "recipe": { + "sha256": "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.846", + "deps": [ + "cl-lib", + "dash" + ] + }, + "slime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/slime/slime.git", + "sha256": "c2a4ee139ede4a3fed4f2f66fe38cce4459efa9987cb5c4be03057c6ba4ff093", + "rev": "137a6bf990c5a9db72716ee15aa2bd86b77ba0cb" + }, + "recipe": { + "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1342", + "deps": [ + "cl-lib" + ] + }, + "audio-notes-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/audio-notes-mode.git", + "sha256": "950dac86137c7460b4e4bcce5d9b3fe6089002bb3b1107e4a7bbfcc5e89ae960", + "rev": "2158b2e8d20df3184bbe273a7fd5aa693e98baa9" + }, + "recipe": { + "sha256": "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140204.1354", + "deps": [] + }, + "define-word": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/define-word.git", + "sha256": "0df72fb7ff8224867a3ebf29b6e1393bdf40e4f411295bcffd0046817d10260a", + "rev": "64d98b7748686c51261fe6e8d42078c6284feb13" + }, + "recipe": { + "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150709.1423", + "deps": [ + "emacs" + ] + }, + "ecukes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ecukes/ecukes.git", + "sha256": "1136d15d6b498e4541bf8bd806dece1ffa737b65d08ef0b462e8059eea112a7f", + "rev": "7dad2da09da33d8540f25bf7bb7dd62900669b80" + }, + "recipe": { + "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150717.848", + "deps": [ + "ansi", + "commander", + "dash", + "espuds", + "f", + "s" + ] + }, + "shell-switcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/shell-switcher.git", + "sha256": "8b6b97c3572256493ee03e2fbba3da156562eb55cff7f0d4fab9018c39f533d9", + "rev": "2c5575ae859a82041a4bacd1793b844bfc24c34f" + }, + "recipe": { + "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151011.815", + "deps": [] + }, + "dash": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/dash.el.git", + "sha256": "2caeefc9b4ee58818efc2a76d3e17c39f4a2b60dbc023cf343ac376067ddff91", + "rev": "6484fb5e77140d7028ac2a96f356385b40d81197" + }, + "recipe": { + "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.313", + "deps": [] + }, + "haml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nex3/haml-mode.git", + "sha256": "767f2692968ee2b2f20d20722d1ea342e825a67e240677fe85a564d4bfaa5f23", + "rev": "7717db6fa4a90d618b4a5e3fef2ac1d24ce39be3" + }, + "recipe": { + "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.2211", + "deps": [ + "ruby-mode" + ] + }, + "sentence-navigation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/noctuid/emacs-sentence-navigation.git", + "sha256": "66e2dbd8c2d31bff2ab60e6a3677684872a72ac55eb59b7899bb59a844d87146", + "rev": "8b6bf8af180c95f516bda9285da3fe940a2ab740" + }, + "recipe": { + "sha256": "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.2346", + "deps": [ + "ample-regexps", + "emacs" + ] + }, + "helm-github-stars": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sliim/helm-github-stars.git", + "sha256": "2f40b37d4bb7865819714459e72c10ab9165872f984b9c8c018fdce62daf85dc", + "rev": "9211be3fbb65ca8819e0d1a54524ed8abbfaa4fa" + }, + "recipe": { + "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150625.1723", + "deps": [ + "emacs", + "helm" + ] + }, + "elmine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoc/elmine.git", + "sha256": "1341bd6eb23ce3a8c535a5f6b9c0960e85aa00f7062033c1684b79c33ef1c390", + "rev": "60639f46a5f45653f490cdd30732beb2dca47ada" + }, + "recipe": { + "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.623", + "deps": [ + "s" + ] + }, + "ace-jump-zap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/ace-jump-zap.git", + "sha256": "043e5268dc95a3b53eee348e9cbb8b024d0b0a672ec12716a124e540325d197c", + "rev": "c60af83a857955b68c568c274a3c80cbe93f3150" + }, + "recipe": { + "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150330.1542", + "deps": [ + "ace-jump-mode", + "dash" + ] + }, + "anchored-transpose": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/anchored-transpose.el", + "sha256": "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651" + }, + "recipe": { + "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20080905.54", + "deps": [] + }, + "toxi-theme": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/postspectacular/toxi-theme", + "sha256": "0hfzbrw9ik3yxdwmgsm80k0n045z6az6pgvxc1nqcjmiwh80h9mk", + "rev": "fc4274055149" + }, + "recipe": { + "sha256": "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130418.1439", + "deps": [ + "emacs" + ] + }, + "pyfmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aheaume/pyfmt.el.git", + "sha256": "a7d44d913ff67bcc1c7fc347527beefad4146aec85ca89d5ba78c6195aab35df", + "rev": "cb92be2cf0804cc53142dc5edb36f8e0ef5cec32" + }, + "recipe": { + "sha256": "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150521.1556", + "deps": [] + }, + "ruby-dev": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Mon-Ouie/ruby-dev.el.git", + "sha256": "a193aa397540765bb2847806ccdd1167e75d59a8b257a4a8445c6aee5afdc5b3", + "rev": "3a6f6e489697916dd554852492bd325879be2e44" + }, + "recipe": { + "sha256": "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130811.351", + "deps": [] + }, + "flappymacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/taksatou/flappymacs.git", + "sha256": "a51e0deaa94e804f7b8fd8e84237068b68a59155d79950bfc620a80910351b1e", + "rev": "bbc69405f62e1bc488533709d4ab0b5eba919dbd" + }, + "recipe": { + "sha256": "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140715.1101", + "deps": [] + }, + "helm-company": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/manuel-uberti/helm-company.git", + "sha256": "dd7f5d0872a74755fc65fa862bfa91fa719ffefb595b02c32993422ef6f26c39", + "rev": "4feea2d9df12a82ffc36ac63ec512f0cb95596ad" + }, + "recipe": { + "sha256": "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150917.608", + "deps": [ + "company", + "helm" + ] + }, + "smeargle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-smeargle.git", + "sha256": "dd8c124aaeb67ee8b6e67c4cab08a428e94ebb5a46f17cf67a55bac7f46289e3", + "rev": "67466d5214a681430db8cb59a2a1bca771ff0024" + }, + "recipe": { + "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.42", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "table": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/byplayer/table.el.git", + "sha256": "ac3e02b5a3d40a2316a3b58b39dc0eee7fc202cdbdd830d9dfdea7cb6bf05a19", + "rev": "d3718985d1103490c140690ead37d65b0e427c63" + }, + "recipe": { + "sha256": "0jayhjvs5pkacw8r7z7fy0i732a1zpkcmirkzjpx3wqk0bs5fga6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140722.15", + "deps": [] + }, + "epc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kiwanami/emacs-epc.git", + "sha256": "0e10ca8ad594123f926a961c7084c9afecc23ad79b32319712e934f8076f51b6", + "rev": "dbae585622fa7b556945cc7475f354976d26b065" + }, + "recipe": { + "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140610.34", + "deps": [ + "concurrent", + "ctable" + ] + }, + "suomalainen-kalenteri": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tlikonen/suomalainen-kalenteri.git", + "sha256": "d6aac951f59bcb326e8178fa2f8c4360c25f95276aedb4f1400a31cfc43dc3ac", + "rev": "b7991cb35624ebc04a89bbe759d40f186c9c097e" + }, + "recipe": { + "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151129.504", + "deps": [] + }, + "init-loader": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-jp/init-loader.git", + "sha256": "20fdbb2f17e8cad103436513f4d848436e6790a43ab6acd2cfc53e984304d69e", + "rev": "1f28a0b801cbb08aa9b47fd15ceab243a2bc064c" + }, + "recipe": { + "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141031.133", + "deps": [] + }, + "font-lock+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/font-lock+.el", + "sha256": "1w159k5hn9z7ydx5gq4hph7gvbqs4ml4qbfgpsib5z39v7x6wkv4" + }, + "recipe": { + "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1605", + "deps": [] + }, + "session": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/session.git", + "sha256": "3b4dab2c1569f54f111cb995ae7f09bce069b9adffcf8916c2b39dbf9428e96a", + "rev": "19ea0806873daac3539a4b956e15655e99e3dd6c" + }, + "recipe": { + "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120510.1900", + "deps": [] + }, + "bundler": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tobiassvn/bundler.el.git", + "sha256": "689a70113ac361be29aea093344cf19433826a6a0d8fe82f3207f7800b8c5f29", + "rev": "9be0c4601a4d1a35de22f818637ce029830272d3" + }, + "recipe": { + "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.912", + "deps": [ + "cl-lib", + "inf-ruby" + ] + }, + "undohist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/m2ym/undohist-el.git", + "sha256": "9d274e64fba8b57510a1888c19269637d09b4e2f05a2557a58c74f4304570db0", + "rev": "d2239a5f736724ceb9e3b6bcaa86f4064805cda0" + }, + "recipe": { + "sha256": "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150315.742", + "deps": [ + "cl-lib" + ] + }, + "jsfmt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brettlangdon/jsfmt.el.git", + "sha256": "0c523fd245c380531d767cb9d6e2f70dd50ad6f7695f64c1845ad14159e92f41", + "rev": "68109120f553fbc651fafb6fc35ed83c3e79f8a6" + }, + "recipe": { + "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150727.1725", + "deps": [] + }, + "rdp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/rdp.git", + "sha256": "0d7bf1cfb82bb188863c39f8556fd58a3eac59924e9948b29acc56f8e0328922", + "rev": "b620192afada04aec33b38cc130fef0765f41ca9" + }, + "recipe": { + "sha256": "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120928.2054", + "deps": [] + }, + "go-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dominikh/go-mode.el.git", + "sha256": "191a3a4680d71de1d687d43d4a0b0311d4cb47163c6eae50f6f0c14242fd6cfc", + "rev": "5d53a13bd193653728e74102c81aa931b780c9a9" + }, + "recipe": { + "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150818.118", + "deps": [] + }, + "xtest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/promethial/xtest.git", + "sha256": "be4328cc0beb6097793212bb41ebb68f65f991a1a8d1a9e7d1afffff8e46b626", + "rev": "2c2bdf32667506dd9ddf6eb311832add616bdf1c" + }, + "recipe": { + "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141214.1106", + "deps": [ + "cl-lib" + ] + }, + "noccur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/noccur.el.git", + "sha256": "b455a68e120488e1d22c66c4fbb69747ebf2357467cca252493a46e39caa9214", + "rev": "6cc02ce07178a61ae38a849f80472c01969272bc" + }, + "recipe": { + "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150514.1620", + "deps": [] + }, + "speck": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/speck.el", + "sha256": "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10" + }, + "recipe": { + "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140901.1335", + "deps": [] + }, + "lispyscript-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/lispyscript-mode.git", + "sha256": "8987ff24f5bdf25def7ff14ea831279bc94dcc481e0614243d3ed4fac5e85538", + "rev": "d0e67ee734919d7ff14c72712e909149cb9604bd" + }, + "recipe": { + "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130828.919", + "deps": [] + }, + "pacmacs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/codingteam/pacmacs.el.git", + "sha256": "4fc1f6ac82ff628dcf909f937095167433d9e927d9fc1db4d4e16ddd8c80b877", + "rev": "4ce9773129536b635474ac7466d4b7b9e0eb4458" + }, + "recipe": { + "sha256": "13pgxwwigb0h709xrs2h1l957n4vcjz59qkrs8aa12czcg291599", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.410", + "deps": [ + "cl-lib", + "dash", + "dash-functional", + "emacs", + "f" + ] + }, + "bbdb": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.savannah.nongnu.org/bbdb.git", + "sha256": "e20dfe8085782948c1411685d45bad0cb7ff088bc2d1d2c1654c276356382b26", + "rev": "8fce6df3ab09250d545a2ed373ae64e68d12ff4c" + }, + "recipe": { + "sha256": "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.1741", + "deps": [] + }, + "ac-anaconda": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/ac-anaconda.git", + "sha256": "6ff3ad3795ee08f407fab18e737e4244d8789c58f6203e257c9e48d3b5e5ffe9", + "rev": "d0dec5c026235f65f9fd6594540df8886ed1b6a8" + }, + "recipe": { + "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150912.308", + "deps": [ + "anaconda-mode", + "auto-complete", + "dash" + ] + }, + "fliptext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/fliptext.el", + "sha256": "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw" + }, + "recipe": { + "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131113.2018", + "deps": [] + }, + "cljsbuild-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kototama/cljsbuild-mode.git", + "sha256": "849c0edb0a6e1e13b46bfd83306be73a222dc69b268246efbb4cc2d2fa9fad10", + "rev": "7edfc199b5daf972f6b2110d13a96e0bd974cd65" + }, + "recipe": { + "sha256": "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140619.326", + "deps": [] + }, + "magit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", + "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + }, + "recipe": { + "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.705", + "deps": [ + "async", + "dash", + "emacs", + "git-commit", + "magit-popup", + "with-editor" + ] + }, + "sly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/capitaomorte/sly.git", + "sha256": "e98699c11f8e22ed885fe2348a49bec0b87cc8c9849537947138eb2d1913775c", + "rev": "8533961ecd828e162dc26b065922264a3b7ba210" + }, + "recipe": { + "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.1717", + "deps": [ + "emacs" + ] + }, + "delim-kill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thomas11/delim-kill.git", + "sha256": "ce4b3ee90a8e35e3168e7256dd2b4e7be3e5020544c197bf1a47308b9a064219", + "rev": "1dbe47344f2d2cbc8c54beedf0cf0bf10fd203c1" + }, + "recipe": { + "sha256": "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100517.120", + "deps": [] + }, + "magit-stgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit-stgit.git", + "sha256": "cb5bc9a005e41bcf3ddef010343685361cf6d01d43ea5a4195c8ed94337a68d6", + "rev": "d1793345a8d32b2c509077d634ca73148a68de4b" + }, + "recipe": { + "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151120.1744", + "deps": [ + "emacs", + "magit" + ] + }, + "shelltest-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rtrn/shelltest-mode.git", + "sha256": "d9e8c2a12033bb2635f527ccb819c4cfca834232fa571adf5026c505ffe142db", + "rev": "e2513832ce6b994631335be299736cabe291d0f7" + }, + "recipe": { + "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141227.448", + "deps": [] + }, + "maker-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fommil/maker-mode.git", + "sha256": "b0ae8995d993581ff3be331ed7abcc333fdf34f1ed4d3d41bc50f2ae7a3eee8c", + "rev": "335c43b08eff589040129dae1ea13c88793b069e" + }, + "recipe": { + "sha256": "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150116.554", + "deps": [ + "dash", + "s" + ] + }, + "tagedit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/tagedit.git", + "sha256": "9a332974306aeb0f5d31231bee316c098899a47a576de46c9a7d01b39cb8f9c8", + "rev": "458ff5bb23aa4816a2d5ff5d66c4e95996b4a4e1" + }, + "recipe": { + "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150727.424", + "deps": [ + "dash", + "s" + ] + }, + "lorem-ipsum": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jschaf/emacs-lorem-ipsum.git", + "sha256": "545958594376b8adc9b814134c73a5f7503ea0582fe4f25eee64457937ff3da7", + "rev": "893a27505734a1497b79bc26e0736a78221b35d9" + }, + "recipe": { + "sha256": "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140911.1608", + "deps": [] + }, + "db": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nicferrier/emacs-db.git", + "sha256": "b3f82ca0fd211476470d1d91d03617c2fb02255ac16012b127a3a530f224db6b", + "rev": "b3a423fb8e72f9013009cbe033d654df2ce31438" + }, + "recipe": { + "sha256": "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140421.1611", + "deps": [ + "kv" + ] + }, + "tinysegmenter": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myuhe/tinysegmenter.el.git", + "sha256": "12b50fdd8a7a070b1e5132a2ab2e68c1ec66f42b72cd2aaaae0f1a91abb10cd9", + "rev": "872134704bd25c13a4c59552433da4c6881b5230" + }, + "recipe": { + "sha256": "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141124.413", + "deps": [ + "cl-lib" + ] + }, + "flymake-jshint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/flymake-jshint.el.git", + "sha256": "6a6cb6bbfa90056936c4f00ef593f427e140944be1204f9df0f9b4b3ae4b957b", + "rev": "79dd554c227883c487db38ac111306c8d5382c95" + }, + "recipe": { + "sha256": "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140319.1700", + "deps": [ + "flymake-easy" + ] + }, + "navi-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tj64/navi.git", + "sha256": "f72f816f248fdb8f37c20b332016af3727080ee83cd45625b6870fe26916a83c", + "rev": "78c0c227d06254d1aec9d8a1301b9a5a785b8b31" + }, + "recipe": { + "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.957", + "deps": [ + "outorg", + "outshine" + ] + }, + "smarty-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/smarty-mode.git", + "sha256": "5d4690171b338286c8f079d90911faa6d59af9607577bca2466b6ae141b783ee", + "rev": "3dfdfe1571f5e9ef55a29c51e5a80046d4cb7568" + }, + "recipe": { + "sha256": "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20100703.658", + "deps": [] + }, + "flymake-sass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/flymake-sass.git", + "sha256": "7d3ed7cfd2887817ce371fc57efb0175e4bce05f03152f77df6424bf0240de4e", + "rev": "748f13caa399c27c41ba797da9e214b814f5a30f" + }, + "recipe": { + "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140308.525", + "deps": [ + "flymake-easy" + ] + }, + "shimbun": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsorphanage/w3m.git", + "sha256": "9a25153b7bf7aded2bd68b4583c0752bbc2f8c03da2a7311fc2ec80f9f6afbd1", + "rev": "5986b51c7c77500fee3349fb0b3f4764d3fc727b" + }, + "recipe": { + "sha256": "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120718.2238", + "deps": [] + }, + "sackspace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cofi/sackspace.el.git", + "sha256": "8d1bf7aa2247b9954f411cb894593693f1f0a99cda09e1d06db2e58c8320bb28", + "rev": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708" + }, + "recipe": { + "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130719.456", + "deps": [] + }, + "bind-chord": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/waymondo/use-package-chords.git", + "sha256": "5fc2ca3cbffb50e5190796767ecdf3e7558bd4e587d18328e0a859103af11780", + "rev": "e5f7a43fd0a63a4a0bf7dabc2c223f615ea71eca" + }, + "recipe": { + "sha256": "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.1007", + "deps": [ + "bind-key", + "key-chord" + ] + }, + "org2blog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/punchagan/org2blog.git", + "sha256": "5dda51e79a81733df44dfb8d5f56404328ae6b619eba483e8f07e1eee85bc4b3", + "rev": "c97bb3d0f3e3816581b04394c6d9c55a2c2cfc5c" + }, + "recipe": { + "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151208.1028", + "deps": [ + "metaweblog", + "org", + "xml-rpc" + ] + }, + "ample-regexps": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/immerrr/ample-regexps.el.git", + "sha256": "b668190ee591c7bbf552edcb184d981bb9eb838b911d77d82d6f443acb8a8b49", + "rev": "884c712a82773d3af500e71d20bebe52340352c5" + }, + "recipe": { + "sha256": "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.500", + "deps": [] + }, + "mhc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yoshinari-nomura/mhc.git", + "sha256": "c8a0f274ed6cfd7398cef685ec59b5aa4a3522216d03c8a0aa2e0511e2b6736b", + "rev": "0204160474bdb01e62c89364b5f720b2c42afb0d" + }, + "recipe": { + "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.238", + "deps": [ + "calfw" + ] + }, + "company-ghc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/iquiw/company-ghc.git", + "sha256": "0de87f418110d0dafddad28fdfb4eb95c1f97b2a6080dd483b496e6091906912", + "rev": "e7be2b13b3ca3e9de63e8a66d0444e4750cbf22c" + }, + "recipe": { + "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.639", + "deps": [ + "cl-lib", + "company", + "emacs", + "ghc" + ] + }, + "evil": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/lyro/evil", + "sha256": "0m1nd5v0f72lvispjrsfph8iyv2z7gsf8awwmfdghag348bmvjn3", + "rev": "73ad80e8fea1" + }, + "recipe": { + "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151128.1302", + "deps": [ + "goto-chg", + "undo-tree" + ] + }, + "flycheck-css-colorguard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Simplify/flycheck-css-colorguard.git", + "sha256": "beacbde63ff31170cc238a7d6c8b2a9209b6709ce04c3d332ca25ffa9379d3a6", + "rev": "8c2061c11d5465eec77ad471bef413eb14d122da" + }, + "recipe": { + "sha256": "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151122.347", + "deps": [ + "emacs", + "flycheck" + ] + }, + "ruby-end": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/ruby-end.git", + "sha256": "68812f31857a9568c6c7a90e9f3654317675ae4d81e1ae228c963b4c86da778e", + "rev": "ea453f5ac6259f09667fa26b865b6afacd06aa97" + }, + "recipe": { + "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141215.623", + "deps": [] + }, + "openstack-cgit-browse-file": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chmouel/openstack-cgit-browse-file.git", + "sha256": "e0e025db91c9560e5d9a39308ce965f33fc9607482a833edacdde04ba6bb0601", + "rev": "244219288b9aef41155044697bb114b7af83ab8f" + }, + "recipe": { + "sha256": "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130819.427", + "deps": [] + }, + "addressbook-bookmark": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/addressbook-bookmark.git", + "sha256": "2d116f542a4e1016c85fed955c3d5031227400554d53a2c05c3e23142246ef2f", + "rev": "784df4fa06f90214ddba127391ef4fcb6b699468" + }, + "recipe": { + "sha256": "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141205.2308", + "deps": [ + "emacs" + ] + }, + "magnatune": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eikek/magnatune.el.git", + "sha256": "1e410e567deb5d46c13cf46bdb52f844dba1a24f9228bb152fbf2d52bf111fc3", + "rev": "605b01505ba30589c77ebb4c96834b5072ccbdd4" + }, + "recipe": { + "sha256": "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1435", + "deps": [ + "dash", + "s" + ] + }, + "f": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rejeep/f.el.git", + "sha256": "fc9228dbe65b1f31b023ccf71eb8716b07536322d751c8307215f51cc1ee9b19", + "rev": "e0259ee060ff9a3f12204adcc8630869080acd68" + }, + "recipe": { + "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151113.323", + "deps": [ + "dash", + "s" + ] + }, + "fortpy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rosenbrockc/fortpy-el.git", + "sha256": "6f0759e05ef3ef67a0f500208aca2783633d1e7113ecac9d1d38139acb3288dc", + "rev": "c614517e9396ef7a78be3b8786fbf303879cf43b" + }, + "recipe": { + "sha256": "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150715.1532", + "deps": [ + "auto-complete", + "epc", + "pos-tip", + "python-environment" + ] + }, + "dired-ranger": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150819.1148", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "ac-cider": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/ac-cider.git", + "sha256": "858ace2f7d2919deaee62e666b8b69da0bcf720afd83c7b973acf6fd8f989fcc", + "rev": "eeb4b3ae1e91d03d765f6c39994792e4f05f6600" + }, + "recipe": { + "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151012.508", + "deps": [ + "auto-complete", + "cider", + "cl-lib" + ] + }, + "project-root": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/piranha/project-root", + "sha256": "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8", + "rev": "fcd9df2eadca" + }, + "recipe": { + "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110206.1430", + "deps": [] + }, + "heroku": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/technomancy/heroku.el.git", + "sha256": "12eec40d8876008498f76053872b32f8c363b56dadbc7044f68f5f8c56bc8530", + "rev": "92af1c073b593c4def99c8777c869992aa4d0b3a" + }, + "recipe": { + "sha256": "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120629.1313", + "deps": [] + }, + "otter-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/scvalex/script-fu.git", + "sha256": "da5aaa3d6acc7bfd9d58a9432f6a02155dce6c6897631739a54edfdab01cd128", + "rev": "da9438b58b6b95bb75fcd5f55a48b8a53eed368b" + }, + "recipe": { + "sha256": "197r0sfbmwygvzsiv0bjjfsngwp79qi365z762y8gbf8f3hjp45i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121202.1103", + "deps": [] + }, + "zombie": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/zombie.git", + "sha256": "8f9563efe5a1080efde2929962a8c6c2756bbc04a552cd7ade84afcf8ca7a3be", + "rev": "ff8cd1b4cdbb4b0b9b8fd1ec8f6fb93eba249345" + }, + "recipe": { + "sha256": "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141222.1016", + "deps": [] + }, + "irfc": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/irfc.el", + "sha256": "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca" + }, + "recipe": { + "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.707", + "deps": [] + }, + "basic-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgeller/basic-theme.el.git", + "sha256": "e8d897ca1f114425587715a8a374b8633ce6e441e61166e1b2bec3cb98e176dd", + "rev": "e3c32e1285749b4135d4d593f06566c631c26456" + }, + "recipe": { + "sha256": "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151010.307", + "deps": [ + "emacs" + ] + }, + "swbuff-x": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/swbuff-x.el", + "sha256": "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5" + }, + "recipe": { + "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130607.514", + "deps": [ + "swbuff" + ] + }, + "ibuffer-tramp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/svend/ibuffer-tramp.git", + "sha256": "b84a5a9b59eba44b339f83a2af3d3ab9dd802aec07765bf4b847dc224e5ed9d5", + "rev": "41fab2ad174f53a4cf5ef7d2ebef518dede82ab4" + }, + "recipe": { + "sha256": "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.1139", + "deps": [] + }, + "sound-wav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-sound-wav.git", + "sha256": "871e0c0443ac09df8f4c860874719c5028426503264cd8ac0e8ccc35520b1dac", + "rev": "254d3a7180a65cb33a808c43b70d4e6daa121ac9" + }, + "recipe": { + "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140303.657", + "deps": [ + "cl-lib", + "deferred" + ] + }, + "psession": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/psession.git", + "sha256": "eb5c0636e3329a9a4089b7e4a9b09e23207471faf00e52ec13924c9e2d4f1cad", + "rev": "e46ddd05c8d3a6e4cbcc11b62aa275e5de66f475" + }, + "recipe": { + "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151114.1306", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "elfeed-web": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/elfeed.git", + "sha256": "8775dadb0d863ec79f52cfe211d75fa4eeba91742b5eb8bb56c30cf1d9fddb76", + "rev": "19879a4dfb3b6932bb411284d686f212d60f6244" + }, + "recipe": { + "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.1724", + "deps": [ + "elfeed", + "emacs", + "simple-httpd" + ] + }, + "osx-lib": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/raghavgautam/osx-lib.git", + "sha256": "4132b0a5640c965208278bc3802acef95f126a1c4f1f857949620c444f175da6", + "rev": "22ce16c48f81a9fa791d797ceb8c025855a5b7b9" + }, + "recipe": { + "sha256": "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.2350", + "deps": [ + "emacs" + ] + }, + "wgrep-pt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", + "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140510.1731", + "deps": [ + "wgrep" + ] + }, + "cljr-helm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/philjackson/cljr-helm.git", + "sha256": "961681015da836a63eb9117c94b9965300b123b1d80d316da943066ef315bb79", + "rev": "99c6dcc5228ecd2fe9e6e28a9512cbc3df0770ef" + }, + "recipe": { + "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150425.1507", + "deps": [ + "clj-refactor", + "helm" + ] + }, + "tt-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/davorg/tt-mode.git", + "sha256": "c50c4fa214d58140d6c4a7fc52c83f8efe9a858ad6fcab3273be4ec48d5c9d55", + "rev": "85ed3832e7eef391f7879d9990d59c7a3493c15e" + }, + "recipe": { + "sha256": "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130804.610", + "deps": [] + }, + "ansible": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/emacs-ansible.git", + "sha256": "735db7feefa7e6b1c20679227be0cc2f23610dd4153c94799da7cb019fcb07a9", + "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" + }, + "recipe": { + "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.1953", + "deps": [ + "f", + "s" + ] + }, + "japanlaw": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/japanlaw.el.git", + "sha256": "27bac59678cc9b4e59e965bde09d819531ecc77c2acb26ec1c83761bd01cdf22", + "rev": "d90b204b018893d5d75286c92948c0bddf94cce2" + }, + "recipe": { + "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150621.2341", + "deps": [] + }, + "smart-cursor-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/7696122/smart-cursor-color.git", + "sha256": "71fd6791e87857a7ac853b7375abffe0c59a9574f11b6a55e7b4f46ac1c3f7f9", + "rev": "b0b71f5e14d867aac7e5afdb53e8bd4b338c625b" + }, + "recipe": { + "sha256": "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141124.1119", + "deps": [] + }, + "link-hint": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/noctuid/link-hint.el.git", + "sha256": "16770038227a4e6d9e04a088c46c700fa1ea866aa99fbb9e5fdc18bcb29b9a3a", + "rev": "cec4e90ffc9794fc9e25cbfcde9b5e1dd8328d09" + }, + "recipe": { + "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.1845", + "deps": [ + "avy", + "emacs" + ] + }, + "ox-gfm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/larstvei/ox-gfm.git", + "sha256": "36dabdc845cd829ba38d17251390b52bc021edb04d24b17b3815109b4558d33d", + "rev": "dc324f0f4239e151744d59e784da748d4db4f6b8" + }, + "recipe": { + "sha256": "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150604.226", + "deps": [] + }, + "ibuffer-git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jrockway/ibuffer-git.git", + "sha256": "d4d0c2bed89c90cf46a631314c3a6f28df70309972f10ee9d6204fac7be92661", + "rev": "d326319c05ddb8280885b31f9094040c1b365876" + }, + "recipe": { + "sha256": "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20110508.231", + "deps": [] + }, + "golden-ratio-scroll-screen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jixiuf/golden-ratio-scroll-screen.git", + "sha256": "fc1a7db020e0ca461678c553679c7b29159ca36e1f667dd1569c9d6b7e975c20", + "rev": "ce39ddedd764a94bce92c642931727562a0e8150" + }, + "recipe": { + "sha256": "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.430", + "deps": [] + }, + "ewmctrl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/flexibeast/ewmctrl.git", + "sha256": "1b2fcb6d0ea29733f1e7263a9e391a99ae670765bf44cd68c617681fe76330bb", + "rev": "4e1ad0d54bccf2eddb7844eefb8253440aa80f28" + }, + "recipe": { + "sha256": "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150630.338", + "deps": [] + }, + "git-commit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", + "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + }, + "recipe": { + "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.618", + "deps": [ + "dash", + "emacs", + "with-editor" + ] + }, + "flycheck-dedukti": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rafoo/flycheck-dedukti.git", + "sha256": "c67a68906929c8a4bfbaa6a63bc5cdf5874ccbbcb2dfc0ff0e04fc1c5b3988c3", + "rev": "717977c0ead0dc6e267ba2164781d92ee016b7b2" + }, + "recipe": { + "sha256": "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150106.851", + "deps": [ + "dedukti-mode", + "flycheck" + ] + }, + "json-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joshwnj/json-mode.git", + "sha256": "23b6fcf9caef54ed9b6790d314ac8bcf165e50d754a2bc1a726e67646abab36b", + "rev": "ce275e004dc7265047a80dec68b24eb058b200f0" + }, + "recipe": { + "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.2200", + "deps": [ + "json-reformat", + "json-snatcher" + ] + }, + "tbx2org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/tbx2org.git", + "sha256": "a4f1cebbe3f2fdba0b7e3061c317e099bb862911d991f66ca0185ec63d06e8ca", + "rev": "08e9816ba6066f56936050b58d07ceb2187ae6f7" + }, + "recipe": { + "sha256": "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140224.959", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "edbi-minor-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/edbi-minor-mode.git", + "sha256": "1a99f7d988d006d5fcbc0c108ec0a55d6a39fbfac131e80bbdea4b73571eec5e", + "rev": "afcbaf9e8264278e8526ca7509e6fc6bfd0d7937" + }, + "recipe": { + "sha256": "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150421.703", + "deps": [ + "edbi" + ] + }, + "fountain-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rnkn/fountain-mode.git", + "sha256": "990506a09c8f48c76bf827ff62b1f87563e36e9c47480db2d1bcc34d527a351f", + "rev": "934243afbfa042643a973af1b6f26d7353517526" + }, + "recipe": { + "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.2321", + "deps": [ + "emacs", + "s" + ] + }, + "erc-tweet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kidd/erc-tweet.el.git", + "sha256": "16f0287af6b5a54bd814415cf0316a0c52778b4c4244cd6ab4bdc096e4271885", + "rev": "91fed61e139fa788d66a7358f0d50acc896414b8" + }, + "recipe": { + "sha256": "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150920.758", + "deps": [] + }, + "ace-jump-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/winterTTr/ace-jump-mode.git", + "sha256": "e6fbd567ce1ff08f097bc705c2023839376ce95f0b875731283905d0c2ea5b4a", + "rev": "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac" + }, + "recipe": { + "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140616.315", + "deps": [] + }, + "tommyh-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wglass/tommyh-theme.git", + "sha256": "5eedc65cdf5cc30a2d38202401460ac714603838080d02849626dffa5f698b5f", + "rev": "46d1c69ee0a1ca7c67b569b891a2f28fed89e7d5" + }, + "recipe": { + "sha256": "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131004.1830", + "deps": [] + }, + "ob-translate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/krisajenkins/ob-translate.git", + "sha256": "6cc83a0b5fb5177680727c7f935330a7c104f0d5322d33553c4593a8a237c69c", + "rev": "c068f8710ec3019a345b7dc5a5433bee23c87afb" + }, + "recipe": { + "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130718.929", + "deps": [ + "google-translate", + "org" + ] + }, + "lush-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andre-richter/emacs-lush-theme.git", + "sha256": "5981e6b1865c2def98ed12300aba2efe9682b941e00cf6352135159b901e6757", + "rev": "3b80004f33cdce9f4db69e9ccf2041561e98985d" + }, + "recipe": { + "sha256": "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141107.1006", + "deps": [ + "emacs" + ] + }, + "meacupla-theme": { + "fetch": { + "tag": "fetchgit", + "url": "https://gitlab.com/jtecca/meacupla-theme.git", + "sha256": "fb8399ef9c3975b9c536e6b458d5cd151da9a1d355bfd0b2219d4f05d380d48c", + "rev": "f57542222a3a43af9aae665e05a84a61637ab22a" + }, + "recipe": { + "sha256": "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151027.1717", + "deps": [] + }, + "jumblr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkmcc/jumblr.git", + "sha256": "c7f8f8cd5b5400b756eb7de8be4150b44acd9e00245aa944180a325834f05277", + "rev": "705c7286e09a307b2b7f60072a12ed45325657c0" + }, + "recipe": { + "sha256": "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140908.1552", + "deps": [ + "dash", + "s" + ] + }, + "ox-trac": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/JalapenoGremlin/ox-trac.git", + "sha256": "1a653957bfc3ef9cc12292b192e9fcf3980485a9b82df12e60d4049c984039f0", + "rev": "2f2f70eefb9679025ae5812e221f0c118da36012" + }, + "recipe": { + "sha256": "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151102.1155", + "deps": [ + "org" + ] + }, + "plim-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dongweiming/plim-mode.git", + "sha256": "e69be159b6391b3d0e5a43920a620e879d23f5ac54793b56ea881df1aa6a03f0", + "rev": "92e39190286f172567ceb02c80e1df3b81abfa2d" + }, + "recipe": { + "sha256": "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140812.1913", + "deps": [] + }, + "default-text-scale": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/default-text-scale.git", + "sha256": "a86ac67e81724f78c76e4b1f613a2db47bae6aaf9fc2d3512754cc630f0e5bfb", + "rev": "c680861a459e5a1b4cea0da1b99d2a22f08fdcd2" + }, + "recipe": { + "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150227.1156", + "deps": [] + }, + "shm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/structured-haskell-mode.git", + "sha256": "cc544d7dd55f0fc67b943705a8d69ce84cda5edca22a180b8866f47ba9ec4900", + "rev": "a305ca94059d31c60d549494756d5b4eabec20b0" + }, + "recipe": { + "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.133", + "deps": [] + }, + "strings": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/strings.el", + "sha256": "0svvgrssd4r027d25g167lf9cpks3la5zhvyd50gjrhryyxkf225" + }, + "recipe": { + "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150805.1752", + "deps": [] + }, + "ssh-tunnels": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/death/ssh-tunnels.git", + "sha256": "9007e048fdbe7e66fd6f2d8197952584eebc78930fceef2ed4d29327b7824581", + "rev": "b08ba7a560ba5b16aa95c3cc17ed6fea59529cc4" + }, + "recipe": { + "sha256": "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141219.518", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "tramp-hdfs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/raghavgautam/tramp-hdfs.git", + "sha256": "d44ea26732c9c60d3003f30c47f0267cb9e729f82e76bf1e255420c4545c3170", + "rev": "4a3ccaf931ecffeae283cb1766425afbc0f81101" + }, + "recipe": { + "sha256": "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151028.2236", + "deps": [] + }, + "handlebars-sgml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jacott/handlebars-sgml-mode.git", + "sha256": "101bde20236d764466179e86041228010ba1eb59f2c10e68aca32f8db7520078", + "rev": "c76df93a9a8c1b1b3efdcc4add32bf93304192a4" + }, + "recipe": { + "sha256": "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130623.1833", + "deps": [] + }, + "iy-go-to-char": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/iy-go-to-char.el", + "sha256": "19l9d5gp1xj40iyy35r8hh7v6bjnzjx7pb8dvwrmndzg0rlsp7mi" + }, + "recipe": { + "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141029.1049", + "deps": [] + }, + "git-gutter-fringe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-git-gutter-fringe.git", + "sha256": "3b09931a7279b23e5d4abec5e49b832f1fd2e05ddc87947e7405539d56f2b5ab", + "rev": "62accbd227b17073d623faa4cc472280fc45f53e" + }, + "recipe": { + "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150331.2339", + "deps": [ + "cl-lib", + "emacs", + "fringe-helper", + "git-gutter" + ] + }, + "flim": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/wanderlust/flim.git", + "sha256": "17d2d1bb32e96611b137c51867f3053221dae521e89862b9bab18d45f81c21f1", + "rev": "60fa2c74a72358658603480addc75b1d23f6431a" + }, + "recipe": { + "sha256": "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.150", + "deps": [ + "apel" + ] + }, + "molokai-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alloy-d/color-theme-molokai.git", + "sha256": "624b09625482f1050f3830d7fdbc1ec109b8dc4599a242fdf48edbdc6e2a0ac3", + "rev": "04a44f21184b6a26caae4f2c92db9019d883309c" + }, + "recipe": { + "sha256": "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151016.1045", + "deps": [] + }, + "emms": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.sv.gnu.org/emms.git", + "sha256": "6e653c3b44442e21ec6e4410d8b9c0e51b2f03ed1ae62c1bb1a2ffa6c8c144da", + "rev": "489df29303fc89d4f80bffae91ad53f937ccd59a" + }, + "recipe": { + "sha256": "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1353", + "deps": [] + }, + "diffscuss-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hut8labs/diffscuss.git", + "sha256": "0fa6f697661b1c6a3ef12715dc5bcbf4614e5dcbc66af55a4db30ba5f5c220bf", + "rev": "e0aacd8b3d9f886f27222c1397f0655e849e0af7" + }, + "recipe": { + "sha256": "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141014.1857", + "deps": [] + }, + "flyspell-lazy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rolandwalker/flyspell-lazy.git", + "sha256": "68cfd8c5dbf3c4908acb905abe1319717d582eb69b92512573fe66d589c65e05", + "rev": "31786fe04a4732d2f845e1c7e96fcb030182ef10" + }, + "recipe": { + "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141222.852", + "deps": [] + }, + "insert-shebang": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/psachin/insert-shebang.git", + "sha256": "8de74d3b85c868f7548e5273e8fd0a804f62c6714f54d8f8fda8079c04a86b5d", + "rev": "a6e520280b1cb64d70adba2ba38dd9b728960b36" + }, + "recipe": { + "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141119.627", + "deps": [] + }, + "anything-exuberant-ctags": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/k1LoW/anything-exuberant-ctags.git", + "sha256": "bec52c9067cacf96a5e81a680ae6d3a7994e49063056a5430a1534f640286e35", + "rev": "8ed688fd526751e044435bb77135f5315c8167e5" + }, + "recipe": { + "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140316.1837", + "deps": [ + "anything" + ] + }, + "py-autopep8": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paetzke/py-autopep8.el.git", + "sha256": "3f5910d49d95da08ec0a2f4ed37ea9555ea5e487b2afd5ad9a92a4cc9bddb500", + "rev": "685414b19106b99a4384fa0c9ce4817c659e0e81" + }, + "recipe": { + "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150420.621", + "deps": [] + }, + "syntax-subword": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/syntax-subword", + "sha256": "1p9bp09nibw7rra3r6nj496zdx09db6k82dxnxs1lfgdiswfdq2h", + "rev": "a1e0accb754d" + }, + "recipe": { + "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150415.1426", + "deps": [] + }, + "nyan-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/TeMPOraL/nyan-mode.git", + "sha256": "9e302b81a1f383311576b68c92fcfcdb46b2098cb76ff866fa82a695e2b849c6", + "rev": "eb940664cbca6165644d97989f402c8c5bd0e384" + }, + "recipe": { + "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.35", + "deps": [] + }, + "repeatable-motion": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/willghatch/emacs-repeatable-motion.git", + "sha256": "93fd887f3023694c58de430142cd27e89010f07acecc889ff7e6c525a1c2f400", + "rev": "e664b0a4a3e39c4085378a28b5136b349a0afb22" + }, + "recipe": { + "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150629.1312", + "deps": [ + "emacs" + ] + }, + "libmpdee": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andyetitmoves/libmpdee.git", + "sha256": "560570c1acb4d2938ad48af17e6e0405459fc256dd74a5154b5332647f645f41", + "rev": "3f057bf21f5d2e4b70ee551a970aa49d67042db8" + }, + "recipe": { + "sha256": "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150131.1557", + "deps": [] + }, + "abc-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkjunker/abc-mode.git", + "sha256": "da45712c3900fbf2bae6207fbe60ac905608fffa212ab4e6829234ffc4e58fc0", + "rev": "1dd6e1217136a6f986917a3e5f41c1007bac908d" + }, + "recipe": { + "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140225.1144", + "deps": [] + }, + "enotify": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/laynor/enotify.git", + "sha256": "9a00191fd5fcc695ee6ef277eef8dafbb6ae20d2f0e21aef840ce0b1969971c4", + "rev": "7fd2f48ef4ff32c8f013c634ea2dd6b1d1409f80" + }, + "recipe": { + "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130407.848", + "deps": [] + }, + "unidecode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sindikat/unidecode.git", + "sha256": "fca560a403812cb7077bd8a203174392e4ddc26ff1f7ca770e1590f6d10c79cb", + "rev": "9e279e88a689584027d5a1b088fe5def25d0f75c" + }, + "recipe": { + "sha256": "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140317.2318", + "deps": [ + "cl-lib" + ] + }, + "org-outlook": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/org-outlook.el.git", + "sha256": "c8136b0207a6c4a74a99ebd83af9a8c674d03ae45fd8ac662e7e18f6ca28fbc4", + "rev": "b7978fedb0d50c1a3e499bf7e98b5cc526028cd4" + }, + "recipe": { + "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150914.747", + "deps": [] + }, + "highlight2clipboard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Lindydancer/highlight2clipboard.git", + "sha256": "a60abc5d16130a78efcc24a8e4de1e93af543061dba3f61d539859337cc6d61a", + "rev": "6ce58a060d9c5843ccb8c79ec2bba7858c68ac15" + }, + "recipe": { + "sha256": "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151020.1340", + "deps": [ + "htmlize" + ] + }, + "orgtbl-ascii-plot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tbanel/orgtblasciiplot.git", + "sha256": "2bc851eb3edefe5deb3343db90bb48ff02a22c066d6a6a49346104a49ab08ba0", + "rev": "36576ab5eccb844af62a8774e1fc9b4894b63b84" + }, + "recipe": { + "sha256": "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150125.1629", + "deps": [] + }, + "kill-ring-search": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nschum/kill-ring-search.el.git", + "sha256": "56b6547f92c3516b6071d664e2cc2fb854998b269147b52589dd72f6f1bf4b75", + "rev": "23535b4a01a1cb1574604e36c49614e84e85c883" + }, + "recipe": { + "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140422.1055", + "deps": [] + }, + "soothe-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jasonm23/emacs-soothe-theme.git", + "sha256": "1c7720d44f7eafed61149fc038893dad45b98fda967e6c7212f525dc370cf081", + "rev": "0786fe70c6c1b4ddcfb932fdc6862b9611cfc09b" + }, + "recipe": { + "sha256": "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141027.941", + "deps": [ + "emacs" + ] + }, + "cider-spy": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jonpither/cider-spy.git", + "sha256": "9deee0ae8dcf561dc3d3308b2d053def4ddbd1815f89adb571242f163e11fa6c", + "rev": "6913a52c4ee781c5325074af05fcdfab864d6c41" + }, + "recipe": { + "sha256": "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.946", + "deps": [ + "cider", + "cl-lib", + "dash" + ] + }, + "plan9-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/john2x/plan9-theme.el.git", + "sha256": "cd776d9c8fa1f7bf0f1cde94eae61167273adb518e599ddeabee9dc335bfa3eb", + "rev": "0136d0bf1074cf64f305b4396edcf0f54a90436f" + }, + "recipe": { + "sha256": "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.745", + "deps": [] + }, + "visual-ascii-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Dewdrops/visual-ascii-mode.git", + "sha256": "16d0d917bfb7b4b524c982fb271e8cc20594c78437ba5931ba49894487ab68b3", + "rev": "99285a099a17472ddd9f1b4f74e9d092dd8c5947" + }, + "recipe": { + "sha256": "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150129.446", + "deps": [] + }, + "helm-go-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yasuyk/helm-go-package.git", + "sha256": "2c722e82af5e73013800d8c7ab46f33363a2145e75661204384bca3403b501e4", + "rev": "1909156510a4e73697a86b8c040d38e4d352851a" + }, + "recipe": { + "sha256": "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150603.804", + "deps": [ + "deferred", + "go-mode", + "helm" + ] + }, + "scala-outline-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ancane/scala-outline-popup.git", + "sha256": "a4be5cdf917369a1b037084c5b0719812298899e667c92a61b6d61f967cec695", + "rev": "47e92a1a7738738164d7657ee324bc382a383985" + }, + "recipe": { + "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150702.1137", + "deps": [ + "dash", + "flx-ido", + "popup", + "scala-mode2" + ] + }, + "http-twiddle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hassy/http-twiddle.git", + "sha256": "c294a23e60fa805b620b2c387b9b8a0d61ec5850a7102a389d98700d5dc11101", + "rev": "bbf025b0f57068fe0fb3f1fbc2f6fd7bf0d65992" + }, + "recipe": { + "sha256": "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151121.744", + "deps": [] + }, + "vagrant-tramp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dougm/vagrant-tramp.git", + "sha256": "fe39cc7502b30ba978710c8b2097382f7c6d1cac959305cf20604e1d561cb81c", + "rev": "dc9202c1420d5d6eaf0efde4a9b548248ce42d33" + }, + "recipe": { + "sha256": "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.1723", + "deps": [ + "dash" + ] + }, + "typing-game": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/lujun9972/el-typing-game.git", + "sha256": "88a077585cb992f85dc39e412e99a24f963d97373f761b8764866a1ed98db744", + "rev": "b58c19a4a14895cc24ce01a73cf624b5c54a12b8" + }, + "recipe": { + "sha256": "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.940", + "deps": [] + }, + "symon": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/symon.git", + "sha256": "78caec6e78442cc413d1019b7c2e1f8c2f920e330dcade16906b01f7363260d5", + "rev": "48dfbd86981e709ebcf055832bb48a7f212ac842" + }, + "recipe": { + "sha256": "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.300", + "deps": [] + }, + "edbi-django": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/proofit404/edbi-django.git", + "sha256": "58c12575d394b5cfa5e0bc4d559ac18625ea531a41f4706159253cd4b1b0916d", + "rev": "9cdf6d7a45402d41551c1e17edd7a29a8520f102" + }, + "recipe": { + "sha256": "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150115.1301", + "deps": [ + "edbi", + "emacs", + "f" + ] + }, + "smart-tabs-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jcsalomon/smarttabs.git", + "sha256": "cb4c5eb94abc6d2b7737c459f71e8d780669fe9df399185adbef29b44e86c5e8", + "rev": "cd19892677ec9a2c378c828aa7cef9a2b2bd1c0e" + }, + "recipe": { + "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140331.1829", + "deps": [] + }, + "amd-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/amd-mode.el.git", + "sha256": "317fd55a4e4ea25811e188b5a7584f6b41e9160d55278453a5a602c356cd5cab", + "rev": "17eefc009e26769fa0e81936bcbea9d9ea42954f" + }, + "recipe": { + "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.318", + "deps": [ + "dash", + "f", + "js2-mode", + "js2-refactor", + "makey", + "projectile", + "s" + ] + }, + "lua-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/immerrr/lua-mode.git", + "sha256": "986d196c800b9b677ca410032e1589c1a328a51235d07de07a4e307582b0c6b7", + "rev": "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45" + }, + "recipe": { + "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.730", + "deps": [] + }, + "ace-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abo-abo/ace-window.git", + "sha256": "8ae8f85b0a8e43d141226ee77d862e13aef6637d4e863cbf5023dbe825396014", + "rev": "f6653fb5d8bfe8d7bcad94fc72ca9561e28180f0" + }, + "recipe": { + "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150803.1037", + "deps": [ + "avy" + ] + }, + "origami": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gregsexton/origami.el.git", + "sha256": "88781a830861e18a35b9ed7d804d98cc1e4b5796782039cfd928f78c34a0a35c", + "rev": "56140b4d3f9f2694ab1e8869972a19bd7f3e12e1" + }, + "recipe": { + "sha256": "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150822.650", + "deps": [ + "dash", + "emacs", + "s" + ] + }, + "ace-popup-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/ace-popup-menu.git", + "sha256": "35dc81c6d33012dd595ab24c0c192c95b18536589a64105065b2bf40b1e1c50c", + "rev": "92cac2f656b5000d2f267ffaa92a275f40a2719d" + }, + "recipe": { + "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150910.727", + "deps": [ + "avy", + "cl-lib", + "emacs" + ] + }, + "zoom-window": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-zoom-window.git", + "sha256": "df810d2e922e7e00ba9858c25f28b93148f9c7ae891fa5ece914de8c284c12b0", + "rev": "45ae8d0f47af351d73daeb6cecc366ea7eb49a88" + }, + "recipe": { + "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.2305", + "deps": [] + }, + "shell-current-directory": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/metaperl/shell-current-directory.git", + "sha256": "2c7ac90b90b4821c45a2a1fd26530cc7a5587ee403cb1e7ecc20b7d6589182f0", + "rev": "bf843771bf9a4aa05e054ade799eb8862f3be89a" + }, + "recipe": { + "sha256": "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140101.1754", + "deps": [] + }, + "ghc-imported-from": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/ghc-imported-from-el.git", + "sha256": "321a56135157ba7c6f969d8b32255de291b5022180a68ae16e51a25761e2b0d8", + "rev": "fcff08628a19f5d26151564659218cc677779b79" + }, + "recipe": { + "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141124.1332", + "deps": [ + "emacs" + ] + }, + "elhome": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/demyanrogozhin/elhome.git", + "sha256": "13e42ace869b8f48ed169931d7b733176b10cc3cb37b249148dec850fe7f3ce4", + "rev": "af112592fbc41a625d1d17828db78357df23c127" + }, + "recipe": { + "sha256": "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131202.1308", + "deps": [ + "initsplit" + ] + }, + "company-emoji": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dunn/company-emoji.git", + "sha256": "a2cd0076231cf80a7ee8b360355079bb639e531132212ae35161be5acfc1f523", + "rev": "c3665bf150c43a1c9830e817cf6de950be8c0fde" + }, + "recipe": { + "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.20", + "deps": [ + "cl-lib", + "company" + ] + }, + "stickyfunc-enhance": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tuhdo/semantic-stickyfunc-enhance.git", + "sha256": "0ff8489cbae9d6f61e08686d6e03fc3f5ff9be24ed76c2395d40485bb296bd99", + "rev": "13bdba51fcd83ccbc3267959d23afc94d458dcb0" + }, + "recipe": { + "sha256": "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150429.1314", + "deps": [ + "emacs" + ] + }, + "pylint": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/logilab/pylint", + "sha256": "0rgik6478hbvnjdvhyfvp0kz4g80jig1cbvxaqp3amc4nhxqbcpb", + "rev": "467e659fd2eb" + }, + "recipe": { + "sha256": "1y8xz04spn7a4fjnfv82hamk1mrc3a1iilf5nrl40nlg2xgp1h63", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150123.1800", + "deps": [] + }, + "org-password-manager": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leafac/org-password-manager.git", + "sha256": "88dde057c1117f56f9dd07a5212d9a7ddc7b19406d24b59dbb649b92fd3a4b6c", + "rev": "b13f63aa4efca47e92cfe52865e99f230851fa03" + }, + "recipe": { + "sha256": "1l3h0qhv0ad9l933d47as8y3h9x94zw315ax4qsgiw3046nzkdwv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150729.1715", + "deps": [ + "org", + "s" + ] + }, + "graphene-meta-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/graphene-meta-theme.git", + "sha256": "274caee80b5b99b32b4305c43ad093670a4a5e01ce3705a96f66d1d289752dae", + "rev": "5d848233ac91c1e3560160a4eba60944f5837d35" + }, + "recipe": { + "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.400", + "deps": [] + }, + "e2wm-term": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-term.git", + "sha256": "fc4b601344d34c3e5b6cddca3b9b49d78df814ea4574d4b47bfbe0810d9c6363", + "rev": "65b5ac88043d5c4048920a048f3599904ca55981" + }, + "recipe": { + "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141009.808", + "deps": [ + "e2wm", + "log4e", + "yaxception" + ] + }, + "files+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/files+.el", + "sha256": "04bz0fb7g5516hwwzl01mp6s2mv9vigibv3965amajyvm8qm269f" + }, + "recipe": { + "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.2104", + "deps": [] + }, + "tracwiki-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/merickson/tracwiki-mode.git", + "sha256": "aecc7be6814b922522a26f6f4ac5c35b23b778fc9a65b909049038e769a045d4", + "rev": "6a620444d59b438f42383b48cd4c19c03105dba6" + }, + "recipe": { + "sha256": "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150119.1021", + "deps": [ + "xml-rpc" + ] + }, + "x86-lookup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/skeeto/x86-lookup.git", + "sha256": "18caaa766347837d28de5476e6a7507909f9047ed54038f904ec8154dc0e2d8e", + "rev": "cac42bd9f27bff92e0b1cf6fb20563061885239f" + }, + "recipe": { + "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.732", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "badwolf-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/bkruczyk/badwolf-emacs.git", + "sha256": "d4dd31f75fa18e39763fd8bd0c3682a6f6146cf69e9eeb95054e984db16f9381", + "rev": "0164a0fb69fa9f82589eb45acbd402a43300c88d" + }, + "recipe": { + "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1429", + "deps": [ + "emacs" + ] + }, + "cursor-test": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ainame/cursor-test.el.git", + "sha256": "34916c1ad9f5836377893fd8ca77a9aff36e5c6f9ea89f78a0cc49b27f84b672", + "rev": "e09956e048b88fd2ee8dd90b5678baed8b04d31b" + }, + "recipe": { + "sha256": "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131207.1132", + "deps": [ + "emacs" + ] + }, + "sunshine": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aaronbieber/sunshine.el.git", + "sha256": "945a75ef40851184916dbf3456d3d559b614855da3aae7c73ebc5fe539dc71f4", + "rev": "8783923f0aa4b835b90359443b941b10758c28d7" + }, + "recipe": { + "sha256": "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.814", + "deps": [ + "cl-lib" + ] + }, + "smart-mark": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cheunghy/smart-mark.git", + "sha256": "0f3a45c6efc6ff7b824e4566d5208e2f8623b9f993b4c8dd2960cac6e3a91b6b", + "rev": "04b522a23e3aae8381c6a976fc978532fcb2e7d0" + }, + "recipe": { + "sha256": "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150911.2110", + "deps": [] + }, + "region-bindings-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgallina/region-bindings-mode.git", + "sha256": "fe13e5656aca50c9c7966ea7dc0ce2857ae9a631938560783fd9366fd8886e0a", + "rev": "3fa5dbdbd7c000bebff6d9d14a4be326ec24b6fc" + }, + "recipe": { + "sha256": "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140407.1714", + "deps": [] + }, + "rspec-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pezra/rspec-mode.git", + "sha256": "aa6b1ffd7579260d8bf40d08788cb5c93668e444b2cfe343399c710a82ffc50e", + "rev": "7b0a900d4b525abc683de5900efd484f4a44f063" + }, + "recipe": { + "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151003.515", + "deps": [ + "cl-lib", + "ruby-mode" + ] + }, + "mb-url": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dochang/mb-url.git", + "sha256": "664b387cd5a270522e09e329a2c767c335f22cd27e7c93d0bb063a39e1b38400", + "rev": "e1d9af92f8f3c4fc96760558ee1a4df7bbbc537c" + }, + "recipe": { + "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151210.1216", + "deps": [ + "cl-lib" + ] + }, + "shell-toggle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/shell-toggle.el.git", + "sha256": "29bf2bb7c627ef67940397f86355a495bbf75047197e6c93927729a61a634a6b", + "rev": "0d01bd9a780fdb7fe6609c552523f4498649a3b9" + }, + "recipe": { + "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150226.811", + "deps": [] + }, + "idomenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/birkenfeld/idomenu.git", + "sha256": "7344f4bb7b747877a21ac3ebaeccafa759fea0a69ccac205cc31eb47614cf0d6", + "rev": "4b0152d606360c70204fb4c27f68de79ca885386" + }, + "recipe": { + "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141123.1520", + "deps": [] + }, + "unicode-troll-stopper": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/camsaul/emacs-unicode-troll-stopper.git", + "sha256": "51197d3b0f4eb46b73bd41678a0fac1ed8a2b0e8eeba8a2559fe400aaa6cbcf6", + "rev": "14e3430c1fe6c351eda23f874bc4a2b0ee5c5de9" + }, + "recipe": { + "sha256": "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151023.2031", + "deps": [] + }, + "ein-mumamo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/millejoh/ein-mumamo.git", + "sha256": "b48745dd493598d76094bef497d764abbd9c6a8aea0fdfb6df722f2cb403371c", + "rev": "028fefec499598add1a87b92ed991891f38f0c7b" + }, + "recipe": { + "sha256": "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150301.1828", + "deps": [ + "ein" + ] + }, + "omni-quotes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/AdrieanKhisbe/omni-quotes.el.git", + "sha256": "9887e844a4d67ae13f074407cbf2017635640f3ea700eafcf9e11a37767246ed", + "rev": "537f7191bede7156dae94622e92cec04c6cd4bdf" + }, + "recipe": { + "sha256": "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150604.1257", + "deps": [ + "dash", + "omni-log" + ] + }, + "helm-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-dictionary.git", + "sha256": "c8f07faee3e507cba65395613eb650fa4391dabd61949c38807f9e4ed63cab16", + "rev": "2aeafba1556c76cc5ff949ca50f341fc2aa687b0" + }, + "recipe": { + "sha256": "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141226.1336", + "deps": [ + "helm" + ] + }, + "auto-complete-clang": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/brianjcj/auto-complete-clang.git", + "sha256": "21d6a3404563cb1b0c3fc292d361367417af23e5c50949827f84cad50f71c68b", + "rev": "a195db1d0593b4fb97efe50885e12aa6764d998c" + }, + "recipe": { + "sha256": "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140409.252", + "deps": [ + "auto-complete" + ] + }, + "ob-prolog": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ljos/ob-prolog.git", + "sha256": "36946686ea4f411b6f136c18a93d3eea551e32d0237f104589b1d21c745b4c93", + "rev": "548986d0e6f678789216a882f0a19daf1b89ab93" + }, + "recipe": { + "sha256": "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150530.1137", + "deps": [] + }, + "goto-gem": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/pidu/goto-gem.git", + "sha256": "29bd83767742bef804819fbe8e4aedc4ee6aae3d9c711a5103d545ed706f5048", + "rev": "e3206f11f48bb7e798514a4ca2c2f60649613e5e" + }, + "recipe": { + "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140729.1345", + "deps": [ + "s" + ] + }, + "minibuffer-cua": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/minibuffer-cua.el.git", + "sha256": "7f7b4f9c5c52e4b89207cc3f5ae1b680825ba93ccc3efb44840e92fccd793304", + "rev": "adc4979a64f8b36e05960e9afa0746dfa9e2e4c7" + }, + "recipe": { + "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130906.634", + "deps": [] + }, + "clang-format": { + "fetch": { + "tag": "fetchsvn", + "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format", + "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr", + "rev": "255503" + }, + "recipe": { + "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.638", + "deps": [ + "cl-lib" + ] + }, + "autotest": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenspider/elisp.git", + "sha256": "36b9fbc06db84522223509ec5732ec87bf5f62ed24520f42a9ca595fb4a03181", + "rev": "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36" + }, + "recipe": { + "sha256": "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150130.425", + "deps": [] + }, + "yagist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/yagist.el.git", + "sha256": "c46ab90d8e605cbd1f8fcf2e9a4d76fcc1ea125ee6a27bd119ec56e3cff81c6b", + "rev": "ab19ce3607873a6c523f87fffd653a1e7fbb66c2" + }, + "recipe": { + "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150425.751", + "deps": [ + "cl-lib" + ] + }, + "magma-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ThibautVerron/magma-mode.git", + "sha256": "12cde4cead2c2e6d0f49727d9f19d4c51e620fd29c0d75a1defb8947506e8c2a", + "rev": "b6ccdeb774348ef3e87cc877de9fc90405872760" + }, + "recipe": { + "sha256": "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150923.340", + "deps": [ + "cl-lib", + "dash", + "f" + ] + }, + "maxframe": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rmm5t/maxframe.el.git", + "sha256": "e1377985a896a32a12aac6635c675ebe8b9226c28948a86daf7608639ebe333d", + "rev": "174e3a0f3a716e904eba15e659096a99976ee39a" + }, + "recipe": { + "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140916.954", + "deps": [] + }, + "company-irony": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sarcasm/company-irony.git", + "sha256": "d46d28c5f55569223f0486b5c0fa8c5cdbf9f1fb78c273029952f0343b4f2a78", + "rev": "09f16eade551201548455285a2d977a0889761da" + }, + "recipe": { + "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150810.439", + "deps": [ + "cl-lib", + "company", + "emacs", + "irony" + ] + }, + "dactyl-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/luxbock/dactyl-mode.git", + "sha256": "b519c4dcf0fa9292bfac863c66c7457a9beb077efdae5d304e0cb2aa3c03e43a", + "rev": "cc55fe6b987271d9647492b8df4c812d884f661f" + }, + "recipe": { + "sha256": "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140906.1225", + "deps": [] + }, + "easy-kill": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoliu/easy-kill.git", + "sha256": "075b6543fa291efc7b3fa77c507b9018546458a6c5fabcf5e85751a5f6a25744", + "rev": "e2b667f651a3531164d24ea4cbcd8c34fba0e17f" + }, + "recipe": { + "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151031.29", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "dired-imenu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/DamienCassou/dired-imenu.git", + "sha256": "580f918fcfb2580be25b9313f07ddaa2d114343b3c12f018d7b57fde81b956c9", + "rev": "610e21fe0988c85931d34894d3eee2442c79ab0a" + }, + "recipe": { + "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140109.1010", + "deps": [] + }, + "soft-morning-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mswift42/soft-morning-theme.git", + "sha256": "ae8b6d0cab0f784f56235ecd626a7accc3fe76cfd264f0b0b67f370bc316081b", + "rev": "c0f9c70c97ef2be2a093cf839c4bfe27740a111c" + }, + "recipe": { + "sha256": "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150918.1541", + "deps": [] + }, + "escreen": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/escreen.git", + "sha256": "ac3af5e4feec05dbad3c96f07ad002a06f39a987de1199efa5f92eb98140a745", + "rev": "e3fd46225fec70943024d950c6b6c2eb88e00b96" + }, + "recipe": { + "sha256": "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091203.1213", + "deps": [] + }, + "nix-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NixOS/nix.git", + "sha256": "6ad776f3dfe3589aec1ac465facb9cc4e293f77ab9d029b57b052dad85882b4d", + "rev": "32ea8a98986b3f6629628ab2c0f395fef38bcbaa" + }, + "recipe": { + "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151026.515", + "deps": [] + }, + "angular-snippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/angular-snippets.el.git", + "sha256": "36bbc6861cbc9d8c42bb95a116843324ccd6d48819797a9b93fdd721860ab541", + "rev": "af5ae0a4a8603b040446c28afcf6ca01a8b4bd7b" + }, + "recipe": { + "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140514.23", + "deps": [ + "dash", + "s" + ] + }, + "helm-rubygems-local": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/f-kubotar/helm-rubygems-local.git", + "sha256": "6d00ab846ea88997eb3e3c9567fef35ee20467e045a33f5f513f65be5d589068", + "rev": "289cb33d41c703af9791d6da46b55f070013c2e3" + }, + "recipe": { + "sha256": "18p18bly15a8xjc34k11jbvxlmr127sll0vh5ma2p787x6a3mc7c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130711.2011", + "deps": [ + "helm" + ] + }, + "emacsagist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/echosa/emacsagist.git", + "sha256": "3782e44a49a577a414d3e0e5de7832ab665754e074193100fa37f9592aeeb3c0", + "rev": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83" + }, + "recipe": { + "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140331.1330", + "deps": [ + "cl-lib" + ] + }, + "yafolding": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenozeng/yafolding.el.git", + "sha256": "e7d32e200506a93b41bec4570a1b628a8951a1354fbd0be52a6f96b54f15452c", + "rev": "0dc48073f429112b51a888e8e9285739435d3c7f" + }, + "recipe": { + "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141202.2256", + "deps": [] + }, + "term-cmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/CallumCameron/term-cmd.git", + "sha256": "469b1b735724729abd7c94e20a56efbf599814e476f3bcb819dd4627c0196d88", + "rev": "fc2ae638409af99c4788563ef54847636f2e23e0" + }, + "recipe": { + "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141114.1514", + "deps": [] + }, + "shell-split-string": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/10sr/shell-split-string-el.git", + "sha256": "af10741767ef03d0732cec18e27b8f5c34e163f61a15ec00f8b71e4a628d5cff", + "rev": "4ad4caaea6b1c247df2f3171569d633c0d8fdefe" + }, + "recipe": { + "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.2236", + "deps": [] + }, + "evil-visual-mark-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/roman/evil-visual-mark-mode.git", + "sha256": "ffbdb57265ad39695ed4913e1f664b8978b596c7e3568121c3e163fd11c5951d", + "rev": "094ee37599492885ff3144918fcdd9b74dadaaa0" + }, + "recipe": { + "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150202.1200", + "deps": [ + "dash", + "evil" + ] + }, + "package+": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zenspider/package.git", + "sha256": "27c9894e816000b9d58a6c1677e6397832b0edd5d792889f9ee0613082ca60f7", + "rev": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b" + }, + "recipe": { + "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150319.1655", + "deps": [] + }, + "helm-itunes": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/daschwa/helm-itunes.git", + "sha256": "7372324be25d95b35ca71a09254a62985a02a95c4953e4a04f19d0bfa1769a9b", + "rev": "966de755a5aadbe02311a6cef77bd4790e84c263" + }, + "recipe": { + "sha256": "15z5lgh5x1ykz5p31i994fig8v05s7ckkgw6p9jifn11sn1a39nb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151013.148", + "deps": [ + "helm" + ] + }, + "xterm-frobs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacsmirror/xterm-frobs.git", + "sha256": "c3e9560263b20d9f7b5ce3845eaf473b8432dd7b7c16e6ff971b4bf9a870ba81", + "rev": "58fb0de21e4d1963d1398a38e1b803446fb41320" + }, + "recipe": { + "sha256": "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20091211.1755", + "deps": [] + }, + "faces+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/faces+.el", + "sha256": "0mgj7mdadc62wpav7z138jsjvbvkxg05h5z9kmjw8jl5x4m334lq" + }, + "recipe": { + "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1600", + "deps": [] + }, + "purple-haze-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jasonm23/emacs-purple-haze-theme.git", + "sha256": "6cb2268ab36551a50855a91b0321dad57fcf08eda5de18ef7fd7da3573e1be96", + "rev": "3e245cbef7cd09e6b3ee124963e372a04e9a6485" + }, + "recipe": { + "sha256": "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141014.2129", + "deps": [ + "emacs" + ] + }, + "dired-subtree": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150908.1233", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "rvm": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/senny/rvm.el.git", + "sha256": "0ec861813dfc9c9d9e8728d96254cf9fadf2c4668177e3d8d152b5bc82d0dc01", + "rev": "8e45a9bad8e317ff195f384dab14d3402497dc79" + }, + "recipe": { + "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150402.942", + "deps": [] + }, + "isgd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chmouel/isgd.el.git", + "sha256": "90a9804710de3eea82c9ed06f3c76d2e8116c9e8182821faf8a7365a29121d26", + "rev": "764306dadd5a9213799081a48aba22f7c75cca9a" + }, + "recipe": { + "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150414.436", + "deps": [] + }, + "redis": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-pe/redis.el.git", + "sha256": "79dc71c1464ddc25188e749564185b0e08c1d9a73d920b47fb081440d15e5b4c", + "rev": "2c33f3397bc14e7a8192867b55920492d4eead8c" + }, + "recipe": { + "sha256": "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150531.1448", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "swift-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisbarrett/swift-mode.git", + "sha256": "50348b785d1a2bb6093118c270cbcdbc4acc73af13fa317da63de53841518965", + "rev": "a5e1acf5826ccd489617f9255da0aab7e5e920ee" + }, + "recipe": { + "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151018.120", + "deps": [ + "emacs" + ] + }, + "logview": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/doublep/logview.git", + "sha256": "c79269973ed43c2ad6071a505925ca5ea543901fbbbb9c0f0e550a7cc7052a30", + "rev": "03b2f0fc325a557ccee0dbcb9226a1d733f21c84" + }, + "recipe": { + "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.1649", + "deps": [ + "emacs" + ] + }, + "facemenu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/facemenu+.el", + "sha256": "0b8all1l4v98iz1y4zbc0l9zxrdbgkljzahs2yrbl9md2qj3j91d" + }, + "recipe": { + "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150816.2153", + "deps": [] + }, + "sicp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/webframp/sicp-info.git", + "sha256": "d8b911128ef2dd87c13a6803af875d9284c1508ac8c7a04d40fe5c4d7ed45a80", + "rev": "7d060136bf4582fa74e4aa7cb924d856eea270f4" + }, + "recipe": { + "sha256": "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.957", + "deps": [] + }, + "dired-toggle": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fasheng/dired-toggle.git", + "sha256": "aa7687379baa0dfc1e6d609578b0e50f2309a2ed19626d27012b30680204a2fb", + "rev": "84efb9ec9c327e4da53cdb7cda5b51dcd0ede0e5" + }, + "recipe": { + "sha256": "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140907.1549", + "deps": [] + }, + "narrow-reindent": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emallson/narrow-reindent.el.git", + "sha256": "239069b6cbe9808b2c4c90b6f12cfd4583a6e7d409cb10eae25d61e5141f7718", + "rev": "87466aac4dbeb79597124dd077bf5c704872fd3d" + }, + "recipe": { + "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150722.1406", + "deps": [ + "emacs" + ] + }, + "xah-elisp-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xah-elisp-mode.git", + "sha256": "2b34fd930462c33997f0dc8f794d1acaaf74c3de0de063134657c66962e38640", + "rev": "003d1dbb1edd692fee317d1852bf6bf03662bdd3" + }, + "recipe": { + "sha256": "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151116.1612", + "deps": [] + }, + "epl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cask/epl.git", + "sha256": "5c82459f02af5caa0fd7ccf43ad34a6e7f770b60860ac2c94d0139ab70aecf24", + "rev": "a5ad061d0a5eb42f66c384e55d102da7d52c96b0" + }, + "recipe": { + "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150517.633", + "deps": [ + "cl-lib" + ] + }, + "control-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/stephendavidmarsh/control-mode.git", + "sha256": "1b14dfa5cd7cee3987ebac73df45785082eb7202e7089dad66acda3ea78e75b8", + "rev": "52c43d198f423eb00e5de6e44f2f3dd70893a6bc" + }, + "recipe": { + "sha256": "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140218.807", + "deps": [] + }, + "paradox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/paradox.git", + "sha256": "bbaf29868a8c1d89eda4117eaa051daf9f1fe71ae5c9708b28dd09c22f3c6a0c", + "rev": "6fd7161475ab3580f2113e569ef4df7431d0b1b5" + }, + "recipe": { + "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1517", + "deps": [ + "cl-lib", + "emacs", + "hydra", + "json", + "let-alist", + "seq", + "spinner" + ] + }, + "ix": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theanalyst/ix.el.git", + "sha256": "91b0dd70643ea5c8b55be57191586935618c5eca7c75be361c3a1abd13a42a19", + "rev": "aea4c54a5cc5a6f26637353c16a3a0e70fc76963" + }, + "recipe": { + "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131027.1129", + "deps": [ + "grapnel" + ] + }, + "dired-toggle-sudo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/renard/dired-toggle-sudo.git", + "sha256": "d177e94e36a68263fbbeacec179e963d593c85949386a831877111d46e31ae85", + "rev": "02449dbda4e168f99fe5352c9628df5d39e11483" + }, + "recipe": { + "sha256": "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.406", + "deps": [] + }, + "req-package": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/edvorg/req-package.git", + "sha256": "d8dbafa72e53435d5775130600c9c5cfb828db0af60b66aa080f21b517ec3e04", + "rev": "ad4cff69412abb3ecc1ebd15946943c0cab6529a" + }, + "recipe": { + "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151205.1042", + "deps": [ + "dash", + "ht", + "log4e", + "use-package" + ] + }, + "esh-buf-stack": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tom-tan/esh-buf-stack.git", + "sha256": "98d86975fea970134704b5025c89e96951e119018fa73e78c372939a284c13cd", + "rev": "ce0ea5aadca3150eaa9d2e6ec20296add4e99176" + }, + "recipe": { + "sha256": "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140107.418", + "deps": [] + }, + "tmmofl": { + "fetch": { + "tag": "fetchhg", + "url": "https://code.google.com/p/phillord-emacs-packages/", + "sha256": "0pq9x73hrp7qwhms7x3dvjfh9imapglba9yd7nkyw68mc0b9wlnl", + "rev": "e14e67d6a5b7" + }, + "recipe": { + "sha256": "1hqv2xqnhwnbj4sqcbdial4987yj1y3ry7niaaz2hh0f5qzrzwa8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121025.601", + "deps": [] + }, + "cmake-project": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/alamaison/emacs-cmake-project.git", + "sha256": "26f7fbcadc742239f1a08c0a1c1bb1e1dd7dbb373254ce2db41c20a63a8adf3b", + "rev": "5212063b6276f8b9af8b48b4052e5ec97721c08b" + }, + "recipe": { + "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150720.1559", + "deps": [] + }, + "matlab-mode": { + "fetch": { + "tag": "fetchcvs", + "url": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", + "module": "matlab-emacs", + "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" + }, + "recipe": { + "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141227.1244", + "deps": [] + }, + "org-time-budgets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/leoc/org-time-budgets.git", + "sha256": "ab3bce9909f05a88bde0c98cc267c9d74e8dad4586a836fcf77c6f50d29f4d11", + "rev": "baa1ce6333157fed3b3799a80e6cf8c73c9e2c18" + }, + "recipe": { + "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151111.201", + "deps": [ + "alert", + "cl-lib" + ] + }, + "fancy-narrow": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/fancy-narrow.git", + "sha256": "c518bbb9cb1f2e87cfc62ab6a4e28d3a93b96bd18d49473354ce4de806c0ddc4", + "rev": "5196dc6066d354883fa21090266b6cebccc9f6fd" + }, + "recipe": { + "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151021.533", + "deps": [] + }, + "rhtml-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/eschulte/rhtml.git", + "sha256": "6022f2fafba7ea161df78a7e6b36d84ea8f984501c9e5af95ad94c033a0f3887", + "rev": "a6d71b38a3db867ccf82999c99805db1a3a33c33" + }, + "recipe": { + "sha256": "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130422.811", + "deps": [] + }, + "insfactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/duelinmarkers/insfactor.el.git", + "branchName": "release", + "sha256": "3ea2c69120fcca67505df1137c4b5a70d02b1a16350a49b761f2a318011b5a84", + "rev": "7ef5446cebb08a17d4106d2e6f3c053e49e1e829" + }, + "recipe": { + "sha256": "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141116.1802", + "deps": [] + }, + "dirtree": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dirtree.el", + "sha256": "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx" + }, + "recipe": { + "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140129.232", + "deps": [ + "tree-mode", + "windata" + ] + }, + "osx-org-clock-menubar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jordonbiondo/osx-org-clock-menubar.git", + "sha256": "c4abd89b4057513ac1c3dd66d85ade17a65b9f1a028cf846522b65e956d7366e", + "rev": "9964d2a97cc2fb6570dc4116da44f73bd8eb7cb3" + }, + "recipe": { + "sha256": "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150205.1511", + "deps": [] + }, + "test-case-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ieure/test-case-mode.git", + "sha256": "e3d323a58036496d56fefcde74000e30fbba80b236b6071f2148e1d4f941ca88", + "rev": "6074df10ebc97ddfcc228c71c73db179e672dac3" + }, + "recipe": { + "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130525.934", + "deps": [ + "fringe-helper" + ] + }, + "take-off": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tburette/take-off.git", + "sha256": "6e331769369f81faf5659bea15c1a2e7d1ccc82ad29dbc2ed8971580caa2fc8f", + "rev": "aa9ea45566fc74febbb6ee9c409ecc4b59246215" + }, + "recipe": { + "sha256": "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140531.417", + "deps": [ + "emacs", + "web-server" + ] + }, + "fiplr": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/d11wtq/fiplr.git", + "sha256": "15ec6113e59c4c1ba22bd779c5b37f6f47432a21669730aa9c9a3890c96e1a6b", + "rev": "bb6b90ba3c558988c195048c4c40140b2ee17530" + }, + "recipe": { + "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140724.145", + "deps": [ + "cl-lib", + "grizzl" + ] + }, + "rainbow-blocks": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/istib/rainbow-blocks.git", + "sha256": "4e847677bcfeb865edc73399c7370d4c22a649f78584d5fa676f0f74f3b9dc66", + "rev": "8335993563aadd4290c5fa09dd7a6a81691b0690" + }, + "recipe": { + "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140306.1233", + "deps": [] + }, + "ucs-cmds": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ucs-cmds.el", + "sha256": "0s65g6rdrjn4ypdny68fjk58yddn921xkbl811izxyc3q6q2z0k4" + }, + "recipe": { + "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.1745", + "deps": [] + }, + "password-generator": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zargener/emacs-password-genarator.git", + "sha256": "1dc6ddeb2a24ab454906e6f358e547e63f508d1d1bde15bdba9c8490550084df", + "rev": "c8193d5e963bda0a2f8e51fd4a94dcf37c76f282" + }, + "recipe": { + "sha256": "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150222.1440", + "deps": [] + }, + "dot-mode": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dot-mode.el", + "sha256": "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk" + }, + "recipe": { + "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151029.855", + "deps": [] + }, + "ido-grid-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/larkery/ido-grid-mode.el.git", + "sha256": "43580916bdd11935e4c17470a2ec4b2cfc0be84a83135be755088e33bbfc3914", + "rev": "34a7412c30840c1131464781dddfb1602355766b" + }, + "recipe": { + "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151127.1135", + "deps": [ + "emacs" + ] + }, + "anything-prosjekt": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/prosjekt.git", + "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "rev": "a864a8be5842223043702395f311e3350c28e9db" + }, + "recipe": { + "sha256": "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140129.204", + "deps": [ + "anything", + "prosjekt" + ] + }, + "company-sourcekit": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/nathankot/company-sourcekit.git", + "sha256": "5ef13118b89257ac54da5dc9c45d76269a8bfdf2c8393684cadae9b7ea853c7b", + "rev": "5e1adf8d201fd94a942b40983415db1b28b6eef1" + }, + "recipe": { + "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.714", + "deps": [ + "company", + "dash", + "dash-functional", + "emacs", + "sourcekit" + ] + }, + "kaesar-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", + "sha256": "e94e51c8cbcf3b294ae5159bc75bd25dff59ba29927fca761f7f285458c6b516", + "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" + }, + "recipe": { + "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150220.505", + "deps": [ + "cl-lib", + "kaesar" + ] + }, + "e2wm-pkgex4pl": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/e2wm-pkgex4pl.git", + "sha256": "0dbc18c29f6cd1c0a43e9fd3c826360d4f7f6adc88de53493fd57a1efc7734ef", + "rev": "7ea994450727190c4f3cb46cb429ba41b692ecc0" + }, + "recipe": { + "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140525.547", + "deps": [ + "e2wm", + "plsense-direx" + ] + }, + "org-linkany": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/org-linkany.git", + "sha256": "77d478ac162504ad503a7c10d89979057e57d7f4a16c73b8321f4426d0f9efad", + "rev": "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2" + }, + "recipe": { + "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140314.1308", + "deps": [ + "log4e", + "yaxception" + ] + }, + "scheme-complete": { + "fetch": { + "tag": "fetchhg", + "url": "http://code.google.com/p/scheme-complete/", + "sha256": "13pym1kwi8ah3h2l557pvbg4lgpp5lhldj3qxyg7gyvgkwr91a7g", + "rev": "e2ec67dfb1ff" + }, + "recipe": { + "sha256": "1nam7xzw8hrykz73q9x24szpjv2kpkp48lcmzf02kzj3cg6l76qm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130220.603", + "deps": [] + }, + "zen-and-art-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/developernotes/zen-and-art-theme.git", + "sha256": "d4de7c40505d3b955c09ec7b77e3fbf112baf0a9cdbf0a24293391c235ecca36", + "rev": "a7226cbce0bca2501d69a620cb2aeabfc396c232" + }, + "recipe": { + "sha256": "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120622.937", + "deps": [] + }, + "modtime-skip-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jordonbiondo/modtime-skip-mode.git", + "sha256": "b49c63a72802504c67a535082204604d7bdbab8b1b52506246bd8ace59202866", + "rev": "c0e49523aa26b2263a8693691ac775988015f592" + }, + "recipe": { + "sha256": "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140128.1601", + "deps": [] + }, + "autumn-light-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aalpern/emacs-color-theme-autumn-light.git", + "sha256": "c6a5d2132f58c614b429868547cb90e514477b7fdf938e975032aa4164ac4a7a", + "rev": "1e3b2a43a3001e4a97a5ff073ba3f0d2ea3888f9" + }, + "recipe": { + "sha256": "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150515.947", + "deps": [] + }, + "powershell": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jschaf/powershell.el.git", + "sha256": "e2e60483f0e4fb1bed2b0625b896efd79bf1e9795573fd777a47762f6906f0b5", + "rev": "7316f44d0b528552f5a0692f778e5f0efd964299" + }, + "recipe": { + "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150428.1621", + "deps": [] + }, + "underwater-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jmdeldin/underwater-theme.el.git", + "sha256": "6adf3eedc58ae859a866578f37074e4283691afd03671e4f399a0abecbbefdfa", + "rev": "4eb9ef014f580adc135d91d1cd68d37a310640b6" + }, + "recipe": { + "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131117.1802", + "deps": [] + }, + "column-marker": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/column-marker.el", + "sha256": "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9" + }, + "recipe": { + "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20121128.243", + "deps": [] + }, + "magit-popup": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magit/magit.git", + "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", + "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + }, + "recipe": { + "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151214.705", + "deps": [ + "async", + "dash", + "emacs" + ] + }, + "rotate": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/daic-h/emacs-rotate.git", + "sha256": "99eda2ebe96d05a2714d4b213262fb1b31c31fc4bf40a4a2892ae4aa43bab4cc", + "rev": "04b64c6e20c465102ecafe0e099986b0808582bf" + }, + "recipe": { + "sha256": "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140123.316", + "deps": [] + }, + "bbdb-vcard": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tohojo/bbdb-vcard.git", + "sha256": "fde87c10a589d999d9dc66a3e28e5a52941fc6c9cb8cbeacea1d3336e399cd2a", + "rev": "c3aafd4160854a38fd92afcdade32b9a13abe82c" + }, + "recipe": { + "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150713.1550", + "deps": [ + "bbdb" + ] + }, + "package-build": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/milkypostman/melpa.git", + "sha256": "3a92f4c5e4608abb563033d1fb0dbc336592875a8a9c1d159be7c3271b527923", + "rev": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "recipe": { + "sha256": "1m245q81c2jifgqxwd2fi35jrcbf6v9a1a5zy815861avq3fg9g0", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151211.1644", + "deps": [ + "cl-lib" + ] + }, + "lusty-explorer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sjbach/lusty-emacs.git", + "sha256": "0a07a3a62e118cadf37d6dbc75e7302713cb2f34363d6240229530df80753de4", + "rev": "a6e78cafc193050a493d16d07eae107a2436c293" + }, + "recipe": { + "sha256": "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150508.1757", + "deps": [] + }, + "helm-hayoo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/markus1189/helm-hayoo.git", + "sha256": "2bc02b76bb4ef37d5734d26829d48681b6ffa17ccd7e9a984d4c27f2b01314e0", + "rev": "dd4c0c8c87521026edf1b808c4de01fa19b7c693" + }, + "recipe": { + "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151014.151", + "deps": [ + "haskell-mode", + "helm", + "json" + ] + }, + "dpaste_de": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/theju/dpaste_de.el.git", + "sha256": "6c23c7fe2d681ab0c58aae1cbc199667bc70355140a817e0e01a11bf39d03ace", + "rev": "f0c39e8864299f735642f7d9fa490689398ce39d" + }, + "recipe": { + "sha256": "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131015.725", + "deps": [ + "web" + ] + }, + "evil-terminal-cursor-changer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/7696122/evil-terminal-cursor-changer.git", + "sha256": "2bf055f52d6af6cd13e445ba45ba0d152894d64804e7d8f316b7aecbc998544c", + "rev": "2735a11a2a0c8d327b730cefef2794834263c413" + }, + "recipe": { + "sha256": "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150827.2151", + "deps": [ + "evil" + ] + }, + "igrep": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/igrep.el", + "sha256": "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29" + }, + "recipe": { + "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.707", + "deps": [] + }, + "bdo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/chrisdone/bdo.git", + "sha256": "7cf67bea9079fea3b102872965375976e808c8bb2af0fd727673a972fb40851f", + "rev": "c96cb6aa9e97fa3491185c50dee0f77a13241010" + }, + "recipe": { + "sha256": "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140126.301", + "deps": [] + }, + "gnome-calendar": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/gnome-calendar.el.git", + "sha256": "cc5a30c42299dece6663f9ca37384fefeeb2e0f40c5d51d6f3f079e03aaa1898", + "rev": "58c3a3c32aff9901c679bdf9091ed934897b84a0" + }, + "recipe": { + "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140112.559", + "deps": [] + }, + "linum-off": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mattfidler/linum-off.git", + "sha256": "e589b4f5e9a51c296eb6376e5800c22e256ef17d1b7f0ff3a65358654f251374", + "rev": "e16826e9a4cfe104d55884dc3cc4b4b1ced364ca" + }, + "recipe": { + "sha256": "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130419.2254", + "deps": [] + }, + "multi-project": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/ellisvelo/multi-project", + "sha256": "0lcx73vzm7zwvzzc53pfb5y16bhvq9cm9fdy63d3242s8v834z3c", + "rev": "f7fd0ae6819e" + }, + "recipe": { + "sha256": "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150314.944", + "deps": [] + }, + "diredful": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thamer/diredful.git", + "sha256": "178406bf35315ce545d5c084e719d1e2a4bdc25a9f6973565d6e20ea0ddea7e7", + "rev": "e814fa3ffc7ec7b2455112c3d98e905674a6006b" + }, + "recipe": { + "sha256": "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151118.1500", + "deps": [] + }, + "evil-org": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/edwtjo/evil-org-mode.git", + "sha256": "a36027bdd6d607504606b03a85425f17c5db6e3623de84872b97adde873a395e", + "rev": "61319f85979e8768c930983595caa2483c0fb319" + }, + "recipe": { + "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151203.147", + "deps": [ + "evil", + "evil-leader", + "org" + ] + }, + "modalka": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/modalka.git", + "sha256": "bd4cb2466fc44710001ec63b450740a08f44b65005670f6d0d6a3344cb42b73d", + "rev": "67e08b9d315cfa6a2ca3b3dc3954214c68a90cf5" + }, + "recipe": { + "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150924.1111", + "deps": [ + "emacs" + ] + }, + "ac-sly": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/qoocku/ac-sly.git", + "sha256": "6d67693837c7df45073729de7054f8459482b78f5049c55386d66e3657565af6", + "rev": "b37a1ecfaab10a6d81c6d894417176d3bb4c5285" + }, + "recipe": { + "sha256": "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150421.1522", + "deps": [ + "auto-complete", + "cl-lib", + "sly" + ] + }, + "subshell-proc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/andrewmains12/subshell-proc.git", + "sha256": "e4b57a3e60c3c228eccfc0b3ac7abdc6ef275f0fcd9b9d0c91cafd2c91a83f26", + "rev": "d18b20e03fc89ee08e8c6a968aba31a16b53287f" + }, + "recipe": { + "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130122.1522", + "deps": [] + }, + "highlight-thing": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fgeller/highlight-thing.el.git", + "sha256": "99b7db9cef314e4276b0228fb71757e07dc0985b1bc7c85abb0cea3c5b019d05", + "rev": "eaf817d61d13fc97142996211222f8d54b48d3aa" + }, + "recipe": { + "sha256": "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151001.221", + "deps": [] + }, + "helm-bibtex": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tmalsburg/helm-bibtex.git", + "sha256": "91374e29f763a83ea8af82edc45a440a79797bd8abc1f3f021b2489e14246cdb", + "rev": "bfcd5064dcc7c0ac62c46985832b2a73082f96e0" + }, + "recipe": { + "sha256": "1rsplnh18w1fqr6da79vj8x9q2lyss9sssy8pfz3hfw7p6qi6zkg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151125.1758", + "deps": [ + "cl-lib", + "dash", + "f", + "helm", + "parsebib", + "s" + ] + }, + "ssh-config-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jhgorrell/ssh-config-mode-el.git", + "sha256": "66b94bf558dac42c9f452826676a457a3614c47d6e8e467894ba178c23cedaec", + "rev": "3d194c772d428144acd84c85be560ca96fb323ba" + }, + "recipe": { + "sha256": "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141219.1046", + "deps": [] + }, + "imenu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/imenu+.el", + "sha256": "16f2a6jgwgczsaps55pnnyi38mw5z3fn4abybyr7hn0kf5xqip6q" + }, + "recipe": { + "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150104.1748", + "deps": [] + }, + "phi-search-mc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/knu/phi-search-mc.el.git", + "sha256": "5b2fb5c9bc162e7d036b37c6161281e85670a39a547a5dbce64607f26ca0cc64", + "rev": "4c6d2d39feb502febb81fc98b7b5854d88150c69" + }, + "recipe": { + "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150218.55", + "deps": [ + "multiple-cursors", + "phi-search" + ] + }, + "phi-search-dired": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/phi-search-dired.git", + "sha256": "d609c5b2e8597bde7a32055c7fc9fd4bc120aa333ff7ee04c184330b0f4984ac", + "rev": "162a5e4507c72512affae22744bb606a906d4193" + }, + "recipe": { + "sha256": "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150405.214", + "deps": [ + "phi-search" + ] + }, + "rcirc-color": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kensanata/rcirc-color.git", + "sha256": "27911c6fc04d5da732943e32dacbb71a0d9718833bbe2acf4cd7f1864884749c", + "rev": "a94c7811e6ab578a138eb582f7ce31d3568b5c4d" + }, + "recipe": { + "sha256": "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151130.958", + "deps": [] + }, + "bury-successful-compilation": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/EricCrosson/bury-successful-compilation.git", + "sha256": "925c14e42c19c58903b654662a08cad84dd06542ff1f59fe49d2fb15e5a5f1af", + "rev": "0c05c006ab5d0a7262701d003aed5cf5fc9dd621" + }, + "recipe": { + "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150328.1928", + "deps": [] + }, + "html-to-markdown": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Malabarba/html-to-markdown.git", + "sha256": "f1a1a85e77bda03a54ebaa20136d2943d6043fe7bb6c07d0b3c8d21d53fdc326", + "rev": "60c5498c801be186478cf7c05be05b4430c4a144" + }, + "recipe": { + "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151105.240", + "deps": [ + "cl-lib" + ] + }, + "emacsshot": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/marcowahl/emacsshot.git", + "sha256": "2bf9d03dfe6e5d93d5f33c98eaf84b7f73d39fcdecd1b9de2cb0450384ecc44a", + "rev": "8615aa841a37c20f8cc0f0efdc89c8d79acbb84b" + }, + "recipe": { + "sha256": "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150516.1633", + "deps": [] + }, + "folding": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/jaalto/project-emacs--folding-mode.git", + "sha256": "de1a7073e89b83fa7507a2702baff4c321078888900ec6d27d03bf20bf9f4dfc", + "rev": "f738e28cd90d794aff698bcd44bf4f5027c92839" + }, + "recipe": { + "sha256": "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140401.203", + "deps": [] + }, + "srefactor": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tuhdo/semantic-refactor.git", + "sha256": "eb4007d738fefbd52c1f5f80e55f2e7a4970ef008cce0ead03e6a7e36328b7d8", + "rev": "e0482b08425894431fa67109615d4f0c971471c8" + }, + "recipe": { + "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151202.2204", + "deps": [ + "emacs" + ] + }, + "dired-avfs": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Fuco1/dired-hacks.git", + "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141203.932", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "dircmp": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/matthewlmcclure/dircmp-mode.git", + "sha256": "6d28ddbecb95a498e13347fe12f6235df6f860a2fa222bf93130371caefe8921", + "rev": "558ee0b601c2de9d247612085aafe2926f56a09f" + }, + "recipe": { + "sha256": "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141204.1156", + "deps": [] + }, + "kanban": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/ArneBab/kanban.el", + "sha256": "14g0f51jig8b1y6zfaw7b1cp692lddqzkc0ngf4y89sw9gbmsh3w", + "rev": "54d855426372" + }, + "recipe": { + "sha256": "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150930.1117", + "deps": [] + }, + "wacspace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/shosti/wacspace.el.git", + "sha256": "de0f12cf4931c77b520f4ed8e8a1574906662975cfee4cacbd5eb3469d75e952", + "rev": "4a11168d58c9c129cfcd04a1c9581962565eca4a" + }, + "recipe": { + "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140827.32", + "deps": [ + "cl-lib", + "dash" + ] + }, + "helm-pages": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/david-christiansen/helm-pages.git", + "sha256": "747b16bd0267db2b368778ffc81c24f1013320902f811648779a33b1e740844a", + "rev": "60f52edb11e54f553251234f4d336c0947ca0a2b" + }, + "recipe": { + "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.1400", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "php-auto-yasnippets": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ejmr/php-auto-yasnippets.git", + "sha256": "a07ec2ad1a349ae81816288f2dfe1929b884eb811d6dfedc6bdc669ed4ccc4d0", + "rev": "7da250a0d40f3ec44c7249997436ee8c5cae04ef" + }, + "recipe": { + "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141128.1611", + "deps": [ + "php-mode", + "yasnippet" + ] + }, + "summarye": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/summarye.el", + "sha256": "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py" + }, + "recipe": { + "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130328.527", + "deps": [] + }, + "helm-ls-git": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/emacs-helm/helm-ls-git.git", + "sha256": "85e33236e83fe8ec839e1f61d068e35567bfd0b499669c65f03a7e2701d6cb4e", + "rev": "8cddd84ee4361b9d21f800adbaeeacf72645ab62" + }, + "recipe": { + "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151101.56", + "deps": [ + "helm" + ] + }, + "hl-todo": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tarsius/hl-todo.git", + "sha256": "6db370f442de1c8f5174ad5c120c5d1d6d48ed29d2613245e2f2ba352ddf8c53", + "rev": "4a5958b90d35c0ba368778274c2a3ab9df941d1c" + }, + "recipe": { + "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151025.1420", + "deps": [] + }, + "cython-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/cython/cython.git", + "sha256": "aa480da59924dc12732c8dfdf18bec567450e3e8df32904fc305596f067c23ee", + "rev": "0c62e665c02b438be331e445bbde2f1c6bd9dff0" + }, + "recipe": { + "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140705.1429", + "deps": [] + }, + "google": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/steckerhalter/google-el.git", + "sha256": "51685fee9007cd823ca652906aeb7c5927873026809d179c6b909e57ed6de11a", + "rev": "1ec11138bdd237e668ced1470c54f740e6c629a4" + }, + "recipe": { + "sha256": "15z8l3adw8il0simk8phjgksh0v88cffb6gg3hv8a7nf5bla43my", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140330.1056", + "deps": [] + }, + "midje-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/dnaumov/midje-mode.git", + "sha256": "efe687a8f178b9a85b9d7789fdee209c48c31d9262a2c1814121ae0941d62fb2", + "rev": "07fc6cee4f5d6aa4187636266b9681a3e455ab6b" + }, + "recipe": { + "sha256": "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150921.1950", + "deps": [ + "cider", + "clojure-mode" + ] + }, + "toggle-test": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rags/toggle-test.git", + "sha256": "7ec974881a980d17e796c8cff49dfc127d5cf12dd000d8a25f0620d931d5ea69", + "rev": "e969321f274903d705995a7d0345a257576ec5ff" + }, + "recipe": { + "sha256": "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140723.37", + "deps": [] + }, + "cider": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/cider.git", + "sha256": "f45f10ecbaba25a2438c6ff00641e4308ace127234cd41e4da4ed75f3c3c826f", + "rev": "716237f66ee784433756bb571416fcda480fb932" + }, + "recipe": { + "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151213.839", + "deps": [ + "clojure-mode", + "emacs", + "pkg-info", + "queue", + "seq", + "spinner" + ] + }, + "sudo-ext": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sudo-ext.el", + "sha256": "0fpz73r52j7sk1w7my0002wg7isrp54w28nnrwk9xb9il4qpxag2" + }, + "recipe": { + "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130130.1551", + "deps": [] + }, + "levenshtein": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/levenshtein.el", + "sha256": "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6" + }, + "recipe": { + "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20051013.1256", + "deps": [] + }, + "ox-pukiwiki": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/yashi/org-pukiwiki.git", + "sha256": "6a5019c6ce3b6d2bb74d227c1bdb07f6efb3e0f0e4fe9562aa2a5951e7a4feec", + "rev": "bdbde2c294f5d3de11f08a3fe19f01175d2e011a" + }, + "recipe": { + "sha256": "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150124.1116", + "deps": [ + "org" + ] + }, + "ac-slime": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/purcell/ac-slime.git", + "sha256": "7cf66d36d9dac4e2e297cd858072ffc813e85f62f67ddcadc61fff101c276f54", + "rev": "df6c4e88b5ba2d15d47a651ecf7edc0986624112" + }, + "recipe": { + "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150729.2235", + "deps": [ + "auto-complete", + "cl-lib", + "slime" + ] + }, + "fastnav": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gleber/fastnav.el.git", + "sha256": "234a6c248fb9f44d9d99022ca7697d0ea1de91b89642f15cc5e3bfe1750ea5fb", + "rev": "1019ba2b61d1a070204099b23da347278a61bc89" + }, + "recipe": { + "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20120211.857", + "deps": [] + }, + "etags-select": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/etags-select.el", + "sha256": "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb" + }, + "recipe": { + "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.700", + "deps": [] + }, + "myterminal-controls": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/myTerminal/myterminal-controls.git", + "sha256": "0675c64b274cc140498b5fb800fd3a95b145725df4dc9f5777315b83c485d356", + "rev": "6b40d5f606dd402b80b7c93775bece1063cbf826" + }, + "recipe": { + "sha256": "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150427.547", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "traad-autocomplete": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/traad.git", + "sha256": "c088c0534c81446b4f1632d74f784cbfa2d07d8bd2782121c30323dd401db3bf", + "rev": "022cda646ec9b7102c73899e6305bfdfc0402ba5" + }, + "recipe": { + "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140817.611", + "deps": [ + "auto-complete", + "traad" + ] + }, + "xah-find": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xahlee/xah-find.git", + "sha256": "d8ac8b3bd54c6163b86b28a9e3cabc0b815e572596e842b0503dfe13df72d852", + "rev": "f67a86e3e9dfb1709e359283bc5630fc15a22e95" + }, + "recipe": { + "sha256": "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151209.2317", + "deps": [] + }, + "wandbox": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kosh04/emacs-wandbox.git", + "sha256": "ba97faf09d7091a7d5c315da01223453fdd9aef4f02abe7ba6e2074ccf1b7976", + "rev": "cea03dec67e90a4c87eb9b6d69d1b3c68af541d0" + }, + "recipe": { + "sha256": "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150905.1024", + "deps": [ + "emacs", + "json", + "tabulated-list" + ] + }, + "paredit-menu": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/phillord/phil-emacs-packages.git", + "sha256": "c5244e721eb12bb17ad2680853bb102ef0675b291ab6b275b599eb83a49aec79", + "rev": "6e0142bae9cc3bfbea2fa134b6385af1c99ee782" + }, + "recipe": { + "sha256": "17l05m1lg0vmahh53b2lvw316y4z7jz3nmy0zyiyiygax313y42l", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130923.1454", + "deps": [] + }, + "el-init-viewer": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/HKey/el-init-viewer.git", + "sha256": "d4cc72a44b9fde5bc7f2a9abd60cf3b77349edc01e4e38da77e9c76ae9e14967", + "rev": "6e1aaab3e49d87253763e5b437d4f43f445b7774" + }, + "recipe": { + "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150303.228", + "deps": [ + "anaphora", + "cl-lib", + "ctable", + "dash", + "el-init", + "emacs" + ] + }, + "gist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/defunkt/gist.el.git", + "sha256": "e89b2f4a41a7b682f95aed343c35f445991f2a839a076c8df330e56a5cd17760", + "rev": "144280f5353bceb902d5278fa64078337e99fa4d" + }, + "recipe": { + "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150906.1154", + "deps": [ + "emacs", + "gh" + ] + }, + "clojure-mode-extra-font-locking": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clojure-mode.git", + "sha256": "e0c41c3eea190a76c23e91687151e81becdf025e19838aa69999832318170abe", + "rev": "802c1dbf3529da5a09f97cb21833e0a27ccf41d7" + }, + "recipe": { + "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150110.705", + "deps": [ + "clojure-mode" + ] + }, + "ggo-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mkjunker/ggo-mode.git", + "sha256": "172e069d377e934941f52d28877fb2284e75e6ac74b0fd2c78b738a2088e922f", + "rev": "e326899d9ed8217c7a4ea6cfdc4dd7aea61d6c1b" + }, + "recipe": { + "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130524.643", + "deps": [] + }, + "auctex-latexmk": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tom-tan/auctex-latexmk.git", + "sha256": "5e42753cbb4be334590244d289ee77073e06d8cb942da154ab65c2a6a09fe4eb", + "rev": "12318b945c3a68a593d90ef2a4461707523d46c0" + }, + "recipe": { + "sha256": "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151212.1843", + "deps": [ + "auctex" + ] + }, + "clojure-cheatsheet": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/clojure-emacs/clojure-cheatsheet.git", + "sha256": "b9ed4258522f5e04b4a59f4548d55b2b15dea8a06aa0aed6e1173bc7cbb008d4", + "rev": "7f1ee3facf131609ac1b987439b9b14daa4d7402" + }, + "recipe": { + "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151112.717", + "deps": [ + "cider", + "helm" + ] + }, + "ioccur": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thierryvolpiatto/ioccur.git", + "sha256": "2a2f60f6254253899cf0eac6bbcf4c890dbac182d68f0341b5343c9a82e3e5e7", + "rev": "4c0ef992a6fcd2aed62e3866d56650463108ab5a" + }, + "recipe": { + "sha256": "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130822.48", + "deps": [] + }, + "shell-here": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/ieure/shell-here.git", + "sha256": "d4794f6c76035e1bc955d683b99a7850208f883e434d057f01b7dc930ff8047c", + "rev": "251309141e18978d2b8014345acc6f5afcd4d509" + }, + "recipe": { + "sha256": "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150728.1204", + "deps": [] + }, + "org-gnome": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/org-gnome.el.git", + "sha256": "41ea1129cd5ee91e363516b4a514edb5433297f6d32499ed80a2ab58c08ca72c", + "rev": "1012d47886cfd30eed25b73d9f18e475e0155f88" + }, + "recipe": { + "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150614.957", + "deps": [ + "alert", + "gnome-calendar", + "telepathy" + ] + }, + "buster-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/magnars/buster-mode.git", + "sha256": "52a29be50dce22b0ab9ae7af979308270ba22bb8f8aada1db9a4ba8f60cc6fb6", + "rev": "de6958ef8369400922618b8d1e99abfa91b97ac5" + }, + "recipe": { + "sha256": "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140928.713", + "deps": [] + }, + "osx-dictionary": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/xuchunyang/osx-dictionary.el.git", + "sha256": "e11de28a2d272ad48c6aefc9f82427699c839ffd0039febe5c2ec97ca2483b3b", + "rev": "ffbc358a4c686ea77e8bb88319ad192b4ff1aa55" + }, + "recipe": { + "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151108.2352", + "deps": [ + "cl-lib" + ] + }, + "phoenix-dark-pink-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/j0ni/phoenix-dark-pink.git", + "sha256": "8f2148b45ccc437c5cee1560f8fd09aeb0dc1210b0e973029d9edfd208e15e10", + "rev": "314602b2e68c4054159ab3f0f6f6b658f232ada5" + }, + "recipe": { + "sha256": "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150406.2202", + "deps": [] + }, + "zzz-to-char": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/mrkkrp/zzz-to-char.git", + "sha256": "d5628735f6e63840f377c60dd5709be93ff08a12c6195ea85799acf5276aaffd", + "rev": "5d3465122342265b6ff8495c60d9a7cb457be42a" + }, + "recipe": { + "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151030.232", + "deps": [ + "avy", + "cl-lib", + "emacs" + ] + }, + "automargin": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/zk-phi/automargin.git", + "sha256": "c2a47141718908e08135edd9190a99dc5ea8823848f1e37fece019e898f5d60a", + "rev": "4901d969ad69f5244e6300baab4ba04efed800c3" + }, + "recipe": { + "sha256": "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20131112.214", + "deps": [] + }, + "pass": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/NicolasPetton/pass.git", + "sha256": "2bdc4cdef81888617af26dc73cfa1a131d2d550b38ebe29878f9327c80d012c6", + "rev": "f43f6ada151a81f0bca4397b78382e4f6160d0ad" + }, + "recipe": { + "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151109.603", + "deps": [ + "emacs", + "f", + "password-store" + ] + }, + "jaunte": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/kawaguchi/jaunte.el.git", + "sha256": "6e948daccc050d512881f951d6a37df012b435e4b66b05d7d88d539e105560af", + "rev": "b719c2d4d5d70640d70978b661863d10d6be06fc" + }, + "recipe": { + "sha256": "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130413.419", + "deps": [] + }, + "monochrome-theme": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/fxn/monochrome-theme.el.git", + "sha256": "ce5b5d2a79f2bd8cd6386faf0c73f9ccd57b47fbe7cd15ffe6f9fdabfabeb0eb", + "rev": "58fb4cf28c407f059b78bfd72c4dbced07638dd6" + }, + "recipe": { + "sha256": "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140326.550", + "deps": [] + }, + "ez-query-replace": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Wilfred/ez-query-replace.el.git", + "sha256": "f1938f7565cde65fead56b0a3b568306361f2da63a97316bcf471b207a020a97", + "rev": "1c0cab96d65105b780e32fdd29d2c6933be72ef6" + }, + "recipe": { + "sha256": "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140810.717", + "deps": [ + "dash" + ] + }, + "request": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/tkf/emacs-request.git", + "sha256": "d28de83f8390b8b30d000631e89ae6a8b2b25f30507ee01fae2bb67f2b9d69af", + "rev": "adf7de452f9914406bfb693541f1d280093c4efd" + }, + "recipe": { + "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140316.617", + "deps": [] + }, + "markdown-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://jblevins.org/git/markdown-mode.git", + "sha256": "04bdb250853244ee7d47f098508b3fcc0635fee807c80a9f6db38202ca647a67", + "rev": "8826fe678d80ab0580883d407faaace3fa39fb4a" + }, + "recipe": { + "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151206.1016", + "deps": [] + }, + "sphinx-doc": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/naiquevin/sphinx-doc.el.git", + "sha256": "d48f3f8dfaf8b6048be35276b913d5ee7e079b0784ecced5888a3c8a5374e692", + "rev": "c6f3053b83eab029c13e680b8200c704880727b1" + }, + "recipe": { + "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150616.1350", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "evil-smartparens": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/expez/evil-smartparens.git", + "sha256": "374996f077315860970eebf4dac6b392be7bcf4db5d099a2982de083ebf2a6dc", + "rev": "0e89b23924b2e0baa0d11841ea5126967a072fa8" + }, + "recipe": { + "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151126.324", + "deps": [ + "emacs", + "evil", + "smartparens" + ] + }, + "org-protocol-jekyll": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/vonavi/org-protocol-jekyll.git", + "sha256": "5e5f0f1b8f514fff887035742fb7f55412688cf9e1cd31cabfa6aae07431f7cb", + "rev": "f41902baaa62c8de3f81ad67a5f36d6aa5781578" + }, + "recipe": { + "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151119.1038", + "deps": [ + "cl-lib" + ] + }, + "autodisass-llvm-bitcode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/gbalats/autodisass-llvm-bitcode.git", + "sha256": "3a1301b29c857b080187407b4e99e8dcf5eb2e70fe4869d177ec1639ba13ef1c", + "rev": "d2579e3a1427af2dc947c343e49eb3434078bf04" + }, + "recipe": { + "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150410.2025", + "deps": [] + }, + "sourcemap": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-sourcemap.git", + "sha256": "551a9489ade4a1f2ccda8aecc91f84532f16e37ea0ec9756d973a15b0d125370", + "rev": "d50fd8d169f2d347b24276a0d28bb197400fc657" + }, + "recipe": { + "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150418.900", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "json-snatcher": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/Sterlingg/json-snatcher.git", + "sha256": "3fcbfd635ecf0e873c0d94261acd2a3147eb1f2f10576379fc085b08964d5d3e", + "rev": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c" + }, + "recipe": { + "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150511.2247", + "deps": [ + "emacs" + ] + }, + "dired-details": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired-details.el", + "sha256": "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza" + }, + "recipe": { + "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20130824.658", + "deps": [] + }, + "gore-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sergey-pashaev/gore-mode.git", + "sha256": "9f0db205ff0f9f254bf424e07e2897d49d1c58eeebe2f6a6c1682c7bb1120250", + "rev": "94d7f3e99104e06167967c98fdc201049c433c2d" + }, + "recipe": { + "sha256": "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151123.1327", + "deps": [ + "go-mode" + ] + }, + "org-link-travis": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/aki2o/org-link-travis.git", + "sha256": "089627b60fc04ccaf038234777333f4a4c7e0df72eda91e64fc17e6244bb279d", + "rev": "596615ad8373d9090bd4138da683524f0ad0bda5" + }, + "recipe": { + "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140405.1827", + "deps": [ + "org" + ] + }, + "cryptol-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/thoughtpolice/cryptol-mode.git", + "sha256": "470781cb9844aaabd2ebb4cbf737b4736e60d00b0c81449487bab9575cc04dfd", + "rev": "a54d000d24757fad2a91ae2853b16a97ebe52771" + }, + "recipe": { + "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20140426.1204", + "deps": [] + }, + "company-ycmd": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/abingham/emacs-ycmd.git", + "sha256": "a91b9027a3812e2e71525cb3a38e1c798149e0baa53d605b1551983f6c7f7e4c", + "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" + }, + "recipe": { + "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20151022.1210", + "deps": [ + "company", + "dash", + "deferred", + "s", + "ycmd" + ] + }, + "unicode-emoticons": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/hagleitn/unicode-emoticons.git", + "sha256": "1066b355a253c180f0715106945e65a0b240e6d4352b0fbf4ad034c89093af04", + "rev": "fb18631f342b0243cf77cf59ed2067c47aae5233" + }, + "recipe": { + "sha256": "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20150204.508", + "deps": [] + }, + "literate-coffee-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/syohex/emacs-literate-coffee-mode.git", + "sha256": "7f19490b6a8b82aa556dc72537d74bd864d3a621299f985fcbb2188ed6342784", + "rev": "c55d0bec31438f15e986c5ad031dff853cfd1178" + }, + "recipe": { + "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + }, + "version": "20141216.1719", + "deps": [ + "coffee-mode" + ] + } +} \ No newline at end of file diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix new file mode 100644 index 00000000000..e2afe27058a --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -0,0 +1,42 @@ +pkgs: with pkgs; + +let + + inherit (stdenv.lib) makeScope mapAttrs; + + json = builtins.readFile ./melpa-stable-packages.json; + manifest = builtins.fromJSON json; + + mkPackage = self: name: recipe: + let drv = + { melpaBuild, stdenv, fetchurl }: + let fetch = { inherit fetchurl; }."${recipe.fetch.tag}" + or (abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"); + args = builtins.removeAttrs recipe.fetch [ "tag" ]; + src = fetch args; + in melpaBuild { + pname = name; + inherit (recipe) version; + inherit src; + deps = + let lookupDep = d: + self."${d}" or (abort "emacs-${name}: missing dependency ${d}"); + in map lookupDep recipe.deps; + meta = { + homepage = "http://melpa.org/#/${name}"; + license = stdenv.lib.licenses.free; + }; + }; + in self.callPackage drv {}; + + packages = self: + let + melpaPackages = mapAttrs (mkPackage self) manifest; + + melpaBuild = import ../../../build-support/emacs/melpa.nix { + inherit (pkgs) lib stdenv fetchurl texinfo; + inherit (self) emacs; + }; + in melpaPackages // { inherit melpaBuild melpaPackages; }; + +in makeScope pkgs.newScope packages From 8e655250bdde40150f0c8c059f6d8f5483805dec Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 15 Dec 2015 11:57:51 -0600 Subject: [PATCH 048/289] emacsPackagesNg: add all of MELPA --- .../editors/emacs-modes/elpa-packages.nix | 42 ++++++++++++------- .../editors/emacs-modes/melpa-packages.nix | 40 +++++++++++------- .../emacs-modes/melpa-stable-packages.nix | 40 +++++++++++------- pkgs/top-level/all-packages.nix | 12 ++++-- pkgs/top-level/emacs-packages.nix | 22 +++++++--- 5 files changed, 101 insertions(+), 55 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 3cf37c26280..6c48969a9ef 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -10,17 +10,20 @@ let mkPackage = self: name: recipe: let drv = { elpaBuild, stdenv, fetchurl }: - let fetch = { inherit fetchurl; }."${recipe.fetch.tag}" - or (abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"); - args = builtins.removeAttrs recipe.fetch [ "tag" ]; - src = fetch args; + let + unknownFetcher = + abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; + fetch = + { inherit fetchurl; }."${recipe.fetch.tag}" + or unknownFetcher; + args = builtins.removeAttrs recipe.fetch [ "tag" ]; + src = fetch args; in elpaBuild { pname = name; inherit (recipe) version; inherit src; deps = - let lookupDep = d: - self."${d}" or (abort "emacs-${name}: missing dependency ${d}"); + let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; meta = { homepage = "http://elpa.gnu.org/packages/${name}.html"; @@ -29,14 +32,23 @@ let }; in self.callPackage drv {}; - packages = self: - let - elpaPackages = mapAttrs (mkPackage self) manifest; +in - elpaBuild = import ../../../build-support/emacs/melpa.nix { - inherit (pkgs) lib stdenv fetchurl texinfo; - inherit (self) emacs; - }; - in elpaPackages // { inherit elpaBuild elpaPackages; }; +self: -in makeScope pkgs.newScope packages + let + super = mapAttrs (mkPackage self) manifest; + + elpaBuild = import ../../../build-support/emacs/melpa.nix { + inherit (pkgs) lib stdenv fetchurl texinfo; + inherit (self) emacs; + }; + + builtin = null; + + markBroken = pkg: pkg.override { + elpaBuild = args: self.elpaBuild (args // { + meta = (args.meta or {}) // { broken = true; }; + }); + }; + in super // { inherit elpaBuild; elpaPackage = super; } diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index e2afe27058a..1bc4363cb11 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -9,18 +9,23 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl }: - let fetch = { inherit fetchurl; }."${recipe.fetch.tag}" - or (abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"); - args = builtins.removeAttrs recipe.fetch [ "tag" ]; - src = fetch args; + { melpaBuild, stdenv, fetchurl, fetchcvs, fetchgit, fetchhg }: + let + unknownFetcher = + abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; + fetch = + { + inherit fetchurl fetchcvs fetchgit fetchhg; + }."${recipe.fetch.tag}" + or unknownFetcher; + args = builtins.removeAttrs recipe.fetch [ "tag" ]; + src = fetch args; in melpaBuild { pname = name; inherit (recipe) version; inherit src; deps = - let lookupDep = d: - self."${d}" or (abort "emacs-${name}: missing dependency ${d}"); + let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; meta = { homepage = "http://melpa.org/#/${name}"; @@ -29,14 +34,17 @@ let }; in self.callPackage drv {}; - packages = self: - let - melpaPackages = mapAttrs (mkPackage self) manifest; +in - melpaBuild = import ../../../build-support/emacs/melpa.nix { - inherit (pkgs) lib stdenv fetchurl texinfo; - inherit (self) emacs; - }; - in melpaPackages // { inherit melpaBuild melpaPackages; }; +self: -in makeScope pkgs.newScope packages + let + super = mapAttrs (mkPackage self) manifest; + + markBroken = pkg: pkg.override { + melpaBuild = args: self.melpaBuild (args // { + meta = (args.meta or {}) // { broken = true; }; + }); + }; + in + super // { melpaPackages = super; } diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index b17bda56c28..869c5549bfa 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -9,18 +9,23 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl }: - let fetch = { inherit fetchurl; }."${recipe.fetch.tag}" - or (abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"); - args = builtins.removeAttrs recipe.fetch [ "tag" ]; - src = fetch args; + { melpaBuild, stdenv, fetchurl, fetchcvs, fetchgit, fetchhg }: + let + unknownFetcher = + abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; + fetch = + { + inherit fetchurl fetchcvs fetchgit fetchhg; + }."${recipe.fetch.tag}" + or unknownFetcher; + args = builtins.removeAttrs recipe.fetch [ "tag" ]; + src = fetch args; in melpaBuild { pname = name; inherit (recipe) version; inherit src; deps = - let lookupDep = d: - self."${d}" or (abort "emacs-${name}: missing dependency ${d}"); + let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; meta = { homepage = "http://stable.melpa.org/#/${name}"; @@ -29,14 +34,17 @@ let }; in self.callPackage drv {}; - packages = self: - let - melpaStablePackages = mapAttrs (mkPackage self) manifest; +in - melpaBuild = import ../../../build-support/emacs/melpa.nix { - inherit (pkgs) lib stdenv fetchurl texinfo; - inherit (self) emacs; - }; - in melpaStablePackages // { inherit melpaBuild melpaStablePackages; }; +self: -in makeScope pkgs.newScope packages + let + super = mapAttrs (mkPackage self) manifest; + + markBroken = pkg: pkg.override { + melpaBuild = args: self.melpaBuild (args // { + meta = (args.meta or {}) // { broken = true; }; + }); + }; + in + super // { melpaStablePackages = super; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1877617f016..012b7225831 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11627,7 +11627,8 @@ let emacsPackagesNgGen = emacs: callPackage ./emacs-packages.nix { overrides = (config.emacsPackageOverrides or (p: {})) pkgs; - inherit emacs elpaPackages; + inherit newScope; + inherit emacs elpaPackages melpaPackages melpaStablePackages; trivialBuild = callPackage ../build-support/emacs/trivial.nix { inherit emacs; @@ -11647,8 +11648,13 @@ let emacs24PackagesNg = recurseIntoAttrs (emacsPackagesNgGen emacs24); elpaPackages = - let imported = import ../applications/editors/emacs-modes/elpa-packages.nix pkgs; - in recurseIntoAttrs (imported.override (super: self: { inherit emacs; })); + import ../applications/editors/emacs-modes/elpa-packages.nix pkgs; + + melpaStablePackages = + import ../applications/editors/emacs-modes/melpa-stable-packages.nix pkgs; + + melpaPackages = + import ../applications/editors/emacs-modes/melpa-packages.nix pkgs; emacsWithPackages = callPackage ../build-support/emacs/wrapper.nix { }; emacs24WithPackages = emacsWithPackages.override { emacs = emacs24; }; diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 2acb4cbbe0b..ebd6464de5a 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -33,9 +33,9 @@ { overrides -, lib, stdenv, fetchurl, fetchgit, fetchFromGitHub, fetchhg +, lib, newScope, stdenv, fetchurl, fetchgit, fetchFromGitHub, fetchhg -, emacs, elpaPackages +, emacs, elpaPackages, melpaPackages, melpaStablePackages , trivialBuild , melpaBuild @@ -44,7 +44,14 @@ with lib.licenses; -let packagesFun = super: self: with self; { +let + + addMelpaPackages = scope: scope.override (super: melpaPackages); + addMelpaStablePackages = scope: scope.override (super: melpaStablePackages); + addElpaPackages = scope: scope.override (super: elpaPackages); + addOverrides = scope: scope.override packagesFun; + + packagesFun = super: self: with self; { inherit emacs melpaBuild trivialBuild; @@ -2019,6 +2026,11 @@ let packagesFun = super: self: with self; { }; }; -}; + }; -in elpaPackages.override packagesFun +in + addOverrides + (addElpaPackages + (addMelpaStablePackages + (addMelpaPackages + (lib.makeScope newScope (self: { inherit emacs; }))))) From f574f1c9c9ac2d20c3c1590d26f43fd9495d6644 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 15 Dec 2015 11:58:30 -0600 Subject: [PATCH 049/289] melpaPackages: fix cvsRoot attribute name --- pkgs/applications/editors/emacs-modes/melpa-packages.json | 4 ++-- .../editors/emacs-modes/melpa-stable-packages.json | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.json b/pkgs/applications/editors/emacs-modes/melpa-packages.json index 2e8d323eaa3..5e409ac81a2 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json @@ -41937,7 +41937,7 @@ "matlab-mode": { "fetch": { "tag": "fetchcvs", - "url": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", + "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", "module": "matlab-emacs", "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" }, @@ -43711,4 +43711,4 @@ "coffee-mode" ] } -} \ No newline at end of file +} diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json index 503dc20c50d..ccf76ad40e1 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json @@ -7690,7 +7690,7 @@ "swbuff": { "fetch": { "tag": "fetchcvs", - "url": ":pserver:anonymous@emhacks.cvs.sourceforge.net:/cvsroot/emhacks", + "cvsRoot": ":pserver:anonymous@emhacks.cvs.sourceforge.net:/cvsroot/emhacks", "module": "emhacks/swbuff.el", "sha256": "c579839fb395f1f778683324269269ca3d916995177804ca5dff3548007ec4b5" }, @@ -21193,7 +21193,7 @@ "matlab-mode": { "fetch": { "tag": "fetchcvs", - "url": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", + "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", "module": "matlab-emacs", "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" }, @@ -22223,4 +22223,4 @@ "coffee-mode" ] } -} \ No newline at end of file +} From 59f497bc4d835c3ed8e2a4bb8e8e2bae8ea1d900 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 06:45:27 -0600 Subject: [PATCH 050/289] melpa-packages: 2015-12-15 Fixes Git hashes by using `nix-prefetch-git --fetch-submodules`. --- .../editors/emacs-modes/melpa-packages.json | 6127 +++++++++-------- 1 file changed, 3073 insertions(+), 3054 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.json b/pkgs/applications/editors/emacs-modes/melpa-packages.json index 5e409ac81a2..8d87c35dfaf 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json @@ -8,7 +8,7 @@ }, "recipe": { "sha256": "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.1017", "deps": [] @@ -22,7 +22,7 @@ }, "recipe": { "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140118.244", "deps": [ @@ -39,7 +39,7 @@ }, "recipe": { "sha256": "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1208", "deps": [ @@ -55,7 +55,7 @@ }, "recipe": { "sha256": "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140915.1610", "deps": [] @@ -69,7 +69,7 @@ }, "recipe": { "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.1440", "deps": [] @@ -79,11 +79,11 @@ "tag": "fetchsvn", "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs", "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1", - "rev": "11136" + "rev": "11138" }, "recipe": { "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150819.604", "deps": [] @@ -97,7 +97,7 @@ }, "recipe": { "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150909.43", "deps": [ @@ -113,7 +113,7 @@ }, "recipe": { "sha256": "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141012.511", "deps": [ @@ -129,7 +129,7 @@ }, "recipe": { "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150803.1619", "deps": [] @@ -143,7 +143,7 @@ }, "recipe": { "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.215", "deps": [ @@ -160,7 +160,7 @@ }, "recipe": { "sha256": "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150504.1811", "deps": [] @@ -174,7 +174,7 @@ }, "recipe": { "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.249", "deps": [] @@ -188,7 +188,7 @@ }, "recipe": { "sha256": "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150418.355", "deps": [] @@ -202,7 +202,7 @@ }, "recipe": { "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.144", "deps": [ @@ -221,7 +221,7 @@ }, "recipe": { "sha256": "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.516", "deps": [ @@ -239,7 +239,7 @@ }, "recipe": { "sha256": "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140128.1334", "deps": [] @@ -253,7 +253,7 @@ }, "recipe": { "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151003.2131", "deps": [ @@ -271,7 +271,7 @@ }, "recipe": { "sha256": "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.350", "deps": [ @@ -283,13 +283,13 @@ "fetch": { "tag": "fetchurl", "url": "http://www.emacswiki.org/emacs/download/help-fns+.el", - "sha256": "0ljciaa0dc09m7xq22z1sad4bshphjpyf0i8hlf6xh7wg1vgavma" + "sha256": "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w" }, "recipe": { "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150909.1038", + "version": "20151215.837", "deps": [] }, "cmake-ide": { @@ -301,7 +301,7 @@ }, "recipe": { "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.243", "deps": [ @@ -317,7 +317,7 @@ }, "recipe": { "sha256": "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120223.1650", "deps": [] @@ -331,7 +331,7 @@ }, "recipe": { "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.814", "deps": [] @@ -345,7 +345,7 @@ }, "recipe": { "sha256": "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.657", "deps": [ @@ -361,7 +361,7 @@ }, "recipe": { "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1640", "deps": [ @@ -377,7 +377,7 @@ }, "recipe": { "sha256": "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.245", "deps": [ @@ -396,7 +396,7 @@ }, "recipe": { "sha256": "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150824.901", "deps": [] @@ -410,7 +410,7 @@ }, "recipe": { "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151028.210", "deps": [ @@ -426,7 +426,7 @@ }, "recipe": { "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1906", "deps": [] @@ -440,7 +440,7 @@ }, "recipe": { "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140418.915", "deps": [ @@ -458,7 +458,7 @@ }, "recipe": { "sha256": "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140211.149", "deps": [] @@ -472,7 +472,7 @@ }, "recipe": { "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150404.701", "deps": [] @@ -486,7 +486,7 @@ }, "recipe": { "sha256": "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150607.941", "deps": [ @@ -502,7 +502,7 @@ }, "recipe": { "sha256": "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150715.1404", "deps": [] @@ -515,7 +515,7 @@ }, "recipe": { "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1750", "deps": [] @@ -529,7 +529,7 @@ }, "recipe": { "sha256": "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.1915", "deps": [ @@ -545,7 +545,7 @@ }, "recipe": { "sha256": "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150209.1626", "deps": [] @@ -559,7 +559,7 @@ }, "recipe": { "sha256": "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150110.2226", "deps": [ @@ -575,7 +575,7 @@ }, "recipe": { "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.1159", "deps": [ @@ -592,7 +592,7 @@ }, "recipe": { "sha256": "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131201.130", "deps": [] @@ -606,7 +606,7 @@ }, "recipe": { "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.1009", "deps": [ @@ -624,7 +624,7 @@ }, "recipe": { "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141208.908", "deps": [ @@ -640,7 +640,7 @@ }, "recipe": { "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150623.533", "deps": [] @@ -654,7 +654,7 @@ }, "recipe": { "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.814", "deps": [ @@ -671,7 +671,7 @@ }, "recipe": { "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121104.1302", "deps": [ @@ -687,7 +687,7 @@ }, "recipe": { "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150801.1144", "deps": [] @@ -701,7 +701,7 @@ }, "recipe": { "sha256": "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.351", "deps": [ @@ -718,7 +718,7 @@ }, "recipe": { "sha256": "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140121.1143", "deps": [] @@ -732,7 +732,7 @@ }, "recipe": { "sha256": "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140211.2245", "deps": [] @@ -746,7 +746,7 @@ }, "recipe": { "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.839", "deps": [ @@ -764,7 +764,7 @@ }, "recipe": { "sha256": "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140730.1449", "deps": [] @@ -778,7 +778,7 @@ }, "recipe": { "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131103.413", "deps": [] @@ -792,7 +792,7 @@ }, "recipe": { "sha256": "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150919.530", "deps": [ @@ -811,7 +811,7 @@ }, "recipe": { "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150913.1933", "deps": [ @@ -832,7 +832,7 @@ }, "recipe": { "sha256": "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150911.2223", "deps": [ @@ -848,7 +848,7 @@ }, "recipe": { "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141229.1329", "deps": [ @@ -866,7 +866,7 @@ }, "recipe": { "sha256": "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131118.426", "deps": [] @@ -880,7 +880,7 @@ }, "recipe": { "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.234", "deps": [ @@ -897,7 +897,7 @@ }, "recipe": { "sha256": "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140209.1235", "deps": [ @@ -914,7 +914,7 @@ }, "recipe": { "sha256": "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140406.2019", "deps": [ @@ -930,7 +930,7 @@ }, "recipe": { "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150408.506", "deps": [ @@ -946,7 +946,7 @@ }, "recipe": { "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.830", "deps": [ @@ -962,7 +962,7 @@ }, "recipe": { "sha256": "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.2337", "deps": [ @@ -979,7 +979,7 @@ }, "recipe": { "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140702.1009", "deps": [] @@ -993,7 +993,7 @@ }, "recipe": { "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.1143", "deps": [ @@ -1009,7 +1009,7 @@ }, "recipe": { "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130522.1603", "deps": [ @@ -1025,7 +1025,7 @@ }, "recipe": { "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150614.246", "deps": [] @@ -1039,7 +1039,7 @@ }, "recipe": { "sha256": "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.910", "deps": [ @@ -1055,7 +1055,7 @@ }, "recipe": { "sha256": "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150225.242", "deps": [ @@ -1071,7 +1071,7 @@ }, "recipe": { "sha256": "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.1111", "deps": [ @@ -1087,7 +1087,7 @@ }, "recipe": { "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150901.450", "deps": [ @@ -1104,7 +1104,7 @@ }, "recipe": { "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.412", "deps": [ @@ -1123,7 +1123,7 @@ }, "recipe": { "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.2246", "deps": [ @@ -1139,7 +1139,7 @@ }, "recipe": { "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150716.802", "deps": [ @@ -1156,7 +1156,7 @@ }, "recipe": { "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150812.347", "deps": [ @@ -1174,7 +1174,7 @@ }, "recipe": { "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1751", "deps": [] @@ -1188,7 +1188,7 @@ }, "recipe": { "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131019.2358", "deps": [] @@ -1202,7 +1202,7 @@ }, "recipe": { "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.432", "deps": [ @@ -1218,7 +1218,7 @@ }, "recipe": { "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.224", "deps": [ @@ -1234,7 +1234,7 @@ }, "recipe": { "sha256": "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140627.307", "deps": [] @@ -1248,7 +1248,7 @@ }, "recipe": { "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140829.738", "deps": [] @@ -1262,7 +1262,7 @@ }, "recipe": { "sha256": "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130615.1633", "deps": [] @@ -1276,7 +1276,7 @@ }, "recipe": { "sha256": "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151004.1155", "deps": [ @@ -1292,7 +1292,7 @@ }, "recipe": { "sha256": "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140805.505", "deps": [] @@ -1306,7 +1306,7 @@ }, "recipe": { "sha256": "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.1318", "deps": [ @@ -1326,7 +1326,7 @@ }, "recipe": { "sha256": "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.154", "deps": [] @@ -1340,7 +1340,7 @@ }, "recipe": { "sha256": "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120510.1430", "deps": [] @@ -1354,7 +1354,7 @@ }, "recipe": { "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150630.916", "deps": [ @@ -1370,7 +1370,7 @@ }, "recipe": { "sha256": "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1350", "deps": [] @@ -1384,7 +1384,7 @@ }, "recipe": { "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140603.2331", "deps": [ @@ -1397,14 +1397,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rocky/emacs-dbgr.git", - "sha256": "605c2083247f540a5c020eeedc9310af2d2e1b56bce5f567a4f7143e337f8d6a", - "rev": "a216bf09123b48d06f8633c2b99db54818c72257" + "sha256": "043fafb56d81cabbfaa39a2d0ae4427e1037fb2acbae84f8c8988dca71309051", + "rev": "4e85910b106e3094d2b27ac34f584df5bf4ab457" }, "recipe": { "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151206.713", + "version": "20151215.1523", "deps": [ "list-utils", "load-relative", @@ -1421,7 +1421,7 @@ }, "recipe": { "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.707", "deps": [ @@ -1441,7 +1441,7 @@ }, "recipe": { "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140215.314", "deps": [] @@ -1455,7 +1455,7 @@ }, "recipe": { "sha256": "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150501.610", "deps": [] @@ -1469,7 +1469,7 @@ }, "recipe": { "sha256": "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150827.1840", "deps": [] @@ -1483,7 +1483,7 @@ }, "recipe": { "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.2352", "deps": [ @@ -1500,7 +1500,7 @@ }, "recipe": { "sha256": "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.341", "deps": [] @@ -1514,7 +1514,7 @@ }, "recipe": { "sha256": "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130720.849", "deps": [] @@ -1528,7 +1528,7 @@ }, "recipe": { "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100510.2305", "deps": [] @@ -1542,7 +1542,7 @@ }, "recipe": { "sha256": "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130828.1144", "deps": [] @@ -1556,7 +1556,7 @@ }, "recipe": { "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150516.919", "deps": [ @@ -1567,12 +1567,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.905", "deps": [ @@ -1591,7 +1591,7 @@ }, "recipe": { "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150815.1032", "deps": [] @@ -1604,7 +1604,7 @@ }, "recipe": { "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121026.950", "deps": [] @@ -1618,7 +1618,7 @@ }, "recipe": { "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151010.936", "deps": [] @@ -1632,7 +1632,7 @@ }, "recipe": { "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150603.1636", "deps": [] @@ -1646,7 +1646,7 @@ }, "recipe": { "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140227.929", "deps": [ @@ -1662,7 +1662,7 @@ }, "recipe": { "sha256": "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130421.1434", "deps": [] @@ -1676,7 +1676,7 @@ }, "recipe": { "sha256": "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150413.1518", "deps": [] @@ -1690,7 +1690,7 @@ }, "recipe": { "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.1530", "deps": [ @@ -1708,7 +1708,7 @@ }, "recipe": { "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150314.802", "deps": [ @@ -1725,7 +1725,7 @@ }, "recipe": { "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141219.2357", "deps": [ @@ -1742,7 +1742,7 @@ }, "recipe": { "sha256": "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141221.249", "deps": [] @@ -1755,7 +1755,7 @@ }, "recipe": { "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1616", "deps": [] @@ -1769,7 +1769,7 @@ }, "recipe": { "sha256": "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140301.802", "deps": [] @@ -1783,7 +1783,7 @@ }, "recipe": { "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151008.212", "deps": [ @@ -1799,7 +1799,7 @@ }, "recipe": { "sha256": "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140104.1607", "deps": [] @@ -1813,7 +1813,7 @@ }, "recipe": { "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1558", "deps": [ @@ -1832,7 +1832,7 @@ }, "recipe": { "sha256": "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151026.1112", "deps": [ @@ -1848,7 +1848,7 @@ }, "recipe": { "sha256": "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.1503", "deps": [] @@ -1862,7 +1862,7 @@ }, "recipe": { "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.2136", "deps": [ @@ -1878,7 +1878,7 @@ }, "recipe": { "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1059", "deps": [] @@ -1892,7 +1892,7 @@ }, "recipe": { "sha256": "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151102.843", "deps": [ @@ -1910,7 +1910,7 @@ }, "recipe": { "sha256": "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150120.1240", "deps": [] @@ -1924,7 +1924,7 @@ }, "recipe": { "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150329.523", "deps": [ @@ -1941,7 +1941,7 @@ }, "recipe": { "sha256": "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.102", "deps": [ @@ -1957,7 +1957,7 @@ }, "recipe": { "sha256": "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090723.1019", "deps": [] @@ -1971,7 +1971,7 @@ }, "recipe": { "sha256": "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140106.1939", "deps": [ @@ -1989,7 +1989,7 @@ }, "recipe": { "sha256": "1w9zxy6jwiln28cmdgkbbdfk3pdscqlfahrqi6lbgpjvkw9z44mb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131014.1707", "deps": [ @@ -2006,7 +2006,7 @@ }, "recipe": { "sha256": "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.102", "deps": [ @@ -2021,7 +2021,7 @@ }, "recipe": { "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.659", "deps": [] @@ -2035,7 +2035,7 @@ }, "recipe": { "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.222", "deps": [ @@ -2053,7 +2053,7 @@ }, "recipe": { "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.1315", "deps": [] @@ -2067,7 +2067,7 @@ }, "recipe": { "sha256": "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.305", "deps": [ @@ -2084,7 +2084,7 @@ }, "recipe": { "sha256": "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150426.749", "deps": [ @@ -2100,7 +2100,7 @@ }, "recipe": { "sha256": "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.15", "deps": [ @@ -2122,7 +2122,7 @@ }, "recipe": { "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150805.1448", "deps": [] @@ -2136,7 +2136,7 @@ }, "recipe": { "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.918", "deps": [] @@ -2150,7 +2150,7 @@ }, "recipe": { "sha256": "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.2353", "deps": [ @@ -2166,7 +2166,7 @@ }, "recipe": { "sha256": "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.523", "deps": [ @@ -2182,7 +2182,7 @@ }, "recipe": { "sha256": "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121224.2049", "deps": [] @@ -2196,7 +2196,7 @@ }, "recipe": { "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150812.205", "deps": [] @@ -2210,7 +2210,7 @@ }, "recipe": { "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140329.1629", "deps": [ @@ -2226,7 +2226,7 @@ }, "recipe": { "sha256": "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150903.903", "deps": [ @@ -2245,7 +2245,7 @@ }, "recipe": { "sha256": "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140227.2236", "deps": [] @@ -2258,7 +2258,7 @@ }, "recipe": { "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130328.633", "deps": [] @@ -2272,7 +2272,7 @@ }, "recipe": { "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150701.1015", "deps": [] @@ -2286,7 +2286,7 @@ }, "recipe": { "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.933", "deps": [ @@ -2304,7 +2304,7 @@ }, "recipe": { "sha256": "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130131.1302", "deps": [ @@ -2321,7 +2321,7 @@ }, "recipe": { "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1425", "deps": [] @@ -2335,7 +2335,7 @@ }, "recipe": { "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150913.908", "deps": [ @@ -2353,7 +2353,7 @@ }, "recipe": { "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.941", "deps": [] @@ -2367,7 +2367,7 @@ }, "recipe": { "sha256": "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140906.642", "deps": [ @@ -2384,7 +2384,7 @@ }, "recipe": { "sha256": "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150309.129", "deps": [ @@ -2401,7 +2401,7 @@ }, "recipe": { "sha256": "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140614.335", "deps": [ @@ -2417,7 +2417,7 @@ }, "recipe": { "sha256": "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150516.1538", "deps": [] @@ -2431,7 +2431,7 @@ }, "recipe": { "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.959", "deps": [ @@ -2449,7 +2449,7 @@ }, "recipe": { "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -2463,7 +2463,7 @@ }, "recipe": { "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150405.327", "deps": [ @@ -2481,7 +2481,7 @@ }, "recipe": { "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150613.417", "deps": [] @@ -2495,7 +2495,7 @@ }, "recipe": { "sha256": "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141021.1322", "deps": [] @@ -2509,7 +2509,7 @@ }, "recipe": { "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.1848", "deps": [ @@ -2525,7 +2525,7 @@ }, "recipe": { "sha256": "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.719", "deps": [ @@ -2536,12 +2536,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/kazu-yamamoto/ghc-mod.git", - "sha256": "73f2a33d0b01bf2a743d93f05a8a4bc1f5a2c1df6552db501f3a5904854b0805", - "rev": "e7a186a1035a0b204360698229f974282c5388e2" + "sha256": "9dea0d94106ee293336ce640d9fa9bbdd3e07202ee6fbb7b5f0ae424414007b6", + "rev": "6de02ea4700a700c1d5950309242ed4d44e357ae" }, "recipe": { "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1843", "deps": [ @@ -2557,7 +2557,7 @@ }, "recipe": { "sha256": "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141023.337", "deps": [] @@ -2571,7 +2571,7 @@ }, "recipe": { "sha256": "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130414.221", "deps": [ @@ -2587,7 +2587,7 @@ }, "recipe": { "sha256": "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.221", "deps": [] @@ -2601,7 +2601,7 @@ }, "recipe": { "sha256": "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151024.37", "deps": [ @@ -2617,7 +2617,7 @@ }, "recipe": { "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141203.2359", "deps": [ @@ -2633,7 +2633,7 @@ }, "recipe": { "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140111.1601", "deps": [] @@ -2647,7 +2647,7 @@ }, "recipe": { "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150412.941", "deps": [ @@ -2662,7 +2662,7 @@ }, "recipe": { "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120509.605", "deps": [] @@ -2676,7 +2676,7 @@ }, "recipe": { "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150516.348", "deps": [ @@ -2692,7 +2692,7 @@ }, "recipe": { "sha256": "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.31", "deps": [] @@ -2705,7 +2705,7 @@ }, "recipe": { "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150727.1554", "deps": [ @@ -2724,7 +2724,7 @@ }, "recipe": { "sha256": "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.415", "deps": [ @@ -2741,7 +2741,7 @@ }, "recipe": { "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150930.1234", "deps": [ @@ -2758,7 +2758,7 @@ }, "recipe": { "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090621.832", "deps": [] @@ -2771,7 +2771,7 @@ }, "recipe": { "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1602", "deps": [] @@ -2785,7 +2785,7 @@ }, "recipe": { "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.41", "deps": [ @@ -2802,7 +2802,7 @@ }, "recipe": { "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.2106", "deps": [] @@ -2816,7 +2816,7 @@ }, "recipe": { "sha256": "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.2152", "deps": [ @@ -2834,7 +2834,7 @@ }, "recipe": { "sha256": "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.1834", "deps": [ @@ -2851,7 +2851,7 @@ }, "recipe": { "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.301", "deps": [ @@ -2868,7 +2868,7 @@ }, "recipe": { "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.1639", "deps": [ @@ -2885,7 +2885,7 @@ }, "recipe": { "sha256": "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141219.120", "deps": [] @@ -2899,7 +2899,7 @@ }, "recipe": { "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141225.930", "deps": [ @@ -2915,7 +2915,7 @@ }, "recipe": { "sha256": "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141109.1956", "deps": [ @@ -2931,7 +2931,7 @@ }, "recipe": { "sha256": "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091203.1222", "deps": [] @@ -2945,7 +2945,7 @@ }, "recipe": { "sha256": "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.848", "deps": [] @@ -2959,7 +2959,7 @@ }, "recipe": { "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.1959", "deps": [] @@ -2973,7 +2973,7 @@ }, "recipe": { "sha256": "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1141", "deps": [ @@ -2990,7 +2990,7 @@ }, "recipe": { "sha256": "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131001.2318", "deps": [] @@ -3004,7 +3004,7 @@ }, "recipe": { "sha256": "080cvgl2cg08kyvmgg080zqb6k6bngga3m5lfwb2dpmi1bajywc1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141004.1752", "deps": [ @@ -3020,7 +3020,7 @@ }, "recipe": { "sha256": "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131215.719", "deps": [] @@ -3034,7 +3034,7 @@ }, "recipe": { "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131229.2051", "deps": [ @@ -3050,7 +3050,7 @@ }, "recipe": { "sha256": "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150126.603", "deps": [ @@ -3067,7 +3067,7 @@ }, "recipe": { "sha256": "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.1015", "deps": [ @@ -3082,7 +3082,7 @@ }, "recipe": { "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1508", "deps": [ @@ -3098,7 +3098,7 @@ }, "recipe": { "sha256": "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131023.1213", "deps": [] @@ -3112,7 +3112,7 @@ }, "recipe": { "sha256": "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150324.1725", "deps": [] @@ -3126,7 +3126,7 @@ }, "recipe": { "sha256": "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140211.1426", "deps": [] @@ -3140,7 +3140,7 @@ }, "recipe": { "sha256": "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150904.1334", "deps": [ @@ -3156,7 +3156,7 @@ }, "recipe": { "sha256": "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150125.441", "deps": [] @@ -3170,7 +3170,7 @@ }, "recipe": { "sha256": "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131015.835", "deps": [ @@ -3187,7 +3187,7 @@ }, "recipe": { "sha256": "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140314.628", "deps": [] @@ -3201,7 +3201,7 @@ }, "recipe": { "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.2319", "deps": [ @@ -3218,7 +3218,7 @@ }, "recipe": { "sha256": "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.723", "deps": [] @@ -3232,7 +3232,7 @@ }, "recipe": { "sha256": "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.2012", "deps": [ @@ -3248,7 +3248,7 @@ }, "recipe": { "sha256": "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140410.1522", "deps": [] @@ -3262,7 +3262,7 @@ }, "recipe": { "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150114.1004", "deps": [] @@ -3276,7 +3276,7 @@ }, "recipe": { "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150831.716", "deps": [ @@ -3293,7 +3293,7 @@ }, "recipe": { "sha256": "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150911.758", "deps": [] @@ -3307,7 +3307,7 @@ }, "recipe": { "sha256": "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.134", "deps": [ @@ -3325,7 +3325,7 @@ }, "recipe": { "sha256": "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.2148", "deps": [] @@ -3338,7 +3338,7 @@ }, "recipe": { "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.1047", "deps": [] @@ -3351,7 +3351,7 @@ }, "recipe": { "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -3365,7 +3365,7 @@ }, "recipe": { "sha256": "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150121.1646", "deps": [ @@ -3381,7 +3381,7 @@ }, "recipe": { "sha256": "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130513.251", "deps": [ @@ -3396,7 +3396,7 @@ }, "recipe": { "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120608.1335", "deps": [] @@ -3410,7 +3410,7 @@ }, "recipe": { "sha256": "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130509.1255", "deps": [] @@ -3424,7 +3424,7 @@ }, "recipe": { "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150617.831", "deps": [ @@ -3441,7 +3441,7 @@ }, "recipe": { "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140504.357", "deps": [ @@ -3457,7 +3457,7 @@ }, "recipe": { "sha256": "1gnvakp71l25r48bx1n2j33dq8q1lc7ff1j4fcnnvblhh3rsra96", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.1815", "deps": [] @@ -3471,7 +3471,7 @@ }, "recipe": { "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.924", "deps": [ @@ -3489,7 +3489,7 @@ }, "recipe": { "sha256": "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150819.839", "deps": [ @@ -3508,7 +3508,7 @@ }, "recipe": { "sha256": "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131014.1621", "deps": [ @@ -3525,7 +3525,7 @@ }, "recipe": { "sha256": "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130524.609", "deps": [] @@ -3539,7 +3539,7 @@ }, "recipe": { "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.800", "deps": [] @@ -3553,7 +3553,7 @@ }, "recipe": { "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150422.1039", "deps": [] @@ -3567,7 +3567,7 @@ }, "recipe": { "sha256": "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150723.1304", "deps": [ @@ -3583,7 +3583,7 @@ }, "recipe": { "sha256": "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150826.616", "deps": [ @@ -3601,7 +3601,7 @@ }, "recipe": { "sha256": "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150207.717", "deps": [] @@ -3615,7 +3615,7 @@ }, "recipe": { "sha256": "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140109.2146", "deps": [ @@ -3632,7 +3632,7 @@ }, "recipe": { "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150217.913", "deps": [] @@ -3641,12 +3641,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/sigma/gh.el.git", - "sha256": "c4e24c5352052cce996ddc3d24510a437633c1c63f1797548f743bc52f193e96", + "sha256": "c5bcbab980cd28e0c2b95ccb6602f91f988c52007abeaf29d9a656514c792d1f", "rev": "644c0d24af430fdbc9fc90e028fca3a054333025" }, "recipe": { "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.1048", "deps": [ @@ -3664,7 +3664,7 @@ }, "recipe": { "sha256": "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141120.825", "deps": [ @@ -3680,7 +3680,7 @@ }, "recipe": { "sha256": "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150427.1132", "deps": [] @@ -3694,7 +3694,7 @@ }, "recipe": { "sha256": "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.629", "deps": [ @@ -3710,7 +3710,7 @@ }, "recipe": { "sha256": "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140409.1801", "deps": [] @@ -3719,14 +3719,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/abo-abo/lispy.git", - "sha256": "953f6425ca249ed258360f3775b2aec961ef539238f2b0f52169db7356cd8431", - "rev": "9479a0214656ea2cff5c59d52ab24ced4b09a765" + "sha256": "3f0acaad7dded52e12626afede7c7671f79b8a556a598de3e127b3773ae97055", + "rev": "ad1a6e075da26fa20fdd6840bb0d3d41889c42b2" }, "recipe": { "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151214.437", + "version": "20151215.941", "deps": [ "ace-window", "emacs", @@ -3743,7 +3743,7 @@ }, "recipe": { "sha256": "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141228.1605", "deps": [ @@ -3759,7 +3759,7 @@ }, "recipe": { "sha256": "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.412", "deps": [] @@ -3768,12 +3768,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-request.git", - "sha256": "d28de83f8390b8b30d000631e89ae6a8b2b25f30507ee01fae2bb67f2b9d69af", + "sha256": "7ba9a68d6b0a117510a409f8fba2281dc33d6beb5336d92eff0cb462adf31dcc", "rev": "adf7de452f9914406bfb693541f1d280093c4efd" }, "recipe": { "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130526.1215", "deps": [ @@ -3790,7 +3790,7 @@ }, "recipe": { "sha256": "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150219.925", "deps": [] @@ -3803,7 +3803,7 @@ }, "recipe": { "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1846", "deps": [] @@ -3817,7 +3817,7 @@ }, "recipe": { "sha256": "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.1706", "deps": [ @@ -3836,7 +3836,7 @@ }, "recipe": { "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150523.1315", "deps": [ @@ -3852,7 +3852,7 @@ }, "recipe": { "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150219.301", "deps": [ @@ -3868,7 +3868,7 @@ }, "recipe": { "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150716.433", "deps": [ @@ -3885,7 +3885,7 @@ }, "recipe": { "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150525.416", "deps": [ @@ -3906,7 +3906,7 @@ }, "recipe": { "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141123.1136", "deps": [] @@ -3919,7 +3919,7 @@ }, "recipe": { "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1905", "deps": [] @@ -3933,7 +3933,7 @@ }, "recipe": { "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100419.1245", "deps": [] @@ -3947,7 +3947,7 @@ }, "recipe": { "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1243", "deps": [ @@ -3967,7 +3967,7 @@ }, "recipe": { "sha256": "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.434", "deps": [ @@ -3983,7 +3983,7 @@ }, "recipe": { "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20051013.1256", "deps": [] @@ -3997,7 +3997,7 @@ }, "recipe": { "sha256": "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140722.1621", "deps": [ @@ -4013,7 +4013,7 @@ }, "recipe": { "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1911", "deps": [] @@ -4027,7 +4027,7 @@ }, "recipe": { "sha256": "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150819.1148", "deps": [ @@ -4044,7 +4044,7 @@ }, "recipe": { "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.815", "deps": [] @@ -4058,7 +4058,7 @@ }, "recipe": { "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1114", "deps": [ @@ -4074,7 +4074,7 @@ }, "recipe": { "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.1916", "deps": [ @@ -4093,7 +4093,7 @@ }, "recipe": { "sha256": "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131208.124", "deps": [ @@ -4111,7 +4111,7 @@ }, "recipe": { "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130421.500", "deps": [ @@ -4128,7 +4128,7 @@ }, "recipe": { "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.2122", "deps": [] @@ -4142,7 +4142,7 @@ }, "recipe": { "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140410.1114", "deps": [] @@ -4156,7 +4156,7 @@ }, "recipe": { "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150625.1333", "deps": [] @@ -4169,7 +4169,7 @@ }, "recipe": { "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150723.833", "deps": [] @@ -4183,7 +4183,7 @@ }, "recipe": { "sha256": "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130719.1557", "deps": [ @@ -4199,7 +4199,7 @@ }, "recipe": { "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.541", "deps": [ @@ -4215,7 +4215,7 @@ }, "recipe": { "sha256": "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.225", "deps": [ @@ -4231,7 +4231,7 @@ }, "recipe": { "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1347", "deps": [ @@ -4248,7 +4248,7 @@ }, "recipe": { "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140906.1708", "deps": [] @@ -4262,7 +4262,7 @@ }, "recipe": { "sha256": "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150820.338", "deps": [ @@ -4278,7 +4278,7 @@ }, "recipe": { "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130908.1224", "deps": [] @@ -4292,7 +4292,7 @@ }, "recipe": { "sha256": "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150730.1354", "deps": [ @@ -4308,7 +4308,7 @@ }, "recipe": { "sha256": "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150829.711", "deps": [ @@ -4324,7 +4324,7 @@ }, "recipe": { "sha256": "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091203.1223", "deps": [] @@ -4337,7 +4337,7 @@ }, "recipe": { "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1902", "deps": [] @@ -4351,7 +4351,7 @@ }, "recipe": { "sha256": "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141106.1551", "deps": [] @@ -4365,7 +4365,7 @@ }, "recipe": { "sha256": "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.215", "deps": [] @@ -4378,7 +4378,7 @@ }, "recipe": { "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.916", "deps": [] @@ -4392,7 +4392,7 @@ }, "recipe": { "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150313.1405", "deps": [ @@ -4408,7 +4408,7 @@ }, "recipe": { "sha256": "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.819", "deps": [ @@ -4423,7 +4423,7 @@ }, "recipe": { "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.551", "deps": [] @@ -4437,7 +4437,7 @@ }, "recipe": { "sha256": "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150402.2209", "deps": [ @@ -4453,7 +4453,7 @@ }, "recipe": { "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130509.658", "deps": [ @@ -4471,7 +4471,7 @@ }, "recipe": { "sha256": "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150805.456", "deps": [] @@ -4485,7 +4485,7 @@ }, "recipe": { "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150924.2205", "deps": [] @@ -4499,7 +4499,7 @@ }, "recipe": { "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140823.939", "deps": [ @@ -4515,7 +4515,7 @@ }, "recipe": { "sha256": "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.315", "deps": [] @@ -4528,7 +4528,7 @@ }, "recipe": { "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140201.1745", "deps": [] @@ -4542,7 +4542,7 @@ }, "recipe": { "sha256": "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140423.832", "deps": [] @@ -4556,7 +4556,7 @@ }, "recipe": { "sha256": "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100210.952", "deps": [] @@ -4570,7 +4570,7 @@ }, "recipe": { "sha256": "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120910.411", "deps": [] @@ -4579,12 +4579,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "e94e51c8cbcf3b294ae5159bc75bd25dff59ba29927fca761f7f285458c6b516", + "sha256": "b9bf421152125c46447ba4f4e8700dd13de079572150558294b4c29b4f3c82bd", "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" }, "recipe": { "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.505", "deps": [ @@ -4600,7 +4600,7 @@ }, "recipe": { "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150430.44", "deps": [ @@ -4616,7 +4616,7 @@ }, "recipe": { "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141005.613", "deps": [ @@ -4634,7 +4634,7 @@ }, "recipe": { "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150216.1542", "deps": [] @@ -4648,7 +4648,7 @@ }, "recipe": { "sha256": "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150204.452", "deps": [ @@ -4665,7 +4665,7 @@ }, "recipe": { "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.642", "deps": [ @@ -4685,7 +4685,7 @@ }, "recipe": { "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.2128", "deps": [ @@ -4710,7 +4710,7 @@ }, "recipe": { "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.512", "deps": [ @@ -4726,7 +4726,7 @@ }, "recipe": { "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1359", "deps": [] @@ -4735,14 +4735,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/vspinu/math-symbol-lists.git", - "sha256": "ee58ce2fe0814f7c06bfc0742f6ad2993406f8009e276ca858ad41787b16bbc1", - "rev": "0d9147c6f7432d7b7a1b7c7bba28165202c96d23" + "sha256": "8ad794ba26a6d19e2ffc701130cc70d3c77805986684ca9e146076e22de84fe1", + "rev": "56319989e7ac6bd625b46e8a28f8005077b5957b" }, "recipe": { "sha256": "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150830.1833", + "version": "20151215.1243", "deps": [] }, "ox-rst": { @@ -4754,7 +4754,7 @@ }, "recipe": { "sha256": "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.143", "deps": [ @@ -4771,7 +4771,7 @@ }, "recipe": { "sha256": "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.1651", "deps": [] @@ -4785,7 +4785,7 @@ }, "recipe": { "sha256": "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150124.2123", "deps": [] @@ -4799,7 +4799,7 @@ }, "recipe": { "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.820", "deps": [ @@ -4811,14 +4811,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tumashu/chinese-pyim.git", - "sha256": "9e70d00f9bdda8168d26582cefeab893cf4eaeb70d3c403373f69baa7396e4b9", - "rev": "e85cf228243555c80fc12de7e43c544733fe8597" + "sha256": "cb65de45ddfff5a9a0e44dcc464f0c4b9c9d36c6d7915cc98e657b50466368c1", + "rev": "6b80f86305dbd1c09b12017d9189356fb98df2c6" }, "recipe": { "sha256": "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151130.2103", + "version": "20151215.1812", "deps": [ "cl-lib", "pos-tip" @@ -4833,7 +4833,7 @@ }, "recipe": { "sha256": "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140213.222", "deps": [] @@ -4847,7 +4847,7 @@ }, "recipe": { "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151002.629", "deps": [ @@ -4865,7 +4865,7 @@ }, "recipe": { "sha256": "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.1238", "deps": [ @@ -4881,7 +4881,7 @@ }, "recipe": { "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120920.1148", "deps": [] @@ -4895,7 +4895,7 @@ }, "recipe": { "sha256": "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150113.2126", "deps": [] @@ -4909,7 +4909,7 @@ }, "recipe": { "sha256": "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1034", "deps": [ @@ -4926,7 +4926,7 @@ }, "recipe": { "sha256": "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.900", "deps": [ @@ -4945,7 +4945,7 @@ }, "recipe": { "sha256": "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131013.1332", "deps": [ @@ -4962,7 +4962,7 @@ }, "recipe": { "sha256": "1v78rm44af3vgsml5f6kpwvnb4ks6n49br2fhjgh6nc7g3jmz97n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141008.728", "deps": [ @@ -4978,7 +4978,7 @@ }, "recipe": { "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1015", "deps": [ @@ -4994,7 +4994,7 @@ }, "recipe": { "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150430.1955", "deps": [ @@ -5010,7 +5010,7 @@ }, "recipe": { "sha256": "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.102", "deps": [ @@ -5026,7 +5026,7 @@ }, "recipe": { "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140605.1328", "deps": [] @@ -5040,7 +5040,7 @@ }, "recipe": { "sha256": "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.936", "deps": [] @@ -5054,7 +5054,7 @@ }, "recipe": { "sha256": "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140729.1152", "deps": [ @@ -5072,7 +5072,7 @@ }, "recipe": { "sha256": "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.1655", "deps": [ @@ -5089,7 +5089,7 @@ }, "recipe": { "sha256": "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.444", "deps": [] @@ -5103,7 +5103,7 @@ }, "recipe": { "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141214.2203", "deps": [ @@ -5119,7 +5119,7 @@ }, "recipe": { "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.1858", "deps": [ @@ -5135,7 +5135,7 @@ }, "recipe": { "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141110.217", "deps": [] @@ -5149,7 +5149,7 @@ }, "recipe": { "sha256": "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.447", "deps": [ @@ -5165,7 +5165,7 @@ }, "recipe": { "sha256": "1cshhd4bkgbkg0n6m8gz53z47z4nq0hcriz2qh3v7m4cqgkw1m9r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120829.752", "deps": [] @@ -5178,7 +5178,7 @@ }, "recipe": { "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140813.319", "deps": [] @@ -5192,7 +5192,7 @@ }, "recipe": { "sha256": "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141119.243", "deps": [] @@ -5206,7 +5206,7 @@ }, "recipe": { "sha256": "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141016.1856", "deps": [] @@ -5220,7 +5220,7 @@ }, "recipe": { "sha256": "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130731.1642", "deps": [] @@ -5234,7 +5234,7 @@ }, "recipe": { "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150923.2149", "deps": [ @@ -5250,7 +5250,7 @@ }, "recipe": { "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.1951", "deps": [ @@ -5266,7 +5266,7 @@ }, "recipe": { "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.126", "deps": [] @@ -5280,7 +5280,7 @@ }, "recipe": { "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140528.2026", "deps": [ @@ -5297,7 +5297,7 @@ }, "recipe": { "sha256": "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140122.534", "deps": [] @@ -5311,7 +5311,7 @@ }, "recipe": { "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150814.154", "deps": [] @@ -5325,7 +5325,7 @@ }, "recipe": { "sha256": "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1636", "deps": [ @@ -5342,7 +5342,7 @@ }, "recipe": { "sha256": "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.2325", "deps": [ @@ -5358,7 +5358,7 @@ }, "recipe": { "sha256": "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141208.755", "deps": [ @@ -5375,7 +5375,7 @@ }, "recipe": { "sha256": "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.1600", "deps": [ @@ -5392,7 +5392,7 @@ }, "recipe": { "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150317.44", "deps": [ @@ -5411,7 +5411,7 @@ }, "recipe": { "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141010.1039", "deps": [] @@ -5425,7 +5425,7 @@ }, "recipe": { "sha256": "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150111.623", "deps": [ @@ -5441,7 +5441,7 @@ }, "recipe": { "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.714", "deps": [] @@ -5455,7 +5455,7 @@ }, "recipe": { "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.1726", "deps": [ @@ -5472,7 +5472,7 @@ }, "recipe": { "sha256": "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140105.1626", "deps": [] @@ -5481,12 +5481,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/kiyoka/sekka.git", - "sha256": "a05a8b13447eb5df360340af354ba5d9ecbb0448e8ec0b819b9eda5d242dff1d", - "rev": "2b0facc87e743e21534672aadac6db3164e38daf" + "sha256": "f9f775bedebfd5f8d392e2a4773121058009284de98cfa813711568407955fa3", + "rev": "2768b2c16dd15dcd35fcfd123c4d56f2ffd1b362" }, "recipe": { "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150708.659", "deps": [ @@ -5504,7 +5504,7 @@ }, "recipe": { "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140320.224", "deps": [ @@ -5520,7 +5520,7 @@ }, "recipe": { "sha256": "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150219.1604", "deps": [] @@ -5534,7 +5534,7 @@ }, "recipe": { "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140223.1132", "deps": [] @@ -5548,7 +5548,7 @@ }, "recipe": { "sha256": "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.1841", "deps": [ @@ -5565,7 +5565,7 @@ }, "recipe": { "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.1809", "deps": [ @@ -5582,7 +5582,7 @@ }, "recipe": { "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.38", "deps": [ @@ -5599,7 +5599,7 @@ }, "recipe": { "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1443", "deps": [ @@ -5616,7 +5616,7 @@ }, "recipe": { "sha256": "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.526", "deps": [] @@ -5630,7 +5630,7 @@ }, "recipe": { "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.826", "deps": [ @@ -5646,7 +5646,7 @@ }, "recipe": { "sha256": "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151001.1528", "deps": [ @@ -5656,6 +5656,20 @@ "helm" ] }, + "xquery-tool": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/paddymcall/xquery-tool.el.git", + "sha256": "879e87d74e1a34b3fb2e4d07c46a61c8dc39943e7729d1c7868bbbf717d5dd93", + "rev": "1ecc31dd7809a152ac43f262e8839d1405b012be" + }, + "recipe": { + "sha256": "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0", + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + }, + "version": "20151215.1055", + "deps": [] + }, "gruvbox-theme": { "fetch": { "tag": "fetchgit", @@ -5665,7 +5679,7 @@ }, "recipe": { "sha256": "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.1632", "deps": [] @@ -5679,7 +5693,7 @@ }, "recipe": { "sha256": "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140728.36", "deps": [ @@ -5695,7 +5709,7 @@ }, "recipe": { "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151004.915", "deps": [ @@ -5714,7 +5728,7 @@ }, "recipe": { "sha256": "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.1044", "deps": [] @@ -5723,15 +5737,17 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/yoshiki/yaml-mode.git", - "sha256": "4cbf6541e1a895eae6b0c0c819f5fadc017d0e155d752cd2f4d05145ad0ae59a", - "rev": "a87ab367fe0015917a1940b5acd9a581b1631801" + "sha256": "c3ae58ee2491ebebcce31418c27c7811a757eb303c739b2ab72c87a407190ca6", + "rev": "dcdcd81c9e875328e5ded06be61a603cc97face9" }, "recipe": { "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150817.35", - "deps": [] + "version": "20151215.1246", + "deps": [ + "emacs" + ] }, "point-stack": { "fetch": { @@ -5742,7 +5758,7 @@ }, "recipe": { "sha256": "17z9mc49x4092axs7lq6b6z7yrrhkl8bdx5f8gq6qy5lampgyzch", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140102.1423", "deps": [] @@ -5756,7 +5772,7 @@ }, "recipe": { "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150525.1129", "deps": [ @@ -5772,7 +5788,7 @@ }, "recipe": { "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.2043", "deps": [ @@ -5788,7 +5804,7 @@ }, "recipe": { "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1552", "deps": [ @@ -5804,7 +5820,7 @@ }, "recipe": { "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131230.419", "deps": [] @@ -5818,7 +5834,7 @@ }, "recipe": { "sha256": "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140626.235", "deps": [] @@ -5832,7 +5848,7 @@ }, "recipe": { "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.440", "deps": [ @@ -5851,7 +5867,7 @@ }, "recipe": { "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20081011.1526", "deps": [] @@ -5864,7 +5880,7 @@ }, "recipe": { "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101129.2052", "deps": [] @@ -5873,12 +5889,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/millejoh/emacs-ipython-notebook.git", - "sha256": "c2c5dd3a02ea00e194a376d1d50ee4c0fd52f95b0c219c154eb8cdca094aada3", + "sha256": "abb0443563ccd529f0eb1fdc52addd8c996671c0c60522dd027717662044abb9", "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" }, "recipe": { "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.1316", "deps": [ @@ -5895,7 +5911,7 @@ }, "recipe": { "sha256": "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.2316", "deps": [ @@ -5912,7 +5928,7 @@ }, "recipe": { "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.1057", "deps": [ @@ -5929,7 +5945,7 @@ }, "recipe": { "sha256": "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.641", "deps": [ @@ -5945,7 +5961,7 @@ }, "recipe": { "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150422.953", "deps": [] @@ -5959,7 +5975,7 @@ }, "recipe": { "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.1000", "deps": [ @@ -5976,7 +5992,7 @@ }, "recipe": { "sha256": "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150723.947", "deps": [] @@ -5990,7 +6006,7 @@ }, "recipe": { "sha256": "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130528.2227", "deps": [ @@ -6005,7 +6021,7 @@ }, "recipe": { "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150708.2036", "deps": [] @@ -6019,7 +6035,7 @@ }, "recipe": { "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140127.1246", "deps": [ @@ -6032,14 +6048,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/emacsmirror/mpg123.git", - "sha256": "3a9352550182e2b6c193b88de862878f6e149c089b4a52c28b117316875531b4", - "rev": "46b0fb53c2003c08c269371f68c2fb7aeb19ce82" + "sha256": "eb1d3da510cac9689c7ae5405f8868ae9d2b7cb7d498310a8b660d51790de324", + "rev": "ed2307843ca54ebf0ca5e5d2e79b41e79527c45c" }, "recipe": { "sha256": "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150110.2016", + "version": "20151214.1350", "deps": [] }, "paredit-everywhere": { @@ -6051,7 +6067,7 @@ }, "recipe": { "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150821.2344", "deps": [ @@ -6067,7 +6083,7 @@ }, "recipe": { "sha256": "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141128.407", "deps": [] @@ -6081,7 +6097,7 @@ }, "recipe": { "sha256": "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150131.352", "deps": [ @@ -6097,7 +6113,7 @@ }, "recipe": { "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.528", "deps": [ @@ -6114,7 +6130,7 @@ }, "recipe": { "sha256": "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140107.1004", "deps": [] @@ -6128,7 +6144,7 @@ }, "recipe": { "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.2227", "deps": [ @@ -6146,7 +6162,7 @@ }, "recipe": { "sha256": "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150115.1301", "deps": [ @@ -6165,7 +6181,7 @@ }, "recipe": { "sha256": "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1137", "deps": [ @@ -6182,7 +6198,7 @@ }, "recipe": { "sha256": "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131223.700", "deps": [ @@ -6198,7 +6214,7 @@ }, "recipe": { "sha256": "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120223.1608", "deps": [] @@ -6212,7 +6228,7 @@ }, "recipe": { "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130409.1249", "deps": [ @@ -6228,7 +6244,7 @@ }, "recipe": { "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150601.206", "deps": [] @@ -6242,7 +6258,7 @@ }, "recipe": { "sha256": "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140208.914", "deps": [] @@ -6256,7 +6272,7 @@ }, "recipe": { "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131219.2239", "deps": [] @@ -6270,7 +6286,7 @@ }, "recipe": { "sha256": "04fmhravd3ld4n1n820wlnr1jvmk7c7cdazd15gazixrlz6fm4fk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150823.1357", "deps": [] @@ -6284,7 +6300,7 @@ }, "recipe": { "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131127.206", "deps": [ @@ -6299,7 +6315,7 @@ }, "recipe": { "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150403.1121", "deps": [] @@ -6313,7 +6329,7 @@ }, "recipe": { "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150920.653", "deps": [ @@ -6331,7 +6347,7 @@ }, "recipe": { "sha256": "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.833", "deps": [ @@ -6347,7 +6363,7 @@ }, "recipe": { "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.1015", "deps": [] @@ -6361,7 +6377,7 @@ }, "recipe": { "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120829.710", "deps": [ @@ -6377,7 +6393,7 @@ }, "recipe": { "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141121.1230", "deps": [] @@ -6390,7 +6406,7 @@ }, "recipe": { "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1550", "deps": [ @@ -6405,7 +6421,7 @@ }, "recipe": { "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150402.1829", "deps": [] @@ -6419,7 +6435,7 @@ }, "recipe": { "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150328.118", "deps": [] @@ -6433,7 +6449,7 @@ }, "recipe": { "sha256": "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130329.1748", "deps": [ @@ -6449,7 +6465,7 @@ }, "recipe": { "sha256": "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.1813", "deps": [ @@ -6465,7 +6481,7 @@ }, "recipe": { "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140816.1148", "deps": [] @@ -6479,7 +6495,7 @@ }, "recipe": { "sha256": "1jl9sk372j4162av9kfcbqp0cc5wpm86nkqg8rskfgmsi4ncp4ph", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150501.2226", "deps": [ @@ -6500,7 +6516,7 @@ }, "recipe": { "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151019.1035", "deps": [ @@ -6516,7 +6532,7 @@ }, "recipe": { "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140728.1736", "deps": [] @@ -6529,7 +6545,7 @@ }, "recipe": { "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150116.2302", "deps": [] @@ -6542,7 +6558,7 @@ }, "recipe": { "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130407.1320", "deps": [] @@ -6556,7 +6572,7 @@ }, "recipe": { "sha256": "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.405", "deps": [] @@ -6570,7 +6586,7 @@ }, "recipe": { "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1120", "deps": [ @@ -6587,7 +6603,7 @@ }, "recipe": { "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.334", "deps": [ @@ -6603,7 +6619,7 @@ }, "recipe": { "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150523.1003", "deps": [] @@ -6617,11 +6633,28 @@ }, "recipe": { "sha256": "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121208.558", "deps": [] }, + "clojars": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/joshuamiller/clojars.el.git", + "sha256": "6673e1acac09915a900578e13ef9fefd06d96889251c0f6601709bda014b28e4", + "rev": "b500b243c92d4311c4041ff3ecbb6a1dbbf8090f" + }, + "recipe": { + "sha256": "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1", + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + }, + "version": "20151215.1433", + "deps": [ + "cl-lib", + "request" + ] + }, "jump": { "fetch": { "tag": "fetchgit", @@ -6631,7 +6664,7 @@ }, "recipe": { "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.329", "deps": [ @@ -6648,7 +6681,7 @@ }, "recipe": { "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.1116", "deps": [ @@ -6666,7 +6699,7 @@ }, "recipe": { "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140830.1721", "deps": [ @@ -6682,7 +6715,7 @@ }, "recipe": { "sha256": "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121017.57", "deps": [] @@ -6696,7 +6729,7 @@ }, "recipe": { "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.400", "deps": [ @@ -6721,7 +6754,7 @@ }, "recipe": { "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150922.905", "deps": [] @@ -6735,7 +6768,7 @@ }, "recipe": { "sha256": "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.407", "deps": [ @@ -6752,7 +6785,7 @@ }, "recipe": { "sha256": "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141108.2315", "deps": [ @@ -6764,14 +6797,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/syl20bnr/evil-escape.git", - "sha256": "c81e8fac620edf194bafe61a644a3eaa0c13bf8248adce22cae5545a001ad58e", - "rev": "befb07d03c0c06ff5c40eb9cdd436c97fc49f394" + "sha256": "684159f82702dd310c050c6d8197b77b39acb7b43fa358a5f0a07a79a5b67230", + "rev": "32a6c6c31eaa5678205ce658baaab7eb5ca9c9e3" }, "recipe": { "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151211.2028", + "version": "20151214.1311", "deps": [ "cl-lib", "emacs", @@ -6787,7 +6820,7 @@ }, "recipe": { "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1012", "deps": [ @@ -6805,7 +6838,7 @@ }, "recipe": { "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140625.650", "deps": [] @@ -6819,7 +6852,7 @@ }, "recipe": { "sha256": "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1651", "deps": [ @@ -6835,7 +6868,7 @@ }, "recipe": { "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151102.943", "deps": [] @@ -6849,7 +6882,7 @@ }, "recipe": { "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.815", "deps": [ @@ -6869,7 +6902,7 @@ }, "recipe": { "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150731.1046", "deps": [] @@ -6883,7 +6916,7 @@ }, "recipe": { "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140620.1609", "deps": [] @@ -6892,12 +6925,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/pjones/bufshow.git", - "sha256": "21b136aea7dda2c694e08d66fdfeb4466813551550edef4f25dd3cf699857d5f", + "sha256": "4615a76ead605c28cc318591774a883d966ec8a0585faf5e2112f9237e43ce30", "rev": "afabb87e07da7f035ca0ca85ed95e3936ea64547" }, "recipe": { "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130711.1239", "deps": [ @@ -6913,7 +6946,7 @@ }, "recipe": { "sha256": "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140107.422", "deps": [ @@ -6928,7 +6961,7 @@ }, "recipe": { "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121115.443", "deps": [] @@ -6942,7 +6975,7 @@ }, "recipe": { "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.15", "deps": [ @@ -6960,7 +6993,7 @@ }, "recipe": { "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.828", "deps": [ @@ -6976,7 +7009,7 @@ }, "recipe": { "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110722.1051", "deps": [] @@ -6990,7 +7023,7 @@ }, "recipe": { "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1707", "deps": [ @@ -7007,7 +7040,7 @@ }, "recipe": { "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.1029", "deps": [ @@ -7025,7 +7058,7 @@ }, "recipe": { "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140512.900", "deps": [] @@ -7039,7 +7072,7 @@ }, "recipe": { "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141220.238", "deps": [ @@ -7056,7 +7089,7 @@ }, "recipe": { "sha256": "137qqfnla3hjm6qcnzpsgrw173px0k5dwq9apns5cdryxx3ahcvv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141028.218", "deps": [] @@ -7070,7 +7103,7 @@ }, "recipe": { "sha256": "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150731.455", "deps": [ @@ -7090,7 +7123,7 @@ }, "recipe": { "sha256": "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151011.1226", "deps": [ @@ -7107,7 +7140,7 @@ }, "recipe": { "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.441", "deps": [ @@ -7123,7 +7156,7 @@ }, "recipe": { "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.455", "deps": [] @@ -7137,7 +7170,7 @@ }, "recipe": { "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.1015", "deps": [] @@ -7150,7 +7183,7 @@ }, "recipe": { "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.720", "deps": [] @@ -7164,7 +7197,7 @@ }, "recipe": { "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.101", "deps": [] @@ -7178,7 +7211,7 @@ }, "recipe": { "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130506.8", "deps": [ @@ -7196,7 +7229,7 @@ }, "recipe": { "sha256": "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150924.847", "deps": [] @@ -7210,7 +7243,7 @@ }, "recipe": { "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150601.542", "deps": [] @@ -7224,7 +7257,7 @@ }, "recipe": { "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150601.1209", "deps": [] @@ -7238,7 +7271,7 @@ }, "recipe": { "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150416.1458", "deps": [] @@ -7252,7 +7285,7 @@ }, "recipe": { "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150824.1800", "deps": [] @@ -7266,7 +7299,7 @@ }, "recipe": { "sha256": "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.118", "deps": [ @@ -7282,7 +7315,7 @@ }, "recipe": { "sha256": "0i5j9bnrncxar8hpy3d0566d0y5s4ywakskf27d3kxfyrwqi4l4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131208.1114", "deps": [ @@ -7299,7 +7332,7 @@ }, "recipe": { "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.203", "deps": [ @@ -7316,7 +7349,7 @@ }, "recipe": { "sha256": "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1716", "deps": [ @@ -7331,7 +7364,7 @@ }, "recipe": { "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091012.1230", "deps": [] @@ -7345,7 +7378,7 @@ }, "recipe": { "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150313.1012", "deps": [ @@ -7361,7 +7394,7 @@ }, "recipe": { "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150708.141", "deps": [] @@ -7375,7 +7408,7 @@ }, "recipe": { "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.728", "deps": [ @@ -7397,7 +7430,7 @@ }, "recipe": { "sha256": "1gckzcwpg4am1ryjy08aic98mbafb64wkfmnm98d64kiwbpaacly", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150506.2052", "deps": [] @@ -7411,7 +7444,7 @@ }, "recipe": { "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.1300", "deps": [ @@ -7428,7 +7461,7 @@ }, "recipe": { "sha256": "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150911.432", "deps": [] @@ -7442,7 +7475,7 @@ }, "recipe": { "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1023", "deps": [] @@ -7456,7 +7489,7 @@ }, "recipe": { "sha256": "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150119.2033", "deps": [] @@ -7470,7 +7503,7 @@ }, "recipe": { "sha256": "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130513.1352", "deps": [ @@ -7486,7 +7519,7 @@ }, "recipe": { "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1513", "deps": [ @@ -7501,7 +7534,7 @@ }, "recipe": { "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141021.1338", "deps": [] @@ -7515,7 +7548,7 @@ }, "recipe": { "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150909.2039", "deps": [] @@ -7529,7 +7562,7 @@ }, "recipe": { "sha256": "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140118.957", "deps": [ @@ -7545,7 +7578,7 @@ }, "recipe": { "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140818.255", "deps": [] @@ -7559,7 +7592,7 @@ }, "recipe": { "sha256": "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150917.1802", "deps": [ @@ -7575,7 +7608,7 @@ }, "recipe": { "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141204.1541", "deps": [] @@ -7589,7 +7622,7 @@ }, "recipe": { "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.2103", "deps": [] @@ -7603,7 +7636,7 @@ }, "recipe": { "sha256": "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150417.1026", "deps": [] @@ -7617,7 +7650,7 @@ }, "recipe": { "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1658", "deps": [ @@ -7633,7 +7666,7 @@ }, "recipe": { "sha256": "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130301.148", "deps": [] @@ -7647,7 +7680,7 @@ }, "recipe": { "sha256": "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.1700", "deps": [ @@ -7664,7 +7697,7 @@ }, "recipe": { "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150404.951", "deps": [] @@ -7678,7 +7711,7 @@ }, "recipe": { "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1224", "deps": [ @@ -7695,7 +7728,7 @@ }, "recipe": { "sha256": "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150607.945", "deps": [ @@ -7711,7 +7744,7 @@ }, "recipe": { "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.1420", "deps": [] @@ -7725,7 +7758,7 @@ }, "recipe": { "sha256": "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140909.38", "deps": [ @@ -7740,7 +7773,7 @@ }, "recipe": { "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140807.1550", "deps": [] @@ -7754,7 +7787,7 @@ }, "recipe": { "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150730.1408", "deps": [ @@ -7771,7 +7804,7 @@ }, "recipe": { "sha256": "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.438", "deps": [] @@ -7785,7 +7818,7 @@ }, "recipe": { "sha256": "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150522.2119", "deps": [] @@ -7799,7 +7832,7 @@ }, "recipe": { "sha256": "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.338", "deps": [ @@ -7815,7 +7848,7 @@ }, "recipe": { "sha256": "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150812.1141", "deps": [] @@ -7829,7 +7862,7 @@ }, "recipe": { "sha256": "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.406", "deps": [] @@ -7843,7 +7876,7 @@ }, "recipe": { "sha256": "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.17", "deps": [] @@ -7857,7 +7890,7 @@ }, "recipe": { "sha256": "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141231.1407", "deps": [ @@ -7875,7 +7908,7 @@ }, "recipe": { "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150115.1623", "deps": [ @@ -7893,7 +7926,7 @@ }, "recipe": { "sha256": "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130321.2314", "deps": [] @@ -7907,7 +7940,7 @@ }, "recipe": { "sha256": "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150213.2142", "deps": [ @@ -7924,7 +7957,7 @@ }, "recipe": { "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150826.1732", "deps": [ @@ -7944,7 +7977,7 @@ }, "recipe": { "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150102.912", "deps": [] @@ -7958,7 +7991,7 @@ }, "recipe": { "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.534", "deps": [ @@ -7975,7 +8008,7 @@ }, "recipe": { "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.1646", "deps": [ @@ -7991,7 +8024,7 @@ }, "recipe": { "sha256": "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150417.612", "deps": [] @@ -8005,7 +8038,7 @@ }, "recipe": { "sha256": "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.426", "deps": [] @@ -8019,7 +8052,7 @@ }, "recipe": { "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130829.1343", "deps": [ @@ -8030,14 +8063,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/iqbalansari/mu4e-alert.git", - "sha256": "f9cbf71b5a8ea7f18ef71f09ff3dafd1f001fb72bd1f268f3303ecc672227ad2", - "rev": "2331db1777a401a1385bfadb6d46eaf4d7fc555f" + "sha256": "2c858859615c1e26c2b00f639fef086cc41fb610fb9430a8a2ae8e5afcee4d58", + "rev": "7ae95b309f8092ae639aeaba1d89c516f61a56c5" }, "recipe": { "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151117.317", + "version": "20151214.1227", "deps": [ "alert", "emacs", @@ -8053,7 +8086,7 @@ }, "recipe": { "sha256": "0c0zs07lspwczbcba56fai0rshjzx9zd3jqxgj9nwjf9xlcr8m3j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150119.1441", "deps": [] @@ -8067,7 +8100,7 @@ }, "recipe": { "sha256": "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150725.909", "deps": [] @@ -8081,7 +8114,7 @@ }, "recipe": { "sha256": "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131229.1011", "deps": [ @@ -8097,7 +8130,7 @@ }, "recipe": { "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150811.806", "deps": [ @@ -8114,7 +8147,7 @@ }, "recipe": { "sha256": "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.1727", "deps": [] @@ -8128,7 +8161,7 @@ }, "recipe": { "sha256": "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.102", "deps": [ @@ -8143,7 +8176,7 @@ }, "recipe": { "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150228.1213", "deps": [] @@ -8157,7 +8190,7 @@ }, "recipe": { "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140815.1813", "deps": [ @@ -8173,7 +8206,7 @@ }, "recipe": { "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1820", "deps": [] @@ -8183,11 +8216,11 @@ "tag": "fetchsvn", "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", - "rev": "53114" + "rev": "53137" }, "recipe": { "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150424.952", "deps": [] @@ -8201,7 +8234,7 @@ }, "recipe": { "sha256": "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141127.447", "deps": [] @@ -8215,7 +8248,7 @@ }, "recipe": { "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130823.2254", "deps": [] @@ -8229,7 +8262,7 @@ }, "recipe": { "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110911.504", "deps": [] @@ -8243,7 +8276,7 @@ }, "recipe": { "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150409.1934", "deps": [ @@ -8259,7 +8292,7 @@ }, "recipe": { "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150410.1110", "deps": [] @@ -8273,7 +8306,7 @@ }, "recipe": { "sha256": "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1619", "deps": [ @@ -8284,12 +8317,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/project-persist.git", - "sha256": "8ff90cf595c202ae759835658a220787f50db5567198c03a3fe81883466481ee", + "sha256": "b2148a6d7095b7ea4e99a1c51362375aec9589cb5582e48197d68c83f9121113", "rev": "8da45c80b23b1d7499eac11a258fd7382312a304" }, "recipe": { "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150519.1524", "deps": [] @@ -8303,7 +8336,7 @@ }, "recipe": { "sha256": "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131020.1354", "deps": [ @@ -8320,7 +8353,7 @@ }, "recipe": { "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.742", "deps": [ @@ -8336,7 +8369,7 @@ }, "recipe": { "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.527", "deps": [ @@ -8352,7 +8385,7 @@ }, "recipe": { "sha256": "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150419.649", "deps": [ @@ -8368,7 +8401,7 @@ }, "recipe": { "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150423.722", "deps": [ @@ -8385,7 +8418,7 @@ }, "recipe": { "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.1206", "deps": [ @@ -8402,7 +8435,7 @@ }, "recipe": { "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121104.1300", "deps": [ @@ -8418,7 +8451,7 @@ }, "recipe": { "sha256": "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151012.804", "deps": [] @@ -8432,7 +8465,7 @@ }, "recipe": { "sha256": "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150708.912", "deps": [] @@ -8446,7 +8479,7 @@ }, "recipe": { "sha256": "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151026.920", "deps": [] @@ -8460,7 +8493,7 @@ }, "recipe": { "sha256": "06fy4aiflsynnybbrahfcmg0swxrfnwn48gr8ly3sqfpc037h2f3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.450", "deps": [ @@ -8476,7 +8509,7 @@ }, "recipe": { "sha256": "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.1713", "deps": [] @@ -8490,7 +8523,7 @@ }, "recipe": { "sha256": "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140413.1625", "deps": [] @@ -8504,7 +8537,7 @@ }, "recipe": { "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.816", "deps": [] @@ -8517,7 +8550,7 @@ }, "recipe": { "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.659", "deps": [] @@ -8531,7 +8564,7 @@ }, "recipe": { "sha256": "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150716.824", "deps": [] @@ -8545,7 +8578,7 @@ }, "recipe": { "sha256": "0f5qwv4f8gn5nxsqn57bbb3y0w5whjvhv3pls88d5n68lkd1k4si", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140730.447", "deps": [] @@ -8559,7 +8592,7 @@ }, "recipe": { "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.2256", "deps": [ @@ -8578,7 +8611,7 @@ }, "recipe": { "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141230.738", "deps": [] @@ -8592,7 +8625,7 @@ }, "recipe": { "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.2143", "deps": [] @@ -8606,7 +8639,7 @@ }, "recipe": { "sha256": "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140619.1102", "deps": [] @@ -8620,7 +8653,7 @@ }, "recipe": { "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1145", "deps": [ @@ -8641,7 +8674,7 @@ }, "recipe": { "sha256": "15njmanpj3qb8ic3k4sbrngqnsg85lvlj32dmii3y9bpgvis3k6f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110112.1907", "deps": [] @@ -8655,7 +8688,7 @@ }, "recipe": { "sha256": "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150707.1044", "deps": [ @@ -8671,7 +8704,7 @@ }, "recipe": { "sha256": "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130423.1048", "deps": [ @@ -8687,7 +8720,7 @@ }, "recipe": { "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120406.1551", "deps": [] @@ -8701,7 +8734,7 @@ }, "recipe": { "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130907.332", "deps": [] @@ -8715,7 +8748,7 @@ }, "recipe": { "sha256": "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150105.1636", "deps": [] @@ -8729,7 +8762,7 @@ }, "recipe": { "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121001.2245", "deps": [] @@ -8743,7 +8776,7 @@ }, "recipe": { "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150219.2330", "deps": [ @@ -8755,12 +8788,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "acef59b5bc48c0369744d91ee949a6fb573592f999880775f92f747669652095", + "sha256": "e7a0756c60b165c328baedf6376574a79198a2086c46666ea42a02f9e307a2cd", "rev": "44b93337549fa501b404767852a25b7a8b9af02f" }, "recipe": { "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1035", "deps": [ @@ -8776,7 +8809,7 @@ }, "recipe": { "sha256": "0fg313mx9jz92lf9lr5apvma9ixfz02dvyzw1phsgzawi7hai264", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131031.1832", "deps": [ @@ -8792,7 +8825,7 @@ }, "recipe": { "sha256": "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130609.443", "deps": [ @@ -8807,7 +8840,7 @@ }, "recipe": { "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150519.1147", "deps": [] @@ -8821,7 +8854,7 @@ }, "recipe": { "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140729.603", "deps": [ @@ -8838,7 +8871,7 @@ }, "recipe": { "sha256": "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.305", "deps": [ @@ -8854,7 +8887,7 @@ }, "recipe": { "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140927.29", "deps": [] @@ -8867,7 +8900,7 @@ }, "recipe": { "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150509.1607", "deps": [ @@ -8883,7 +8916,7 @@ }, "recipe": { "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150208.2015", "deps": [] @@ -8896,7 +8929,7 @@ }, "recipe": { "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.627", "deps": [] @@ -8910,7 +8943,7 @@ }, "recipe": { "sha256": "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130126.1823", "deps": [] @@ -8924,7 +8957,7 @@ }, "recipe": { "sha256": "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150325.918", "deps": [ @@ -8940,7 +8973,7 @@ }, "recipe": { "sha256": "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150621.623", "deps": [ @@ -8956,7 +8989,7 @@ }, "recipe": { "sha256": "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150119.1554", "deps": [] @@ -8970,7 +9003,7 @@ }, "recipe": { "sha256": "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140707.720", "deps": [ @@ -8987,7 +9020,7 @@ }, "recipe": { "sha256": "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141012.217", "deps": [] @@ -9001,7 +9034,7 @@ }, "recipe": { "sha256": "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.334", "deps": [ @@ -9017,7 +9050,7 @@ }, "recipe": { "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.853", "deps": [ @@ -9035,7 +9068,7 @@ }, "recipe": { "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151022.1950", "deps": [ @@ -9052,7 +9085,7 @@ }, "recipe": { "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.10", "deps": [ @@ -9073,7 +9106,7 @@ }, "recipe": { "sha256": "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150502.1528", "deps": [] @@ -9087,7 +9120,7 @@ }, "recipe": { "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.519", "deps": [ @@ -9104,7 +9137,7 @@ }, "recipe": { "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.1751", "deps": [ @@ -9120,7 +9153,7 @@ }, "recipe": { "sha256": "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140929.1318", "deps": [] @@ -9134,7 +9167,7 @@ }, "recipe": { "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.744", "deps": [] @@ -9148,7 +9181,7 @@ }, "recipe": { "sha256": "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.1531", "deps": [ @@ -9164,7 +9197,7 @@ }, "recipe": { "sha256": "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150729.2110", "deps": [] @@ -9178,7 +9211,7 @@ }, "recipe": { "sha256": "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141227.1530", "deps": [ @@ -9190,12 +9223,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/sviridov/undercover.el.git", - "sha256": "f29644cd8fc903556f2ed11d12c4e7a9318f91480489a70347d45b4223c2753a", - "rev": "1a203408a43c3d984be143768793a94b8f2ddb0c" + "sha256": "cc64a61caa1c47ed162f4d8bbd129397348707f4f69911da45966a022f24a316", + "rev": "7b38281c21a0ed9f7260d58aca6b4b2471672cfd" }, "recipe": { "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150817.1210", "deps": [ @@ -9213,7 +9246,7 @@ }, "recipe": { "sha256": "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131110.741", "deps": [ @@ -9231,7 +9264,7 @@ }, "recipe": { "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150814.236", "deps": [ @@ -9248,7 +9281,7 @@ }, "recipe": { "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120928.1545", "deps": [] @@ -9262,7 +9295,7 @@ }, "recipe": { "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.605", "deps": [ @@ -9279,7 +9312,7 @@ }, "recipe": { "sha256": "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140205.2151", "deps": [] @@ -9293,7 +9326,7 @@ }, "recipe": { "sha256": "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150719.842", "deps": [ @@ -9309,7 +9342,7 @@ }, "recipe": { "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150908.1438", "deps": [] @@ -9323,7 +9356,7 @@ }, "recipe": { "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -9337,7 +9370,7 @@ }, "recipe": { "sha256": "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.1748", "deps": [ @@ -9354,7 +9387,7 @@ }, "recipe": { "sha256": "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150719.1431", "deps": [ @@ -9370,7 +9403,7 @@ }, "recipe": { "sha256": "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.1640", "deps": [ @@ -9386,7 +9419,7 @@ }, "recipe": { "sha256": "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141115.143", "deps": [] @@ -9400,7 +9433,7 @@ }, "recipe": { "sha256": "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.747", "deps": [] @@ -9414,7 +9447,7 @@ }, "recipe": { "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141120.149", "deps": [] @@ -9428,7 +9461,7 @@ }, "recipe": { "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140626.1616", "deps": [ @@ -9444,7 +9477,7 @@ }, "recipe": { "sha256": "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150628.1842", "deps": [] @@ -9458,7 +9491,7 @@ }, "recipe": { "sha256": "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.54", "deps": [] @@ -9472,7 +9505,7 @@ }, "recipe": { "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150721.1854", "deps": [ @@ -9490,7 +9523,7 @@ }, "recipe": { "sha256": "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130620.1446", "deps": [ @@ -9505,7 +9538,7 @@ }, "recipe": { "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20081128.906", "deps": [] @@ -9519,7 +9552,7 @@ }, "recipe": { "sha256": "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140902.1602", "deps": [ @@ -9535,7 +9568,7 @@ }, "recipe": { "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141203.1224", "deps": [ @@ -9552,7 +9585,7 @@ }, "recipe": { "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.1636", "deps": [] @@ -9566,7 +9599,7 @@ }, "recipe": { "sha256": "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140310.1100", "deps": [ @@ -9577,12 +9610,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/capitaomorte/yasnippet.git", - "sha256": "ae030f66630e1099efe2897b70ab6f30858139f24e5c2ebef32836207cc18a2d", + "sha256": "c47b122d4aeefbb6d6fc061dc1a519ff4432e90672e620798f33e25c4d78a0a3", "rev": "71f0142edae6196535bfc27b79f317dc7a12ea1d" }, "recipe": { "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.2333", "deps": [] @@ -9596,7 +9629,7 @@ }, "recipe": { "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1257", "deps": [] @@ -9610,7 +9643,7 @@ }, "recipe": { "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150105.705", "deps": [] @@ -9624,7 +9657,7 @@ }, "recipe": { "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.821", "deps": [] @@ -9638,7 +9671,7 @@ }, "recipe": { "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140604.1147", "deps": [ @@ -9655,7 +9688,7 @@ }, "recipe": { "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130720.533", "deps": [ @@ -9671,7 +9704,7 @@ }, "recipe": { "sha256": "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121129.1452", "deps": [] @@ -9684,7 +9717,7 @@ }, "recipe": { "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1534", "deps": [ @@ -9700,7 +9733,7 @@ }, "recipe": { "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150405.1808", "deps": [ @@ -9717,7 +9750,7 @@ }, "recipe": { "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150608.1923", "deps": [ @@ -9733,7 +9766,7 @@ }, "recipe": { "sha256": "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131014.129", "deps": [ @@ -9750,7 +9783,7 @@ }, "recipe": { "sha256": "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130219.419", "deps": [] @@ -9764,7 +9797,7 @@ }, "recipe": { "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130520.1155", "deps": [] @@ -9778,7 +9811,7 @@ }, "recipe": { "sha256": "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150528.1536", "deps": [ @@ -9795,7 +9828,7 @@ }, "recipe": { "sha256": "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.2107", "deps": [] @@ -9809,7 +9842,7 @@ }, "recipe": { "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140302.613", "deps": [ @@ -9828,7 +9861,7 @@ }, "recipe": { "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.1314", "deps": [ @@ -9850,7 +9883,7 @@ }, "recipe": { "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20080502.1152", "deps": [] @@ -9864,7 +9897,7 @@ }, "recipe": { "sha256": "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150628.2133", "deps": [ @@ -9883,7 +9916,7 @@ }, "recipe": { "sha256": "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131122.1527", "deps": [] @@ -9896,7 +9929,7 @@ }, "recipe": { "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130605.1239", "deps": [] @@ -9910,7 +9943,7 @@ }, "recipe": { "sha256": "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.139", "deps": [] @@ -9924,7 +9957,7 @@ }, "recipe": { "sha256": "1b3n8h39m85inxsqvzwgb9fqnqn2sgib91hrisn1gpgfyjydzkr7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140816.1208", "deps": [ @@ -9940,7 +9973,7 @@ }, "recipe": { "sha256": "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150516.355", "deps": [] @@ -9954,7 +9987,7 @@ }, "recipe": { "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150531.807", "deps": [ @@ -9971,7 +10004,7 @@ }, "recipe": { "sha256": "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130923.1317", "deps": [] @@ -9985,7 +10018,7 @@ }, "recipe": { "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150301.513", "deps": [ @@ -10003,7 +10036,7 @@ }, "recipe": { "sha256": "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140826.1449", "deps": [] @@ -10017,7 +10050,7 @@ }, "recipe": { "sha256": "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.1418", "deps": [] @@ -10031,7 +10064,7 @@ }, "recipe": { "sha256": "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150403.1804", "deps": [] @@ -10045,7 +10078,7 @@ }, "recipe": { "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.308", "deps": [ @@ -10061,7 +10094,7 @@ }, "recipe": { "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150217.632", "deps": [] @@ -10075,7 +10108,7 @@ }, "recipe": { "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1630", "deps": [] @@ -10089,7 +10122,7 @@ }, "recipe": { "sha256": "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150908.248", "deps": [ @@ -10108,7 +10141,7 @@ }, "recipe": { "sha256": "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.2032", "deps": [ @@ -10126,7 +10159,7 @@ }, "recipe": { "sha256": "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140802.642", "deps": [ @@ -10143,7 +10176,7 @@ }, "recipe": { "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.706", "deps": [ @@ -10159,7 +10192,7 @@ }, "recipe": { "sha256": "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150621.2242", "deps": [ @@ -10175,7 +10208,7 @@ }, "recipe": { "sha256": "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.1727", "deps": [ @@ -10191,7 +10224,7 @@ }, "recipe": { "sha256": "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150121.1957", "deps": [ @@ -10207,7 +10240,7 @@ }, "recipe": { "sha256": "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150812.258", "deps": [] @@ -10221,7 +10254,7 @@ }, "recipe": { "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131203.2225", "deps": [] @@ -10235,7 +10268,7 @@ }, "recipe": { "sha256": "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140709.2004", "deps": [] @@ -10249,7 +10282,7 @@ }, "recipe": { "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130302.536", "deps": [ @@ -10266,7 +10299,7 @@ }, "recipe": { "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.735", "deps": [ @@ -10283,7 +10316,7 @@ }, "recipe": { "sha256": "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140306.850", "deps": [] @@ -10297,7 +10330,7 @@ }, "recipe": { "sha256": "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130913.124", "deps": [ @@ -10313,7 +10346,7 @@ }, "recipe": { "sha256": "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101118.1524", "deps": [] @@ -10327,7 +10360,7 @@ }, "recipe": { "sha256": "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150602.2322", "deps": [ @@ -10345,7 +10378,7 @@ }, "recipe": { "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150723.935", "deps": [ @@ -10361,7 +10394,7 @@ }, "recipe": { "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.617", "deps": [ @@ -10381,7 +10414,7 @@ }, "recipe": { "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.847", "deps": [ @@ -10399,7 +10432,7 @@ }, "recipe": { "sha256": "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120304.1222", "deps": [] @@ -10413,7 +10446,7 @@ }, "recipe": { "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150621.1311", "deps": [] @@ -10427,7 +10460,7 @@ }, "recipe": { "sha256": "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.130", "deps": [ @@ -10443,7 +10476,7 @@ }, "recipe": { "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140304.1859", "deps": [] @@ -10457,7 +10490,7 @@ }, "recipe": { "sha256": "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.2000", "deps": [] @@ -10471,7 +10504,7 @@ }, "recipe": { "sha256": "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.1427", "deps": [] @@ -10485,7 +10518,7 @@ }, "recipe": { "sha256": "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140720.546", "deps": [ @@ -10502,7 +10535,7 @@ }, "recipe": { "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121026.1618", "deps": [] @@ -10516,7 +10549,7 @@ }, "recipe": { "sha256": "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140218.2004", "deps": [] @@ -10530,7 +10563,7 @@ }, "recipe": { "sha256": "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.952", "deps": [] @@ -10544,7 +10577,7 @@ }, "recipe": { "sha256": "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130210.1715", "deps": [] @@ -10558,7 +10591,7 @@ }, "recipe": { "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.252", "deps": [ @@ -10574,7 +10607,7 @@ }, "recipe": { "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.332", "deps": [] @@ -10588,7 +10621,7 @@ }, "recipe": { "sha256": "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120910.351", "deps": [] @@ -10602,7 +10635,7 @@ }, "recipe": { "sha256": "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130619.1704", "deps": [] @@ -10616,7 +10649,7 @@ }, "recipe": { "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.236", "deps": [ @@ -10632,7 +10665,7 @@ }, "recipe": { "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140306.845", "deps": [] @@ -10646,7 +10679,7 @@ }, "recipe": { "sha256": "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151026.1433", "deps": [] @@ -10660,7 +10693,7 @@ }, "recipe": { "sha256": "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150505.1350", "deps": [ @@ -10676,7 +10709,7 @@ }, "recipe": { "sha256": "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150218.1229", "deps": [ @@ -10692,7 +10725,7 @@ }, "recipe": { "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141223.1414", "deps": [ @@ -10710,7 +10743,7 @@ }, "recipe": { "sha256": "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.914", "deps": [ @@ -10728,7 +10761,7 @@ }, "recipe": { "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.2126", "deps": [ @@ -10745,7 +10778,7 @@ }, "recipe": { "sha256": "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.839", "deps": [] @@ -10759,7 +10792,7 @@ }, "recipe": { "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150920.1324", "deps": [ @@ -10775,7 +10808,7 @@ }, "recipe": { "sha256": "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141128.43", "deps": [ @@ -10792,7 +10825,7 @@ }, "recipe": { "sha256": "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130207.1509", "deps": [] @@ -10805,7 +10838,7 @@ }, "recipe": { "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131210.1222", "deps": [] @@ -10819,7 +10852,7 @@ }, "recipe": { "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.2036", "deps": [ @@ -10831,12 +10864,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/commercialhaskell/stack-ide.git", - "sha256": "6ecd37a02a41f0c29c977e6e4558291bf32ee33d9f07dfef0a0dbccbbd93a414", + "sha256": "1ecc97de0c3165a1b201fcef2815e7fb3d36e70a6eb43c004eb3de1b7b70be91", "rev": "c1e8416b2beb86c7f50109255d28379ca0b17735" }, "recipe": { "sha256": "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150923.1023", "deps": [ @@ -10854,7 +10887,7 @@ }, "recipe": { "sha256": "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120912.24", "deps": [] @@ -10868,7 +10901,7 @@ }, "recipe": { "sha256": "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140513.1316", "deps": [] @@ -10881,7 +10914,7 @@ }, "recipe": { "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100119.1548", "deps": [] @@ -10895,7 +10928,7 @@ }, "recipe": { "sha256": "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140412.812", "deps": [ @@ -10912,7 +10945,7 @@ }, "recipe": { "sha256": "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.1645", "deps": [ @@ -10929,7 +10962,7 @@ }, "recipe": { "sha256": "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140831.721", "deps": [ @@ -10946,7 +10979,7 @@ }, "recipe": { "sha256": "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150820.908", "deps": [] @@ -10955,12 +10988,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/project-persist-drawer.git", - "sha256": "3b9f9a8389df069d7e547a28db72c4b4dae3ce987cf20ad5f42e387b18cfa152", + "sha256": "8c5550403d4e4d2fe12092f2a04c4ce53809b0b8f4cad840593923060c6c8aeb", "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" }, "recipe": { "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.622", "deps": [ @@ -10975,7 +11008,7 @@ }, "recipe": { "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140808.1635", "deps": [] @@ -10989,7 +11022,7 @@ }, "recipe": { "sha256": "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120128.1501", "deps": [] @@ -11003,7 +11036,7 @@ }, "recipe": { "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150219.18", "deps": [ @@ -11020,7 +11053,7 @@ }, "recipe": { "sha256": "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.414", "deps": [] @@ -11034,7 +11067,7 @@ }, "recipe": { "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140805.1338", "deps": [ @@ -11050,7 +11083,7 @@ }, "recipe": { "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150126.606", "deps": [ @@ -11066,7 +11099,7 @@ }, "recipe": { "sha256": "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.1252", "deps": [ @@ -11082,7 +11115,7 @@ }, "recipe": { "sha256": "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131203.1437", "deps": [] @@ -11092,11 +11125,11 @@ "tag": "fetchsvn", "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", - "rev": "53114" + "rev": "53137" }, "recipe": { "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150306.1959", "deps": [ @@ -11112,7 +11145,7 @@ }, "recipe": { "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130131.120", "deps": [] @@ -11126,7 +11159,7 @@ }, "recipe": { "sha256": "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.619", "deps": [ @@ -11145,7 +11178,7 @@ }, "recipe": { "sha256": "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151010.1229", "deps": [] @@ -11159,7 +11192,7 @@ }, "recipe": { "sha256": "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140217.1512", "deps": [ @@ -11179,7 +11212,7 @@ }, "recipe": { "sha256": "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150128.1151", "deps": [] @@ -11193,7 +11226,7 @@ }, "recipe": { "sha256": "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150327.1218", "deps": [ @@ -11211,7 +11244,7 @@ }, "recipe": { "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150607.1201", "deps": [ @@ -11227,7 +11260,7 @@ }, "recipe": { "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150920.1013", "deps": [] @@ -11241,7 +11274,7 @@ }, "recipe": { "sha256": "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140902.1227", "deps": [] @@ -11254,7 +11287,7 @@ }, "recipe": { "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20111222.1156", "deps": [] @@ -11268,7 +11301,7 @@ }, "recipe": { "sha256": "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130831.1155", "deps": [ @@ -11280,12 +11313,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/timvisher/vimgolf.git", - "sha256": "881e3b81f47fc501aff8e34ee8a703a820f2dd6868297a330766bdeabfc3b1b1", + "sha256": "94b580d1d1e00368e92a36b5bd5b1814b40384302185a13e18e93bfd2683c5e2", "rev": "289bef87963b660c0cf6ea1f648ac2440c609c88" }, "recipe": { "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140814.1648", "deps": [] @@ -11299,7 +11332,7 @@ }, "recipe": { "sha256": "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130731.1021", "deps": [] @@ -11313,7 +11346,7 @@ }, "recipe": { "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130929.147", "deps": [ @@ -11329,7 +11362,7 @@ }, "recipe": { "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130130.1550", "deps": [] @@ -11343,7 +11376,7 @@ }, "recipe": { "sha256": "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150217.1149", "deps": [ @@ -11360,7 +11393,7 @@ }, "recipe": { "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.851", "deps": [ @@ -11376,7 +11409,7 @@ }, "recipe": { "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140810.234", "deps": [] @@ -11390,7 +11423,7 @@ }, "recipe": { "sha256": "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150905.438", "deps": [] @@ -11404,7 +11437,7 @@ }, "recipe": { "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.2240", "deps": [ @@ -11420,7 +11453,7 @@ }, "recipe": { "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150302.1048", "deps": [] @@ -11434,7 +11467,7 @@ }, "recipe": { "sha256": "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150430.1642", "deps": [] @@ -11448,7 +11481,7 @@ }, "recipe": { "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141219.1829", "deps": [] @@ -11462,7 +11495,7 @@ }, "recipe": { "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.1409", "deps": [] @@ -11476,7 +11509,7 @@ }, "recipe": { "sha256": "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130816.1554", "deps": [] @@ -11490,7 +11523,7 @@ }, "recipe": { "sha256": "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.1842", "deps": [ @@ -11501,12 +11534,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/eschulte/rinari.git", - "sha256": "fb86d6dccb24fd0e62e7bda739f250fc2e508b0b2a027d67c9571854c90891ac", + "sha256": "a40dc36b14bdeced68a71c2a7aea318c66c5796ebc5209c2ff592bcf71ff7099", "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" }, "recipe": { "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150709.140", "deps": [ @@ -11522,7 +11555,7 @@ }, "recipe": { "sha256": "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140806.1125", "deps": [ @@ -11537,7 +11570,7 @@ }, "recipe": { "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150630.1632", "deps": [ @@ -11553,7 +11586,7 @@ }, "recipe": { "sha256": "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121113.700", "deps": [] @@ -11567,7 +11600,7 @@ }, "recipe": { "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.49", "deps": [ @@ -11587,7 +11620,7 @@ }, "recipe": { "sha256": "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.109", "deps": [ @@ -11606,7 +11639,7 @@ }, "recipe": { "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141207.1352", "deps": [] @@ -11620,7 +11653,7 @@ }, "recipe": { "sha256": "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151022.751", "deps": [ @@ -11636,7 +11669,7 @@ }, "recipe": { "sha256": "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.455", "deps": [ @@ -11654,7 +11687,7 @@ }, "recipe": { "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150505.932", "deps": [ @@ -11670,7 +11703,7 @@ }, "recipe": { "sha256": "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150806.113", "deps": [] @@ -11684,7 +11717,7 @@ }, "recipe": { "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140811.1609", "deps": [ @@ -11700,7 +11733,7 @@ }, "recipe": { "sha256": "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.35", "deps": [] @@ -11714,7 +11747,7 @@ }, "recipe": { "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140717.2229", "deps": [] @@ -11723,14 +11756,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/justbur/emacs-bind-map.git", - "sha256": "a1096492c880af65717276343d8e576e623ac983a7590d67751271aded02069e", - "rev": "af26966c9a32bdfc71bbe388bba27fde144bda4b" + "sha256": "baf6863618424fc74721504fe9017a049f2478ea682b134fb338195e2ee37fd8", + "rev": "bb7a8b225879fc6a865464e5e63865653ae74427" }, "recipe": { "sha256": "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151214.819", + "version": "20151214.1902", "deps": [ "emacs" ] @@ -11744,7 +11777,7 @@ }, "recipe": { "sha256": "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.2145", "deps": [ @@ -11759,7 +11792,7 @@ }, "recipe": { "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1833", "deps": [] @@ -11773,7 +11806,7 @@ }, "recipe": { "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.754", "deps": [] @@ -11787,7 +11820,7 @@ }, "recipe": { "sha256": "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150708.937", "deps": [] @@ -11801,7 +11834,7 @@ }, "recipe": { "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1433", "deps": [] @@ -11815,7 +11848,7 @@ }, "recipe": { "sha256": "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131023.1351", "deps": [ @@ -11832,7 +11865,7 @@ }, "recipe": { "sha256": "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140216.1046", "deps": [ @@ -11848,7 +11881,7 @@ }, "recipe": { "sha256": "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150506.2327", "deps": [] @@ -11857,12 +11890,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/k1LoW/emacs-serverspec.git", - "sha256": "d7c8496483173311871f653468c6ba8b38855b2bb109eca70169483f5dae3c4a", + "sha256": "141e525f5827ce7841d556ae8fe02c455c124847fd020da39b38012fd2c7b732", "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" }, "recipe": { "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150623.655", "deps": [ @@ -11881,7 +11914,7 @@ }, "recipe": { "sha256": "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130920.1259", "deps": [] @@ -11895,7 +11928,7 @@ }, "recipe": { "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150811.1908", "deps": [ @@ -11913,7 +11946,7 @@ }, "recipe": { "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141123.1516", "deps": [] @@ -11927,7 +11960,7 @@ }, "recipe": { "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130228.408", "deps": [] @@ -11941,7 +11974,7 @@ }, "recipe": { "sha256": "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150706.24", "deps": [ @@ -11957,7 +11990,7 @@ }, "recipe": { "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.1123", "deps": [] @@ -11971,7 +12004,7 @@ }, "recipe": { "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150805.1206", "deps": [] @@ -11985,7 +12018,7 @@ }, "recipe": { "sha256": "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.615", "deps": [ @@ -12001,7 +12034,7 @@ }, "recipe": { "sha256": "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151001.1528", "deps": [ @@ -12019,7 +12052,7 @@ }, "recipe": { "sha256": "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141117.714", "deps": [ @@ -12035,7 +12068,7 @@ }, "recipe": { "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150122.1432", "deps": [] @@ -12049,7 +12082,7 @@ }, "recipe": { "sha256": "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141210.627", "deps": [] @@ -12063,7 +12096,7 @@ }, "recipe": { "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.2320", "deps": [ @@ -12082,7 +12115,7 @@ }, "recipe": { "sha256": "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140905.1906", "deps": [ @@ -12098,7 +12131,7 @@ }, "recipe": { "sha256": "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.1415", "deps": [ @@ -12114,7 +12147,7 @@ }, "recipe": { "sha256": "1krn7zn2y8p51m8dxai5nbrwbdviz6zrjzz0kykya9cqz4n9dhln", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120118.2334", "deps": [] @@ -12128,7 +12161,7 @@ }, "recipe": { "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150629.435", "deps": [] @@ -12142,7 +12175,7 @@ }, "recipe": { "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141112.1915", "deps": [] @@ -12156,7 +12189,7 @@ }, "recipe": { "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140731.726", "deps": [ @@ -12174,7 +12207,7 @@ }, "recipe": { "sha256": "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140709.743", "deps": [] @@ -12188,7 +12221,7 @@ }, "recipe": { "sha256": "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120904.1542", "deps": [] @@ -12202,7 +12235,7 @@ }, "recipe": { "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130607.129", "deps": [ @@ -12218,7 +12251,7 @@ }, "recipe": { "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150603.647", "deps": [] @@ -12232,7 +12265,7 @@ }, "recipe": { "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.1116", "deps": [ @@ -12249,7 +12282,7 @@ }, "recipe": { "sha256": "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140816.1244", "deps": [] @@ -12263,7 +12296,7 @@ }, "recipe": { "sha256": "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150312.849", "deps": [] @@ -12277,7 +12310,7 @@ }, "recipe": { "sha256": "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.448", "deps": [] @@ -12291,7 +12324,7 @@ }, "recipe": { "sha256": "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150501.1316", "deps": [] @@ -12305,7 +12338,7 @@ }, "recipe": { "sha256": "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140420.306", "deps": [ @@ -12322,7 +12355,7 @@ }, "recipe": { "sha256": "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.1221", "deps": [ @@ -12339,7 +12372,7 @@ }, "recipe": { "sha256": "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131004.1844", "deps": [] @@ -12353,7 +12386,7 @@ }, "recipe": { "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150916.2057", "deps": [ @@ -12370,7 +12403,7 @@ }, "recipe": { "sha256": "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.816", "deps": [ @@ -12387,7 +12420,7 @@ }, "recipe": { "sha256": "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1636", "deps": [ @@ -12406,7 +12439,7 @@ }, "recipe": { "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140703.352", "deps": [] @@ -12419,7 +12452,7 @@ }, "recipe": { "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120426.2023", "deps": [] @@ -12433,7 +12466,7 @@ }, "recipe": { "sha256": "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.2330", "deps": [ @@ -12449,7 +12482,7 @@ }, "recipe": { "sha256": "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.508", "deps": [] @@ -12463,7 +12496,7 @@ }, "recipe": { "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150618.150", "deps": [] @@ -12477,7 +12510,7 @@ }, "recipe": { "sha256": "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130805.949", "deps": [ @@ -12493,7 +12526,7 @@ }, "recipe": { "sha256": "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140926.639", "deps": [] @@ -12507,7 +12540,7 @@ }, "recipe": { "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.1056", "deps": [ @@ -12523,7 +12556,7 @@ }, "recipe": { "sha256": "1kbyl69vwhp1wdivr3ijmj7mghdnjaw7adk8az7bwyzjvpq73171", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131010.154", "deps": [ @@ -12539,7 +12572,7 @@ }, "recipe": { "sha256": "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150928.1133", "deps": [] @@ -12553,7 +12586,7 @@ }, "recipe": { "sha256": "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150909.1034", "deps": [ @@ -12571,7 +12604,7 @@ }, "recipe": { "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130725.2119", "deps": [] @@ -12585,7 +12618,7 @@ }, "recipe": { "sha256": "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130707.859", "deps": [] @@ -12599,7 +12632,7 @@ }, "recipe": { "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140802.1120", "deps": [] @@ -12613,7 +12646,7 @@ }, "recipe": { "sha256": "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150512.1549", "deps": [ @@ -12629,7 +12662,7 @@ }, "recipe": { "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150425.1506", "deps": [ @@ -12645,7 +12678,7 @@ }, "recipe": { "sha256": "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131123.1116", "deps": [] @@ -12659,7 +12692,7 @@ }, "recipe": { "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140426.928", "deps": [ @@ -12675,7 +12708,7 @@ }, "recipe": { "sha256": "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130326.1750", "deps": [] @@ -12688,7 +12721,7 @@ }, "recipe": { "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150815.938", "deps": [] @@ -12702,7 +12735,7 @@ }, "recipe": { "sha256": "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.1955", "deps": [] @@ -12716,7 +12749,7 @@ }, "recipe": { "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150712.30", "deps": [ @@ -12733,7 +12766,7 @@ }, "recipe": { "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150615.1225", "deps": [] @@ -12747,7 +12780,7 @@ }, "recipe": { "sha256": "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.2308", "deps": [ @@ -12763,7 +12796,7 @@ }, "recipe": { "sha256": "1pin1x6g68y75pa3vz2i9h5pmhjamh5rd5ladb1z3flcavsls64j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120403.1315", "deps": [] @@ -12777,7 +12810,7 @@ }, "recipe": { "sha256": "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140616.1333", "deps": [ @@ -12792,7 +12825,7 @@ }, "recipe": { "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1907", "deps": [] @@ -12806,7 +12839,7 @@ }, "recipe": { "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150806.645", "deps": [] @@ -12820,7 +12853,7 @@ }, "recipe": { "sha256": "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140215.1447", "deps": [ @@ -12838,7 +12871,7 @@ }, "recipe": { "sha256": "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141207.607", "deps": [] @@ -12852,7 +12885,7 @@ }, "recipe": { "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140505.855", "deps": [] @@ -12866,7 +12899,7 @@ }, "recipe": { "sha256": "0c9c5kmixvhk9il8hsxzf2k14fggb9b9mw59g8q3hgpn5g7kgpkv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.2006", "deps": [ @@ -12878,11 +12911,11 @@ "tag": "fetchsvn", "url": "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el", "sha256": "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz", - "rev": "143530" + "rev": "143628" }, "recipe": { "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150717.239", "deps": [ @@ -12900,7 +12933,7 @@ }, "recipe": { "sha256": "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140617.1258", "deps": [] @@ -12914,7 +12947,7 @@ }, "recipe": { "sha256": "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150308.718", "deps": [] @@ -12928,7 +12961,7 @@ }, "recipe": { "sha256": "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150718.1509", "deps": [] @@ -12942,7 +12975,7 @@ }, "recipe": { "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140606.743", "deps": [ @@ -12958,7 +12991,7 @@ }, "recipe": { "sha256": "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150630.1021", "deps": [] @@ -12972,7 +13005,7 @@ }, "recipe": { "sha256": "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131216.428", "deps": [] @@ -12985,7 +13018,7 @@ }, "recipe": { "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.1851", "deps": [] @@ -12999,7 +13032,7 @@ }, "recipe": { "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.1922", "deps": [] @@ -13013,7 +13046,7 @@ }, "recipe": { "sha256": "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141126.431", "deps": [ @@ -13030,7 +13063,7 @@ }, "recipe": { "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150717.7", "deps": [] @@ -13044,7 +13077,7 @@ }, "recipe": { "sha256": "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140609.956", "deps": [] @@ -13058,7 +13091,7 @@ }, "recipe": { "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100930.943", "deps": [] @@ -13072,7 +13105,7 @@ }, "recipe": { "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131001.1034", "deps": [] @@ -13086,7 +13119,7 @@ }, "recipe": { "sha256": "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150304.803", "deps": [] @@ -13100,7 +13133,7 @@ }, "recipe": { "sha256": "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150908.909", "deps": [ @@ -13116,7 +13149,7 @@ }, "recipe": { "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140419.16", "deps": [ @@ -13132,7 +13165,7 @@ }, "recipe": { "sha256": "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.1639", "deps": [ @@ -13146,14 +13179,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/skeeto/elfeed.git", - "sha256": "8775dadb0d863ec79f52cfe211d75fa4eeba91742b5eb8bb56c30cf1d9fddb76", - "rev": "19879a4dfb3b6932bb411284d686f212d60f6244" + "sha256": "17534484c8de20792785b622ce008d1ee2f4b75e31885db83d2ea3c1a7529dc3", + "rev": "8a38a4c81496d40d3b7c45a6df5e41258a52843c" }, "recipe": { "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151213.2113", + "version": "20151215.1138", "deps": [ "emacs" ] @@ -13167,7 +13200,7 @@ }, "recipe": { "sha256": "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150113.2309", "deps": [ @@ -13185,7 +13218,7 @@ }, "recipe": { "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.2229", "deps": [ @@ -13201,7 +13234,7 @@ }, "recipe": { "sha256": "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130201.1338", "deps": [ @@ -13218,7 +13251,7 @@ }, "recipe": { "sha256": "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130412.430", "deps": [] @@ -13232,7 +13265,7 @@ }, "recipe": { "sha256": "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130207.1402", "deps": [] @@ -13246,7 +13279,7 @@ }, "recipe": { "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.1635", "deps": [ @@ -13262,7 +13295,7 @@ }, "recipe": { "sha256": "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.1718", "deps": [ @@ -13279,7 +13312,7 @@ }, "recipe": { "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141004.1603", "deps": [] @@ -13293,7 +13326,7 @@ }, "recipe": { "sha256": "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150506.1639", "deps": [] @@ -13307,7 +13340,7 @@ }, "recipe": { "sha256": "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150213.1436", "deps": [] @@ -13321,7 +13354,7 @@ }, "recipe": { "sha256": "012pm38d9v8qmg83vrsp39y6y30il0956rlrcmb5m5nzla84z2c3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.704", "deps": [ @@ -13337,7 +13370,7 @@ }, "recipe": { "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.2223", "deps": [ @@ -13353,7 +13386,7 @@ }, "recipe": { "sha256": "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100330.543", "deps": [] @@ -13367,7 +13400,7 @@ }, "recipe": { "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141128.1905", "deps": [ @@ -13385,7 +13418,7 @@ }, "recipe": { "sha256": "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100124.428", "deps": [] @@ -13399,7 +13432,7 @@ }, "recipe": { "sha256": "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130216.704", "deps": [] @@ -13413,7 +13446,7 @@ }, "recipe": { "sha256": "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.2245", "deps": [] @@ -13427,7 +13460,7 @@ }, "recipe": { "sha256": "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141207.948", "deps": [] @@ -13441,7 +13474,7 @@ }, "recipe": { "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140506.1818", "deps": [] @@ -13455,7 +13488,7 @@ }, "recipe": { "sha256": "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140217.1818", "deps": [ @@ -13471,7 +13504,7 @@ }, "recipe": { "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140606.751", "deps": [] @@ -13485,7 +13518,7 @@ }, "recipe": { "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150114.415", "deps": [] @@ -13499,7 +13532,7 @@ }, "recipe": { "sha256": "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.2107", "deps": [] @@ -13513,7 +13546,7 @@ }, "recipe": { "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.2155", "deps": [ @@ -13529,7 +13562,7 @@ }, "recipe": { "sha256": "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.1025", "deps": [ @@ -13547,7 +13580,7 @@ }, "recipe": { "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.2117", "deps": [ @@ -13564,7 +13597,7 @@ }, "recipe": { "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.2223", "deps": [] @@ -13578,7 +13611,7 @@ }, "recipe": { "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130614.525", "deps": [] @@ -13592,7 +13625,7 @@ }, "recipe": { "sha256": "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150712.1630", "deps": [] @@ -13606,7 +13639,7 @@ }, "recipe": { "sha256": "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150517.2256", "deps": [ @@ -13624,7 +13657,7 @@ }, "recipe": { "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.2025", "deps": [] @@ -13638,7 +13671,7 @@ }, "recipe": { "sha256": "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131110.515", "deps": [ @@ -13654,7 +13687,7 @@ }, "recipe": { "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090428.1431", "deps": [] @@ -13668,7 +13701,7 @@ }, "recipe": { "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150110.54", "deps": [] @@ -13682,7 +13715,7 @@ }, "recipe": { "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141213.1205", "deps": [ @@ -13698,7 +13731,7 @@ }, "recipe": { "sha256": "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.28", "deps": [ @@ -13715,7 +13748,7 @@ }, "recipe": { "sha256": "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150102.1521", "deps": [ @@ -13737,7 +13770,7 @@ }, "recipe": { "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150815.1034", "deps": [] @@ -13751,7 +13784,7 @@ }, "recipe": { "sha256": "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150613.549", "deps": [ @@ -13768,7 +13801,7 @@ }, "recipe": { "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.427", "deps": [ @@ -13785,7 +13818,7 @@ }, "recipe": { "sha256": "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.1242", "deps": [] @@ -13799,7 +13832,7 @@ }, "recipe": { "sha256": "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.57", "deps": [ @@ -13815,7 +13848,7 @@ }, "recipe": { "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.1114", "deps": [ @@ -13831,7 +13864,7 @@ }, "recipe": { "sha256": "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130812.1139", "deps": [ @@ -13848,7 +13881,7 @@ }, "recipe": { "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150902.758", "deps": [] @@ -13862,7 +13895,7 @@ }, "recipe": { "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.1608", "deps": [ @@ -13880,7 +13913,7 @@ }, "recipe": { "sha256": "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1207", "deps": [ @@ -13896,7 +13929,7 @@ }, "recipe": { "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.941", "deps": [ @@ -13913,7 +13946,7 @@ }, "recipe": { "sha256": "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140120.1740", "deps": [] @@ -13927,7 +13960,7 @@ }, "recipe": { "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140101.910", "deps": [ @@ -13943,7 +13976,7 @@ }, "recipe": { "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101223.420", "deps": [] @@ -13956,7 +13989,7 @@ }, "recipe": { "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1608", "deps": [] @@ -13965,12 +13998,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/openscad/openscad.git", - "sha256": "e57ce0dd6532f82adec76026b1bbb3d89a68a514096001317187a522bfb8ab23", - "rev": "81994d2c3d88dc4b1b7221a57b831060484fd27b" + "sha256": "bf0270c3ac0da3802549da5d86fad78ffef0b990c2c86173ab55e282a32c026e", + "rev": "f0a935d8c6b9994da05986313e3c4b7ab05b44be" }, "recipe": { "sha256": "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.2229", "deps": [] @@ -13984,7 +14017,7 @@ }, "recipe": { "sha256": "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.743", "deps": [] @@ -13998,7 +14031,7 @@ }, "recipe": { "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150312.603", "deps": [] @@ -14012,7 +14045,7 @@ }, "recipe": { "sha256": "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140119.2144", "deps": [ @@ -14028,7 +14061,7 @@ }, "recipe": { "sha256": "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150605.2239", "deps": [] @@ -14042,7 +14075,7 @@ }, "recipe": { "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131012.1601", "deps": [] @@ -14051,12 +14084,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/kivy/kivy.git", - "sha256": "54891a62afa23336e8c711dc210067b816e4341a073ac9634b24daf073a0625a", - "rev": "bd131ee882c8de9f6a7fd15a6c2a1537ea792ee9" + "sha256": "ba696df188fc1f0fe4143544dffdce918e6d48cacc77d8a727c6892eace897d4", + "rev": "a87d082710a24c23038f69374cc1423d073ae505" }, "recipe": { "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140524.757", "deps": [] @@ -14070,7 +14103,7 @@ }, "recipe": { "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150218.318", "deps": [ @@ -14090,7 +14123,7 @@ }, "recipe": { "sha256": "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.259", "deps": [ @@ -14106,7 +14139,7 @@ }, "recipe": { "sha256": "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140902.1149", "deps": [] @@ -14120,7 +14153,7 @@ }, "recipe": { "sha256": "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130920.1142", "deps": [] @@ -14134,7 +14167,7 @@ }, "recipe": { "sha256": "1na5vk01q8bmglwmb37676313mmc5n28c4sip23kpxypkp6wvn3g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.357", "deps": [] @@ -14148,7 +14181,7 @@ }, "recipe": { "sha256": "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150810.1209", "deps": [] @@ -14161,7 +14194,7 @@ }, "recipe": { "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150425.1301", "deps": [] @@ -14170,12 +14203,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/kiwanami/emacs-deferred.git", - "sha256": "67fa8ca7328ad2978f87e7fd08c0baeb158e02a024cbffa38990e2a1730aca84", - "rev": "e9fd3691ee3666d46eb9f8bd5b697a54837c8c0b" + "sha256": "3fe9f37148e79bdac8cdd2d436d7f2a38149bb924db87898cc73d1e2fd65e6e8", + "rev": "01710a52a1206a0da1374335e6b89ad5aed92160" }, "recipe": { "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150309.2252", "deps": [ @@ -14191,7 +14224,7 @@ }, "recipe": { "sha256": "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.139", "deps": [] @@ -14205,7 +14238,7 @@ }, "recipe": { "sha256": "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140116.1516", "deps": [] @@ -14218,7 +14251,7 @@ }, "recipe": { "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1610", "deps": [] @@ -14232,7 +14265,7 @@ }, "recipe": { "sha256": "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.253", "deps": [] @@ -14246,7 +14279,7 @@ }, "recipe": { "sha256": "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091203.1223", "deps": [] @@ -14260,7 +14293,7 @@ }, "recipe": { "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.319", "deps": [ @@ -14278,7 +14311,7 @@ }, "recipe": { "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -14292,7 +14325,7 @@ }, "recipe": { "sha256": "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151003.300", "deps": [] @@ -14306,7 +14339,7 @@ }, "recipe": { "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1009", "deps": [ @@ -14321,7 +14354,7 @@ }, "recipe": { "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130906.18", "deps": [] @@ -14335,7 +14368,7 @@ }, "recipe": { "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140513.1039", "deps": [ @@ -14352,7 +14385,7 @@ }, "recipe": { "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140520.403", "deps": [] @@ -14366,7 +14399,7 @@ }, "recipe": { "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.1203", "deps": [] @@ -14375,14 +14408,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/Andersbakken/rtags.git", - "sha256": "7993727a883800048b94e3e855cdb96b2474ebd4e83ce2a0b15176be37a7e7d7", - "rev": "725f85778f9dda303bc49437752ada8159d8f6a6" + "sha256": "351389ddd31ad78a5055be8c6ed7b0143a346a048ff1c8e788d5d0ef0bc9ba69", + "rev": "71f5031cdd1faae9a5b3ec0de9053f9da2e63cd8" }, "recipe": { "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151211.112", + "version": "20151215.147", "deps": [] }, "totd": { @@ -14394,7 +14427,7 @@ }, "recipe": { "sha256": "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150519.940", "deps": [ @@ -14411,7 +14444,7 @@ }, "recipe": { "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.1504", "deps": [ @@ -14429,7 +14462,7 @@ }, "recipe": { "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.637", "deps": [ @@ -14447,7 +14480,7 @@ }, "recipe": { "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.322", "deps": [ @@ -14464,7 +14497,7 @@ }, "recipe": { "sha256": "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.758", "deps": [ @@ -14479,7 +14512,7 @@ }, "recipe": { "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.826", "deps": [] @@ -14493,7 +14526,7 @@ }, "recipe": { "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150825.638", "deps": [ @@ -14512,7 +14545,7 @@ }, "recipe": { "sha256": "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150116.1000", "deps": [ @@ -14528,7 +14561,7 @@ }, "recipe": { "sha256": "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120111.400", "deps": [] @@ -14542,7 +14575,7 @@ }, "recipe": { "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150503.1914", "deps": [ @@ -14560,7 +14593,7 @@ }, "recipe": { "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.1603", "deps": [] @@ -14574,7 +14607,7 @@ }, "recipe": { "sha256": "03rxn2dh0xj89kl24jd19q7kmrn1hnr2cdl3519bpng298kxwni6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.107", "deps": [] @@ -14588,7 +14621,7 @@ }, "recipe": { "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140919.1117", "deps": [ @@ -14607,7 +14640,7 @@ }, "recipe": { "sha256": "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140930.1223", "deps": [ @@ -14623,7 +14656,7 @@ }, "recipe": { "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150320.217", "deps": [] @@ -14636,7 +14669,7 @@ }, "recipe": { "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150418.1028", "deps": [] @@ -14650,7 +14683,7 @@ }, "recipe": { "sha256": "024zz9l43y1kk2hm8l96h1ahril23cj35f0x72jrcfjysid7wpry", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150509.1618", "deps": [ @@ -14666,7 +14699,7 @@ }, "recipe": { "sha256": "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150819.1148", "deps": [ @@ -14682,7 +14715,7 @@ }, "recipe": { "sha256": "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130220.1250", "deps": [] @@ -14696,7 +14729,7 @@ }, "recipe": { "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140612.737", "deps": [ @@ -14715,7 +14748,7 @@ }, "recipe": { "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -14735,7 +14768,7 @@ }, "recipe": { "sha256": "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.717", "deps": [] @@ -14749,7 +14782,7 @@ }, "recipe": { "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130126.1818", "deps": [] @@ -14763,7 +14796,7 @@ }, "recipe": { "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.523", "deps": [ @@ -14783,7 +14816,7 @@ }, "recipe": { "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120520.932", "deps": [] @@ -14797,7 +14830,7 @@ }, "recipe": { "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150103.50", "deps": [ @@ -14813,7 +14846,7 @@ }, "recipe": { "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151019.822", "deps": [ @@ -14829,7 +14862,7 @@ }, "recipe": { "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150514.1610", "deps": [ @@ -14845,7 +14878,7 @@ }, "recipe": { "sha256": "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150621.2133", "deps": [ @@ -14861,7 +14894,7 @@ }, "recipe": { "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141102.926", "deps": [ @@ -14877,7 +14910,7 @@ }, "recipe": { "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.1453", "deps": [ @@ -14894,7 +14927,7 @@ }, "recipe": { "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150705.1905", "deps": [ @@ -14912,7 +14945,7 @@ }, "recipe": { "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150916.1415", "deps": [] @@ -14926,7 +14959,7 @@ }, "recipe": { "sha256": "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141212.717", "deps": [ @@ -14942,7 +14975,7 @@ }, "recipe": { "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141005.1431", "deps": [] @@ -14951,12 +14984,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/kiwanami/emacs-deferred.git", - "sha256": "67fa8ca7328ad2978f87e7fd08c0baeb158e02a024cbffa38990e2a1730aca84", - "rev": "e9fd3691ee3666d46eb9f8bd5b697a54837c8c0b" + "sha256": "3fe9f37148e79bdac8cdd2d436d7f2a38149bb924db87898cc73d1e2fd65e6e8", + "rev": "01710a52a1206a0da1374335e6b89ad5aed92160" }, "recipe": { "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.1857", "deps": [] @@ -14970,7 +15003,7 @@ }, "recipe": { "sha256": "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150915.1452", "deps": [ @@ -14987,7 +15020,7 @@ }, "recipe": { "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150321.413", "deps": [] @@ -15001,7 +15034,7 @@ }, "recipe": { "sha256": "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140116.856", "deps": [] @@ -15015,7 +15048,7 @@ }, "recipe": { "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140221.1754", "deps": [ @@ -15033,7 +15066,7 @@ }, "recipe": { "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1517", "deps": [ @@ -15050,7 +15083,7 @@ }, "recipe": { "sha256": "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.303", "deps": [] @@ -15064,7 +15097,7 @@ }, "recipe": { "sha256": "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150327.1216", "deps": [ @@ -15082,7 +15115,7 @@ }, "recipe": { "sha256": "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150312.1444", "deps": [] @@ -15096,7 +15129,7 @@ }, "recipe": { "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150728.618", "deps": [ @@ -15108,12 +15141,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-esqlite.git", - "sha256": "4f31dc12b04d76d1f5c66fa35189959ffcddecc46b70fd106ef6263e5ea5b6d6", + "sha256": "306f8a4781dceca65dccdeb1370598b8db5b2ee10e371ee1d80c52741abe6241", "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" }, "recipe": { "sha256": "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.606", "deps": [ @@ -15129,7 +15162,7 @@ }, "recipe": { "sha256": "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150515.947", "deps": [] @@ -15143,7 +15176,7 @@ }, "recipe": { "sha256": "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.542", "deps": [] @@ -15157,7 +15190,7 @@ }, "recipe": { "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141103.1541", "deps": [] @@ -15171,7 +15204,7 @@ }, "recipe": { "sha256": "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150312.814", "deps": [ @@ -15187,7 +15220,7 @@ }, "recipe": { "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140208.1037", "deps": [] @@ -15201,7 +15234,7 @@ }, "recipe": { "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140415.358", "deps": [ @@ -15217,7 +15250,7 @@ }, "recipe": { "sha256": "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150308.1312", "deps": [] @@ -15231,7 +15264,7 @@ }, "recipe": { "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150316.2028", "deps": [] @@ -15244,7 +15277,7 @@ }, "recipe": { "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151001.834", "deps": [] @@ -15258,7 +15291,7 @@ }, "recipe": { "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150528.1428", "deps": [ @@ -15275,7 +15308,7 @@ }, "recipe": { "sha256": "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120819.1914", "deps": [ @@ -15292,7 +15325,7 @@ }, "recipe": { "sha256": "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.1317", "deps": [ @@ -15308,7 +15341,7 @@ }, "recipe": { "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -15322,7 +15355,7 @@ }, "recipe": { "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.242", "deps": [ @@ -15338,7 +15371,7 @@ }, "recipe": { "sha256": "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.2259", "deps": [ @@ -15355,7 +15388,7 @@ }, "recipe": { "sha256": "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150812.502", "deps": [ @@ -15371,7 +15404,7 @@ }, "recipe": { "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150530.422", "deps": [] @@ -15385,7 +15418,7 @@ }, "recipe": { "sha256": "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.342", "deps": [ @@ -15403,7 +15436,7 @@ }, "recipe": { "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140317.536", "deps": [ @@ -15418,7 +15451,7 @@ }, "recipe": { "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1834", "deps": [] @@ -15432,7 +15465,7 @@ }, "recipe": { "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140103.1539", "deps": [ @@ -15448,7 +15481,7 @@ }, "recipe": { "sha256": "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.647", "deps": [ @@ -15460,12 +15493,12 @@ "tag": "fetchgit", "url": "git://github.com/ledger/ledger.git", "branchName": "next", - "sha256": "130cde00075ffeece7575f475e63be1e6bd64715028ede06b7b802c776c869da", - "rev": "429765ee4dbf6ea2ad654b4287fa6498bc55fa3a" + "sha256": "0155b2e2244ed392b2d25847b7cae7226f94f18d9f3776555d27eb8d1ab187ea", + "rev": "7eacf5130849b4d53948d4750e11bd08f8a97a27" }, "recipe": { "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151026.1742", "deps": [] @@ -15479,7 +15512,7 @@ }, "recipe": { "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.224", "deps": [] @@ -15493,7 +15526,7 @@ }, "recipe": { "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.601", "deps": [ @@ -15513,7 +15546,7 @@ }, "recipe": { "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140315.1129", "deps": [ @@ -15530,7 +15563,7 @@ }, "recipe": { "sha256": "1wj3z6ldlkaj99xqh7a497in1syn7shf2w1ffcn6aiskxjrzmpiq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.552", "deps": [ @@ -15546,7 +15579,7 @@ }, "recipe": { "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.657", "deps": [] @@ -15560,7 +15593,7 @@ }, "recipe": { "sha256": "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151017.253", "deps": [] @@ -15574,7 +15607,7 @@ }, "recipe": { "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150110.833", "deps": [ @@ -15591,7 +15624,7 @@ }, "recipe": { "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150105.925", "deps": [ @@ -15607,7 +15640,7 @@ }, "recipe": { "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150619.1003", "deps": [] @@ -15622,7 +15655,7 @@ }, "recipe": { "sha256": "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.106", "deps": [ @@ -15638,7 +15671,7 @@ }, "recipe": { "sha256": "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151020.1429", "deps": [] @@ -15652,7 +15685,7 @@ }, "recipe": { "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.248", "deps": [ @@ -15669,7 +15702,7 @@ }, "recipe": { "sha256": "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150909.1336", "deps": [ @@ -15686,7 +15719,7 @@ }, "recipe": { "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.1916", "deps": [] @@ -15700,7 +15733,7 @@ }, "recipe": { "sha256": "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150417.1755", "deps": [] @@ -15714,7 +15747,7 @@ }, "recipe": { "sha256": "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150703.1117", "deps": [] @@ -15728,7 +15761,7 @@ }, "recipe": { "sha256": "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130627.1853", "deps": [] @@ -15742,7 +15775,7 @@ }, "recipe": { "sha256": "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120630.1603", "deps": [] @@ -15756,7 +15789,7 @@ }, "recipe": { "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150817.214", "deps": [ @@ -15772,7 +15805,7 @@ }, "recipe": { "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120727.926", "deps": [] @@ -15786,7 +15819,7 @@ }, "recipe": { "sha256": "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150603.1210", "deps": [ @@ -15802,7 +15835,7 @@ }, "recipe": { "sha256": "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131015.1058", "deps": [ @@ -15818,7 +15851,7 @@ }, "recipe": { "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140816.733", "deps": [] @@ -15832,7 +15865,7 @@ }, "recipe": { "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140916.1322", "deps": [ @@ -15848,7 +15881,7 @@ }, "recipe": { "sha256": "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141101.120", "deps": [] @@ -15862,7 +15895,7 @@ }, "recipe": { "sha256": "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140509.722", "deps": [] @@ -15876,7 +15909,7 @@ }, "recipe": { "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.436", "deps": [] @@ -15890,7 +15923,7 @@ }, "recipe": { "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131231.830", "deps": [ @@ -15906,7 +15939,7 @@ }, "recipe": { "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140130.2016", "deps": [] @@ -15920,7 +15953,7 @@ }, "recipe": { "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150905.239", "deps": [ @@ -15937,7 +15970,7 @@ }, "recipe": { "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150913.1230", "deps": [] @@ -15951,7 +15984,7 @@ }, "recipe": { "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.2337", "deps": [ @@ -15968,7 +16001,7 @@ }, "recipe": { "sha256": "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150627.951", "deps": [ @@ -15984,7 +16017,7 @@ }, "recipe": { "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.313", "deps": [ @@ -16005,7 +16038,7 @@ }, "recipe": { "sha256": "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131012.730", "deps": [ @@ -16021,7 +16054,7 @@ }, "recipe": { "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151101.1358", "deps": [] @@ -16035,7 +16068,7 @@ }, "recipe": { "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.757", "deps": [] @@ -16049,7 +16082,7 @@ }, "recipe": { "sha256": "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140929.1335", "deps": [ @@ -16066,7 +16099,7 @@ }, "recipe": { "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.1248", "deps": [] @@ -16080,7 +16113,7 @@ }, "recipe": { "sha256": "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130630.739", "deps": [ @@ -16096,7 +16129,7 @@ }, "recipe": { "sha256": "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.758", "deps": [] @@ -16110,7 +16143,7 @@ }, "recipe": { "sha256": "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.937", "deps": [] @@ -16124,7 +16157,7 @@ }, "recipe": { "sha256": "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141224.22", "deps": [ @@ -16140,7 +16173,7 @@ }, "recipe": { "sha256": "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131224.905", "deps": [ @@ -16159,7 +16192,7 @@ }, "recipe": { "sha256": "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141128.408", "deps": [] @@ -16173,7 +16206,7 @@ }, "recipe": { "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150822.1436", "deps": [] @@ -16187,7 +16220,7 @@ }, "recipe": { "sha256": "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150518.809", "deps": [ @@ -16198,14 +16231,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/holomorph/transmission.git", - "sha256": "37e9f71ebc5ecde919bb9c4f3dc0defa92d56c3c15bdc89fc9af6d52e3b64c47", - "rev": "810484fbb3b5930b633a98e679e3396ca5d35844" + "sha256": "760f34f89c8b4b056a00019395d4c6c4a5331804566941d158e34c4c0328de4c", + "rev": "883d41ca3648838f66ca9dd7b9709be2b50b2ede" }, "recipe": { "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151206.1100", + "version": "20151215.343", "deps": [ "emacs", "let-alist" @@ -16220,7 +16253,7 @@ }, "recipe": { "sha256": "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.318", "deps": [] @@ -16234,7 +16267,7 @@ }, "recipe": { "sha256": "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140420.1143", "deps": [] @@ -16248,7 +16281,7 @@ }, "recipe": { "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.854", "deps": [ @@ -16264,7 +16297,7 @@ }, "recipe": { "sha256": "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150602.1346", "deps": [] @@ -16277,7 +16310,7 @@ }, "recipe": { "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.924", "deps": [] @@ -16291,7 +16324,7 @@ }, "recipe": { "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.640", "deps": [] @@ -16305,7 +16338,7 @@ }, "recipe": { "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.1809", "deps": [ @@ -16321,7 +16354,7 @@ }, "recipe": { "sha256": "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150404.218", "deps": [] @@ -16335,7 +16368,7 @@ }, "recipe": { "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150730.416", "deps": [ @@ -16354,7 +16387,7 @@ }, "recipe": { "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131014.5", "deps": [] @@ -16368,7 +16401,7 @@ }, "recipe": { "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.946", "deps": [ @@ -16385,7 +16418,7 @@ }, "recipe": { "sha256": "1alqrv9yhc1f8dhvh2kjcv8qbn1hdgza5iasmchr1wggxds3s50i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150501.1126", "deps": [ @@ -16401,7 +16434,7 @@ }, "recipe": { "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.1335", "deps": [] @@ -16415,7 +16448,7 @@ }, "recipe": { "sha256": "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141027.929", "deps": [] @@ -16429,7 +16462,7 @@ }, "recipe": { "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -16443,7 +16476,7 @@ }, "recipe": { "sha256": "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150326.31", "deps": [ @@ -16459,7 +16492,7 @@ }, "recipe": { "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141108.2108", "deps": [ @@ -16475,7 +16508,7 @@ }, "recipe": { "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140626.742", "deps": [ @@ -16498,7 +16531,7 @@ }, "recipe": { "sha256": "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150813.808", "deps": [ @@ -16515,7 +16548,7 @@ }, "recipe": { "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.456", "deps": [ @@ -16532,7 +16565,7 @@ }, "recipe": { "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.950", "deps": [ @@ -16551,7 +16584,7 @@ }, "recipe": { "sha256": "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150920.1533", "deps": [ @@ -16569,7 +16602,7 @@ }, "recipe": { "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.1836", "deps": [ @@ -16586,7 +16619,7 @@ }, "recipe": { "sha256": "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150506.159", "deps": [] @@ -16600,7 +16633,7 @@ }, "recipe": { "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.1102", "deps": [] @@ -16614,7 +16647,7 @@ }, "recipe": { "sha256": "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140823.1942", "deps": [] @@ -16628,7 +16661,7 @@ }, "recipe": { "sha256": "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.718", "deps": [ @@ -16646,7 +16679,7 @@ }, "recipe": { "sha256": "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130212.626", "deps": [ @@ -16664,7 +16697,7 @@ }, "recipe": { "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130602.748", "deps": [] @@ -16678,7 +16711,7 @@ }, "recipe": { "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150307.1642", "deps": [ @@ -16694,7 +16727,7 @@ }, "recipe": { "sha256": "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141005.40", "deps": [] @@ -16708,7 +16741,7 @@ }, "recipe": { "sha256": "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150615.2056", "deps": [ @@ -16725,7 +16758,7 @@ }, "recipe": { "sha256": "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131006.847", "deps": [] @@ -16739,7 +16772,7 @@ }, "recipe": { "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150829.2215", "deps": [] @@ -16753,7 +16786,7 @@ }, "recipe": { "sha256": "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140203.316", "deps": [] @@ -16762,12 +16795,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tjarvstrand/edts.git", - "sha256": "77a3437794bc04b6cef069f6bb539a1c4ce5c4407e49693b1c12621646b1c9d9", + "sha256": "1278403c6e98af9b9907c85eb46e935bacff34abeba3ae40f80455cc1abd2831", "rev": "70dfcfd8cc448c854fb67d65e005ba00e77384c5" }, "recipe": { "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.710", "deps": [ @@ -16790,7 +16823,7 @@ }, "recipe": { "sha256": "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.614", "deps": [] @@ -16804,7 +16837,7 @@ }, "recipe": { "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.756", "deps": [ @@ -16821,7 +16854,7 @@ }, "recipe": { "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110602.1822", "deps": [ @@ -16837,7 +16870,7 @@ }, "recipe": { "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.1212", "deps": [ @@ -16853,7 +16886,7 @@ }, "recipe": { "sha256": "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151015.1302", "deps": [] @@ -16867,7 +16900,7 @@ }, "recipe": { "sha256": "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.1340", "deps": [] @@ -16881,7 +16914,7 @@ }, "recipe": { "sha256": "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.726", "deps": [ @@ -16901,7 +16934,7 @@ }, "recipe": { "sha256": "0zhy94jpk29k51r7m1gd24jx7h6b68l38vhw27j3wz0ag1h5352k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110507.224", "deps": [] @@ -16915,7 +16948,7 @@ }, "recipe": { "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150901.247", "deps": [ @@ -16931,7 +16964,7 @@ }, "recipe": { "sha256": "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130306.1415", "deps": [] @@ -16945,7 +16978,7 @@ }, "recipe": { "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140717.2229", "deps": [] @@ -16959,7 +16992,7 @@ }, "recipe": { "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140815.1016", "deps": [ @@ -16970,14 +17003,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rust-lang/rust-mode.git", - "sha256": "f67c192b05f84b23e639a79ad713a82112420ba49fe473dc5b0726191f93c5bf", - "rev": "95d089cbc3a23c0dd23869e716520c31daefdf8f" + "sha256": "125b671fa783b3c5bd2bbb4a1fee2ffece51383475e195d45ebc68eed4cb7afb", + "rev": "b874bbe927e460695bd0bb7caf53b5dd8fe57a85" }, "recipe": { "sha256": "0h4gblg6ls8a2wa43r990lanl6ykx8j7c8yg5i3n151imzic2n33", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151203.832", + "version": "20151215.1303", "deps": [] }, "bug-reference-github": { @@ -16989,7 +17022,7 @@ }, "recipe": { "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131202.1503", "deps": [] @@ -17003,7 +17036,7 @@ }, "recipe": { "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1238", "deps": [ @@ -17019,7 +17052,7 @@ }, "recipe": { "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.447", "deps": [ @@ -17030,12 +17063,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/magit/magit.git", - "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", - "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.705", "deps": [ @@ -17053,7 +17086,7 @@ }, "recipe": { "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.1002", "deps": [ @@ -17070,7 +17103,7 @@ }, "recipe": { "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100807.1231", "deps": [] @@ -17084,7 +17117,7 @@ }, "recipe": { "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1257", "deps": [ @@ -17101,7 +17134,7 @@ }, "recipe": { "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.600", "deps": [ @@ -17117,7 +17150,7 @@ }, "recipe": { "sha256": "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131226.1408", "deps": [] @@ -17131,7 +17164,7 @@ }, "recipe": { "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150326.1118", "deps": [ @@ -17150,7 +17183,7 @@ }, "recipe": { "sha256": "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120531.1636", "deps": [] @@ -17164,7 +17197,7 @@ }, "recipe": { "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.521", "deps": [] @@ -17178,7 +17211,7 @@ }, "recipe": { "sha256": "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131207.2140", "deps": [] @@ -17192,7 +17225,7 @@ }, "recipe": { "sha256": "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140110.2211", "deps": [] @@ -17206,7 +17239,7 @@ }, "recipe": { "sha256": "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131217.911", "deps": [ @@ -17222,7 +17255,7 @@ }, "recipe": { "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.617", "deps": [ @@ -17238,7 +17271,7 @@ }, "recipe": { "sha256": "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1113", "deps": [] @@ -17252,7 +17285,7 @@ }, "recipe": { "sha256": "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151028.502", "deps": [] @@ -17266,7 +17299,7 @@ }, "recipe": { "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150829.832", "deps": [] @@ -17280,7 +17313,7 @@ }, "recipe": { "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150416.1257", "deps": [ @@ -17297,7 +17330,7 @@ }, "recipe": { "sha256": "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150714.908", "deps": [ @@ -17314,7 +17347,7 @@ }, "recipe": { "sha256": "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.617", "deps": [ @@ -17333,7 +17366,7 @@ }, "recipe": { "sha256": "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150711.1723", "deps": [ @@ -17349,7 +17382,7 @@ }, "recipe": { "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.2125", "deps": [ @@ -17366,7 +17399,7 @@ }, "recipe": { "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150720.1255", "deps": [ @@ -17383,7 +17416,7 @@ }, "recipe": { "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140619.505", "deps": [ @@ -17399,7 +17432,7 @@ }, "recipe": { "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140309.422", "deps": [] @@ -17413,7 +17446,7 @@ }, "recipe": { "sha256": "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150211.1149", "deps": [] @@ -17427,7 +17460,7 @@ }, "recipe": { "sha256": "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140222.2022", "deps": [ @@ -17438,12 +17471,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/pjones/ido-select-window.git", - "sha256": "f2d37dc889df751ce9317ddc406482180b678e0660ddd42fe896dc2c5d45ad87", + "sha256": "d0bbcac666d1e5dd9ba13e2eb3b898d2ae1c919ceede1e9272062121c835d350", "rev": "946db3db7a3fec582cc1a0097877f1250303b53a" }, "recipe": { "sha256": "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131220.1447", "deps": [ @@ -17458,7 +17491,7 @@ }, "recipe": { "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150630.1635", "deps": [] @@ -17472,7 +17505,7 @@ }, "recipe": { "sha256": "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140528.1627", "deps": [ @@ -17487,7 +17520,7 @@ }, "recipe": { "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130822.532", "deps": [] @@ -17501,7 +17534,7 @@ }, "recipe": { "sha256": "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141109.343", "deps": [] @@ -17515,7 +17548,7 @@ }, "recipe": { "sha256": "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140814.459", "deps": [] @@ -17529,7 +17562,7 @@ }, "recipe": { "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150825.1749", "deps": [] @@ -17543,7 +17576,7 @@ }, "recipe": { "sha256": "0cpd12vhshlk2v3w42n769gc0b3rsqc8wb7g84846v9r05ypinj2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150414.1810", "deps": [ @@ -17559,7 +17592,7 @@ }, "recipe": { "sha256": "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130605.1624", "deps": [ @@ -17576,7 +17609,7 @@ }, "recipe": { "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150427.2214", "deps": [] @@ -17590,7 +17623,7 @@ }, "recipe": { "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.531", "deps": [] @@ -17604,7 +17637,7 @@ }, "recipe": { "sha256": "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150629.1353", "deps": [ @@ -17620,7 +17653,7 @@ }, "recipe": { "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150428.1354", "deps": [ @@ -17637,7 +17670,7 @@ }, "recipe": { "sha256": "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151019.911", "deps": [] @@ -17651,7 +17684,7 @@ }, "recipe": { "sha256": "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.348", "deps": [] @@ -17664,7 +17697,7 @@ }, "recipe": { "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110616.1219", "deps": [] @@ -17678,7 +17711,7 @@ }, "recipe": { "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.519", "deps": [ @@ -17696,7 +17729,7 @@ }, "recipe": { "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1328", "deps": [ @@ -17712,7 +17745,7 @@ }, "recipe": { "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150703.854", "deps": [ @@ -17728,7 +17761,7 @@ }, "recipe": { "sha256": "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.608", "deps": [ @@ -17744,7 +17777,7 @@ }, "recipe": { "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.2038", "deps": [ @@ -17760,7 +17793,7 @@ }, "recipe": { "sha256": "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150430.713", "deps": [ @@ -17778,7 +17811,7 @@ }, "recipe": { "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130427.1008", "deps": [] @@ -17792,7 +17825,7 @@ }, "recipe": { "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.949", "deps": [] @@ -17806,7 +17839,7 @@ }, "recipe": { "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.918", "deps": [] @@ -17820,7 +17853,7 @@ }, "recipe": { "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.344", "deps": [ @@ -17836,7 +17869,7 @@ }, "recipe": { "sha256": "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150401.916", "deps": [ @@ -17852,7 +17885,7 @@ }, "recipe": { "sha256": "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150915.203", "deps": [] @@ -17866,7 +17899,7 @@ }, "recipe": { "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141007.656", "deps": [ @@ -17883,7 +17916,7 @@ }, "recipe": { "sha256": "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.2203", "deps": [ @@ -17899,7 +17932,7 @@ }, "recipe": { "sha256": "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.639", "deps": [ @@ -17915,7 +17948,7 @@ }, "recipe": { "sha256": "1x16wqfjfrh7kaqar5px61bf3lnlibvcbr5xaf3mcgph37sgi6la", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150324.810", "deps": [] @@ -17929,7 +17962,7 @@ }, "recipe": { "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -17945,7 +17978,7 @@ }, "recipe": { "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151002.2230", "deps": [] @@ -17959,7 +17992,7 @@ }, "recipe": { "sha256": "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140214.904", "deps": [ @@ -17975,7 +18008,7 @@ }, "recipe": { "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.934", "deps": [ @@ -17991,7 +18024,7 @@ }, "recipe": { "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130605.1100", "deps": [ @@ -18008,7 +18041,7 @@ }, "recipe": { "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120225.1455", "deps": [ @@ -18019,14 +18052,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/yuya373/emacs-slack.git", - "sha256": "c66fa3ab65f1a857a5993d34db1c312e01cb1109e616e782504fed673a552b81", - "rev": "4b0e2994a4b5ad57db7f9506b9b2b4d2de3c9dca" + "sha256": "6bbcaf113fe2e1e346379c24e2e792a5bf9a0e9caed427915945d93c9ff24750", + "rev": "0876db049fcb8b4f901ee40fc382c01c5477f024" }, "recipe": { "sha256": "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151213.2250", + "version": "20151214.2102", "deps": [ "alert", "circe", @@ -18045,7 +18078,7 @@ }, "recipe": { "sha256": "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130607.2149", "deps": [] @@ -18059,7 +18092,7 @@ }, "recipe": { "sha256": "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150426.2037", "deps": [] @@ -18073,7 +18106,7 @@ }, "recipe": { "sha256": "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140606.2106", "deps": [ @@ -18089,7 +18122,7 @@ }, "recipe": { "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.1441", "deps": [ @@ -18105,7 +18138,7 @@ }, "recipe": { "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20080329.2159", "deps": [] @@ -18119,7 +18152,7 @@ }, "recipe": { "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1536", "deps": [ @@ -18137,7 +18170,7 @@ }, "recipe": { "sha256": "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120515.1148", "deps": [] @@ -18151,7 +18184,7 @@ }, "recipe": { "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141011.938", "deps": [ @@ -18169,7 +18202,7 @@ }, "recipe": { "sha256": "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150602.2004", "deps": [ @@ -18186,7 +18219,7 @@ }, "recipe": { "sha256": "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150623.2350", "deps": [] @@ -18199,7 +18232,7 @@ }, "recipe": { "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.918", "deps": [] @@ -18213,7 +18246,7 @@ }, "recipe": { "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.1003", "deps": [] @@ -18227,7 +18260,7 @@ }, "recipe": { "sha256": "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141027.2142", "deps": [ @@ -18243,7 +18276,7 @@ }, "recipe": { "sha256": "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150712.1000", "deps": [ @@ -18259,7 +18292,7 @@ }, "recipe": { "sha256": "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150929.255", "deps": [ @@ -18276,7 +18309,7 @@ }, "recipe": { "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131010.2258", "deps": [] @@ -18290,7 +18323,7 @@ }, "recipe": { "sha256": "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141102.1239", "deps": [] @@ -18304,7 +18337,7 @@ }, "recipe": { "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.932", "deps": [] @@ -18318,7 +18351,7 @@ }, "recipe": { "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.1253", "deps": [ @@ -18335,7 +18368,7 @@ }, "recipe": { "sha256": "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.816", "deps": [ @@ -18351,7 +18384,7 @@ }, "recipe": { "sha256": "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20111121.900", "deps": [] @@ -18365,7 +18398,7 @@ }, "recipe": { "sha256": "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141118.840", "deps": [] @@ -18379,7 +18412,7 @@ }, "recipe": { "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150324.939", "deps": [] @@ -18393,7 +18426,7 @@ }, "recipe": { "sha256": "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.1048", "deps": [ @@ -18409,7 +18442,7 @@ }, "recipe": { "sha256": "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.409", "deps": [ @@ -18427,7 +18460,7 @@ }, "recipe": { "sha256": "1plvc8azpmb3phlrxhw3y18dv5y0xljsr5fqym4w84m66lq5csfj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150726.159", "deps": [] @@ -18441,7 +18474,7 @@ }, "recipe": { "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.1740", "deps": [ @@ -18458,7 +18491,7 @@ }, "recipe": { "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150823.846", "deps": [] @@ -18472,7 +18505,7 @@ }, "recipe": { "sha256": "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120323.1835", "deps": [] @@ -18486,7 +18519,7 @@ }, "recipe": { "sha256": "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150417.15", "deps": [] @@ -18500,7 +18533,7 @@ }, "recipe": { "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.454", "deps": [ @@ -18517,7 +18550,7 @@ }, "recipe": { "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101125.1355", "deps": [] @@ -18531,7 +18564,7 @@ }, "recipe": { "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150922.2148", "deps": [ @@ -18551,7 +18584,7 @@ }, "recipe": { "sha256": "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150803.646", "deps": [ @@ -18568,7 +18601,7 @@ }, "recipe": { "sha256": "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.348", "deps": [] @@ -18582,7 +18615,7 @@ }, "recipe": { "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140826.656", "deps": [ @@ -18600,7 +18633,7 @@ }, "recipe": { "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.1750", "deps": [ @@ -18618,7 +18651,7 @@ }, "recipe": { "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131230.939", "deps": [] @@ -18632,7 +18665,7 @@ }, "recipe": { "sha256": "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150113.1611", "deps": [ @@ -18649,7 +18682,7 @@ }, "recipe": { "sha256": "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.2108", "deps": [ @@ -18667,7 +18700,7 @@ }, "recipe": { "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150728.420", "deps": [ @@ -18685,7 +18718,7 @@ }, "recipe": { "sha256": "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150424.904", "deps": [] @@ -18699,7 +18732,7 @@ }, "recipe": { "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.959", "deps": [ @@ -18716,7 +18749,7 @@ }, "recipe": { "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130218.1737", "deps": [] @@ -18730,7 +18763,7 @@ }, "recipe": { "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.1050", "deps": [ @@ -18745,7 +18778,7 @@ }, "recipe": { "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100504.329", "deps": [] @@ -18758,7 +18791,7 @@ }, "recipe": { "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150814.952", "deps": [ @@ -18773,7 +18806,7 @@ }, "recipe": { "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150712.621", "deps": [] @@ -18787,7 +18820,7 @@ }, "recipe": { "sha256": "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150901.604", "deps": [ @@ -18808,7 +18841,7 @@ }, "recipe": { "sha256": "1zwp99mk360mqk4mjnnjr6islavginc9732p0jn9g5yz62xypxpc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151012.442", "deps": [ @@ -18824,7 +18857,7 @@ }, "recipe": { "sha256": "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.414", "deps": [] @@ -18838,7 +18871,7 @@ }, "recipe": { "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150121.1327", "deps": [ @@ -18855,7 +18888,7 @@ }, "recipe": { "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100504.350", "deps": [] @@ -18869,7 +18902,7 @@ }, "recipe": { "sha256": "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100330.1331", "deps": [] @@ -18883,7 +18916,7 @@ }, "recipe": { "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.1816", "deps": [ @@ -18897,12 +18930,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/the-lambda-church/merlin.git", - "sha256": "8ae43c2e925c86286953cf60d3ef6560cec72d21ae64628535db140f68beedb3", + "sha256": "e4068a7297579b9d4f86b8f67b43cdc96656a8120cafa197c5d92551143aafb3", "rev": "f8f26df0ceee91a6825362029dfae03bc7bde679" }, "recipe": { "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.525", "deps": [] @@ -18916,7 +18949,7 @@ }, "recipe": { "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150328.2006", "deps": [ @@ -18934,7 +18967,7 @@ }, "recipe": { "sha256": "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150707.1952", "deps": [ @@ -18950,7 +18983,7 @@ }, "recipe": { "sha256": "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.1418", "deps": [] @@ -18964,7 +18997,7 @@ }, "recipe": { "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141125.2159", "deps": [] @@ -18978,7 +19011,7 @@ }, "recipe": { "sha256": "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141104.1545", "deps": [] @@ -18992,7 +19025,7 @@ }, "recipe": { "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.740", "deps": [] @@ -19005,7 +19038,7 @@ }, "recipe": { "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140307.328", "deps": [] @@ -19019,7 +19052,7 @@ }, "recipe": { "sha256": "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140918.1801", "deps": [] @@ -19033,7 +19066,7 @@ }, "recipe": { "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.1846", "deps": [] @@ -19047,7 +19080,7 @@ }, "recipe": { "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150317.1445", "deps": [] @@ -19061,7 +19094,7 @@ }, "recipe": { "sha256": "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150501.447", "deps": [ @@ -19079,7 +19112,7 @@ }, "recipe": { "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150121.1037", "deps": [ @@ -19095,7 +19128,7 @@ }, "recipe": { "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151102.239", "deps": [ @@ -19115,7 +19148,7 @@ }, "recipe": { "sha256": "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150412.1300", "deps": [] @@ -19129,7 +19162,7 @@ }, "recipe": { "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150805.1006", "deps": [] @@ -19143,7 +19176,7 @@ }, "recipe": { "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.1835", "deps": [] @@ -19157,7 +19190,7 @@ }, "recipe": { "sha256": "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20080305.234", "deps": [] @@ -19171,7 +19204,7 @@ }, "recipe": { "sha256": "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131029.133", "deps": [] @@ -19184,7 +19217,7 @@ }, "recipe": { "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -19198,7 +19231,7 @@ }, "recipe": { "sha256": "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150709.109", "deps": [ @@ -19215,7 +19248,7 @@ }, "recipe": { "sha256": "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090510.1555", "deps": [] @@ -19224,12 +19257,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tarao/term-plus-ki-el.git", - "sha256": "be10ceb201cfd3c44e1601c52cc2fa5d45278d13d47993fabd84015f89909e11", + "sha256": "44be77010ea236afdf904a06f8a2e420cc08f138d358ba8132bc8c6736238726", "rev": "fd0771fd66b8c7a909aaac972194485c79ba48c4" }, "recipe": { "sha256": "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140211.150", "deps": [ @@ -19246,7 +19279,7 @@ }, "recipe": { "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140810.8", "deps": [] @@ -19260,7 +19293,7 @@ }, "recipe": { "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.526", "deps": [ @@ -19276,7 +19309,7 @@ }, "recipe": { "sha256": "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141107.1717", "deps": [ @@ -19292,7 +19325,7 @@ }, "recipe": { "sha256": "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150626.145", "deps": [] @@ -19306,7 +19339,7 @@ }, "recipe": { "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140510.1637", "deps": [] @@ -19320,7 +19353,7 @@ }, "recipe": { "sha256": "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151019.1144", "deps": [ @@ -19336,7 +19369,7 @@ }, "recipe": { "sha256": "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150922.51", "deps": [] @@ -19350,7 +19383,7 @@ }, "recipe": { "sha256": "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140415.757", "deps": [ @@ -19366,7 +19399,7 @@ }, "recipe": { "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.647", "deps": [ @@ -19385,7 +19418,7 @@ }, "recipe": { "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150328.1401", "deps": [ @@ -19405,7 +19438,7 @@ }, "recipe": { "sha256": "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.1339", "deps": [] @@ -19419,7 +19452,7 @@ }, "recipe": { "sha256": "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150814.1301", "deps": [] @@ -19433,7 +19466,7 @@ }, "recipe": { "sha256": "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.1527", "deps": [ @@ -19449,7 +19482,7 @@ }, "recipe": { "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150809.2340", "deps": [ @@ -19465,7 +19498,7 @@ }, "recipe": { "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1604", "deps": [] @@ -19479,7 +19512,7 @@ }, "recipe": { "sha256": "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150428.2252", "deps": [ @@ -19495,7 +19528,7 @@ }, "recipe": { "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130707.116", "deps": [] @@ -19509,7 +19542,7 @@ }, "recipe": { "sha256": "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151002.2030", "deps": [] @@ -19523,7 +19556,7 @@ }, "recipe": { "sha256": "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.2028", "deps": [] @@ -19537,7 +19570,7 @@ }, "recipe": { "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.1123", "deps": [ @@ -19554,7 +19587,7 @@ }, "recipe": { "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140117.120", "deps": [ @@ -19570,7 +19603,7 @@ }, "recipe": { "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130327.732", "deps": [] @@ -19584,7 +19617,7 @@ }, "recipe": { "sha256": "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150218.430", "deps": [] @@ -19598,7 +19631,7 @@ }, "recipe": { "sha256": "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1222", "deps": [ @@ -19615,7 +19648,7 @@ }, "recipe": { "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121227.1702", "deps": [] @@ -19629,7 +19662,7 @@ }, "recipe": { "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.224", "deps": [] @@ -19643,7 +19676,7 @@ }, "recipe": { "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150521.2211", "deps": [] @@ -19657,7 +19690,7 @@ }, "recipe": { "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141130.805", "deps": [ @@ -19673,7 +19706,7 @@ }, "recipe": { "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150107.1139", "deps": [ @@ -19689,7 +19722,7 @@ }, "recipe": { "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.2332", "deps": [ @@ -19705,7 +19738,7 @@ }, "recipe": { "sha256": "0rl6s1d0y2pggbfiq4f4xg9qp7nhkd708himzilfqyfa4jwna8yz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150403.2127", "deps": [ @@ -19721,7 +19754,7 @@ }, "recipe": { "sha256": "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151002.1657", "deps": [ @@ -19736,7 +19769,7 @@ }, "recipe": { "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.1335", "deps": [] @@ -19750,7 +19783,7 @@ }, "recipe": { "sha256": "036lf6iirxamlqzq3w6m0hji36l480yx5c9wnwypms85hi8hq0vl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120507.207", "deps": [] @@ -19764,7 +19797,7 @@ }, "recipe": { "sha256": "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121118.1753", "deps": [] @@ -19778,7 +19811,7 @@ }, "recipe": { "sha256": "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130313.443", "deps": [] @@ -19791,7 +19824,7 @@ }, "recipe": { "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151011.345", "deps": [] @@ -19805,7 +19838,7 @@ }, "recipe": { "sha256": "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150712.210", "deps": [ @@ -19823,7 +19856,7 @@ }, "recipe": { "sha256": "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150129.1516", "deps": [] @@ -19837,7 +19870,7 @@ }, "recipe": { "sha256": "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131123.1039", "deps": [ @@ -19854,7 +19887,7 @@ }, "recipe": { "sha256": "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130705.250", "deps": [] @@ -19868,7 +19901,7 @@ }, "recipe": { "sha256": "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121224.1947", "deps": [] @@ -19881,7 +19914,7 @@ }, "recipe": { "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130130.1550", "deps": [] @@ -19895,7 +19928,7 @@ }, "recipe": { "sha256": "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150525.2045", "deps": [] @@ -19909,7 +19942,7 @@ }, "recipe": { "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150312.28", "deps": [ @@ -19925,7 +19958,7 @@ }, "recipe": { "sha256": "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120205.507", "deps": [] @@ -19939,7 +19972,7 @@ }, "recipe": { "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150714.1520", "deps": [ @@ -19955,7 +19988,7 @@ }, "recipe": { "sha256": "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.225", "deps": [] @@ -19969,7 +20002,7 @@ }, "recipe": { "sha256": "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130527.1625", "deps": [] @@ -19983,7 +20016,7 @@ }, "recipe": { "sha256": "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130616.125", "deps": [] @@ -19997,7 +20030,7 @@ }, "recipe": { "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140216.619", "deps": [ @@ -20020,7 +20053,7 @@ }, "recipe": { "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.2006", "deps": [ @@ -20036,7 +20069,7 @@ }, "recipe": { "sha256": "15xb0vjamnfwi25yqd37zwfm6xb6p71if88hk2ymxikza4i47x0f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130328.1218", "deps": [] @@ -20050,7 +20083,7 @@ }, "recipe": { "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140122.1056", "deps": [] @@ -20064,7 +20097,7 @@ }, "recipe": { "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150926.756", "deps": [] @@ -20078,7 +20111,7 @@ }, "recipe": { "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140220.2258", "deps": [ @@ -20093,7 +20126,7 @@ }, "recipe": { "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130130.1551", "deps": [] @@ -20107,7 +20140,7 @@ }, "recipe": { "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150126.959", "deps": [] @@ -20121,7 +20154,7 @@ }, "recipe": { "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.746", "deps": [] @@ -20135,7 +20168,7 @@ }, "recipe": { "sha256": "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131209.2319", "deps": [ @@ -20151,7 +20184,7 @@ }, "recipe": { "sha256": "0i1bgjlwcc2ks8hzjkyrw924q4k8pcz8335z9935m73js0sq0lxl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140109.812", "deps": [] @@ -20165,7 +20198,7 @@ }, "recipe": { "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141120.1431", "deps": [] @@ -20179,7 +20212,7 @@ }, "recipe": { "sha256": "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140420.1143", "deps": [] @@ -20193,7 +20226,7 @@ }, "recipe": { "sha256": "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.102", "deps": [ @@ -20209,7 +20242,7 @@ }, "recipe": { "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150511.519", "deps": [] @@ -20223,7 +20256,7 @@ }, "recipe": { "sha256": "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150501.1300", "deps": [ @@ -20240,7 +20273,7 @@ }, "recipe": { "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.909", "deps": [ @@ -20253,12 +20286,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/uk-ar/el-spec.git", - "sha256": "efe2408dd6030ff858729ba1e3d7ba219da4c1097cd7a2fb6b653256a6c10d68", + "sha256": "c6ba965ea64bd9f9cf6b200eb7cc68cb23c2c48e98ea49434e2895fbc1d86d02", "rev": "1dbc465401d4aea5560318c4f13ff30920a0718d" }, "recipe": { "sha256": "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121018.204", "deps": [] @@ -20272,7 +20305,7 @@ }, "recipe": { "sha256": "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131230.2108", "deps": [ @@ -20288,7 +20321,7 @@ }, "recipe": { "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.218", "deps": [ @@ -20304,7 +20337,7 @@ }, "recipe": { "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150806.1251", "deps": [ @@ -20321,7 +20354,7 @@ }, "recipe": { "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150402.1922", "deps": [] @@ -20335,7 +20368,7 @@ }, "recipe": { "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.2228", "deps": [] @@ -20349,7 +20382,7 @@ }, "recipe": { "sha256": "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150527.423", "deps": [ @@ -20364,7 +20397,7 @@ }, "recipe": { "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090208.2238", "deps": [] @@ -20378,7 +20411,7 @@ }, "recipe": { "sha256": "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150329.2116", "deps": [] @@ -20392,7 +20425,7 @@ }, "recipe": { "sha256": "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.2210", "deps": [] @@ -20406,7 +20439,7 @@ }, "recipe": { "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.513", "deps": [ @@ -20423,7 +20456,7 @@ }, "recipe": { "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.116", "deps": [] @@ -20432,14 +20465,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tarsius/elx.git", - "sha256": "8f12627cbded8035bb19660b5d06c2900ca9d7ea0047abcb6a6c528689d85b8b", - "rev": "8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb" + "sha256": "006ff5c18c313011d8e67b59496192d29164d683bc15e0b47b25d2601a6190d5", + "rev": "a8dff14f0626f729e745092dd88a1801c6239710" }, "recipe": { "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150101.905", + "version": "20151215.639", "deps": [ "emacs" ] @@ -20453,7 +20486,7 @@ }, "recipe": { "sha256": "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.1746", "deps": [ @@ -20470,7 +20503,7 @@ }, "recipe": { "sha256": "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1416", "deps": [ @@ -20487,14 +20520,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/iquiw/hyai.git", - "sha256": "26943fa452e9ca7337aa72eaf63b6fcd1534a5979efd69c64cbd23f2dba056ac", - "rev": "9e0a7848cacbf2c89da135e12ae3209470c512dc" + "sha256": "8f9b414aeed5bd347cf8c1ee0b723bd6d6f4adfb729fc02bfac46a2f5399e149", + "rev": "20f1cba4a3420bff42a6d23f84c51539b618c009" }, "recipe": { "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151209.935", + "version": "20151215.624", "deps": [ "cl-lib", "emacs" @@ -20509,7 +20542,7 @@ }, "recipe": { "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150901.1017", "deps": [ @@ -20525,7 +20558,7 @@ }, "recipe": { "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151008.1649", "deps": [ @@ -20541,7 +20574,7 @@ }, "recipe": { "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150827.2234", "deps": [ @@ -20559,7 +20592,7 @@ }, "recipe": { "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131015.822", "deps": [ @@ -20574,7 +20607,7 @@ }, "recipe": { "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140630.947", "deps": [] @@ -20588,7 +20621,7 @@ }, "recipe": { "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120328.314", "deps": [ @@ -20603,7 +20636,7 @@ }, "recipe": { "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -20616,7 +20649,7 @@ }, "recipe": { "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150821.1428", "deps": [ @@ -20632,7 +20665,7 @@ }, "recipe": { "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.2302", "deps": [ @@ -20649,7 +20682,7 @@ }, "recipe": { "sha256": "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.1035", "deps": [] @@ -20663,7 +20696,7 @@ }, "recipe": { "sha256": "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140102.1736", "deps": [] @@ -20677,7 +20710,7 @@ }, "recipe": { "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.100", "deps": [ @@ -20694,7 +20727,7 @@ }, "recipe": { "sha256": "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150825.327", "deps": [] @@ -20703,14 +20736,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/leoliu/ggtags.git", - "sha256": "ba40a7b6c89688c5ea7b9b6ad17e95893d0153addfd7f3c5c99419dece8b8259", - "rev": "d2a88922591c2c0dc047e2aad9dc86364507c4da" + "sha256": "14cdddb7ba43622b64858868917f1ad096c1840f74d2a668c90df4436a22dfe7", + "rev": "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731" }, "recipe": { "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151103.2345", + "version": "20151214.1544", "deps": [ "cl-lib", "emacs" @@ -20724,7 +20757,7 @@ }, "recipe": { "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140307.1044", "deps": [] @@ -20738,7 +20771,7 @@ }, "recipe": { "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140320.208", "deps": [ @@ -20755,7 +20788,7 @@ }, "recipe": { "sha256": "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.1937", "deps": [ @@ -20766,12 +20799,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/cfengine/core.git", - "sha256": "d373c60867db4125313b7809ab3be522420f214e2d95ec0080f7946f1ce005bc", - "rev": "f235637ccfa756d91f042f5254f44631a8840389" + "sha256": "e9632d27fbe81cd6af1d0ff19a7afd8b2e19ef25c545b5285f2fefb52cfe1598", + "rev": "085be03ef175c95197c9e41917098e17007ba6ab" }, "recipe": { "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131209.611", "deps": [] @@ -20785,7 +20818,7 @@ }, "recipe": { "sha256": "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150411.1055", "deps": [] @@ -20799,7 +20832,7 @@ }, "recipe": { "sha256": "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151015.1249", "deps": [ @@ -20816,7 +20849,7 @@ }, "recipe": { "sha256": "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.803", "deps": [ @@ -20833,7 +20866,7 @@ }, "recipe": { "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.1809", "deps": [] @@ -20846,7 +20879,7 @@ }, "recipe": { "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1226", "deps": [] @@ -20860,7 +20893,7 @@ }, "recipe": { "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120319.1859", "deps": [ @@ -20871,12 +20904,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/kiwanami/emacs-widget-mvc.git", - "sha256": "4eba3ef04d97bc132e3d3fbd8b25897b36f6aa6d8c2149207ca5968fea301b3b", - "rev": "2576e6f0c35d8dedfa9c2cd6ea4fb4c14cb72b63" + "sha256": "70c7189dbadd43e4d0bb4dece49f9edda18e57a27a6dd28c5b778475c88bf963", + "rev": "a3fd2d2abc29a1b53aeaae8b267d0718740fb783" }, "recipe": { "sha256": "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.2206", "deps": [] @@ -20890,7 +20923,7 @@ }, "recipe": { "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121006.34", "deps": [ @@ -20906,7 +20939,7 @@ }, "recipe": { "sha256": "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.537", "deps": [ @@ -20924,7 +20957,7 @@ }, "recipe": { "sha256": "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150214.23", "deps": [] @@ -20938,7 +20971,7 @@ }, "recipe": { "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131013.1044", "deps": [ @@ -20954,7 +20987,7 @@ }, "recipe": { "sha256": "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150929.801", "deps": [] @@ -20968,7 +21001,7 @@ }, "recipe": { "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.1100", "deps": [] @@ -20982,7 +21015,7 @@ }, "recipe": { "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -21001,7 +21034,7 @@ }, "recipe": { "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.2352", "deps": [ @@ -21016,7 +21049,7 @@ }, "recipe": { "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1841", "deps": [] @@ -21030,7 +21063,7 @@ }, "recipe": { "sha256": "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141105.1226", "deps": [] @@ -21044,7 +21077,7 @@ }, "recipe": { "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150513.1253", "deps": [ @@ -21061,7 +21094,7 @@ }, "recipe": { "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151002.2249", "deps": [ @@ -21077,7 +21110,7 @@ }, "recipe": { "sha256": "0ndavaan7k55l3ghm5h08i0slmmzc82c0gl4b8w91fa8bi2lq4h4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.1014", "deps": [ @@ -21093,7 +21126,7 @@ }, "recipe": { "sha256": "14wxfhb17n2f9wil68lb05abj7m0whwkqvrm3y9dg9mh14lcpbvc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.1712", "deps": [] @@ -21107,7 +21140,7 @@ }, "recipe": { "sha256": "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150320.826", "deps": [ @@ -21123,7 +21156,7 @@ }, "recipe": { "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120508.1320", "deps": [] @@ -21137,7 +21170,7 @@ }, "recipe": { "sha256": "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131221.545", "deps": [ @@ -21154,7 +21187,7 @@ }, "recipe": { "sha256": "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.335", "deps": [] @@ -21168,7 +21201,7 @@ }, "recipe": { "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150226.1017", "deps": [] @@ -21182,7 +21215,7 @@ }, "recipe": { "sha256": "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130131.348", "deps": [] @@ -21196,7 +21229,7 @@ }, "recipe": { "sha256": "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150115.1301", "deps": [ @@ -21213,7 +21246,7 @@ }, "recipe": { "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.1705", "deps": [] @@ -21227,7 +21260,7 @@ }, "recipe": { "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151004.1440", "deps": [ @@ -21245,7 +21278,7 @@ }, "recipe": { "sha256": "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141205.1815", "deps": [] @@ -21259,7 +21292,7 @@ }, "recipe": { "sha256": "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1812", "deps": [ @@ -21276,7 +21309,7 @@ }, "recipe": { "sha256": "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140203.1706", "deps": [ @@ -21299,7 +21332,7 @@ }, "recipe": { "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150514.928", "deps": [] @@ -21313,7 +21346,7 @@ }, "recipe": { "sha256": "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140920.1611", "deps": [] @@ -21327,7 +21360,7 @@ }, "recipe": { "sha256": "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130127.524", "deps": [] @@ -21341,7 +21374,7 @@ }, "recipe": { "sha256": "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.232", "deps": [ @@ -21357,7 +21390,7 @@ }, "recipe": { "sha256": "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140605.1610", "deps": [ @@ -21376,7 +21409,7 @@ }, "recipe": { "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1527", "deps": [] @@ -21390,7 +21423,7 @@ }, "recipe": { "sha256": "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.2213", "deps": [ @@ -21406,7 +21439,7 @@ }, "recipe": { "sha256": "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.807", "deps": [ @@ -21423,7 +21456,7 @@ }, "recipe": { "sha256": "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130329.48", "deps": [] @@ -21437,7 +21470,7 @@ }, "recipe": { "sha256": "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.1139", "deps": [ @@ -21453,7 +21486,7 @@ }, "recipe": { "sha256": "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140517.918", "deps": [ @@ -21469,7 +21502,7 @@ }, "recipe": { "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140303.1542", "deps": [ @@ -21487,7 +21520,7 @@ }, "recipe": { "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150310.353", "deps": [ @@ -21503,7 +21536,7 @@ }, "recipe": { "sha256": "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140713.131", "deps": [ @@ -21519,7 +21552,7 @@ }, "recipe": { "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.358", "deps": [] @@ -21533,7 +21566,7 @@ }, "recipe": { "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150929.1448", "deps": [ @@ -21548,7 +21581,7 @@ }, "recipe": { "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1622", "deps": [] @@ -21562,7 +21595,7 @@ }, "recipe": { "sha256": "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150307.211", "deps": [ @@ -21578,7 +21611,7 @@ }, "recipe": { "sha256": "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1018", "deps": [] @@ -21592,7 +21625,7 @@ }, "recipe": { "sha256": "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150818.2328", "deps": [] @@ -21606,7 +21639,7 @@ }, "recipe": { "sha256": "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151012.1828", "deps": [ @@ -21622,7 +21655,7 @@ }, "recipe": { "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.220", "deps": [] @@ -21636,7 +21669,7 @@ }, "recipe": { "sha256": "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.154", "deps": [] @@ -21650,7 +21683,7 @@ }, "recipe": { "sha256": "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140310.430", "deps": [] @@ -21664,7 +21697,7 @@ }, "recipe": { "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.653", "deps": [] @@ -21678,7 +21711,7 @@ }, "recipe": { "sha256": "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.2321", "deps": [ @@ -21694,7 +21727,7 @@ }, "recipe": { "sha256": "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150721.1437", "deps": [] @@ -21708,7 +21741,7 @@ }, "recipe": { "sha256": "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150110.812", "deps": [] @@ -21722,7 +21755,7 @@ }, "recipe": { "sha256": "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.102", "deps": [ @@ -21738,7 +21771,7 @@ }, "recipe": { "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141231.1558", "deps": [] @@ -21752,7 +21785,7 @@ }, "recipe": { "sha256": "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.423", "deps": [] @@ -21766,7 +21799,7 @@ }, "recipe": { "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150826.1609", "deps": [] @@ -21780,7 +21813,7 @@ }, "recipe": { "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.830", "deps": [ @@ -21797,7 +21830,7 @@ }, "recipe": { "sha256": "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150218.45", "deps": [ @@ -21813,7 +21846,7 @@ }, "recipe": { "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.1739", "deps": [] @@ -21827,7 +21860,7 @@ }, "recipe": { "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130429.1659", "deps": [ @@ -21843,7 +21876,7 @@ }, "recipe": { "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140619.722", "deps": [] @@ -21857,7 +21890,7 @@ }, "recipe": { "sha256": "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130113.1700", "deps": [ @@ -21874,7 +21907,7 @@ }, "recipe": { "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.613", "deps": [ @@ -21891,7 +21924,7 @@ }, "recipe": { "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1658", "deps": [ @@ -21909,7 +21942,7 @@ }, "recipe": { "sha256": "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1203", "deps": [ @@ -21925,7 +21958,7 @@ }, "recipe": { "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150707.1116", "deps": [ @@ -21941,7 +21974,7 @@ }, "recipe": { "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.1057", "deps": [] @@ -21955,7 +21988,7 @@ }, "recipe": { "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131209.658", "deps": [] @@ -21969,7 +22002,7 @@ }, "recipe": { "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1347", "deps": [ @@ -21990,7 +22023,7 @@ }, "recipe": { "sha256": "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150917.100", "deps": [] @@ -22004,7 +22037,7 @@ }, "recipe": { "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141217.1934", "deps": [ @@ -22021,7 +22054,7 @@ }, "recipe": { "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -22041,7 +22074,7 @@ }, "recipe": { "sha256": "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.135", "deps": [] @@ -22055,7 +22088,7 @@ }, "recipe": { "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.258", "deps": [ @@ -22073,7 +22106,7 @@ }, "recipe": { "sha256": "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130620.2110", "deps": [] @@ -22087,7 +22120,7 @@ }, "recipe": { "sha256": "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150413.1548", "deps": [ @@ -22104,7 +22137,7 @@ }, "recipe": { "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.924", "deps": [ @@ -22121,7 +22154,7 @@ }, "recipe": { "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140211.304", "deps": [ @@ -22138,7 +22171,7 @@ }, "recipe": { "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.416", "deps": [] @@ -22152,7 +22185,7 @@ }, "recipe": { "sha256": "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150708.1957", "deps": [ @@ -22168,7 +22201,7 @@ }, "recipe": { "sha256": "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130902.1248", "deps": [ @@ -22184,7 +22217,7 @@ }, "recipe": { "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.837", "deps": [ @@ -22200,7 +22233,7 @@ }, "recipe": { "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150710.2151", "deps": [] @@ -22214,7 +22247,7 @@ }, "recipe": { "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.1107", "deps": [ @@ -22230,7 +22263,7 @@ }, "recipe": { "sha256": "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140220.1701", "deps": [] @@ -22244,7 +22277,7 @@ }, "recipe": { "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150318.1013", "deps": [] @@ -22258,7 +22291,7 @@ }, "recipe": { "sha256": "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151011.1416", "deps": [] @@ -22272,7 +22305,7 @@ }, "recipe": { "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150604.233", "deps": [ @@ -22291,7 +22324,7 @@ }, "recipe": { "sha256": "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150203.125", "deps": [] @@ -22305,7 +22338,7 @@ }, "recipe": { "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.1804", "deps": [ @@ -22321,7 +22354,7 @@ }, "recipe": { "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.1818", "deps": [ @@ -22337,7 +22370,7 @@ }, "recipe": { "sha256": "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141017.444", "deps": [ @@ -22353,7 +22386,7 @@ }, "recipe": { "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151020.607", "deps": [ @@ -22370,7 +22403,7 @@ }, "recipe": { "sha256": "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.410", "deps": [ @@ -22386,7 +22419,7 @@ }, "recipe": { "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.507", "deps": [] @@ -22400,7 +22433,7 @@ }, "recipe": { "sha256": "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130627.1808", "deps": [] @@ -22414,7 +22447,7 @@ }, "recipe": { "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150423.2322", "deps": [ @@ -22431,7 +22464,7 @@ }, "recipe": { "sha256": "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130513.1737", "deps": [ @@ -22448,7 +22481,7 @@ }, "recipe": { "sha256": "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130424.1019", "deps": [ @@ -22465,7 +22498,7 @@ }, "recipe": { "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130324.551", "deps": [ @@ -22481,7 +22514,7 @@ }, "recipe": { "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150307.408", "deps": [] @@ -22495,7 +22528,7 @@ }, "recipe": { "sha256": "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.331", "deps": [] @@ -22509,7 +22542,7 @@ }, "recipe": { "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141111.307", "deps": [] @@ -22523,7 +22556,7 @@ }, "recipe": { "sha256": "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150823.608", "deps": [ @@ -22541,7 +22574,7 @@ }, "recipe": { "sha256": "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130407.1322", "deps": [ @@ -22558,7 +22591,7 @@ }, "recipe": { "sha256": "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140205.725", "deps": [ @@ -22574,7 +22607,7 @@ }, "recipe": { "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.604", "deps": [ @@ -22591,7 +22624,7 @@ }, "recipe": { "sha256": "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.2040", "deps": [ @@ -22604,14 +22637,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/fourier/ztree.git", - "sha256": "d6149700fb69170e61f610cff32b57f29e70e9cd195047d4b883ec54877ce8e0", - "rev": "4a935eece004fc5e2e70e6606e564da73fdd90f5" + "sha256": "1180986f07af1b86448fc1fd30b3210a53fc33d3145f9522ea1091b6a500dad4", + "rev": "3d70aefd95404a42e21e53d7139c0b1fba47087b" }, "recipe": { "sha256": "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150702.1213", + "version": "20151215.1412", "deps": [] }, "log4j-mode": { @@ -22623,7 +22656,7 @@ }, "recipe": { "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101016.1022", "deps": [] @@ -22637,7 +22670,7 @@ }, "recipe": { "sha256": "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150328.959", "deps": [ @@ -22654,7 +22687,7 @@ }, "recipe": { "sha256": "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150215.1548", "deps": [] @@ -22668,7 +22701,7 @@ }, "recipe": { "sha256": "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140501.731", "deps": [ @@ -22684,7 +22717,7 @@ }, "recipe": { "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140610.231", "deps": [ @@ -22696,14 +22729,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/paddymcall/noXML-fold.git", - "sha256": "be81f3de17c7676fa19f13bb11aff8de8f893b6b74c9fad6b3700232d826acd7", - "rev": "d10ac9d0282b5efefc23a583c884e3a92be49966" + "sha256": "80cdb634e2d4974ed7e20df6cb4d68b049e6e9592ba3ea3a6313dff3422559e3", + "rev": "48d55c03bb1f92fed4983b7a019926bae6aa56f7" }, "recipe": { "sha256": "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151108.1418", + "version": "20151215.707", "deps": [] }, "dropdown-list": { @@ -22714,7 +22747,7 @@ }, "recipe": { "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120329.1136", "deps": [] @@ -22728,7 +22761,7 @@ }, "recipe": { "sha256": "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.1956", "deps": [ @@ -22744,7 +22777,7 @@ }, "recipe": { "sha256": "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150904.1313", "deps": [ @@ -22762,7 +22795,7 @@ }, "recipe": { "sha256": "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141104.1845", "deps": [ @@ -22778,7 +22811,7 @@ }, "recipe": { "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.413", "deps": [ @@ -22796,7 +22829,7 @@ }, "recipe": { "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -22810,7 +22843,7 @@ }, "recipe": { "sha256": "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150302.734", "deps": [ @@ -22826,7 +22859,7 @@ }, "recipe": { "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151026.111", "deps": [ @@ -22843,7 +22876,7 @@ }, "recipe": { "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140310.1632", "deps": [] @@ -22857,7 +22890,7 @@ }, "recipe": { "sha256": "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150722.726", "deps": [ @@ -22874,7 +22907,7 @@ }, "recipe": { "sha256": "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141202.1157", "deps": [ @@ -22891,7 +22924,7 @@ }, "recipe": { "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150604.1238", "deps": [ @@ -22910,7 +22943,7 @@ }, "recipe": { "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150304.848", "deps": [ @@ -22928,7 +22961,7 @@ }, "recipe": { "sha256": "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130718.932", "deps": [ @@ -22944,7 +22977,7 @@ }, "recipe": { "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150120.2358", "deps": [ @@ -22961,7 +22994,7 @@ }, "recipe": { "sha256": "1v46ck9imffhrmx6s4c3kbi5g5spf2mn2axy5nfpn7q8sc8bf0s3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150217.2028", "deps": [ @@ -22978,7 +23011,7 @@ }, "recipe": { "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1327", "deps": [ @@ -22994,7 +23027,7 @@ }, "recipe": { "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150902.1149", "deps": [] @@ -23008,7 +23041,7 @@ }, "recipe": { "sha256": "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120830.1228", "deps": [] @@ -23022,7 +23055,7 @@ }, "recipe": { "sha256": "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.304", "deps": [] @@ -23036,7 +23069,7 @@ }, "recipe": { "sha256": "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120307.425", "deps": [ @@ -23052,7 +23085,7 @@ }, "recipe": { "sha256": "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131106.1303", "deps": [ @@ -23069,7 +23102,7 @@ }, "recipe": { "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150605.406", "deps": [] @@ -23083,7 +23116,7 @@ }, "recipe": { "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.448", "deps": [ @@ -23102,7 +23135,7 @@ }, "recipe": { "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.1737", "deps": [ @@ -23119,7 +23152,7 @@ }, "recipe": { "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.119", "deps": [ @@ -23139,7 +23172,7 @@ }, "recipe": { "sha256": "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.1601", "deps": [ @@ -23156,7 +23189,7 @@ }, "recipe": { "sha256": "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.1942", "deps": [] @@ -23170,7 +23203,7 @@ }, "recipe": { "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140615.120", "deps": [] @@ -23184,7 +23217,7 @@ }, "recipe": { "sha256": "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.225", "deps": [ @@ -23201,7 +23234,7 @@ }, "recipe": { "sha256": "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151003.531", "deps": [ @@ -23220,7 +23253,7 @@ }, "recipe": { "sha256": "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120331.1544", "deps": [] @@ -23234,7 +23267,7 @@ }, "recipe": { "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150917.613", "deps": [ @@ -23250,7 +23283,7 @@ }, "recipe": { "sha256": "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150818.320", "deps": [] @@ -23264,7 +23297,7 @@ }, "recipe": { "sha256": "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141229.1919", "deps": [ @@ -23282,7 +23315,7 @@ }, "recipe": { "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130901.935", "deps": [] @@ -23296,7 +23329,7 @@ }, "recipe": { "sha256": "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.2255", "deps": [ @@ -23312,7 +23345,7 @@ }, "recipe": { "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150119.1906", "deps": [ @@ -23328,7 +23361,7 @@ }, "recipe": { "sha256": "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120808.2207", "deps": [] @@ -23342,7 +23375,7 @@ }, "recipe": { "sha256": "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130721.1950", "deps": [] @@ -23356,7 +23389,7 @@ }, "recipe": { "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141105.2236", "deps": [] @@ -23370,7 +23403,7 @@ }, "recipe": { "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130209.1940", "deps": [ @@ -23386,7 +23419,7 @@ }, "recipe": { "sha256": "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140115.424", "deps": [] @@ -23400,7 +23433,7 @@ }, "recipe": { "sha256": "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130926.10", "deps": [] @@ -23409,12 +23442,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "e94e51c8cbcf3b294ae5159bc75bd25dff59ba29927fca761f7f285458c6b516", + "sha256": "b9bf421152125c46447ba4f4e8700dd13de079572150558294b4c29b4f3c82bd", "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" }, "recipe": { "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150130.1004", "deps": [ @@ -23430,7 +23463,7 @@ }, "recipe": { "sha256": "1ackqv95sdphbsjwydbc4dmdzwpaj74v329f55zcwa8hn3li9d5m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131004.1759", "deps": [] @@ -23444,7 +23477,7 @@ }, "recipe": { "sha256": "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.1310", "deps": [ @@ -23460,7 +23493,7 @@ }, "recipe": { "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1533", "deps": [ @@ -23478,7 +23511,7 @@ }, "recipe": { "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121016.357", "deps": [] @@ -23492,7 +23525,7 @@ }, "recipe": { "sha256": "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150611.1237", "deps": [] @@ -23506,7 +23539,7 @@ }, "recipe": { "sha256": "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130325.907", "deps": [ @@ -23521,7 +23554,7 @@ }, "recipe": { "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150112.1454", "deps": [] @@ -23535,7 +23568,7 @@ }, "recipe": { "sha256": "1r9mh7756jgf1hdnprci988z07xxh2jvh8d0c1h5rmxmldlbx8az", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120814.312", "deps": [] @@ -23549,7 +23582,7 @@ }, "recipe": { "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150803.1620", "deps": [] @@ -23563,7 +23596,7 @@ }, "recipe": { "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140625.2306", "deps": [] @@ -23577,7 +23610,7 @@ }, "recipe": { "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150307.712", "deps": [] @@ -23591,7 +23624,7 @@ }, "recipe": { "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.338", "deps": [ @@ -23607,7 +23640,7 @@ }, "recipe": { "sha256": "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150907.1504", "deps": [] @@ -23621,7 +23654,7 @@ }, "recipe": { "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.333", "deps": [ @@ -23639,7 +23672,7 @@ }, "recipe": { "sha256": "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150505.1211", "deps": [] @@ -23653,7 +23686,7 @@ }, "recipe": { "sha256": "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141114.1046", "deps": [ @@ -23669,7 +23702,7 @@ }, "recipe": { "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.839", "deps": [ @@ -23684,7 +23717,7 @@ }, "recipe": { "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1609", "deps": [] @@ -23698,7 +23731,7 @@ }, "recipe": { "sha256": "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20111002.347", "deps": [] @@ -23712,7 +23745,7 @@ }, "recipe": { "sha256": "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.1610", "deps": [ @@ -23730,7 +23763,7 @@ }, "recipe": { "sha256": "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20111019.1800", "deps": [] @@ -23744,7 +23777,7 @@ }, "recipe": { "sha256": "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150714.233", "deps": [] @@ -23758,7 +23791,7 @@ }, "recipe": { "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141204.1945", "deps": [] @@ -23771,7 +23804,7 @@ }, "recipe": { "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.1120", "deps": [] @@ -23785,7 +23818,7 @@ }, "recipe": { "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1654", "deps": [ @@ -23801,7 +23834,7 @@ }, "recipe": { "sha256": "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130309.1005", "deps": [] @@ -23815,7 +23848,7 @@ }, "recipe": { "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150916.658", "deps": [] @@ -23829,7 +23862,7 @@ }, "recipe": { "sha256": "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.1236", "deps": [] @@ -23843,7 +23876,7 @@ }, "recipe": { "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141111.1230", "deps": [ @@ -23859,7 +23892,7 @@ }, "recipe": { "sha256": "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140202.1341", "deps": [] @@ -23872,7 +23905,7 @@ }, "recipe": { "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141009.939", "deps": [] @@ -23886,7 +23919,7 @@ }, "recipe": { "sha256": "145zmfmsxcbmfh9s0mvxxgfh1d51q66396zc29k1c0hw94ffhkdd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140806.2342", "deps": [] @@ -23900,7 +23933,7 @@ }, "recipe": { "sha256": "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.838", "deps": [ @@ -23917,7 +23950,7 @@ }, "recipe": { "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151024.1051", "deps": [] @@ -23931,7 +23964,7 @@ }, "recipe": { "sha256": "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090715.1703", "deps": [] @@ -23945,7 +23978,7 @@ }, "recipe": { "sha256": "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.1243", "deps": [] @@ -23959,7 +23992,7 @@ }, "recipe": { "sha256": "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.101", "deps": [ @@ -23975,7 +24008,7 @@ }, "recipe": { "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.1248", "deps": [] @@ -23989,7 +24022,7 @@ }, "recipe": { "sha256": "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151015.428", "deps": [ @@ -24006,7 +24039,7 @@ }, "recipe": { "sha256": "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141218.2114", "deps": [] @@ -24020,7 +24053,7 @@ }, "recipe": { "sha256": "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131110.519", "deps": [ @@ -24037,7 +24070,7 @@ }, "recipe": { "sha256": "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130312.1458", "deps": [] @@ -24051,7 +24084,7 @@ }, "recipe": { "sha256": "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140915.952", "deps": [ @@ -24068,7 +24101,7 @@ }, "recipe": { "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1822", "deps": [] @@ -24082,7 +24115,7 @@ }, "recipe": { "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131203.751", "deps": [ @@ -24098,7 +24131,7 @@ }, "recipe": { "sha256": "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150414.22", "deps": [] @@ -24112,7 +24145,7 @@ }, "recipe": { "sha256": "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.953", "deps": [ @@ -24130,7 +24163,7 @@ }, "recipe": { "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150227.1019", "deps": [ @@ -24148,7 +24181,7 @@ }, "recipe": { "sha256": "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1812", "deps": [ @@ -24167,7 +24200,7 @@ }, "recipe": { "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131021.1329", "deps": [ @@ -24185,7 +24218,7 @@ }, "recipe": { "sha256": "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131108.527", "deps": [] @@ -24199,7 +24232,7 @@ }, "recipe": { "sha256": "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150530.1326", "deps": [ @@ -24215,7 +24248,7 @@ }, "recipe": { "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.1809", "deps": [ @@ -24233,7 +24266,7 @@ }, "recipe": { "sha256": "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.719", "deps": [] @@ -24246,7 +24279,7 @@ }, "recipe": { "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1558", "deps": [] @@ -24260,7 +24293,7 @@ }, "recipe": { "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130424.157", "deps": [ @@ -24276,7 +24309,7 @@ }, "recipe": { "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.2212", "deps": [ @@ -24293,7 +24326,7 @@ }, "recipe": { "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1130", "deps": [ @@ -24309,7 +24342,7 @@ }, "recipe": { "sha256": "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.924", "deps": [ @@ -24325,7 +24358,7 @@ }, "recipe": { "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150527.1048", "deps": [] @@ -24339,7 +24372,7 @@ }, "recipe": { "sha256": "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130321.1912", "deps": [] @@ -24353,7 +24386,7 @@ }, "recipe": { "sha256": "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150212.924", "deps": [ @@ -24369,7 +24402,7 @@ }, "recipe": { "sha256": "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150522.533", "deps": [] @@ -24383,7 +24416,7 @@ }, "recipe": { "sha256": "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130908.1322", "deps": [ @@ -24399,7 +24432,7 @@ }, "recipe": { "sha256": "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150602.1029", "deps": [] @@ -24413,7 +24446,7 @@ }, "recipe": { "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130620.622", "deps": [ @@ -24429,7 +24462,7 @@ }, "recipe": { "sha256": "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141023.958", "deps": [] @@ -24443,7 +24476,7 @@ }, "recipe": { "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.29", "deps": [] @@ -24452,14 +24485,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/juanjux/evil-search-highlight-persist.git", - "sha256": "92ce9e360c2e386702bba7f55c604c8fed7d3f75ac2a5d28a60949f1ec831ca1", - "rev": "c563a05de36bb06f5385848aa3b1dae5ebd3d2cd" + "sha256": "d31ff1cc55b9c39d5220c658a14ee00d365f4caaf7d289fa4a8c81dad214d1c9", + "rev": "0e2b3d4e3dec5f38ae95f62519eb2736f73c0b85" }, "recipe": { "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150815.1642", + "version": "20151215.438", "deps": [ "highlight" ] @@ -24473,7 +24506,7 @@ }, "recipe": { "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150929.346", "deps": [ @@ -24493,7 +24526,7 @@ }, "recipe": { "sha256": "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150513.2259", "deps": [] @@ -24506,7 +24539,7 @@ }, "recipe": { "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.1305", "deps": [] @@ -24520,7 +24553,7 @@ }, "recipe": { "sha256": "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.821", "deps": [ @@ -24537,7 +24570,7 @@ }, "recipe": { "sha256": "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141229.1634", "deps": [] @@ -24551,7 +24584,7 @@ }, "recipe": { "sha256": "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140530.433", "deps": [ @@ -24567,7 +24600,7 @@ }, "recipe": { "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120209.1251", "deps": [] @@ -24581,7 +24614,7 @@ }, "recipe": { "sha256": "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150428.1359", "deps": [] @@ -24595,7 +24628,7 @@ }, "recipe": { "sha256": "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150904.332", "deps": [] @@ -24609,7 +24642,7 @@ }, "recipe": { "sha256": "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150921.905", "deps": [] @@ -24623,7 +24656,7 @@ }, "recipe": { "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101130.643", "deps": [] @@ -24637,7 +24670,7 @@ }, "recipe": { "sha256": "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.801", "deps": [] @@ -24651,7 +24684,7 @@ }, "recipe": { "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.808", "deps": [ @@ -24668,7 +24701,7 @@ }, "recipe": { "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1539", "deps": [ @@ -24686,7 +24719,7 @@ }, "recipe": { "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -24703,7 +24736,7 @@ }, "recipe": { "sha256": "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150424.1916", "deps": [] @@ -24717,7 +24750,7 @@ }, "recipe": { "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151001.1024", "deps": [ @@ -24733,7 +24766,7 @@ }, "recipe": { "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150302.728", "deps": [ @@ -24749,7 +24782,7 @@ }, "recipe": { "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140202.931", "deps": [ @@ -24765,7 +24798,7 @@ }, "recipe": { "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131115.550", "deps": [ @@ -24782,7 +24815,7 @@ }, "recipe": { "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150320.2215", "deps": [ @@ -24800,7 +24833,7 @@ }, "recipe": { "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.2352", "deps": [ @@ -24816,7 +24849,7 @@ }, "recipe": { "sha256": "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.600", "deps": [] @@ -24830,7 +24863,7 @@ }, "recipe": { "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150109.1223", "deps": [] @@ -24844,7 +24877,7 @@ }, "recipe": { "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121104.1304", "deps": [ @@ -24860,7 +24893,7 @@ }, "recipe": { "sha256": "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140630.1721", "deps": [ @@ -24876,7 +24909,7 @@ }, "recipe": { "sha256": "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.301", "deps": [] @@ -24890,7 +24923,7 @@ }, "recipe": { "sha256": "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150224.2259", "deps": [] @@ -24904,7 +24937,7 @@ }, "recipe": { "sha256": "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150701.855", "deps": [ @@ -24920,7 +24953,7 @@ }, "recipe": { "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.610", "deps": [ @@ -24936,7 +24969,7 @@ }, "recipe": { "sha256": "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150902.1706", "deps": [ @@ -24954,7 +24987,7 @@ }, "recipe": { "sha256": "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140417.614", "deps": [ @@ -24970,7 +25003,7 @@ }, "recipe": { "sha256": "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150718.2131", "deps": [ @@ -24990,7 +25023,7 @@ }, "recipe": { "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151004.915", "deps": [ @@ -25008,7 +25041,7 @@ }, "recipe": { "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150612.1439", "deps": [ @@ -25024,7 +25057,7 @@ }, "recipe": { "sha256": "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150822.1336", "deps": [] @@ -25038,7 +25071,7 @@ }, "recipe": { "sha256": "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091203.1215", "deps": [] @@ -25052,7 +25085,7 @@ }, "recipe": { "sha256": "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150414.1930", "deps": [] @@ -25066,7 +25099,7 @@ }, "recipe": { "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151003.1322", "deps": [ @@ -25083,7 +25116,7 @@ }, "recipe": { "sha256": "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120702.1536", "deps": [] @@ -25097,7 +25130,7 @@ }, "recipe": { "sha256": "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150907.1900", "deps": [] @@ -25111,7 +25144,7 @@ }, "recipe": { "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140329.1124", "deps": [ @@ -25126,7 +25159,7 @@ }, "recipe": { "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -25140,7 +25173,7 @@ }, "recipe": { "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.1349", "deps": [ @@ -25156,7 +25189,7 @@ }, "recipe": { "sha256": "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150127.1546", "deps": [ @@ -25173,7 +25206,7 @@ }, "recipe": { "sha256": "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.1111", "deps": [] @@ -25187,7 +25220,7 @@ }, "recipe": { "sha256": "1gx35m0wv60cfgm87y2c7vrpwdsqjzk9bz4pp9dbs8dhxvji0ay4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.1527", "deps": [ @@ -25204,7 +25237,7 @@ }, "recipe": { "sha256": "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120809.718", "deps": [] @@ -25218,7 +25251,7 @@ }, "recipe": { "sha256": "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.1250", "deps": [ @@ -25235,7 +25268,7 @@ }, "recipe": { "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.1515", "deps": [] @@ -25249,7 +25282,7 @@ }, "recipe": { "sha256": "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.730", "deps": [ @@ -25266,7 +25299,7 @@ }, "recipe": { "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150922.737", "deps": [ @@ -25286,7 +25319,7 @@ }, "recipe": { "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141027.1750", "deps": [ @@ -25302,7 +25335,7 @@ }, "recipe": { "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150717.732", "deps": [] @@ -25316,7 +25349,7 @@ }, "recipe": { "sha256": "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150503.237", "deps": [ @@ -25328,11 +25361,11 @@ "tag": "fetchsvn", "url": "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/", "sha256": "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq", - "rev": "1719971" + "rev": "1720288" }, "recipe": { "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130120.1457", "deps": [] @@ -25346,7 +25379,7 @@ }, "recipe": { "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150505.1043", "deps": [ @@ -25363,7 +25396,7 @@ }, "recipe": { "sha256": "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.2336", "deps": [] @@ -25376,7 +25409,7 @@ }, "recipe": { "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1624", "deps": [] @@ -25390,7 +25423,7 @@ }, "recipe": { "sha256": "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.1708", "deps": [] @@ -25404,7 +25437,7 @@ }, "recipe": { "sha256": "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.1435", "deps": [] @@ -25418,7 +25451,7 @@ }, "recipe": { "sha256": "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.706", "deps": [ @@ -25435,7 +25468,7 @@ }, "recipe": { "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130104.821", "deps": [] @@ -25449,7 +25482,7 @@ }, "recipe": { "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.519", "deps": [] @@ -25462,7 +25495,7 @@ }, "recipe": { "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.707", "deps": [] @@ -25476,7 +25509,7 @@ }, "recipe": { "sha256": "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.2327", "deps": [ @@ -25494,7 +25527,7 @@ }, "recipe": { "sha256": "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.630", "deps": [] @@ -25508,7 +25541,7 @@ }, "recipe": { "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150814.622", "deps": [ @@ -25524,7 +25557,7 @@ }, "recipe": { "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1541", "deps": [ @@ -25541,7 +25574,7 @@ }, "recipe": { "sha256": "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130605.343", "deps": [] @@ -25555,7 +25588,7 @@ }, "recipe": { "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130328.1104", "deps": [] @@ -25569,7 +25602,7 @@ }, "recipe": { "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140629.1016", "deps": [ @@ -25585,7 +25618,7 @@ }, "recipe": { "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1247", "deps": [ @@ -25603,7 +25636,7 @@ }, "recipe": { "sha256": "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141231.1014", "deps": [] @@ -25616,7 +25649,7 @@ }, "recipe": { "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.707", "deps": [] @@ -25625,12 +25658,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/eschulte/rinari.git", - "sha256": "fb86d6dccb24fd0e62e7bda739f250fc2e508b0b2a027d67c9571854c90891ac", + "sha256": "a40dc36b14bdeced68a71c2a7aea318c66c5796ebc5209c2ff592bcf71ff7099", "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" }, "recipe": { "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150709.140", "deps": [ @@ -25649,7 +25682,7 @@ }, "recipe": { "sha256": "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141227.19", "deps": [ @@ -25667,25 +25700,11 @@ }, "recipe": { "sha256": "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.1722", "deps": [] }, - "seq": { - "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/seq.el.git", - "sha256": "05f8290607ef8fdebf45eeb76ecb554d4183d3212eea96e25fb3e5fd18d6f169", - "rev": "1349714b20daed2e62a21ebdd5244acc0ccbef0c" - }, - "recipe": { - "sha256": "1a4ldmaqsd0jjgcyqwpyklj306xlnfqh2gg44vjlwp95m4aqv58l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" - }, - "version": "20151121.1217", - "deps": [] - }, "ox-textile": { "fetch": { "tag": "fetchgit", @@ -25695,7 +25714,7 @@ }, "recipe": { "sha256": "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.2225", "deps": [ @@ -25711,7 +25730,7 @@ }, "recipe": { "sha256": "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140129.117", "deps": [ @@ -25728,7 +25747,7 @@ }, "recipe": { "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150826.914", "deps": [ @@ -25746,7 +25765,7 @@ }, "recipe": { "sha256": "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.635", "deps": [ @@ -25762,7 +25781,7 @@ }, "recipe": { "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -25778,7 +25797,7 @@ }, "recipe": { "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140520.1148", "deps": [] @@ -25792,7 +25811,7 @@ }, "recipe": { "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150827.2329", "deps": [] @@ -25806,7 +25825,7 @@ }, "recipe": { "sha256": "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.743", "deps": [] @@ -25820,7 +25839,7 @@ }, "recipe": { "sha256": "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.904", "deps": [ @@ -25836,7 +25855,7 @@ }, "recipe": { "sha256": "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150522.145", "deps": [ @@ -25853,7 +25872,7 @@ }, "recipe": { "sha256": "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150719.1620", "deps": [ @@ -25870,7 +25889,7 @@ }, "recipe": { "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150928.1643", "deps": [ @@ -25886,7 +25905,7 @@ }, "recipe": { "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150814.949", "deps": [] @@ -25900,7 +25919,7 @@ }, "recipe": { "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1002", "deps": [ @@ -25917,7 +25936,7 @@ }, "recipe": { "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150504.1522", "deps": [ @@ -25933,7 +25952,7 @@ }, "recipe": { "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150819.620", "deps": [] @@ -25947,7 +25966,7 @@ }, "recipe": { "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150424.218", "deps": [ @@ -25963,7 +25982,7 @@ }, "recipe": { "sha256": "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.101", "deps": [ @@ -25979,7 +25998,7 @@ }, "recipe": { "sha256": "0672mqm0c261mknbgc3a4pahq27gw2pfklflxl1y4ykbs6q7vcyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150919.421", "deps": [ @@ -25996,7 +26015,7 @@ }, "recipe": { "sha256": "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150611.1104", "deps": [ @@ -26012,7 +26031,7 @@ }, "recipe": { "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.218", "deps": [ @@ -26029,7 +26048,7 @@ }, "recipe": { "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140515.1006", "deps": [ @@ -26044,7 +26063,7 @@ }, "recipe": { "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090804.1752", "deps": [] @@ -26058,7 +26077,7 @@ }, "recipe": { "sha256": "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150602.1423", "deps": [] @@ -26071,7 +26090,7 @@ }, "recipe": { "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1534", "deps": [] @@ -26085,7 +26104,7 @@ }, "recipe": { "sha256": "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140306.827", "deps": [] @@ -26094,12 +26113,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/Kitware/CMake.git", - "sha256": "d6cb00eb948877d09d16c084c0463bda8b65de88d16298a3a2c46e7efae7c804", - "rev": "6a6d00aeeffadcb535b5a4cf4adaeda296f91b3a" + "sha256": "720660bc113904d40b725b242f415f878ed637fe7f9ea74655ac35bff1947e76", + "rev": "7a47745d69003ec580e8f38d26dbf8858a4f5b18" }, "recipe": { "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151012.926", "deps": [] @@ -26112,7 +26131,7 @@ }, "recipe": { "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150509.1545", "deps": [ @@ -26128,7 +26147,7 @@ }, "recipe": { "sha256": "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140430.213", "deps": [ @@ -26144,7 +26163,7 @@ }, "recipe": { "sha256": "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.1243", "deps": [] @@ -26158,7 +26177,7 @@ }, "recipe": { "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.835", "deps": [] @@ -26172,7 +26191,7 @@ }, "recipe": { "sha256": "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141102.1322", "deps": [ @@ -26191,7 +26210,7 @@ }, "recipe": { "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.816", "deps": [ @@ -26208,7 +26227,7 @@ }, "recipe": { "sha256": "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150214.648", "deps": [ @@ -26224,7 +26243,7 @@ }, "recipe": { "sha256": "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.40", "deps": [ @@ -26240,7 +26259,7 @@ }, "recipe": { "sha256": "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130127.1951", "deps": [] @@ -26253,7 +26272,7 @@ }, "recipe": { "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141128.837", "deps": [] @@ -26267,7 +26286,7 @@ }, "recipe": { "sha256": "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.1059", "deps": [] @@ -26281,7 +26300,7 @@ }, "recipe": { "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150903.2", "deps": [ @@ -26297,7 +26316,7 @@ }, "recipe": { "sha256": "0q5ybyj35dyh8k0nfvbglsq3ad2apc8cdijw4wqczc5180fckgy9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140130.1136", "deps": [] @@ -26311,7 +26330,7 @@ }, "recipe": { "sha256": "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.1830", "deps": [] @@ -26325,7 +26344,7 @@ }, "recipe": { "sha256": "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.2326", "deps": [ @@ -26343,7 +26362,7 @@ }, "recipe": { "sha256": "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150608.411", "deps": [ @@ -26359,7 +26378,7 @@ }, "recipe": { "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110901.330", "deps": [] @@ -26373,7 +26392,7 @@ }, "recipe": { "sha256": "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130810.917", "deps": [] @@ -26387,7 +26406,7 @@ }, "recipe": { "sha256": "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150531.343", "deps": [] @@ -26401,7 +26420,7 @@ }, "recipe": { "sha256": "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150314.322", "deps": [] @@ -26415,7 +26434,7 @@ }, "recipe": { "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.1225", "deps": [] @@ -26429,7 +26448,7 @@ }, "recipe": { "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.625", "deps": [] @@ -26443,7 +26462,7 @@ }, "recipe": { "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1603", "deps": [] @@ -26457,7 +26476,7 @@ }, "recipe": { "sha256": "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1323", "deps": [] @@ -26471,7 +26490,7 @@ }, "recipe": { "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151008.1614", "deps": [ @@ -26490,7 +26509,7 @@ }, "recipe": { "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130122.1053", "deps": [] @@ -26499,14 +26518,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rmuslimov/browse-at-remote.git", - "sha256": "98cc9ce77720195e07e46f5ecc0668c5728f28ad6ed470baf1e1cfd4a1666ce0", - "rev": "54853e0047cd8b20143f839a2f06e86ad31aaccc" + "sha256": "61b944f1b53d8982ad5857f83e5b09ff6f75ab825467de6fdad6a5ba67297b22", + "rev": "6b07282cbf3d40d654cbc083f19a07118848ee6d" }, "recipe": { "sha256": "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151213.1952", + "version": "20151214.1527", "deps": [ "cl-lib", "f", @@ -26522,7 +26541,7 @@ }, "recipe": { "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150517.643", "deps": [ @@ -26538,7 +26557,7 @@ }, "recipe": { "sha256": "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.702", "deps": [ @@ -26554,7 +26573,7 @@ }, "recipe": { "sha256": "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.1311", "deps": [ @@ -26570,7 +26589,7 @@ }, "recipe": { "sha256": "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140626.1925", "deps": [ @@ -26587,7 +26606,7 @@ }, "recipe": { "sha256": "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150731.512", "deps": [ @@ -26603,7 +26622,7 @@ }, "recipe": { "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.628", "deps": [ @@ -26619,7 +26638,7 @@ }, "recipe": { "sha256": "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140407.20", "deps": [] @@ -26633,7 +26652,7 @@ }, "recipe": { "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1205", "deps": [] @@ -26647,7 +26666,7 @@ }, "recipe": { "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150801.1202", "deps": [ @@ -26664,7 +26683,7 @@ }, "recipe": { "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1839", "deps": [] @@ -26678,7 +26697,7 @@ }, "recipe": { "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150208.2111", "deps": [] @@ -26692,7 +26711,7 @@ }, "recipe": { "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140807.1054", "deps": [ @@ -26708,7 +26727,7 @@ }, "recipe": { "sha256": "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130921.2242", "deps": [] @@ -26722,7 +26741,7 @@ }, "recipe": { "sha256": "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.148", "deps": [] @@ -26736,7 +26755,7 @@ }, "recipe": { "sha256": "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.932", "deps": [ @@ -26752,7 +26771,7 @@ }, "recipe": { "sha256": "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131102.609", "deps": [] @@ -26766,7 +26785,7 @@ }, "recipe": { "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150620.1943", "deps": [ @@ -26782,7 +26801,7 @@ }, "recipe": { "sha256": "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100703.741", "deps": [] @@ -26796,7 +26815,7 @@ }, "recipe": { "sha256": "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140612.2321", "deps": [] @@ -26810,7 +26829,7 @@ }, "recipe": { "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130204.1653", "deps": [] @@ -26824,7 +26843,7 @@ }, "recipe": { "sha256": "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150506.1858", "deps": [ @@ -26841,7 +26860,7 @@ }, "recipe": { "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140904.1910", "deps": [ @@ -26856,7 +26875,7 @@ }, "recipe": { "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.657", "deps": [] @@ -26870,7 +26889,7 @@ }, "recipe": { "sha256": "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.414", "deps": [] @@ -26884,7 +26903,7 @@ }, "recipe": { "sha256": "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140222.2001", "deps": [ @@ -26900,7 +26919,7 @@ }, "recipe": { "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150908.156", "deps": [ @@ -26918,7 +26937,7 @@ }, "recipe": { "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150422.208", "deps": [ @@ -26935,7 +26954,7 @@ }, "recipe": { "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1857", "deps": [] @@ -26949,7 +26968,7 @@ }, "recipe": { "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1429", "deps": [ @@ -26965,7 +26984,7 @@ }, "recipe": { "sha256": "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150806.707", "deps": [] @@ -26979,7 +26998,7 @@ }, "recipe": { "sha256": "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130610.249", "deps": [] @@ -26993,7 +27012,7 @@ }, "recipe": { "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.1328", "deps": [ @@ -27009,7 +27028,7 @@ }, "recipe": { "sha256": "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141001.1413", "deps": [] @@ -27023,7 +27042,7 @@ }, "recipe": { "sha256": "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150528.800", "deps": [] @@ -27037,7 +27056,7 @@ }, "recipe": { "sha256": "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131029.1816", "deps": [] @@ -27051,7 +27070,7 @@ }, "recipe": { "sha256": "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150208.1937", "deps": [ @@ -27067,7 +27086,7 @@ }, "recipe": { "sha256": "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.1317", "deps": [ @@ -27083,7 +27102,7 @@ }, "recipe": { "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131209.1800", "deps": [] @@ -27097,7 +27116,7 @@ }, "recipe": { "sha256": "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130323.1225", "deps": [] @@ -27111,7 +27130,7 @@ }, "recipe": { "sha256": "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150421.2257", "deps": [] @@ -27125,7 +27144,7 @@ }, "recipe": { "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131230.1119", "deps": [ @@ -27141,7 +27160,7 @@ }, "recipe": { "sha256": "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150731.845", "deps": [] @@ -27155,7 +27174,7 @@ }, "recipe": { "sha256": "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.312", "deps": [] @@ -27169,7 +27188,7 @@ }, "recipe": { "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.1705", "deps": [ @@ -27187,7 +27206,7 @@ }, "recipe": { "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150926.627", "deps": [ @@ -27204,7 +27223,7 @@ }, "recipe": { "sha256": "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090528.136", "deps": [] @@ -27218,7 +27237,7 @@ }, "recipe": { "sha256": "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.2138", "deps": [ @@ -27229,14 +27248,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/TheBB/spaceline.git", - "sha256": "5da81cbeb31e20e7b6b253c4e7283f8c372470850c913135e9a61c5721583c58", - "rev": "f08cecdf58f2bb60715114db155b2062695016d8" + "sha256": "91c54a898a0c631c2cc0e1e6cf5c9480a3fcd90209891fb490593d4105418e0f", + "rev": "2cc31a94b8b8c3eefc81ab409071365d120d2535" }, "recipe": { "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151206.754", + "version": "20151215.225", "deps": [ "cl-lib", "dash", @@ -27254,7 +27273,7 @@ }, "recipe": { "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130526.1014", "deps": [] @@ -27268,7 +27287,7 @@ }, "recipe": { "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151022.1225", "deps": [] @@ -27282,7 +27301,7 @@ }, "recipe": { "sha256": "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.2133", "deps": [ @@ -27300,7 +27319,7 @@ }, "recipe": { "sha256": "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131217.912", "deps": [ @@ -27316,7 +27335,7 @@ }, "recipe": { "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131229.441", "deps": [] @@ -27330,7 +27349,7 @@ }, "recipe": { "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.154", "deps": [] @@ -27344,7 +27363,7 @@ }, "recipe": { "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150522.440", "deps": [ @@ -27359,7 +27378,7 @@ }, "recipe": { "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.859", "deps": [] @@ -27373,7 +27392,7 @@ }, "recipe": { "sha256": "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150321.2325", "deps": [ @@ -27390,7 +27409,7 @@ }, "recipe": { "sha256": "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130508.923", "deps": [ @@ -27408,7 +27427,7 @@ }, "recipe": { "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150417.332", "deps": [] @@ -27422,7 +27441,7 @@ }, "recipe": { "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150116.1007", "deps": [ @@ -27439,7 +27458,7 @@ }, "recipe": { "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150807.457", "deps": [] @@ -27453,7 +27472,7 @@ }, "recipe": { "sha256": "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.1740", "deps": [ @@ -27469,7 +27488,7 @@ }, "recipe": { "sha256": "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140129.304", "deps": [ @@ -27486,7 +27505,7 @@ }, "recipe": { "sha256": "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130217.1605", "deps": [] @@ -27500,7 +27519,7 @@ }, "recipe": { "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150729.2237", "deps": [] @@ -27514,7 +27533,7 @@ }, "recipe": { "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.1602", "deps": [ @@ -27525,12 +27544,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.905", "deps": [ @@ -27548,7 +27567,7 @@ }, "recipe": { "sha256": "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.1125", "deps": [] @@ -27562,7 +27581,7 @@ }, "recipe": { "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.130", "deps": [ @@ -27585,7 +27604,7 @@ }, "recipe": { "sha256": "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140410.355", "deps": [ @@ -27601,7 +27620,7 @@ }, "recipe": { "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140829.859", "deps": [] @@ -27615,7 +27634,7 @@ }, "recipe": { "sha256": "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130903.755", "deps": [] @@ -27629,7 +27648,7 @@ }, "recipe": { "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110806.158", "deps": [] @@ -27643,7 +27662,7 @@ }, "recipe": { "sha256": "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150519.1726", "deps": [] @@ -27657,7 +27676,7 @@ }, "recipe": { "sha256": "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120425.1735", "deps": [] @@ -27671,7 +27690,7 @@ }, "recipe": { "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150228.1447", "deps": [] @@ -27685,7 +27704,7 @@ }, "recipe": { "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.1837", "deps": [ @@ -27701,7 +27720,7 @@ }, "recipe": { "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140123.2102", "deps": [] @@ -27715,7 +27734,7 @@ }, "recipe": { "sha256": "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140924.1000", "deps": [ @@ -27732,7 +27751,7 @@ }, "recipe": { "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130813.1145", "deps": [] @@ -27746,7 +27765,7 @@ }, "recipe": { "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141226.1532", "deps": [ @@ -27766,7 +27785,7 @@ }, "recipe": { "sha256": "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.427", "deps": [ @@ -27783,7 +27802,7 @@ }, "recipe": { "sha256": "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.910", "deps": [ @@ -27800,7 +27819,7 @@ }, "recipe": { "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150918.1730", "deps": [ @@ -27816,7 +27835,7 @@ }, "recipe": { "sha256": "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110301.234", "deps": [] @@ -27830,7 +27849,7 @@ }, "recipe": { "sha256": "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130831.1719", "deps": [ @@ -27846,7 +27865,7 @@ }, "recipe": { "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.755", "deps": [ @@ -27867,7 +27886,7 @@ }, "recipe": { "sha256": "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131004.342", "deps": [] @@ -27881,7 +27900,7 @@ }, "recipe": { "sha256": "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.135", "deps": [] @@ -27895,7 +27914,7 @@ }, "recipe": { "sha256": "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.440", "deps": [ @@ -27911,7 +27930,7 @@ }, "recipe": { "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121125.1337", "deps": [] @@ -27925,7 +27944,7 @@ }, "recipe": { "sha256": "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150525.619", "deps": [ @@ -27941,7 +27960,7 @@ }, "recipe": { "sha256": "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150117.1152", "deps": [ @@ -27957,7 +27976,7 @@ }, "recipe": { "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131029.1634", "deps": [ @@ -27973,7 +27992,7 @@ }, "recipe": { "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150527.149", "deps": [] @@ -27987,7 +28006,7 @@ }, "recipe": { "sha256": "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121004.1826", "deps": [] @@ -28001,7 +28020,7 @@ }, "recipe": { "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140128.441", "deps": [ @@ -28019,7 +28038,7 @@ }, "recipe": { "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150707.123", "deps": [] @@ -28033,7 +28052,7 @@ }, "recipe": { "sha256": "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150718.2133", "deps": [] @@ -28046,7 +28065,7 @@ }, "recipe": { "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.1226", "deps": [ @@ -28063,7 +28082,7 @@ }, "recipe": { "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140731.1422", "deps": [ @@ -28079,7 +28098,7 @@ }, "recipe": { "sha256": "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141115.901", "deps": [] @@ -28093,7 +28112,7 @@ }, "recipe": { "sha256": "1sq1kim17bcmh39106vfgm7gq9nj9943lw8by0bpi5qr8xdjsn5r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130215.1504", "deps": [] @@ -28107,7 +28126,7 @@ }, "recipe": { "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.938", "deps": [] @@ -28121,7 +28140,7 @@ }, "recipe": { "sha256": "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130726.1407", "deps": [ @@ -28140,7 +28159,7 @@ }, "recipe": { "sha256": "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.2335", "deps": [ @@ -28156,7 +28175,7 @@ }, "recipe": { "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140920.235", "deps": [ @@ -28174,7 +28193,7 @@ }, "recipe": { "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150715.1114", "deps": [ @@ -28192,7 +28211,7 @@ }, "recipe": { "sha256": "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150817.1016", "deps": [ @@ -28208,7 +28227,7 @@ }, "recipe": { "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.231", "deps": [ @@ -28227,7 +28246,7 @@ }, "recipe": { "sha256": "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140407.2325", "deps": [] @@ -28241,7 +28260,7 @@ }, "recipe": { "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.241", "deps": [ @@ -28257,7 +28276,7 @@ }, "recipe": { "sha256": "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1625", "deps": [] @@ -28271,7 +28290,7 @@ }, "recipe": { "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150512.706", "deps": [] @@ -28280,12 +28299,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/jcollard/elm-mode.git", - "sha256": "28396168e91a980f9ccb68d5cbf9877743164c7a80ec487cf87bd530f02d468e", - "rev": "e0318ebb288be638f4a98cfd56a516b20ed5e723" + "sha256": "f91f3f2562ce2809c51d7093fcda4e3325645c4403427cf79f45c95ef0e946c8", + "rev": "3f33790b1de000c70cd852bbe63cfa5e282987dd" }, "recipe": { "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.1250", "deps": [ @@ -28304,7 +28323,7 @@ }, "recipe": { "sha256": "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1509", "deps": [ @@ -28320,7 +28339,7 @@ }, "recipe": { "sha256": "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150120.2234", "deps": [ @@ -28336,7 +28355,7 @@ }, "recipe": { "sha256": "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.1728", "deps": [ @@ -28348,14 +28367,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/emacs-helm/helm-descbinds.git", - "sha256": "f7ee2610b7d887961267184f1532445d94ecb7abe9e2442660d0d6b5e299c7a2", - "rev": "90f4597dad00230a06e5ce40e34c843a705bebd7" + "sha256": "1108c876784d137ca9c5cd5053a24519cb92ec8080669c42755d227f7f32d534", + "rev": "871771c458b59e494b0af036cff1cebf4fc24e2b" }, "recipe": { "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151213.1247", + "version": "20151215.1557", "deps": [ "helm" ] @@ -28369,7 +28388,7 @@ }, "recipe": { "sha256": "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150331.908", "deps": [ @@ -28386,7 +28405,7 @@ }, "recipe": { "sha256": "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130529.1233", "deps": [ @@ -28403,7 +28422,7 @@ }, "recipe": { "sha256": "141x4scl13gqxyg0nlc8vig1iaybc3g95il5r51k4k83isi62iyq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.1647", "deps": [ @@ -28420,7 +28439,7 @@ }, "recipe": { "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140103.1632", "deps": [ @@ -28436,7 +28455,7 @@ }, "recipe": { "sha256": "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150817.2113", "deps": [ @@ -28457,7 +28476,7 @@ }, "recipe": { "sha256": "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140129.952", "deps": [ @@ -28474,7 +28493,7 @@ }, "recipe": { "sha256": "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150114.1033", "deps": [] @@ -28488,7 +28507,7 @@ }, "recipe": { "sha256": "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130802.611", "deps": [] @@ -28502,7 +28521,7 @@ }, "recipe": { "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151101.807", "deps": [] @@ -28516,7 +28535,7 @@ }, "recipe": { "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.1231", "deps": [ @@ -28533,7 +28552,7 @@ }, "recipe": { "sha256": "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150919.1701", "deps": [ @@ -28550,7 +28569,7 @@ }, "recipe": { "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [ @@ -28566,7 +28585,7 @@ }, "recipe": { "sha256": "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.2116", "deps": [ @@ -28583,7 +28602,7 @@ }, "recipe": { "sha256": "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.440", "deps": [ @@ -28600,7 +28619,7 @@ }, "recipe": { "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.1546", "deps": [ @@ -28619,7 +28638,7 @@ }, "recipe": { "sha256": "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150821.614", "deps": [] @@ -28633,7 +28652,7 @@ }, "recipe": { "sha256": "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150203.1843", "deps": [] @@ -28647,7 +28666,7 @@ }, "recipe": { "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.658", "deps": [ @@ -28663,7 +28682,7 @@ }, "recipe": { "sha256": "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140518.943", "deps": [ @@ -28679,7 +28698,7 @@ }, "recipe": { "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.1151", "deps": [] @@ -28693,7 +28712,7 @@ }, "recipe": { "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140817.1804", "deps": [ @@ -28717,7 +28736,7 @@ }, "recipe": { "sha256": "0lj91lfhiy6hwglv62bzqk2qjqg3dvwv0nff6cbv0za3zdwdj5yv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150816.420", "deps": [ @@ -28736,7 +28755,7 @@ }, "recipe": { "sha256": "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141112.1211", "deps": [ @@ -28747,12 +28766,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-esqlite.git", - "sha256": "4f31dc12b04d76d1f5c66fa35189959ffcddecc46b70fd106ef6263e5ea5b6d6", + "sha256": "306f8a4781dceca65dccdeb1370598b8db5b2ee10e371ee1d80c52741abe6241", "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" }, "recipe": { "sha256": "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.250", "deps": [ @@ -28769,7 +28788,7 @@ }, "recipe": { "sha256": "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.1318", "deps": [ @@ -28787,7 +28806,7 @@ }, "recipe": { "sha256": "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141102.854", "deps": [] @@ -28801,7 +28820,7 @@ }, "recipe": { "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.843", "deps": [] @@ -28815,7 +28834,7 @@ }, "recipe": { "sha256": "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130508.439", "deps": [ @@ -28831,7 +28850,7 @@ }, "recipe": { "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150611.356", "deps": [ @@ -28851,7 +28870,7 @@ }, "recipe": { "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.804", "deps": [ @@ -28869,7 +28888,7 @@ }, "recipe": { "sha256": "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150126.2337", "deps": [ @@ -28886,7 +28905,7 @@ }, "recipe": { "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150324.1740", "deps": [ @@ -28902,7 +28921,7 @@ }, "recipe": { "sha256": "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140314.817", "deps": [] @@ -28916,7 +28935,7 @@ }, "recipe": { "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.1806", "deps": [] @@ -28930,7 +28949,7 @@ }, "recipe": { "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150105.852", "deps": [] @@ -28944,7 +28963,7 @@ }, "recipe": { "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1550", "deps": [ @@ -28959,7 +28978,7 @@ }, "recipe": { "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151015.1751", "deps": [] @@ -28973,7 +28992,7 @@ }, "recipe": { "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1956", "deps": [] @@ -28987,7 +29006,7 @@ }, "recipe": { "sha256": "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150809.1916", "deps": [] @@ -29001,7 +29020,7 @@ }, "recipe": { "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130613.402", "deps": [ @@ -29017,7 +29036,7 @@ }, "recipe": { "sha256": "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150911.1847", "deps": [ @@ -29034,7 +29053,7 @@ }, "recipe": { "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140918.1337", "deps": [] @@ -29048,7 +29067,7 @@ }, "recipe": { "sha256": "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.1156", "deps": [] @@ -29062,7 +29081,7 @@ }, "recipe": { "sha256": "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.1048", "deps": [] @@ -29076,7 +29095,7 @@ }, "recipe": { "sha256": "1vbgphmvvsj5jl8f78rpsidlmlgyp1kq3nkmziqhwkcq8hfywssm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141205.1451", "deps": [] @@ -29089,7 +29108,7 @@ }, "recipe": { "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1909", "deps": [] @@ -29102,7 +29121,7 @@ }, "recipe": { "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.1143", "deps": [] @@ -29116,7 +29135,7 @@ }, "recipe": { "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150902.2356", "deps": [ @@ -29132,7 +29151,7 @@ }, "recipe": { "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1553", "deps": [] @@ -29146,7 +29165,7 @@ }, "recipe": { "sha256": "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.928", "deps": [ @@ -29163,7 +29182,7 @@ }, "recipe": { "sha256": "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150620.2218", "deps": [] @@ -29177,7 +29196,7 @@ }, "recipe": { "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150926.1003", "deps": [ @@ -29193,7 +29212,7 @@ }, "recipe": { "sha256": "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151017.2319", "deps": [] @@ -29207,7 +29226,7 @@ }, "recipe": { "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.1719", "deps": [] @@ -29221,7 +29240,7 @@ }, "recipe": { "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.207", "deps": [] @@ -29234,7 +29253,7 @@ }, "recipe": { "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150406.1930", "deps": [] @@ -29243,12 +29262,12 @@ "fetch": { "tag": "fetchgit", "url": "git://factorcode.org/git/factor.git", - "sha256": "380414f580ea0f96f31195609826e74c91a1d2a8d488039e2d33f0df657302c6", - "rev": "cbba6bbf959fdb739f8500c5adb2194b3d61f4d9" + "sha256": "a339a009bb3e4bdee9bbe22eb6d9f4d517b8b67621cec6eca8f6e5068172304b", + "rev": "119f188423822121b1cb94358ea16c4b95b02850" }, "recipe": { "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.543", "deps": [ @@ -29265,7 +29284,7 @@ }, "recipe": { "sha256": "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150901.816", "deps": [] @@ -29279,7 +29298,7 @@ }, "recipe": { "sha256": "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.101", "deps": [ @@ -29296,7 +29315,7 @@ }, "recipe": { "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140714.219", "deps": [] @@ -29310,7 +29329,7 @@ }, "recipe": { "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.217", "deps": [ @@ -29328,7 +29347,7 @@ }, "recipe": { "sha256": "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.1754", "deps": [ @@ -29345,7 +29364,7 @@ }, "recipe": { "sha256": "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130403.942", "deps": [] @@ -29359,7 +29378,7 @@ }, "recipe": { "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130912.2019", "deps": [ @@ -29378,7 +29397,7 @@ }, "recipe": { "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.845", "deps": [ @@ -29395,7 +29414,7 @@ }, "recipe": { "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150920.38", "deps": [] @@ -29409,7 +29428,7 @@ }, "recipe": { "sha256": "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150306.1423", "deps": [] @@ -29423,7 +29442,7 @@ }, "recipe": { "sha256": "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130707.1515", "deps": [ @@ -29440,7 +29459,7 @@ }, "recipe": { "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.1352", "deps": [] @@ -29453,7 +29472,7 @@ }, "recipe": { "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140421.1122", "deps": [] @@ -29467,7 +29486,7 @@ }, "recipe": { "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.303", "deps": [ @@ -29488,7 +29507,7 @@ }, "recipe": { "sha256": "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1035", "deps": [ @@ -29500,12 +29519,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/graphene.git", - "sha256": "961ff5be2e0aa1fe05befc9293a5c8022134ddf29b4e6c12f6225ddbb2a29f54", + "sha256": "f93ea7697fdf0b0a51410903ba62e21f30e367abc147defafd3e2f32690e5233", "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" }, "recipe": { "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.140", "deps": [ @@ -29531,7 +29550,7 @@ }, "recipe": { "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.1338", "deps": [ @@ -29549,7 +29568,7 @@ }, "recipe": { "sha256": "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.859", "deps": [ @@ -29561,12 +29580,12 @@ "fetch": { "tag": "fetchgit", "url": "git://orgmode.org/org-mode.git", - "sha256": "e7b0fb86fdabdc5107a7118b4526bf219dce01f768ddff3fdf90404308d2f388", - "rev": "f57778090e7545142c4c997cf78149f5a0a4796d" + "sha256": "fab06e90d79c19cc598ea1cb04ca0fe53999f22d71f292ce6947de1b5ead701f", + "rev": "0bdf4cedc5959ec4f40eb3b79302f020d69e2fd0" }, "recipe": { "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140107.719", "deps": [] @@ -29580,7 +29599,7 @@ }, "recipe": { "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.1133", "deps": [] @@ -29594,7 +29613,7 @@ }, "recipe": { "sha256": "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.801", "deps": [ @@ -29615,7 +29634,7 @@ }, "recipe": { "sha256": "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150923.1102", "deps": [ @@ -29632,7 +29651,7 @@ }, "recipe": { "sha256": "1brmsgnkhr5nlma1p8f5s78y9gw3rfm8sah55n6vyhr0dpb4z7kl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150610.1206", "deps": [] @@ -29646,7 +29665,7 @@ }, "recipe": { "sha256": "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140805.1554", "deps": [ @@ -29664,7 +29683,7 @@ }, "recipe": { "sha256": "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150519.955", "deps": [ @@ -29682,7 +29701,7 @@ }, "recipe": { "sha256": "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150114.32", "deps": [ @@ -29699,7 +29718,7 @@ }, "recipe": { "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.534", "deps": [] @@ -29713,7 +29732,7 @@ }, "recipe": { "sha256": "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.22", "deps": [ @@ -29731,7 +29750,7 @@ }, "recipe": { "sha256": "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140224.2210", "deps": [] @@ -29745,7 +29764,7 @@ }, "recipe": { "sha256": "0p7v564p8n1hm7rzlrbm2pnhyha8aif2r9g7g4kg0iqln89f5yhc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120202.2334", "deps": [] @@ -29759,7 +29778,7 @@ }, "recipe": { "sha256": "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150714.1125", "deps": [ @@ -29775,7 +29794,7 @@ }, "recipe": { "sha256": "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.2339", "deps": [] @@ -29789,7 +29808,7 @@ }, "recipe": { "sha256": "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150818.824", "deps": [ @@ -29805,7 +29824,7 @@ }, "recipe": { "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1312", "deps": [ @@ -29821,7 +29840,7 @@ }, "recipe": { "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140827.2056", "deps": [ @@ -29837,7 +29856,7 @@ }, "recipe": { "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150719.1955", "deps": [] @@ -29850,7 +29869,7 @@ }, "recipe": { "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.1052", "deps": [] @@ -29864,7 +29883,7 @@ }, "recipe": { "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150915.1230", "deps": [] @@ -29878,7 +29897,7 @@ }, "recipe": { "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150218.434", "deps": [ @@ -29894,7 +29913,7 @@ }, "recipe": { "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140119.1543", "deps": [] @@ -29908,7 +29927,7 @@ }, "recipe": { "sha256": "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150714.1735", "deps": [] @@ -29922,7 +29941,7 @@ }, "recipe": { "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.627", "deps": [] @@ -29931,12 +29950,12 @@ "fetch": { "tag": "fetchgit", "url": "http://llvm.org/git/llvm", - "sha256": "89edd9b31a3e2ad5ce10a69d36b5b74846e62f193a76331a216c3af4e427e3b2", - "rev": "a4527729ac58c83b4411b7bf1adab07cd7c3b050" + "sha256": "4aa3ce45502636723d58dc4bfa05928082dfc4541fa6b4c95f8655712e9452a3", + "rev": "8c9bc7b01bf5e097f461703f6ce7a35e65178e66" }, "recipe": { "sha256": "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.844", "deps": [] @@ -29950,7 +29969,7 @@ }, "recipe": { "sha256": "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141214.743", "deps": [ @@ -29967,7 +29986,7 @@ }, "recipe": { "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140312.1548", "deps": [] @@ -29981,7 +30000,7 @@ }, "recipe": { "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150404.423", "deps": [] @@ -29995,7 +30014,7 @@ }, "recipe": { "sha256": "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.1010", "deps": [] @@ -30009,7 +30028,7 @@ }, "recipe": { "sha256": "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150619.1934", "deps": [ @@ -30025,7 +30044,7 @@ }, "recipe": { "sha256": "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150715.2133", "deps": [ @@ -30044,7 +30063,7 @@ }, "recipe": { "sha256": "0h5jaw577vgm3hfiwc2c0k1wn8zda8ps06vj6mqj952m8bqhf4i7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150413.1515", "deps": [ @@ -30061,7 +30080,7 @@ }, "recipe": { "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140520.1508", "deps": [ @@ -30079,7 +30098,7 @@ }, "recipe": { "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131111.1546", "deps": [] @@ -30093,7 +30112,7 @@ }, "recipe": { "sha256": "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.141", "deps": [ @@ -30109,7 +30128,7 @@ }, "recipe": { "sha256": "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150929.47", "deps": [ @@ -30128,7 +30147,7 @@ }, "recipe": { "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140213.548", "deps": [] @@ -30142,7 +30161,7 @@ }, "recipe": { "sha256": "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150603.2047", "deps": [] @@ -30156,7 +30175,7 @@ }, "recipe": { "sha256": "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.743", "deps": [] @@ -30170,7 +30189,7 @@ }, "recipe": { "sha256": "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150811.1329", "deps": [ @@ -30182,12 +30201,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/osv/ac-html-bootstrap.git", - "sha256": "47e6824a102b840e82838fc04624abc18ce06b551df23c5a15875b410817d246", + "sha256": "603e45398b365917790b720e517af2049d5042645c83d490e7abe5556a76dc03", "rev": "3c1880294585054fe8345f25d002a7a4633b2fae" }, "recipe": { "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150930.241", "deps": [ @@ -30203,7 +30222,7 @@ }, "recipe": { "sha256": "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151010.2057", "deps": [] @@ -30212,12 +30231,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/JuliaLang/julia.git", - "sha256": "17603f2155b805b149c85aa4fd575be73d0920b5b757a1a4b6f95c47c4492fd4", - "rev": "bbbd9d2089479c703fa9a000d093896533dd1236" + "sha256": "5457f518eda68fdcfd854788b6736902250f06519af6b4ba6360a4cc8b5ba3b6", + "rev": "97443cd94d038fc3fe182e97b3ff2a597a9e319b" }, "recipe": { "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150912.1000", "deps": [] @@ -30226,12 +30245,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tarao/term-plus-mux-el.git", - "sha256": "fe9149cb025d7101cab81ce1da32e5b0bf3c64f95aae3e80ada8554f762c5020", + "sha256": "922a6886ea4a34bec05eb04b0393668fd841275f504f912cab35b8af92ed9ea7", "rev": "81b60e80cf008472bfd7fad9233af2ef722c208a" }, "recipe": { "sha256": "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140211.149", "deps": [ @@ -30248,7 +30267,7 @@ }, "recipe": { "sha256": "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150110.2303", "deps": [] @@ -30262,7 +30281,7 @@ }, "recipe": { "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150924.1314", "deps": [ @@ -30280,7 +30299,7 @@ }, "recipe": { "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.238", "deps": [ @@ -30299,7 +30318,7 @@ }, "recipe": { "sha256": "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140720.2327", "deps": [ @@ -30315,7 +30334,7 @@ }, "recipe": { "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140415.2041", "deps": [] @@ -30329,7 +30348,7 @@ }, "recipe": { "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.547", "deps": [ @@ -30345,7 +30364,7 @@ }, "recipe": { "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110120.2218", "deps": [] @@ -30359,7 +30378,7 @@ }, "recipe": { "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150802.1157", "deps": [] @@ -30373,7 +30392,7 @@ }, "recipe": { "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151015.1331", "deps": [ @@ -30389,7 +30408,7 @@ }, "recipe": { "sha256": "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.2055", "deps": [ @@ -30401,12 +30420,12 @@ "fetch": { "tag": "fetchgit", "url": "git://orgmode.org/org-mode.git", - "sha256": "e7b0fb86fdabdc5107a7118b4526bf219dce01f768ddff3fdf90404308d2f388", - "rev": "f57778090e7545142c4c997cf78149f5a0a4796d" + "sha256": "fab06e90d79c19cc598ea1cb04ca0fe53999f22d71f292ce6947de1b5ead701f", + "rev": "0bdf4cedc5959ec4f40eb3b79302f020d69e2fd0" }, "recipe": { "sha256": "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.616", "deps": [] @@ -30420,7 +30439,7 @@ }, "recipe": { "sha256": "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130610.843", "deps": [] @@ -30434,7 +30453,7 @@ }, "recipe": { "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.535", "deps": [] @@ -30448,7 +30467,7 @@ }, "recipe": { "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.830", "deps": [] @@ -30462,7 +30481,7 @@ }, "recipe": { "sha256": "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150412.1216", "deps": [ @@ -30478,7 +30497,7 @@ }, "recipe": { "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1128", "deps": [ @@ -30495,7 +30514,7 @@ }, "recipe": { "sha256": "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141205.2205", "deps": [] @@ -30509,7 +30528,7 @@ }, "recipe": { "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130303.155", "deps": [] @@ -30523,7 +30542,7 @@ }, "recipe": { "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1649", "deps": [ @@ -30539,7 +30558,7 @@ }, "recipe": { "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1855", "deps": [] @@ -30553,7 +30572,7 @@ }, "recipe": { "sha256": "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150823.539", "deps": [] @@ -30567,7 +30586,7 @@ }, "recipe": { "sha256": "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131022.402", "deps": [] @@ -30581,7 +30600,7 @@ }, "recipe": { "sha256": "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150607.1113", "deps": [] @@ -30595,7 +30614,7 @@ }, "recipe": { "sha256": "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130612.42", "deps": [ @@ -30611,7 +30630,7 @@ }, "recipe": { "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.1250", "deps": [] @@ -30625,7 +30644,7 @@ }, "recipe": { "sha256": "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.227", "deps": [ @@ -30642,7 +30661,7 @@ }, "recipe": { "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150423.902", "deps": [ @@ -30659,7 +30678,7 @@ }, "recipe": { "sha256": "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140227.1439", "deps": [] @@ -30673,7 +30692,7 @@ }, "recipe": { "sha256": "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150604.638", "deps": [ @@ -30693,7 +30712,7 @@ }, "recipe": { "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1312", "deps": [ @@ -30710,7 +30729,7 @@ }, "recipe": { "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151010.131", "deps": [ @@ -30728,7 +30747,7 @@ }, "recipe": { "sha256": "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141219.1117", "deps": [] @@ -30742,7 +30761,7 @@ }, "recipe": { "sha256": "04gs468qqhdc9avx7lgibr0f1i444714i7rifad37dfmim8qk759", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121008.1114", "deps": [] @@ -30756,7 +30775,7 @@ }, "recipe": { "sha256": "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.202", "deps": [ @@ -30773,7 +30792,7 @@ }, "recipe": { "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.255", "deps": [ @@ -30792,7 +30811,7 @@ }, "recipe": { "sha256": "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151028.720", "deps": [] @@ -30806,7 +30825,7 @@ }, "recipe": { "sha256": "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151011.1023", "deps": [ @@ -30822,7 +30841,7 @@ }, "recipe": { "sha256": "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140108.934", "deps": [] @@ -30836,7 +30855,7 @@ }, "recipe": { "sha256": "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131118.1316", "deps": [ @@ -30853,7 +30872,7 @@ }, "recipe": { "sha256": "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150719.1248", "deps": [] @@ -30862,12 +30881,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "acef59b5bc48c0369744d91ee949a6fb573592f999880775f92f747669652095", + "sha256": "e7a0756c60b165c328baedf6376574a79198a2086c46666ea42a02f9e307a2cd", "rev": "44b93337549fa501b404767852a25b7a8b9af02f" }, "recipe": { "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1035", "deps": [ @@ -30884,7 +30903,7 @@ }, "recipe": { "sha256": "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150316.1418", "deps": [ @@ -30902,7 +30921,7 @@ }, "recipe": { "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150911.446", "deps": [ @@ -30917,7 +30936,7 @@ }, "recipe": { "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141226.1420", "deps": [] @@ -30931,7 +30950,7 @@ }, "recipe": { "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.138", "deps": [ @@ -30948,7 +30967,7 @@ }, "recipe": { "sha256": "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.838", "deps": [ @@ -30964,7 +30983,7 @@ }, "recipe": { "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.216", "deps": [ @@ -30985,7 +31004,7 @@ }, "recipe": { "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1448", "deps": [ @@ -31002,7 +31021,7 @@ }, "recipe": { "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.2130", "deps": [ @@ -31018,7 +31037,7 @@ }, "recipe": { "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.1054", "deps": [] @@ -31032,7 +31051,7 @@ }, "recipe": { "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.330", "deps": [ @@ -31048,7 +31067,7 @@ }, "recipe": { "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130917.1348", "deps": [] @@ -31062,7 +31081,7 @@ }, "recipe": { "sha256": "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.1252", "deps": [] @@ -31076,7 +31095,7 @@ }, "recipe": { "sha256": "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20111009.816", "deps": [] @@ -31090,7 +31109,7 @@ }, "recipe": { "sha256": "1ykiz5fviq2n2474izwp0vvqanpbmxg7lzh1xbpn281kwmp0mwin", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151001.129", "deps": [] @@ -31104,7 +31123,7 @@ }, "recipe": { "sha256": "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141104.1037", "deps": [] @@ -31118,7 +31137,7 @@ }, "recipe": { "sha256": "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1804", "deps": [ @@ -31134,7 +31153,7 @@ }, "recipe": { "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150808.756", "deps": [ @@ -31153,7 +31172,7 @@ }, "recipe": { "sha256": "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150414.2032", "deps": [ @@ -31170,7 +31189,7 @@ }, "recipe": { "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.719", "deps": [ @@ -31186,7 +31205,7 @@ }, "recipe": { "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140717.2341", "deps": [] @@ -31200,7 +31219,7 @@ }, "recipe": { "sha256": "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.522", "deps": [ @@ -31216,7 +31235,7 @@ }, "recipe": { "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151020.801", "deps": [ @@ -31234,7 +31253,7 @@ }, "recipe": { "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150604.1224", "deps": [ @@ -31251,7 +31270,7 @@ }, "recipe": { "sha256": "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121014.2319", "deps": [ @@ -31267,7 +31286,7 @@ }, "recipe": { "sha256": "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150902.2027", "deps": [] @@ -31281,7 +31300,7 @@ }, "recipe": { "sha256": "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150225.146", "deps": [] @@ -31295,7 +31314,7 @@ }, "recipe": { "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150824.749", "deps": [] @@ -31309,7 +31328,7 @@ }, "recipe": { "sha256": "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150408.1622", "deps": [ @@ -31325,7 +31344,7 @@ }, "recipe": { "sha256": "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140114.705", "deps": [] @@ -31339,7 +31358,7 @@ }, "recipe": { "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150831.358", "deps": [ @@ -31357,7 +31376,7 @@ }, "recipe": { "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140611.1150", "deps": [] @@ -31371,7 +31390,7 @@ }, "recipe": { "sha256": "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.6", "deps": [ @@ -31387,7 +31406,7 @@ }, "recipe": { "sha256": "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141115.630", "deps": [ @@ -31403,7 +31422,7 @@ }, "recipe": { "sha256": "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.1159", "deps": [ @@ -31419,7 +31438,7 @@ }, "recipe": { "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.1126", "deps": [ @@ -31435,7 +31454,7 @@ }, "recipe": { "sha256": "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131208.1118", "deps": [] @@ -31448,7 +31467,7 @@ }, "recipe": { "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1610", "deps": [] @@ -31462,7 +31481,7 @@ }, "recipe": { "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140925.1008", "deps": [] @@ -31476,7 +31495,7 @@ }, "recipe": { "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.827", "deps": [] @@ -31490,7 +31509,7 @@ }, "recipe": { "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140825.627", "deps": [ @@ -31506,7 +31525,7 @@ }, "recipe": { "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150618.2038", "deps": [ @@ -31522,7 +31541,7 @@ }, "recipe": { "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150907.256", "deps": [ @@ -31538,7 +31557,7 @@ }, "recipe": { "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150706.2009", "deps": [ @@ -31557,7 +31576,7 @@ }, "recipe": { "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141105.859", "deps": [ @@ -31576,7 +31595,7 @@ }, "recipe": { "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.1239", "deps": [ @@ -31593,7 +31612,7 @@ }, "recipe": { "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.522", "deps": [] @@ -31607,7 +31626,7 @@ }, "recipe": { "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151020.809", "deps": [ @@ -31624,7 +31643,7 @@ }, "recipe": { "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.611", "deps": [ @@ -31644,7 +31663,7 @@ }, "recipe": { "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.2121", "deps": [] @@ -31658,7 +31677,7 @@ }, "recipe": { "sha256": "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150224.2037", "deps": [ @@ -31677,7 +31696,7 @@ }, "recipe": { "sha256": "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140904.1317", "deps": [ @@ -31692,7 +31711,7 @@ }, "recipe": { "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.1121", "deps": [] @@ -31706,7 +31725,7 @@ }, "recipe": { "sha256": "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150924.1150", "deps": [ @@ -31722,7 +31741,7 @@ }, "recipe": { "sha256": "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140125.1819", "deps": [ @@ -31738,7 +31757,7 @@ }, "recipe": { "sha256": "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.622", "deps": [ @@ -31754,7 +31773,7 @@ }, "recipe": { "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150916.2054", "deps": [ @@ -31771,7 +31790,7 @@ }, "recipe": { "sha256": "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150331.1409", "deps": [] @@ -31785,7 +31804,7 @@ }, "recipe": { "sha256": "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150704.1009", "deps": [] @@ -31799,7 +31818,7 @@ }, "recipe": { "sha256": "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150329.1733", "deps": [] @@ -31813,7 +31832,7 @@ }, "recipe": { "sha256": "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.817", "deps": [ @@ -31831,7 +31850,7 @@ }, "recipe": { "sha256": "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150805.528", "deps": [ @@ -31848,7 +31867,7 @@ }, "recipe": { "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140201.514", "deps": [] @@ -31862,7 +31881,7 @@ }, "recipe": { "sha256": "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130821.1305", "deps": [] @@ -31876,7 +31895,7 @@ }, "recipe": { "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150222.646", "deps": [ @@ -31893,7 +31912,7 @@ }, "recipe": { "sha256": "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150710.904", "deps": [] @@ -31907,7 +31926,7 @@ }, "recipe": { "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150421.1536", "deps": [ @@ -31923,7 +31942,7 @@ }, "recipe": { "sha256": "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130728.1721", "deps": [] @@ -31937,7 +31956,7 @@ }, "recipe": { "sha256": "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150915.333", "deps": [ @@ -31953,7 +31972,7 @@ }, "recipe": { "sha256": "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130720.1016", "deps": [] @@ -31967,7 +31986,7 @@ }, "recipe": { "sha256": "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110726.1141", "deps": [] @@ -31980,7 +31999,7 @@ }, "recipe": { "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1532", "deps": [ @@ -31996,7 +32015,7 @@ }, "recipe": { "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150215.34", "deps": [ @@ -32012,7 +32031,7 @@ }, "recipe": { "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150829.2355", "deps": [] @@ -32026,7 +32045,7 @@ }, "recipe": { "sha256": "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140929.1637", "deps": [] @@ -32040,7 +32059,7 @@ }, "recipe": { "sha256": "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.733", "deps": [ @@ -32061,7 +32080,7 @@ }, "recipe": { "sha256": "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130216.714", "deps": [] @@ -32075,7 +32094,7 @@ }, "recipe": { "sha256": "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140714.1649", "deps": [] @@ -32089,7 +32108,7 @@ }, "recipe": { "sha256": "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.406", "deps": [] @@ -32103,7 +32122,7 @@ }, "recipe": { "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150111.1908", "deps": [ @@ -32119,7 +32138,7 @@ }, "recipe": { "sha256": "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141222.1835", "deps": [] @@ -32133,7 +32152,7 @@ }, "recipe": { "sha256": "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150802.406", "deps": [] @@ -32147,7 +32166,7 @@ }, "recipe": { "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150703.326", "deps": [ @@ -32159,14 +32178,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/justbur/evil-magit.git", - "sha256": "a74a24f11136c9eb0ccf46acd7743bf4c749bf709bb9bcac326603a26b244c3e", - "rev": "de0de28f1e0d1a0de5ba2482588c359d30f20bee" + "sha256": "b7e67dfe1e43215c71bb6f0b4309146329d28feca1bd2957fa0a2511e263b190", + "rev": "c35be89c5a80c7513f23e7382809b5abc8c58903" }, "recipe": { "sha256": "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151212.2118", + "version": "20151215.1626", "deps": [ "evil", "magit" @@ -32181,7 +32200,7 @@ }, "recipe": { "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.1438", "deps": [ @@ -32198,7 +32217,7 @@ }, "recipe": { "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130419.1629", "deps": [] @@ -32212,7 +32231,7 @@ }, "recipe": { "sha256": "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130612.852", "deps": [] @@ -32226,7 +32245,7 @@ }, "recipe": { "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.612", "deps": [ @@ -32243,7 +32262,7 @@ }, "recipe": { "sha256": "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.926", "deps": [ @@ -32259,7 +32278,7 @@ }, "recipe": { "sha256": "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120817.1906", "deps": [] @@ -32273,7 +32292,7 @@ }, "recipe": { "sha256": "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140225.346", "deps": [ @@ -32289,7 +32308,7 @@ }, "recipe": { "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141216.1609", "deps": [ @@ -32306,7 +32325,7 @@ }, "recipe": { "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.2150", "deps": [] @@ -32320,7 +32339,7 @@ }, "recipe": { "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.1825", "deps": [ @@ -32331,14 +32350,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/emacsmirror/diminish.git", - "sha256": "09a8ac18ded366d54941d415e2b77b3adf6d8d5c931cdedfeef82257fee15043", - "rev": "b50752d7e2ed87e2c729ccbb82f418c2145b3983" + "sha256": "8e9569286602d52c7b054ba408e706761a23e103e11bdda71403ba3b6ae5770e", + "rev": "18d9730f48f1f775b38ec8390cc644bc3f3d8de5" }, "recipe": { "sha256": "03sskxgvkj8zrkh1p6kc993609r6261q4ww9hr78kr2f2a98lj88", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20091203.1212", + "version": "20151215.1115", "deps": [] }, "easy-kill-extras": { @@ -32350,7 +32369,7 @@ }, "recipe": { "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.2117", "deps": [ @@ -32366,7 +32385,7 @@ }, "recipe": { "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150324.348", "deps": [ @@ -32382,7 +32401,7 @@ }, "recipe": { "sha256": "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151010.507", "deps": [ @@ -32401,7 +32420,7 @@ }, "recipe": { "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1832", "deps": [] @@ -32415,7 +32434,7 @@ }, "recipe": { "sha256": "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130508.1703", "deps": [] @@ -32429,7 +32448,7 @@ }, "recipe": { "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.36", "deps": [ @@ -32445,7 +32464,7 @@ }, "recipe": { "sha256": "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.651", "deps": [ @@ -32461,7 +32480,7 @@ }, "recipe": { "sha256": "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140310.436", "deps": [ @@ -32478,7 +32497,7 @@ }, "recipe": { "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.805", "deps": [ @@ -32494,7 +32513,7 @@ }, "recipe": { "sha256": "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150922.213", "deps": [] @@ -32508,7 +32527,7 @@ }, "recipe": { "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.618", "deps": [] @@ -32522,7 +32541,7 @@ }, "recipe": { "sha256": "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.1549", "deps": [ @@ -32542,7 +32561,7 @@ }, "recipe": { "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140605.1346", "deps": [ @@ -32558,7 +32577,7 @@ }, "recipe": { "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120808.622", "deps": [] @@ -32572,7 +32591,7 @@ }, "recipe": { "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150726.356", "deps": [ @@ -32590,7 +32609,7 @@ }, "recipe": { "sha256": "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150215.1518", "deps": [ @@ -32606,7 +32625,7 @@ }, "recipe": { "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150619.18", "deps": [ @@ -32622,7 +32641,7 @@ }, "recipe": { "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150915.2222", "deps": [] @@ -32636,7 +32655,7 @@ }, "recipe": { "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141121.1405", "deps": [ @@ -32653,7 +32672,7 @@ }, "recipe": { "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.22", "deps": [] @@ -32667,7 +32686,7 @@ }, "recipe": { "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1406", "deps": [] @@ -32680,7 +32699,7 @@ }, "recipe": { "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150616.1522", "deps": [ @@ -32696,7 +32715,7 @@ }, "recipe": { "sha256": "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141122.842", "deps": [ @@ -32712,7 +32731,7 @@ }, "recipe": { "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150831.2007", "deps": [ @@ -32729,7 +32748,7 @@ }, "recipe": { "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130718.435", "deps": [] @@ -32743,7 +32762,7 @@ }, "recipe": { "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.1547", "deps": [ @@ -32762,7 +32781,7 @@ }, "recipe": { "sha256": "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.1506", "deps": [] @@ -32776,7 +32795,7 @@ }, "recipe": { "sha256": "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141028.1727", "deps": [ @@ -32793,7 +32812,7 @@ }, "recipe": { "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.603", "deps": [] @@ -32807,7 +32826,7 @@ }, "recipe": { "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151015.605", "deps": [ @@ -32824,7 +32843,7 @@ }, "recipe": { "sha256": "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150826.1051", "deps": [ @@ -32842,7 +32861,7 @@ }, "recipe": { "sha256": "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141025.1112", "deps": [] @@ -32856,7 +32875,7 @@ }, "recipe": { "sha256": "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141231.1401", "deps": [ @@ -32873,7 +32892,7 @@ }, "recipe": { "sha256": "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150821.2304", "deps": [] @@ -32887,7 +32906,7 @@ }, "recipe": { "sha256": "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141228.540", "deps": [ @@ -32904,7 +32923,7 @@ }, "recipe": { "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150422.833", "deps": [] @@ -32918,7 +32937,7 @@ }, "recipe": { "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150325.1315", "deps": [] @@ -32932,7 +32951,7 @@ }, "recipe": { "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.1210", "deps": [] @@ -32941,12 +32960,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/pallet.git", - "sha256": "dbedee607b66db70fe1c49c2cdc3f3c8bcc69726889d2cd2daba07c8849c7ebb", + "sha256": "2caef10bf2794c3104abce1dac8eefd061894aa5de251ac868e72006a1ba42f4", "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" }, "recipe": { "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150512.202", "deps": [ @@ -32965,7 +32984,7 @@ }, "recipe": { "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150817.954", "deps": [ @@ -32983,7 +33002,7 @@ }, "recipe": { "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150720.2031", "deps": [ @@ -32999,7 +33018,7 @@ }, "recipe": { "sha256": "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150526.1905", "deps": [] @@ -33012,7 +33031,7 @@ }, "recipe": { "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.304", "deps": [] @@ -33026,7 +33045,7 @@ }, "recipe": { "sha256": "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120412.803", "deps": [] @@ -33041,7 +33060,7 @@ }, "recipe": { "sha256": "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141024.1842", "deps": [] @@ -33055,7 +33074,7 @@ }, "recipe": { "sha256": "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100321.1114", "deps": [] @@ -33069,7 +33088,7 @@ }, "recipe": { "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.107", "deps": [ @@ -33085,7 +33104,7 @@ }, "recipe": { "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150824.1611", "deps": [] @@ -33099,7 +33118,7 @@ }, "recipe": { "sha256": "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130608.2140", "deps": [ @@ -33115,7 +33134,7 @@ }, "recipe": { "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151107.2247", "deps": [] @@ -33124,14 +33143,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/ergoemacs/ergoemacs-mode.git", - "sha256": "32a88fc9f5da06f181b048ef0caf0deb334cbfbaa2f76bf667bded681402a078", - "rev": "ca73f109122db03563b792158034cf333d97a5a9" + "sha256": "017e3a9253bc6351694ed1737f894c5bd19fb346bd53a2af9b48b7856deb39ae", + "rev": "6f16300270afffe64f65c48204049641ba3010bf" }, "recipe": { "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151214.1038", + "version": "20151215.1600", "deps": [ "emacs", "undo-tree" @@ -33146,7 +33165,7 @@ }, "recipe": { "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.627", "deps": [ @@ -33162,7 +33181,7 @@ }, "recipe": { "sha256": "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140919.2056", "deps": [ @@ -33179,7 +33198,7 @@ }, "recipe": { "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140406.2020", "deps": [ @@ -33195,7 +33214,7 @@ }, "recipe": { "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150828.914", "deps": [] @@ -33209,7 +33228,7 @@ }, "recipe": { "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150831.341", "deps": [ @@ -33227,7 +33246,7 @@ }, "recipe": { "sha256": "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150515.1607", "deps": [] @@ -33236,12 +33255,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rsdn/nemerle.git", - "sha256": "013689d40795030567acec8010576b1ca3a7c3c064d1149142cf152967db646c", + "sha256": "2670724d9b2dfd16b1450790660b2a3123aaf49d880240457cfae03e3e45b7dd", "rev": "57c4b84b40cd7b2aa186baae78e79f0a4f521d97" }, "recipe": { "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130328.946", "deps": [] @@ -33255,7 +33274,7 @@ }, "recipe": { "sha256": "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140425.1711", "deps": [] @@ -33269,7 +33288,7 @@ }, "recipe": { "sha256": "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140618.58", "deps": [ @@ -33285,7 +33304,7 @@ }, "recipe": { "sha256": "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150424.1505", "deps": [] @@ -33299,7 +33318,7 @@ }, "recipe": { "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151004.1230", "deps": [] @@ -33313,7 +33332,7 @@ }, "recipe": { "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.945", "deps": [ @@ -33330,7 +33349,7 @@ }, "recipe": { "sha256": "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151006.514", "deps": [] @@ -33344,7 +33363,7 @@ }, "recipe": { "sha256": "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131228.814", "deps": [ @@ -33360,7 +33379,7 @@ }, "recipe": { "sha256": "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140913.1458", "deps": [] @@ -33374,7 +33393,7 @@ }, "recipe": { "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141023.831", "deps": [] @@ -33388,7 +33407,7 @@ }, "recipe": { "sha256": "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150918.1417", "deps": [] @@ -33402,7 +33421,7 @@ }, "recipe": { "sha256": "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150722.1024", "deps": [ @@ -33421,7 +33440,7 @@ }, "recipe": { "sha256": "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150928.457", "deps": [] @@ -33434,7 +33453,7 @@ }, "recipe": { "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131210.2131", "deps": [] @@ -33448,7 +33467,7 @@ }, "recipe": { "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130409.707", "deps": [] @@ -33462,7 +33481,7 @@ }, "recipe": { "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.936", "deps": [ @@ -33482,7 +33501,7 @@ }, "recipe": { "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121020.151", "deps": [ @@ -33498,7 +33517,7 @@ }, "recipe": { "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140227.51", "deps": [ @@ -33516,7 +33535,7 @@ }, "recipe": { "sha256": "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131104.1634", "deps": [] @@ -33530,7 +33549,7 @@ }, "recipe": { "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.345", "deps": [ @@ -33546,7 +33565,7 @@ }, "recipe": { "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20090428.1431", "deps": [] @@ -33560,7 +33579,7 @@ }, "recipe": { "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140809.524", "deps": [ @@ -33576,7 +33595,7 @@ }, "recipe": { "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.257", "deps": [ @@ -33593,7 +33612,7 @@ }, "recipe": { "sha256": "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130315.755", "deps": [] @@ -33606,7 +33625,7 @@ }, "recipe": { "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1620", "deps": [] @@ -33620,7 +33639,7 @@ }, "recipe": { "sha256": "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150614.326", "deps": [ @@ -33642,7 +33661,7 @@ }, "recipe": { "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150929.11", "deps": [] @@ -33655,7 +33674,7 @@ }, "recipe": { "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.731", "deps": [] @@ -33669,7 +33688,7 @@ }, "recipe": { "sha256": "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.2048", "deps": [] @@ -33678,14 +33697,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/dougm/go-projectile.git", - "sha256": "9df1f0685b613de731c56b949683097f5ceee9ee1bc7f643eb6ec8cce020e55e", - "rev": "afbc4705ecab448f972a883ccc9ddf33dc0fcb11" + "sha256": "e279f6bc57a0d023a8809a3cdc44c809dc58c0587768822503c60bd38246df71", + "rev": "0a974097ef74b6045585c6120309c208b002f6e6" }, "recipe": { "sha256": "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151208.1229", + "version": "20151215.1058", "deps": [ "go-eldoc", "go-mode", @@ -33702,7 +33721,7 @@ }, "recipe": { "sha256": "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.154", "deps": [ @@ -33718,7 +33737,7 @@ }, "recipe": { "sha256": "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131017.1632", "deps": [ @@ -33734,7 +33753,7 @@ }, "recipe": { "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150609.849", "deps": [ @@ -33753,7 +33772,7 @@ }, "recipe": { "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.450", "deps": [] @@ -33767,7 +33786,7 @@ }, "recipe": { "sha256": "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140611.37", "deps": [] @@ -33781,7 +33800,7 @@ }, "recipe": { "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131231.925", "deps": [] @@ -33794,7 +33813,7 @@ }, "recipe": { "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.1240", "deps": [] @@ -33808,7 +33827,7 @@ }, "recipe": { "sha256": "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150513.2129", "deps": [] @@ -33822,7 +33841,7 @@ }, "recipe": { "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150720.1318", "deps": [ @@ -33840,7 +33859,7 @@ }, "recipe": { "sha256": "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.2028", "deps": [] @@ -33854,7 +33873,7 @@ }, "recipe": { "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150902.1235", "deps": [] @@ -33868,7 +33887,7 @@ }, "recipe": { "sha256": "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150801.1101", "deps": [ @@ -33885,7 +33904,7 @@ }, "recipe": { "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110816.1646", "deps": [] @@ -33899,7 +33918,7 @@ }, "recipe": { "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150831.831", "deps": [ @@ -33918,7 +33937,7 @@ }, "recipe": { "sha256": "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.1856", "deps": [ @@ -33936,7 +33955,7 @@ }, "recipe": { "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150710.2153", "deps": [] @@ -33950,7 +33969,7 @@ }, "recipe": { "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120918.817", "deps": [] @@ -33964,7 +33983,7 @@ }, "recipe": { "sha256": "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141006.748", "deps": [] @@ -33978,7 +33997,7 @@ }, "recipe": { "sha256": "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131026.1930", "deps": [] @@ -33992,7 +34011,7 @@ }, "recipe": { "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140818.957", "deps": [] @@ -34006,7 +34025,7 @@ }, "recipe": { "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150714.1059", "deps": [ @@ -34022,7 +34041,7 @@ }, "recipe": { "sha256": "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151106.28", "deps": [] @@ -34036,7 +34055,7 @@ }, "recipe": { "sha256": "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.1113", "deps": [] @@ -34049,7 +34068,7 @@ }, "recipe": { "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20080412.955", "deps": [] @@ -34063,7 +34082,7 @@ }, "recipe": { "sha256": "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140922.2256", "deps": [ @@ -34079,7 +34098,7 @@ }, "recipe": { "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151011.859", "deps": [] @@ -34093,7 +34112,7 @@ }, "recipe": { "sha256": "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150716.959", "deps": [ @@ -34111,7 +34130,7 @@ }, "recipe": { "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.746", "deps": [] @@ -34125,7 +34144,7 @@ }, "recipe": { "sha256": "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.2141", "deps": [ @@ -34142,7 +34161,7 @@ }, "recipe": { "sha256": "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.1607", "deps": [ @@ -34160,7 +34179,7 @@ }, "recipe": { "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.1045", "deps": [ @@ -34176,7 +34195,7 @@ }, "recipe": { "sha256": "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1545", "deps": [] @@ -34190,7 +34209,7 @@ }, "recipe": { "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150417.739", "deps": [ @@ -34205,7 +34224,7 @@ }, "recipe": { "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150602.1427", "deps": [] @@ -34219,7 +34238,7 @@ }, "recipe": { "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150830.1427", "deps": [ @@ -34235,7 +34254,7 @@ }, "recipe": { "sha256": "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131116.744", "deps": [ @@ -34252,7 +34271,7 @@ }, "recipe": { "sha256": "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151020.1301", "deps": [ @@ -34270,7 +34289,7 @@ }, "recipe": { "sha256": "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130729.2050", "deps": [] @@ -34284,7 +34303,7 @@ }, "recipe": { "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.1641", "deps": [ @@ -34303,7 +34322,7 @@ }, "recipe": { "sha256": "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1050", "deps": [] @@ -34317,7 +34336,7 @@ }, "recipe": { "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.2135", "deps": [ @@ -34333,7 +34352,7 @@ }, "recipe": { "sha256": "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140903.1006", "deps": [] @@ -34347,7 +34366,7 @@ }, "recipe": { "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -34361,7 +34380,7 @@ }, "recipe": { "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141030.726", "deps": [ @@ -34378,7 +34397,7 @@ }, "recipe": { "sha256": "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.116", "deps": [ @@ -34394,7 +34413,7 @@ }, "recipe": { "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150723.638", "deps": [ @@ -34411,7 +34430,7 @@ }, "recipe": { "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150108.35", "deps": [ @@ -34429,7 +34448,7 @@ }, "recipe": { "sha256": "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150918.644", "deps": [ @@ -34446,7 +34465,7 @@ }, "recipe": { "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150423.1558", "deps": [ @@ -34462,7 +34481,7 @@ }, "recipe": { "sha256": "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.2259", "deps": [ @@ -34480,7 +34499,7 @@ }, "recipe": { "sha256": "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.416", "deps": [] @@ -34494,7 +34513,7 @@ }, "recipe": { "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151012.729", "deps": [ @@ -34510,7 +34529,7 @@ }, "recipe": { "sha256": "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.259", "deps": [ @@ -34526,7 +34545,7 @@ }, "recipe": { "sha256": "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121118.954", "deps": [] @@ -34540,7 +34559,7 @@ }, "recipe": { "sha256": "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121123.1835", "deps": [ @@ -34556,7 +34575,7 @@ }, "recipe": { "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150713.916", "deps": [ @@ -34567,14 +34586,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/flycheck/flycheck-rust.git", - "sha256": "842eeccd86b9ea7efa4c8f80b5da244a5e6ef47828622191a7d2a907354a3c2e", - "rev": "4da768e82579d63c648a6db2a7b60659df87302b" + "sha256": "084cb755b7121327a667134adbe0728562690bb6cf7b5621dbcc86b53c24b598", + "rev": "e802d78a509bd8927464d29e1a8ba8ea355f6ea1" }, "recipe": { "sha256": "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150609.1448", + "version": "20151215.346", "deps": [ "dash", "emacs", @@ -34590,7 +34609,7 @@ }, "recipe": { "sha256": "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.730", "deps": [] @@ -34604,7 +34623,7 @@ }, "recipe": { "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1249", "deps": [ @@ -34620,7 +34639,7 @@ }, "recipe": { "sha256": "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130527.321", "deps": [] @@ -34634,7 +34653,7 @@ }, "recipe": { "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131125.2338", "deps": [ @@ -34652,7 +34671,7 @@ }, "recipe": { "sha256": "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.153", "deps": [ @@ -34668,7 +34687,7 @@ }, "recipe": { "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130312.1337", "deps": [ @@ -34684,7 +34703,7 @@ }, "recipe": { "sha256": "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140223.1158", "deps": [ @@ -34701,7 +34720,7 @@ }, "recipe": { "sha256": "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150824.2110", "deps": [ @@ -34717,7 +34736,7 @@ }, "recipe": { "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150916.2233", "deps": [ @@ -34733,7 +34752,7 @@ }, "recipe": { "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121104.1259", "deps": [ @@ -34749,7 +34768,7 @@ }, "recipe": { "sha256": "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.1441", "deps": [ @@ -34767,7 +34786,7 @@ }, "recipe": { "sha256": "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141201.1858", "deps": [ @@ -34783,7 +34802,7 @@ }, "recipe": { "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140120.1252", "deps": [ @@ -34802,7 +34821,7 @@ }, "recipe": { "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.2129", "deps": [] @@ -34816,7 +34835,7 @@ }, "recipe": { "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.1349", "deps": [ @@ -34832,7 +34851,7 @@ }, "recipe": { "sha256": "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131123.931", "deps": [ @@ -34848,7 +34867,7 @@ }, "recipe": { "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150804.1504", "deps": [ @@ -34869,7 +34888,7 @@ }, "recipe": { "sha256": "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.1306", "deps": [ @@ -34886,7 +34905,7 @@ }, "recipe": { "sha256": "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141006.2055", "deps": [ @@ -34902,7 +34921,7 @@ }, "recipe": { "sha256": "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130617.1515", "deps": [] @@ -34916,7 +34935,7 @@ }, "recipe": { "sha256": "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120312.1525", "deps": [] @@ -34930,7 +34949,7 @@ }, "recipe": { "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.1248", "deps": [] @@ -34944,7 +34963,7 @@ }, "recipe": { "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150711.1934", "deps": [] @@ -34958,7 +34977,7 @@ }, "recipe": { "sha256": "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121006.1525", "deps": [] @@ -34972,7 +34991,7 @@ }, "recipe": { "sha256": "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150705.800", "deps": [ @@ -34988,7 +35007,7 @@ }, "recipe": { "sha256": "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.549", "deps": [] @@ -35002,7 +35021,7 @@ }, "recipe": { "sha256": "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140104.1259", "deps": [ @@ -35018,7 +35037,7 @@ }, "recipe": { "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151008.924", "deps": [ @@ -35035,7 +35054,7 @@ }, "recipe": { "sha256": "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150411.616", "deps": [ @@ -35051,7 +35070,7 @@ }, "recipe": { "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.1544", "deps": [ @@ -35068,7 +35087,7 @@ }, "recipe": { "sha256": "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150525.414", "deps": [ @@ -35087,7 +35106,7 @@ }, "recipe": { "sha256": "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140723.1346", "deps": [] @@ -35101,7 +35120,7 @@ }, "recipe": { "sha256": "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140310.817", "deps": [] @@ -35115,7 +35134,7 @@ }, "recipe": { "sha256": "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.49", "deps": [ @@ -35131,7 +35150,7 @@ }, "recipe": { "sha256": "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140715.1927", "deps": [ @@ -35149,7 +35168,7 @@ }, "recipe": { "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140809.732", "deps": [ @@ -35166,7 +35185,7 @@ }, "recipe": { "sha256": "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110509.1126", "deps": [] @@ -35180,7 +35199,7 @@ }, "recipe": { "sha256": "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140814.521", "deps": [] @@ -35194,7 +35213,7 @@ }, "recipe": { "sha256": "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150615.916", "deps": [] @@ -35207,7 +35226,7 @@ }, "recipe": { "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120108.645", "deps": [] @@ -35221,7 +35240,7 @@ }, "recipe": { "sha256": "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150921.1633", "deps": [ @@ -35239,7 +35258,7 @@ }, "recipe": { "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141212.1532", "deps": [] @@ -35253,7 +35272,7 @@ }, "recipe": { "sha256": "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1440", "deps": [ @@ -35271,7 +35290,7 @@ }, "recipe": { "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130423.1745", "deps": [ @@ -35288,7 +35307,7 @@ }, "recipe": { "sha256": "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140324.648", "deps": [] @@ -35303,7 +35322,7 @@ }, "recipe": { "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151101.601", "deps": [ @@ -35323,7 +35342,7 @@ }, "recipe": { "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.901", "deps": [] @@ -35337,7 +35356,7 @@ }, "recipe": { "sha256": "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130214.1342", "deps": [] @@ -35351,7 +35370,7 @@ }, "recipe": { "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1348", "deps": [ @@ -35367,7 +35386,7 @@ }, "recipe": { "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151104.1437", "deps": [] @@ -35381,7 +35400,7 @@ }, "recipe": { "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140410.1923", "deps": [ @@ -35397,7 +35416,7 @@ }, "recipe": { "sha256": "18fsbh78c5408zg5bk44gxdynp6kn8253xdg7ap2pr3mjknq9kld", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120331.320", "deps": [] @@ -35411,7 +35430,7 @@ }, "recipe": { "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140717.2229", "deps": [ @@ -35428,7 +35447,7 @@ }, "recipe": { "sha256": "0kr8mj3i4fd2x6ymaikzmj1m4q0s4lfvnafcpi7jch0za0qixjcq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151017.1620", "deps": [ @@ -35444,7 +35463,7 @@ }, "recipe": { "sha256": "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130717.44", "deps": [ @@ -35460,7 +35479,7 @@ }, "recipe": { "sha256": "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140103.2316", "deps": [] @@ -35473,7 +35492,7 @@ }, "recipe": { "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130704.932", "deps": [] @@ -35487,7 +35506,7 @@ }, "recipe": { "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140127.1512", "deps": [ @@ -35503,7 +35522,7 @@ }, "recipe": { "sha256": "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.1441", "deps": [] @@ -35517,7 +35536,7 @@ }, "recipe": { "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.430", "deps": [ @@ -35534,7 +35553,7 @@ }, "recipe": { "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150223.754", "deps": [ @@ -35551,7 +35570,7 @@ }, "recipe": { "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.1208", "deps": [ @@ -35571,7 +35590,7 @@ }, "recipe": { "sha256": "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140115.415", "deps": [ @@ -35590,7 +35609,7 @@ }, "recipe": { "sha256": "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150923.213", "deps": [] @@ -35604,7 +35623,7 @@ }, "recipe": { "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141108.1411", "deps": [ @@ -35620,7 +35639,7 @@ }, "recipe": { "sha256": "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131119.1645", "deps": [] @@ -35634,7 +35653,7 @@ }, "recipe": { "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.1858", "deps": [ @@ -35651,7 +35670,7 @@ }, "recipe": { "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.2106", "deps": [ @@ -35667,7 +35686,7 @@ }, "recipe": { "sha256": "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20111208.1222", "deps": [] @@ -35681,7 +35700,7 @@ }, "recipe": { "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150719.720", "deps": [ @@ -35697,7 +35716,7 @@ }, "recipe": { "sha256": "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150601.1609", "deps": [] @@ -35711,7 +35730,7 @@ }, "recipe": { "sha256": "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141127.1204", "deps": [] @@ -35725,7 +35744,7 @@ }, "recipe": { "sha256": "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140117.337", "deps": [ @@ -35745,7 +35764,7 @@ }, "recipe": { "sha256": "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140311.431", "deps": [] @@ -35759,7 +35778,7 @@ }, "recipe": { "sha256": "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150518.900", "deps": [] @@ -35773,7 +35792,7 @@ }, "recipe": { "sha256": "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150908.2155", "deps": [ @@ -35790,7 +35809,7 @@ }, "recipe": { "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.625", "deps": [ @@ -35810,7 +35829,7 @@ }, "recipe": { "sha256": "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150505.1211", "deps": [ @@ -35826,7 +35845,7 @@ }, "recipe": { "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1514", "deps": [ @@ -35841,7 +35860,7 @@ }, "recipe": { "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1539", "deps": [] @@ -35855,7 +35874,7 @@ }, "recipe": { "sha256": "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141030.1534", "deps": [ @@ -35871,7 +35890,7 @@ }, "recipe": { "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.1248", "deps": [] @@ -35880,14 +35899,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/iqbalansari/emacs-emojify.git", - "sha256": "52a9f660c521aa2601c708b746bc2247d09393fa7c0dc753b65449cfe1f0c159", - "rev": "651173daddfafb6d9a84643d46c4eeb93874fe18" + "sha256": "4af68a5a18ba5940cd679b59f43f29a6089f060dda126201c422929d0f81532e", + "rev": "ad0bbe452c223c95a85262e16c7e0e7d2d18e2de" }, "recipe": { "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151207.2054", + "version": "20151214.2155", "deps": [ "emacs", "ht", @@ -35903,7 +35922,7 @@ }, "recipe": { "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.2046", "deps": [ @@ -35923,7 +35942,7 @@ }, "recipe": { "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150808.1705", "deps": [ @@ -35940,7 +35959,7 @@ }, "recipe": { "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.2111", "deps": [ @@ -35957,7 +35976,7 @@ }, "recipe": { "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1719", "deps": [ @@ -35973,7 +35992,7 @@ }, "recipe": { "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150726.1112", "deps": [] @@ -35986,7 +36005,7 @@ }, "recipe": { "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151101.1224", "deps": [ @@ -36003,7 +36022,7 @@ }, "recipe": { "sha256": "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150904.937", "deps": [ @@ -36019,7 +36038,7 @@ }, "recipe": { "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.719", "deps": [] @@ -36032,7 +36051,7 @@ }, "recipe": { "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150418.1902", "deps": [] @@ -36046,7 +36065,7 @@ }, "recipe": { "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150504.344", "deps": [ @@ -36062,7 +36081,7 @@ }, "recipe": { "sha256": "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150408.2202", "deps": [] @@ -36076,7 +36095,7 @@ }, "recipe": { "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150213.946", "deps": [ @@ -36093,7 +36112,7 @@ }, "recipe": { "sha256": "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151124.1709", "deps": [] @@ -36107,7 +36126,7 @@ }, "recipe": { "sha256": "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.1205", "deps": [] @@ -36121,7 +36140,7 @@ }, "recipe": { "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150611.45", "deps": [ @@ -36140,7 +36159,7 @@ }, "recipe": { "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150823.211", "deps": [ @@ -36157,7 +36176,7 @@ }, "recipe": { "sha256": "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.1140", "deps": [ @@ -36173,7 +36192,7 @@ }, "recipe": { "sha256": "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140716.2132", "deps": [] @@ -36187,7 +36206,7 @@ }, "recipe": { "sha256": "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150919.1459", "deps": [ @@ -36203,7 +36222,7 @@ }, "recipe": { "sha256": "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151103.421", "deps": [ @@ -36219,7 +36238,7 @@ }, "recipe": { "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140611.1100", "deps": [ @@ -36236,7 +36255,7 @@ }, "recipe": { "sha256": "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.1353", "deps": [ @@ -36252,7 +36271,7 @@ }, "recipe": { "sha256": "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130419.458", "deps": [] @@ -36266,7 +36285,7 @@ }, "recipe": { "sha256": "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141108.1357", "deps": [] @@ -36280,7 +36299,7 @@ }, "recipe": { "sha256": "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150728.1431", "deps": [ @@ -36298,7 +36317,7 @@ }, "recipe": { "sha256": "186lph964swg7rs5gvby3p1d0znq9x3xzsmirfb3cdbazvz6hhxi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141215.2347", "deps": [ @@ -36314,7 +36333,7 @@ }, "recipe": { "sha256": "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.1010", "deps": [ @@ -36331,7 +36350,7 @@ }, "recipe": { "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141109.1006", "deps": [ @@ -36347,7 +36366,7 @@ }, "recipe": { "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1604", "deps": [] @@ -36361,7 +36380,7 @@ }, "recipe": { "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151117.1120", "deps": [ @@ -36378,7 +36397,7 @@ }, "recipe": { "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150903.2140", "deps": [ @@ -36394,7 +36413,7 @@ }, "recipe": { "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1634", "deps": [ @@ -36410,7 +36429,7 @@ }, "recipe": { "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.607", "deps": [ @@ -36428,7 +36447,7 @@ }, "recipe": { "sha256": "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.101", "deps": [ @@ -36439,12 +36458,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/google/mozc.git", - "sha256": "937331c3adb3ebde9e93baf6724fb8013da649b28473a5575bb2db5ccbcef2a0", + "sha256": "997ca4c93dd5b903cdbe3f73bed97d3d3a4ec1e276bbe1d8ac990b3e62ae167f", "rev": "b499f9e8adac54f03d310ea17c3751c321084f91" }, "recipe": { "sha256": "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150815.503", "deps": [] @@ -36458,7 +36477,7 @@ }, "recipe": { "sha256": "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.2314", "deps": [ @@ -36474,7 +36493,7 @@ }, "recipe": { "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.1333", "deps": [] @@ -36488,7 +36507,7 @@ }, "recipe": { "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.651", "deps": [] @@ -36497,12 +36516,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/ppd-sr-speedbar.git", - "sha256": "7f9e18af90aec5dc5e59e5a6a26c2ddb213352569cd295bc8df8a0005397b955", + "sha256": "209984df0ae73c549afaeded5bf820a47f275068390f65ba66201d422fa3f946", "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" }, "recipe": { "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.624", "deps": [ @@ -36518,7 +36537,7 @@ }, "recipe": { "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1843", "deps": [] @@ -36532,7 +36551,7 @@ }, "recipe": { "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140221.1753", "deps": [ @@ -36549,7 +36568,7 @@ }, "recipe": { "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120728.913", "deps": [] @@ -36563,7 +36582,7 @@ }, "recipe": { "sha256": "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.931", "deps": [ @@ -36579,7 +36598,7 @@ }, "recipe": { "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140510.1206", "deps": [ @@ -36596,7 +36615,7 @@ }, "recipe": { "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.943", "deps": [ @@ -36613,7 +36632,7 @@ }, "recipe": { "sha256": "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151115.307", "deps": [ @@ -36633,7 +36652,7 @@ }, "recipe": { "sha256": "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150319.1407", "deps": [ @@ -36650,7 +36669,7 @@ }, "recipe": { "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131230.1551", "deps": [ @@ -36666,7 +36685,7 @@ }, "recipe": { "sha256": "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141017.1823", "deps": [] @@ -36680,7 +36699,7 @@ }, "recipe": { "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141101.1234", "deps": [ @@ -36698,7 +36717,7 @@ }, "recipe": { "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.853", "deps": [ @@ -36717,7 +36736,7 @@ }, "recipe": { "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.2352", "deps": [ @@ -36737,7 +36756,7 @@ }, "recipe": { "sha256": "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1514", "deps": [] @@ -36751,7 +36770,7 @@ }, "recipe": { "sha256": "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141027.1257", "deps": [] @@ -36765,7 +36784,7 @@ }, "recipe": { "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150801.1525", "deps": [] @@ -36778,7 +36797,7 @@ }, "recipe": { "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110405.1020", "deps": [] @@ -36792,7 +36811,7 @@ }, "recipe": { "sha256": "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150419.45", "deps": [ @@ -36804,12 +36823,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "acef59b5bc48c0369744d91ee949a6fb573592f999880775f92f747669652095", + "sha256": "e7a0756c60b165c328baedf6376574a79198a2086c46666ea42a02f9e307a2cd", "rev": "44b93337549fa501b404767852a25b7a8b9af02f" }, "recipe": { "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1035", "deps": [ @@ -36825,7 +36844,7 @@ }, "recipe": { "sha256": "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150316.501", "deps": [ @@ -36842,7 +36861,7 @@ }, "recipe": { "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150124.1809", "deps": [ @@ -36859,7 +36878,7 @@ }, "recipe": { "sha256": "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151007.401", "deps": [ @@ -36875,7 +36894,7 @@ }, "recipe": { "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150219.731", "deps": [ @@ -36891,7 +36910,7 @@ }, "recipe": { "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.1035", "deps": [] @@ -36904,7 +36923,7 @@ }, "recipe": { "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.707", "deps": [] @@ -36918,7 +36937,7 @@ }, "recipe": { "sha256": "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141009.524", "deps": [] @@ -36932,7 +36951,7 @@ }, "recipe": { "sha256": "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150816.2229", "deps": [] @@ -36946,7 +36965,7 @@ }, "recipe": { "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141201.323", "deps": [ @@ -36962,7 +36981,7 @@ }, "recipe": { "sha256": "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.2030", "deps": [ @@ -36979,7 +36998,7 @@ }, "recipe": { "sha256": "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141127.228", "deps": [] @@ -36993,7 +37012,7 @@ }, "recipe": { "sha256": "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151201.2238", "deps": [ @@ -37013,7 +37032,7 @@ }, "recipe": { "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150924.606", "deps": [] @@ -37022,14 +37041,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/CestDiego/sweetgreen.el.git", - "sha256": "99c88f0d206ce35ab5da19fa9108cffd49a6e5141e6b2753b67c29b8ed03794f", - "rev": "d61b7dfb2b588997efd9d11d3b248c874bceda52" + "sha256": "977fead7e3cadfc0059f24a35863c2eb9fb3ee0ca0a94ccd119dec2589a71ffc", + "rev": "a456dd7948a25da8ff007a142cf1325b4855d908" }, "recipe": { "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151116.2106", + "version": "20151207.1116", "deps": [ "cl-lib", "dash", @@ -37046,7 +37065,7 @@ }, "recipe": { "sha256": "16xn9d33nylbb4pr65i8x4rbf5ncd4vxhmcbd136k5b6hj62mg7i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150405.216", "deps": [] @@ -37060,7 +37079,7 @@ }, "recipe": { "sha256": "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150425.1203", "deps": [ @@ -37076,7 +37095,7 @@ }, "recipe": { "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140311.1708", "deps": [] @@ -37090,7 +37109,7 @@ }, "recipe": { "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150421.2301", "deps": [] @@ -37104,7 +37123,7 @@ }, "recipe": { "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151017.1617", "deps": [ @@ -37121,7 +37140,7 @@ }, "recipe": { "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20101130.648", "deps": [] @@ -37130,14 +37149,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/n3mo/cyberpunk-theme.el.git", - "sha256": "bf5346e0b1c427e35fc35e72f1461d7d882fb4f19f16fd2ffa7c7890bb503ab9", - "rev": "8eada5a95d18ad3a5d77d18de9a304877f952948" + "sha256": "e4433626668568daa8f52040923c910a9518f33d3529df869322ca81161ea9ff", + "rev": "5fee81bccb07d40ff1d41aa2342ca29639b057b0" }, "recipe": { "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151115.2235", + "version": "20151215.1153", "deps": [] }, "ido-migemo": { @@ -37149,7 +37168,7 @@ }, "recipe": { "sha256": "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150921.1744", "deps": [ @@ -37165,7 +37184,7 @@ }, "recipe": { "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150817.507", "deps": [ @@ -37181,7 +37200,7 @@ }, "recipe": { "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.2135", "deps": [ @@ -37197,7 +37216,7 @@ }, "recipe": { "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.816", "deps": [ @@ -37213,7 +37232,7 @@ }, "recipe": { "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1935", "deps": [ @@ -37229,7 +37248,7 @@ }, "recipe": { "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.121", "deps": [ @@ -37245,7 +37264,7 @@ }, "recipe": { "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141231.1537", "deps": [] @@ -37259,7 +37278,7 @@ }, "recipe": { "sha256": "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150113.242", "deps": [ @@ -37275,7 +37294,7 @@ }, "recipe": { "sha256": "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140225.344", "deps": [ @@ -37291,7 +37310,7 @@ }, "recipe": { "sha256": "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.1", "deps": [ @@ -37308,7 +37327,7 @@ }, "recipe": { "sha256": "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131007.2153", "deps": [] @@ -37322,7 +37341,7 @@ }, "recipe": { "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.2121", "deps": [ @@ -37338,7 +37357,7 @@ }, "recipe": { "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150620.1944", "deps": [] @@ -37352,7 +37371,7 @@ }, "recipe": { "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130309.345", "deps": [ @@ -37368,7 +37387,7 @@ }, "recipe": { "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150727.231", "deps": [ @@ -37387,7 +37406,7 @@ }, "recipe": { "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150524.1205", "deps": [ @@ -37403,7 +37422,7 @@ }, "recipe": { "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151003.2033", "deps": [] @@ -37417,7 +37436,7 @@ }, "recipe": { "sha256": "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130508.1344", "deps": [] @@ -37431,7 +37450,7 @@ }, "recipe": { "sha256": "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150923.341", "deps": [] @@ -37445,7 +37464,7 @@ }, "recipe": { "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150728.2254", "deps": [ @@ -37462,7 +37481,7 @@ }, "recipe": { "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151004.915", "deps": [ @@ -37480,7 +37499,7 @@ }, "recipe": { "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140707.626", "deps": [] @@ -37494,7 +37513,7 @@ }, "recipe": { "sha256": "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130217.443", "deps": [] @@ -37508,7 +37527,7 @@ }, "recipe": { "sha256": "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.916", "deps": [ @@ -37524,7 +37543,7 @@ }, "recipe": { "sha256": "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120715.409", "deps": [] @@ -37538,7 +37557,7 @@ }, "recipe": { "sha256": "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120505.908", "deps": [] @@ -37552,7 +37571,7 @@ }, "recipe": { "sha256": "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150121.2324", "deps": [ @@ -37569,7 +37588,7 @@ }, "recipe": { "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.714", "deps": [ @@ -37587,7 +37606,7 @@ }, "recipe": { "sha256": "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130809.447", "deps": [] @@ -37601,7 +37620,7 @@ }, "recipe": { "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151028.28", "deps": [] @@ -37615,7 +37634,7 @@ }, "recipe": { "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150530.351", "deps": [ @@ -37634,7 +37653,7 @@ }, "recipe": { "sha256": "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150116.706", "deps": [ @@ -37651,7 +37670,7 @@ }, "recipe": { "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.1955", "deps": [ @@ -37667,7 +37686,7 @@ }, "recipe": { "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1609", "deps": [ @@ -37683,7 +37702,7 @@ }, "recipe": { "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150101.604", "deps": [ @@ -37699,7 +37718,7 @@ }, "recipe": { "sha256": "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130328.715", "deps": [] @@ -37713,7 +37732,7 @@ }, "recipe": { "sha256": "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141012.511", "deps": [ @@ -37729,7 +37748,7 @@ }, "recipe": { "sha256": "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.407", "deps": [ @@ -37746,7 +37765,7 @@ }, "recipe": { "sha256": "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140311.541", "deps": [ @@ -37764,7 +37783,7 @@ }, "recipe": { "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.936", "deps": [ @@ -37785,7 +37804,7 @@ }, "recipe": { "sha256": "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.754", "deps": [ @@ -37801,7 +37820,7 @@ }, "recipe": { "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1331", "deps": [] @@ -37815,7 +37834,7 @@ }, "recipe": { "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.851", "deps": [ @@ -37833,7 +37852,7 @@ }, "recipe": { "sha256": "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.704", "deps": [] @@ -37847,7 +37866,7 @@ }, "recipe": { "sha256": "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151009.1045", "deps": [] @@ -37861,7 +37880,7 @@ }, "recipe": { "sha256": "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.917", "deps": [] @@ -37875,7 +37894,7 @@ }, "recipe": { "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151008.1022", "deps": [] @@ -37889,7 +37908,7 @@ }, "recipe": { "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.1112", "deps": [] @@ -37903,7 +37922,7 @@ }, "recipe": { "sha256": "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150619.1620", "deps": [ @@ -37920,7 +37939,7 @@ }, "recipe": { "sha256": "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151110.1310", "deps": [ @@ -37939,7 +37958,7 @@ }, "recipe": { "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151207.241", "deps": [ @@ -37955,7 +37974,7 @@ }, "recipe": { "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.1201", "deps": [ @@ -37972,7 +37991,7 @@ }, "recipe": { "sha256": "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120120.516", "deps": [] @@ -37986,7 +38005,7 @@ }, "recipe": { "sha256": "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131112.1052", "deps": [] @@ -38000,7 +38019,7 @@ }, "recipe": { "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.530", "deps": [ @@ -38018,7 +38037,7 @@ }, "recipe": { "sha256": "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.1547", "deps": [ @@ -38034,7 +38053,7 @@ }, "recipe": { "sha256": "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150623.2250", "deps": [] @@ -38048,7 +38067,7 @@ }, "recipe": { "sha256": "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150713.2131", "deps": [ @@ -38065,7 +38084,7 @@ }, "recipe": { "sha256": "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140117.413", "deps": [] @@ -38079,7 +38098,7 @@ }, "recipe": { "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140524.358", "deps": [ @@ -38095,7 +38114,7 @@ }, "recipe": { "sha256": "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150716.1246", "deps": [] @@ -38109,7 +38128,7 @@ }, "recipe": { "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150623.1234", "deps": [] @@ -38123,7 +38142,7 @@ }, "recipe": { "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140508.1541", "deps": [] @@ -38136,7 +38155,7 @@ }, "recipe": { "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140417.2134", "deps": [] @@ -38150,7 +38169,7 @@ }, "recipe": { "sha256": "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.257", "deps": [ @@ -38166,7 +38185,7 @@ }, "recipe": { "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.2130", "deps": [] @@ -38180,7 +38199,7 @@ }, "recipe": { "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141109.452", "deps": [ @@ -38199,7 +38218,7 @@ }, "recipe": { "sha256": "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140710.426", "deps": [] @@ -38213,7 +38232,7 @@ }, "recipe": { "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150107.1600", "deps": [] @@ -38227,7 +38246,7 @@ }, "recipe": { "sha256": "1nym2wlr50wk62cbagq1qyjczzf56nb6i9dfzcwikdck8p4p2dr7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140113.1624", "deps": [] @@ -38241,7 +38260,7 @@ }, "recipe": { "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150927.506", "deps": [] @@ -38255,7 +38274,7 @@ }, "recipe": { "sha256": "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151005.1437", "deps": [ @@ -38271,7 +38290,7 @@ }, "recipe": { "sha256": "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140212.502", "deps": [] @@ -38285,7 +38304,7 @@ }, "recipe": { "sha256": "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140115.956", "deps": [ @@ -38300,7 +38319,7 @@ }, "recipe": { "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -38314,7 +38333,7 @@ }, "recipe": { "sha256": "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150820.339", "deps": [ @@ -38330,7 +38349,7 @@ }, "recipe": { "sha256": "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.514", "deps": [] @@ -38343,7 +38362,7 @@ }, "recipe": { "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150823.1911", "deps": [] @@ -38357,7 +38376,7 @@ }, "recipe": { "sha256": "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.1539", "deps": [] @@ -38370,7 +38389,7 @@ }, "recipe": { "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150801.1120", "deps": [] @@ -38384,7 +38403,7 @@ }, "recipe": { "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.102", "deps": [ @@ -38400,7 +38419,7 @@ }, "recipe": { "sha256": "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151204.2249", "deps": [ @@ -38418,7 +38437,7 @@ }, "recipe": { "sha256": "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.30", "deps": [ @@ -38434,7 +38453,7 @@ }, "recipe": { "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.1033", "deps": [ @@ -38451,7 +38470,7 @@ }, "recipe": { "sha256": "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.846", "deps": [ @@ -38468,7 +38487,7 @@ }, "recipe": { "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.1342", "deps": [ @@ -38484,7 +38503,7 @@ }, "recipe": { "sha256": "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140204.1354", "deps": [] @@ -38498,7 +38517,7 @@ }, "recipe": { "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150709.1423", "deps": [ @@ -38514,7 +38533,7 @@ }, "recipe": { "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150717.848", "deps": [ @@ -38535,7 +38554,7 @@ }, "recipe": { "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151011.815", "deps": [] @@ -38549,7 +38568,7 @@ }, "recipe": { "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.313", "deps": [] @@ -38563,7 +38582,7 @@ }, "recipe": { "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.2211", "deps": [ @@ -38579,7 +38598,7 @@ }, "recipe": { "sha256": "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.2346", "deps": [ @@ -38596,7 +38615,7 @@ }, "recipe": { "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150625.1723", "deps": [ @@ -38613,7 +38632,7 @@ }, "recipe": { "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.623", "deps": [ @@ -38629,7 +38648,7 @@ }, "recipe": { "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150330.1542", "deps": [ @@ -38645,7 +38664,7 @@ }, "recipe": { "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20080905.54", "deps": [] @@ -38659,7 +38678,7 @@ }, "recipe": { "sha256": "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130418.1439", "deps": [ @@ -38675,7 +38694,7 @@ }, "recipe": { "sha256": "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150521.1556", "deps": [] @@ -38689,7 +38708,7 @@ }, "recipe": { "sha256": "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130811.351", "deps": [] @@ -38703,7 +38722,7 @@ }, "recipe": { "sha256": "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140715.1101", "deps": [] @@ -38717,7 +38736,7 @@ }, "recipe": { "sha256": "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150917.608", "deps": [ @@ -38734,7 +38753,7 @@ }, "recipe": { "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.42", "deps": [ @@ -38751,7 +38770,7 @@ }, "recipe": { "sha256": "0jayhjvs5pkacw8r7z7fy0i732a1zpkcmirkzjpx3wqk0bs5fga6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140722.15", "deps": [] @@ -38765,7 +38784,7 @@ }, "recipe": { "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140610.34", "deps": [ @@ -38782,7 +38801,7 @@ }, "recipe": { "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151129.504", "deps": [] @@ -38796,7 +38815,7 @@ }, "recipe": { "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141031.133", "deps": [] @@ -38809,7 +38828,7 @@ }, "recipe": { "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1605", "deps": [] @@ -38823,7 +38842,7 @@ }, "recipe": { "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120510.1900", "deps": [] @@ -38837,7 +38856,7 @@ }, "recipe": { "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.912", "deps": [ @@ -38854,7 +38873,7 @@ }, "recipe": { "sha256": "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150315.742", "deps": [ @@ -38870,7 +38889,7 @@ }, "recipe": { "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150727.1725", "deps": [] @@ -38884,7 +38903,7 @@ }, "recipe": { "sha256": "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120928.2054", "deps": [] @@ -38893,14 +38912,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/dominikh/go-mode.el.git", - "sha256": "191a3a4680d71de1d687d43d4a0b0311d4cb47163c6eae50f6f0c14242fd6cfc", - "rev": "5d53a13bd193653728e74102c81aa931b780c9a9" + "sha256": "b2443f2f9a7a928c6adb19464c7f350cc7237447df20b82bb3404206f98651d0", + "rev": "15d227ae1cf8d55ae4395108bccc8ad6ca7d1eba" }, "recipe": { "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150818.118", + "version": "20151214.1129", "deps": [] }, "xtest": { @@ -38912,7 +38931,7 @@ }, "recipe": { "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141214.1106", "deps": [ @@ -38928,7 +38947,7 @@ }, "recipe": { "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150514.1620", "deps": [] @@ -38941,7 +38960,7 @@ }, "recipe": { "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140901.1335", "deps": [] @@ -38955,7 +38974,7 @@ }, "recipe": { "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130828.919", "deps": [] @@ -38964,14 +38983,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/codingteam/pacmacs.el.git", - "sha256": "4fc1f6ac82ff628dcf909f937095167433d9e927d9fc1db4d4e16ddd8c80b877", - "rev": "4ce9773129536b635474ac7466d4b7b9e0eb4458" + "sha256": "0da75b7f472f8fd23eac727a0cbc643e5a3fe41915fb6573e2760e7abef60f91", + "rev": "c7a3a4cbacc7c6961fcfd7b35e3ff4c07d14a126" }, "recipe": { "sha256": "13pgxwwigb0h709xrs2h1l957n4vcjz59qkrs8aa12czcg291599", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151212.410", + "version": "20151214.1315", "deps": [ "cl-lib", "dash", @@ -38989,7 +39008,7 @@ }, "recipe": { "sha256": "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.1741", "deps": [] @@ -39003,7 +39022,7 @@ }, "recipe": { "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150912.308", "deps": [ @@ -39020,7 +39039,7 @@ }, "recipe": { "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131113.2018", "deps": [] @@ -39034,7 +39053,7 @@ }, "recipe": { "sha256": "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140619.326", "deps": [] @@ -39043,14 +39062,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/magit/magit.git", - "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", - "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151214.705", + "version": "20151215.1708", "deps": [ "async", "dash", @@ -39064,14 +39083,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/capitaomorte/sly.git", - "sha256": "e98699c11f8e22ed885fe2348a49bec0b87cc8c9849537947138eb2d1913775c", - "rev": "8533961ecd828e162dc26b065922264a3b7ba210" + "sha256": "fd46ff9f20f2389532c2054134d2a37572ee995479632e78d5c281d905626356", + "rev": "341fde694b11b72678fd991beaaf4ebd2bface69" }, "recipe": { "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151213.1717", + "version": "20151215.854", "deps": [ "emacs" ] @@ -39085,7 +39104,7 @@ }, "recipe": { "sha256": "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100517.120", "deps": [] @@ -39099,7 +39118,7 @@ }, "recipe": { "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151120.1744", "deps": [ @@ -39116,7 +39135,7 @@ }, "recipe": { "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141227.448", "deps": [] @@ -39130,7 +39149,7 @@ }, "recipe": { "sha256": "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150116.554", "deps": [ @@ -39147,7 +39166,7 @@ }, "recipe": { "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150727.424", "deps": [ @@ -39164,7 +39183,7 @@ }, "recipe": { "sha256": "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140911.1608", "deps": [] @@ -39178,7 +39197,7 @@ }, "recipe": { "sha256": "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140421.1611", "deps": [ @@ -39194,7 +39213,7 @@ }, "recipe": { "sha256": "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141124.413", "deps": [ @@ -39210,7 +39229,7 @@ }, "recipe": { "sha256": "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140319.1700", "deps": [ @@ -39226,7 +39245,7 @@ }, "recipe": { "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.957", "deps": [ @@ -39243,7 +39262,7 @@ }, "recipe": { "sha256": "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20100703.658", "deps": [] @@ -39257,7 +39276,7 @@ }, "recipe": { "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140308.525", "deps": [ @@ -39273,7 +39292,7 @@ }, "recipe": { "sha256": "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120718.2238", "deps": [] @@ -39287,7 +39306,7 @@ }, "recipe": { "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130719.456", "deps": [] @@ -39301,7 +39320,7 @@ }, "recipe": { "sha256": "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.1007", "deps": [ @@ -39318,7 +39337,7 @@ }, "recipe": { "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151208.1028", "deps": [ @@ -39336,7 +39355,7 @@ }, "recipe": { "sha256": "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.500", "deps": [] @@ -39350,7 +39369,7 @@ }, "recipe": { "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.238", "deps": [ @@ -39366,7 +39385,7 @@ }, "recipe": { "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.639", "deps": [ @@ -39385,7 +39404,7 @@ }, "recipe": { "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151128.1302", "deps": [ @@ -39402,7 +39421,7 @@ }, "recipe": { "sha256": "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151122.347", "deps": [ @@ -39419,7 +39438,7 @@ }, "recipe": { "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141215.623", "deps": [] @@ -39433,7 +39452,7 @@ }, "recipe": { "sha256": "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130819.427", "deps": [] @@ -39447,7 +39466,7 @@ }, "recipe": { "sha256": "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141205.2308", "deps": [ @@ -39463,7 +39482,7 @@ }, "recipe": { "sha256": "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1435", "deps": [ @@ -39480,7 +39499,7 @@ }, "recipe": { "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151113.323", "deps": [ @@ -39497,7 +39516,7 @@ }, "recipe": { "sha256": "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150715.1532", "deps": [ @@ -39516,7 +39535,7 @@ }, "recipe": { "sha256": "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150819.1148", "deps": [ @@ -39533,7 +39552,7 @@ }, "recipe": { "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151012.508", "deps": [ @@ -39551,7 +39570,7 @@ }, "recipe": { "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110206.1430", "deps": [] @@ -39565,7 +39584,7 @@ }, "recipe": { "sha256": "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120629.1313", "deps": [] @@ -39579,7 +39598,7 @@ }, "recipe": { "sha256": "197r0sfbmwygvzsiv0bjjfsngwp79qi365z762y8gbf8f3hjp45i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121202.1103", "deps": [] @@ -39593,7 +39612,7 @@ }, "recipe": { "sha256": "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141222.1016", "deps": [] @@ -39606,7 +39625,7 @@ }, "recipe": { "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.707", "deps": [] @@ -39620,7 +39639,7 @@ }, "recipe": { "sha256": "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151010.307", "deps": [ @@ -39635,7 +39654,7 @@ }, "recipe": { "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130607.514", "deps": [ @@ -39651,7 +39670,7 @@ }, "recipe": { "sha256": "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.1139", "deps": [] @@ -39665,7 +39684,7 @@ }, "recipe": { "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140303.657", "deps": [ @@ -39682,7 +39701,7 @@ }, "recipe": { "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151114.1306", "deps": [ @@ -39694,12 +39713,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/skeeto/elfeed.git", - "sha256": "8775dadb0d863ec79f52cfe211d75fa4eeba91742b5eb8bb56c30cf1d9fddb76", - "rev": "19879a4dfb3b6932bb411284d686f212d60f6244" + "sha256": "17534484c8de20792785b622ce008d1ee2f4b75e31885db83d2ea3c1a7529dc3", + "rev": "8a38a4c81496d40d3b7c45a6df5e41258a52843c" }, "recipe": { "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.1724", "deps": [ @@ -39712,14 +39731,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/raghavgautam/osx-lib.git", - "sha256": "4132b0a5640c965208278bc3802acef95f126a1c4f1f857949620c444f175da6", - "rev": "22ce16c48f81a9fa791d797ceb8c025855a5b7b9" + "sha256": "c6732025bdcdd8793bfab73a84a1898314750aef4620f564655e39f3f38d52e3", + "rev": "ca4b85dbebff97c3a0630d7f1140b1418cec2671" }, "recipe": { "sha256": "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151212.2350", + "version": "20151214.1857", "deps": [ "emacs" ] @@ -39733,7 +39752,7 @@ }, "recipe": { "sha256": "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140510.1731", "deps": [ @@ -39749,7 +39768,7 @@ }, "recipe": { "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150425.1507", "deps": [ @@ -39766,7 +39785,7 @@ }, "recipe": { "sha256": "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130804.610", "deps": [] @@ -39775,12 +39794,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/k1LoW/emacs-ansible.git", - "sha256": "735db7feefa7e6b1c20679227be0cc2f23610dd4153c94799da7cb019fcb07a9", + "sha256": "1c29ec9e88727a7dd25e691b7d7a3d9b7af907c753e56ee58593a12e51fadb2c", "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" }, "recipe": { "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.1953", "deps": [ @@ -39797,7 +39816,7 @@ }, "recipe": { "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150621.2341", "deps": [] @@ -39811,7 +39830,7 @@ }, "recipe": { "sha256": "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141124.1119", "deps": [] @@ -39825,7 +39844,7 @@ }, "recipe": { "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.1845", "deps": [ @@ -39842,7 +39861,7 @@ }, "recipe": { "sha256": "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150604.226", "deps": [] @@ -39856,7 +39875,7 @@ }, "recipe": { "sha256": "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20110508.231", "deps": [] @@ -39870,7 +39889,7 @@ }, "recipe": { "sha256": "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.430", "deps": [] @@ -39884,7 +39903,7 @@ }, "recipe": { "sha256": "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150630.338", "deps": [] @@ -39893,12 +39912,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/magit/magit.git", - "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", - "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.618", "deps": [ @@ -39916,7 +39935,7 @@ }, "recipe": { "sha256": "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150106.851", "deps": [ @@ -39933,7 +39952,7 @@ }, "recipe": { "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.2200", "deps": [ @@ -39950,7 +39969,7 @@ }, "recipe": { "sha256": "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140224.959", "deps": [ @@ -39968,7 +39987,7 @@ }, "recipe": { "sha256": "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150421.703", "deps": [ @@ -39984,7 +40003,7 @@ }, "recipe": { "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.2321", "deps": [ @@ -40001,7 +40020,7 @@ }, "recipe": { "sha256": "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150920.758", "deps": [] @@ -40015,7 +40034,7 @@ }, "recipe": { "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140616.315", "deps": [] @@ -40029,7 +40048,7 @@ }, "recipe": { "sha256": "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131004.1830", "deps": [] @@ -40043,7 +40062,7 @@ }, "recipe": { "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130718.929", "deps": [ @@ -40060,7 +40079,7 @@ }, "recipe": { "sha256": "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141107.1006", "deps": [ @@ -40076,7 +40095,7 @@ }, "recipe": { "sha256": "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151027.1717", "deps": [] @@ -40090,7 +40109,7 @@ }, "recipe": { "sha256": "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140908.1552", "deps": [ @@ -40107,7 +40126,7 @@ }, "recipe": { "sha256": "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151102.1155", "deps": [ @@ -40123,7 +40142,7 @@ }, "recipe": { "sha256": "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140812.1913", "deps": [] @@ -40137,7 +40156,7 @@ }, "recipe": { "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150227.1156", "deps": [] @@ -40151,7 +40170,7 @@ }, "recipe": { "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.133", "deps": [] @@ -40164,7 +40183,7 @@ }, "recipe": { "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150805.1752", "deps": [] @@ -40178,7 +40197,7 @@ }, "recipe": { "sha256": "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141219.518", "deps": [ @@ -40195,7 +40214,7 @@ }, "recipe": { "sha256": "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151028.2236", "deps": [] @@ -40209,7 +40228,7 @@ }, "recipe": { "sha256": "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130623.1833", "deps": [] @@ -40222,7 +40241,7 @@ }, "recipe": { "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141029.1049", "deps": [] @@ -40236,7 +40255,7 @@ }, "recipe": { "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150331.2339", "deps": [ @@ -40255,7 +40274,7 @@ }, "recipe": { "sha256": "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151213.150", "deps": [ @@ -40271,7 +40290,7 @@ }, "recipe": { "sha256": "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151016.1045", "deps": [] @@ -40285,7 +40304,7 @@ }, "recipe": { "sha256": "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1353", "deps": [] @@ -40299,7 +40318,7 @@ }, "recipe": { "sha256": "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141014.1857", "deps": [] @@ -40313,7 +40332,7 @@ }, "recipe": { "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141222.852", "deps": [] @@ -40327,7 +40346,7 @@ }, "recipe": { "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141119.627", "deps": [] @@ -40341,7 +40360,7 @@ }, "recipe": { "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140316.1837", "deps": [ @@ -40357,7 +40376,7 @@ }, "recipe": { "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150420.621", "deps": [] @@ -40371,7 +40390,7 @@ }, "recipe": { "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150415.1426", "deps": [] @@ -40385,7 +40404,7 @@ }, "recipe": { "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.35", "deps": [] @@ -40399,7 +40418,7 @@ }, "recipe": { "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150629.1312", "deps": [ @@ -40415,7 +40434,7 @@ }, "recipe": { "sha256": "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150131.1557", "deps": [] @@ -40429,7 +40448,7 @@ }, "recipe": { "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140225.1144", "deps": [] @@ -40443,7 +40462,7 @@ }, "recipe": { "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130407.848", "deps": [] @@ -40457,7 +40476,7 @@ }, "recipe": { "sha256": "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140317.2318", "deps": [ @@ -40473,7 +40492,7 @@ }, "recipe": { "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150914.747", "deps": [] @@ -40487,7 +40506,7 @@ }, "recipe": { "sha256": "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151020.1340", "deps": [ @@ -40498,14 +40517,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tbanel/orgtblasciiplot.git", - "sha256": "2bc851eb3edefe5deb3343db90bb48ff02a22c066d6a6a49346104a49ab08ba0", - "rev": "36576ab5eccb844af62a8774e1fc9b4894b63b84" + "sha256": "d9812e1fab02a35ae1a49ee2144a49bee0c0e32a8954a91bc1a4bbe5c1c9b241", + "rev": "cd91f6ae26a7402e192a1f4fd6248f5797edf19e" }, "recipe": { "sha256": "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20150125.1629", + "version": "20151215.1551", "deps": [] }, "kill-ring-search": { @@ -40517,7 +40536,7 @@ }, "recipe": { "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140422.1055", "deps": [] @@ -40531,7 +40550,7 @@ }, "recipe": { "sha256": "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141027.941", "deps": [ @@ -40547,7 +40566,7 @@ }, "recipe": { "sha256": "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.946", "deps": [ @@ -40565,7 +40584,7 @@ }, "recipe": { "sha256": "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.745", "deps": [] @@ -40579,7 +40598,7 @@ }, "recipe": { "sha256": "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150129.446", "deps": [] @@ -40593,7 +40612,7 @@ }, "recipe": { "sha256": "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150603.804", "deps": [ @@ -40611,7 +40630,7 @@ }, "recipe": { "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150702.1137", "deps": [ @@ -40630,7 +40649,7 @@ }, "recipe": { "sha256": "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151121.744", "deps": [] @@ -40644,7 +40663,7 @@ }, "recipe": { "sha256": "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.1723", "deps": [ @@ -40660,7 +40679,7 @@ }, "recipe": { "sha256": "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.940", "deps": [] @@ -40674,7 +40693,7 @@ }, "recipe": { "sha256": "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.300", "deps": [] @@ -40688,7 +40707,7 @@ }, "recipe": { "sha256": "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150115.1301", "deps": [ @@ -40706,7 +40725,7 @@ }, "recipe": { "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140331.1829", "deps": [] @@ -40720,7 +40739,7 @@ }, "recipe": { "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.318", "deps": [ @@ -40742,7 +40761,7 @@ }, "recipe": { "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.730", "deps": [] @@ -40756,7 +40775,7 @@ }, "recipe": { "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150803.1037", "deps": [ @@ -40772,7 +40791,7 @@ }, "recipe": { "sha256": "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150822.650", "deps": [ @@ -40790,7 +40809,7 @@ }, "recipe": { "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150910.727", "deps": [ @@ -40808,7 +40827,7 @@ }, "recipe": { "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151206.2305", "deps": [] @@ -40822,7 +40841,7 @@ }, "recipe": { "sha256": "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140101.1754", "deps": [] @@ -40836,7 +40855,7 @@ }, "recipe": { "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141124.1332", "deps": [ @@ -40852,7 +40871,7 @@ }, "recipe": { "sha256": "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131202.1308", "deps": [ @@ -40868,7 +40887,7 @@ }, "recipe": { "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.20", "deps": [ @@ -40885,7 +40904,7 @@ }, "recipe": { "sha256": "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150429.1314", "deps": [ @@ -40901,7 +40920,7 @@ }, "recipe": { "sha256": "1y8xz04spn7a4fjnfv82hamk1mrc3a1iilf5nrl40nlg2xgp1h63", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150123.1800", "deps": [] @@ -40915,7 +40934,7 @@ }, "recipe": { "sha256": "1l3h0qhv0ad9l933d47as8y3h9x94zw315ax4qsgiw3046nzkdwv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150729.1715", "deps": [ @@ -40932,7 +40951,7 @@ }, "recipe": { "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.400", "deps": [] @@ -40946,7 +40965,7 @@ }, "recipe": { "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141009.808", "deps": [ @@ -40959,13 +40978,13 @@ "fetch": { "tag": "fetchurl", "url": "http://www.emacswiki.org/emacs/download/files+.el", - "sha256": "04bz0fb7g5516hwwzl01mp6s2mv9vigibv3965amajyvm8qm269f" + "sha256": "0yl98k1yxmqidyc08dn20dmqkb450xnanqr0iqs01z3q6agpqc0v" }, "recipe": { "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151210.2104", + "version": "20151215.858", "deps": [] }, "tracwiki-mode": { @@ -40977,7 +40996,7 @@ }, "recipe": { "sha256": "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150119.1021", "deps": [ @@ -40993,7 +41012,7 @@ }, "recipe": { "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.732", "deps": [ @@ -41005,14 +41024,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/bkruczyk/badwolf-emacs.git", - "sha256": "d4dd31f75fa18e39763fd8bd0c3682a6f6146cf69e9eeb95054e984db16f9381", - "rev": "0164a0fb69fa9f82589eb45acbd402a43300c88d" + "sha256": "b230a774f1aa5f7eeeeb6b73fbc742f6eb59b3b3f4dcb3273eb768f8493c90de", + "rev": "24a557f92a702f632901a5b7bee59945a0a8cde9" }, "recipe": { "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151210.1429", + "version": "20151215.1125", "deps": [ "emacs" ] @@ -41026,7 +41045,7 @@ }, "recipe": { "sha256": "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131207.1132", "deps": [ @@ -41042,7 +41061,7 @@ }, "recipe": { "sha256": "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.814", "deps": [ @@ -41058,7 +41077,7 @@ }, "recipe": { "sha256": "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150911.2110", "deps": [] @@ -41072,7 +41091,7 @@ }, "recipe": { "sha256": "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140407.1714", "deps": [] @@ -41086,7 +41105,7 @@ }, "recipe": { "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151003.515", "deps": [ @@ -41103,7 +41122,7 @@ }, "recipe": { "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151210.1216", "deps": [ @@ -41119,7 +41138,7 @@ }, "recipe": { "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150226.811", "deps": [] @@ -41133,7 +41152,7 @@ }, "recipe": { "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141123.1520", "deps": [] @@ -41142,12 +41161,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/camsaul/emacs-unicode-troll-stopper.git", - "sha256": "51197d3b0f4eb46b73bd41678a0fac1ed8a2b0e8eeba8a2559fe400aaa6cbcf6", - "rev": "14e3430c1fe6c351eda23f874bc4a2b0ee5c5de9" + "sha256": "578fd61aadec15df8d62a2d413e8cd7277a379f2dde56d76145ee0fcc59554b7", + "rev": "15e4b57b78bf643bb56e5000078030cbb5c66e2a" }, "recipe": { "sha256": "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151023.2031", "deps": [] @@ -41161,7 +41180,7 @@ }, "recipe": { "sha256": "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150301.1828", "deps": [ @@ -41177,7 +41196,7 @@ }, "recipe": { "sha256": "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150604.1257", "deps": [ @@ -41194,7 +41213,7 @@ }, "recipe": { "sha256": "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141226.1336", "deps": [ @@ -41210,7 +41229,7 @@ }, "recipe": { "sha256": "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140409.252", "deps": [ @@ -41226,7 +41245,7 @@ }, "recipe": { "sha256": "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150530.1137", "deps": [] @@ -41240,7 +41259,7 @@ }, "recipe": { "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140729.1345", "deps": [ @@ -41256,7 +41275,7 @@ }, "recipe": { "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130906.634", "deps": [] @@ -41266,11 +41285,11 @@ "tag": "fetchsvn", "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format", "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr", - "rev": "255503" + "rev": "255720" }, "recipe": { "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.638", "deps": [ @@ -41286,7 +41305,7 @@ }, "recipe": { "sha256": "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150130.425", "deps": [] @@ -41300,7 +41319,7 @@ }, "recipe": { "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150425.751", "deps": [ @@ -41316,7 +41335,7 @@ }, "recipe": { "sha256": "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150923.340", "deps": [ @@ -41334,7 +41353,7 @@ }, "recipe": { "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140916.954", "deps": [] @@ -41348,7 +41367,7 @@ }, "recipe": { "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150810.439", "deps": [ @@ -41367,7 +41386,7 @@ }, "recipe": { "sha256": "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140906.1225", "deps": [] @@ -41381,7 +41400,7 @@ }, "recipe": { "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151031.29", "deps": [ @@ -41398,7 +41417,7 @@ }, "recipe": { "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140109.1010", "deps": [] @@ -41412,7 +41431,7 @@ }, "recipe": { "sha256": "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150918.1541", "deps": [] @@ -41426,7 +41445,7 @@ }, "recipe": { "sha256": "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091203.1213", "deps": [] @@ -41435,12 +41454,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/NixOS/nix.git", - "sha256": "6ad776f3dfe3589aec1ac465facb9cc4e293f77ab9d029b57b052dad85882b4d", - "rev": "32ea8a98986b3f6629628ab2c0f395fef38bcbaa" + "sha256": "abe1ecca47d35a017bad8eeb08519166ba8587ce1b1904bd7d4b8c4c604fdce2", + "rev": "338880ee6fc2d8f55dcbe0f0b7313cd69dc866d0" }, "recipe": { "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151026.515", "deps": [] @@ -41454,7 +41473,7 @@ }, "recipe": { "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140514.23", "deps": [ @@ -41471,7 +41490,7 @@ }, "recipe": { "sha256": "18p18bly15a8xjc34k11jbvxlmr127sll0vh5ma2p787x6a3mc7c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130711.2011", "deps": [ @@ -41487,7 +41506,7 @@ }, "recipe": { "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140331.1330", "deps": [ @@ -41503,7 +41522,7 @@ }, "recipe": { "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141202.2256", "deps": [] @@ -41517,7 +41536,7 @@ }, "recipe": { "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141114.1514", "deps": [] @@ -41531,7 +41550,7 @@ }, "recipe": { "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.2236", "deps": [] @@ -41545,7 +41564,7 @@ }, "recipe": { "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150202.1200", "deps": [ @@ -41562,7 +41581,7 @@ }, "recipe": { "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150319.1655", "deps": [] @@ -41576,7 +41595,7 @@ }, "recipe": { "sha256": "15z5lgh5x1ykz5p31i994fig8v05s7ckkgw6p9jifn11sn1a39nb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151013.148", "deps": [ @@ -41592,7 +41611,7 @@ }, "recipe": { "sha256": "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20091211.1755", "deps": [] @@ -41605,7 +41624,7 @@ }, "recipe": { "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1600", "deps": [] @@ -41619,7 +41638,7 @@ }, "recipe": { "sha256": "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141014.2129", "deps": [ @@ -41635,7 +41654,7 @@ }, "recipe": { "sha256": "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150908.1233", "deps": [ @@ -41652,7 +41671,7 @@ }, "recipe": { "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150402.942", "deps": [] @@ -41666,7 +41685,7 @@ }, "recipe": { "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150414.436", "deps": [] @@ -41680,7 +41699,7 @@ }, "recipe": { "sha256": "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150531.1448", "deps": [ @@ -41697,7 +41716,7 @@ }, "recipe": { "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151018.120", "deps": [ @@ -41713,7 +41732,7 @@ }, "recipe": { "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.1649", "deps": [ @@ -41728,7 +41747,7 @@ }, "recipe": { "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150816.2153", "deps": [] @@ -41742,7 +41761,7 @@ }, "recipe": { "sha256": "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.957", "deps": [] @@ -41756,7 +41775,7 @@ }, "recipe": { "sha256": "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140907.1549", "deps": [] @@ -41770,7 +41789,7 @@ }, "recipe": { "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150722.1406", "deps": [ @@ -41786,7 +41805,7 @@ }, "recipe": { "sha256": "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151116.1612", "deps": [] @@ -41800,7 +41819,7 @@ }, "recipe": { "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150517.633", "deps": [ @@ -41816,7 +41835,7 @@ }, "recipe": { "sha256": "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140218.807", "deps": [] @@ -41830,7 +41849,7 @@ }, "recipe": { "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1517", "deps": [ @@ -41852,7 +41871,7 @@ }, "recipe": { "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131027.1129", "deps": [ @@ -41868,7 +41887,7 @@ }, "recipe": { "sha256": "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.406", "deps": [] @@ -41882,7 +41901,7 @@ }, "recipe": { "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151205.1042", "deps": [ @@ -41901,7 +41920,7 @@ }, "recipe": { "sha256": "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140107.418", "deps": [] @@ -41915,7 +41934,7 @@ }, "recipe": { "sha256": "1hqv2xqnhwnbj4sqcbdial4987yj1y3ry7niaaz2hh0f5qzrzwa8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121025.601", "deps": [] @@ -41929,7 +41948,7 @@ }, "recipe": { "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150720.1559", "deps": [] @@ -41937,13 +41956,13 @@ "matlab-mode": { "fetch": { "tag": "fetchcvs", - "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", "module": "matlab-emacs", + "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" }, "recipe": { "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141227.1244", "deps": [] @@ -41957,7 +41976,7 @@ }, "recipe": { "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151111.201", "deps": [ @@ -41974,7 +41993,7 @@ }, "recipe": { "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151021.533", "deps": [] @@ -41988,7 +42007,7 @@ }, "recipe": { "sha256": "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130422.811", "deps": [] @@ -42003,7 +42022,7 @@ }, "recipe": { "sha256": "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141116.1802", "deps": [] @@ -42016,7 +42035,7 @@ }, "recipe": { "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140129.232", "deps": [ @@ -42033,7 +42052,7 @@ }, "recipe": { "sha256": "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150205.1511", "deps": [] @@ -42047,7 +42066,7 @@ }, "recipe": { "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130525.934", "deps": [ @@ -42063,7 +42082,7 @@ }, "recipe": { "sha256": "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140531.417", "deps": [ @@ -42080,7 +42099,7 @@ }, "recipe": { "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140724.145", "deps": [ @@ -42097,7 +42116,7 @@ }, "recipe": { "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140306.1233", "deps": [] @@ -42110,7 +42129,7 @@ }, "recipe": { "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.1745", "deps": [] @@ -42124,7 +42143,7 @@ }, "recipe": { "sha256": "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150222.1440", "deps": [] @@ -42137,7 +42156,7 @@ }, "recipe": { "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151029.855", "deps": [] @@ -42151,7 +42170,7 @@ }, "recipe": { "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151127.1135", "deps": [ @@ -42167,7 +42186,7 @@ }, "recipe": { "sha256": "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140129.204", "deps": [ @@ -42184,7 +42203,7 @@ }, "recipe": { "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.714", "deps": [ @@ -42199,12 +42218,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "e94e51c8cbcf3b294ae5159bc75bd25dff59ba29927fca761f7f285458c6b516", + "sha256": "b9bf421152125c46447ba4f4e8700dd13de079572150558294b4c29b4f3c82bd", "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" }, "recipe": { "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150220.505", "deps": [ @@ -42221,7 +42240,7 @@ }, "recipe": { "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140525.547", "deps": [ @@ -42238,7 +42257,7 @@ }, "recipe": { "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140314.1308", "deps": [ @@ -42255,7 +42274,7 @@ }, "recipe": { "sha256": "1nam7xzw8hrykz73q9x24szpjv2kpkp48lcmzf02kzj3cg6l76qm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130220.603", "deps": [] @@ -42269,7 +42288,7 @@ }, "recipe": { "sha256": "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120622.937", "deps": [] @@ -42283,7 +42302,7 @@ }, "recipe": { "sha256": "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140128.1601", "deps": [] @@ -42297,7 +42316,7 @@ }, "recipe": { "sha256": "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150515.947", "deps": [] @@ -42311,7 +42330,7 @@ }, "recipe": { "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150428.1621", "deps": [] @@ -42325,7 +42344,7 @@ }, "recipe": { "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131117.1802", "deps": [] @@ -42338,7 +42357,7 @@ }, "recipe": { "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20121128.243", "deps": [] @@ -42347,12 +42366,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/magit/magit.git", - "sha256": "36e1bf3aa86b923a8e966722b62ee5dbe0c77453989a4757bfccf7017b588451", - "rev": "cc687fbf2f3bfe4cc0ac132edde857a4b2962329" + "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151214.705", "deps": [ @@ -42370,7 +42389,7 @@ }, "recipe": { "sha256": "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140123.316", "deps": [] @@ -42384,7 +42403,7 @@ }, "recipe": { "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150713.1550", "deps": [ @@ -42395,12 +42414,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/milkypostman/melpa.git", - "sha256": "3a92f4c5e4608abb563033d1fb0dbc336592875a8a9c1d159be7c3271b527923", - "rev": "f0258cc41de809b67811a5dde3d475c429df0695" + "sha256": "61b1735be10059ec6180f95d7cb0228605a82f28a30c83772ea80f7f3b33219d", + "rev": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "recipe": { "sha256": "1m245q81c2jifgqxwd2fi35jrcbf6v9a1a5zy815861avq3fg9g0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151211.1644", "deps": [ @@ -42416,7 +42435,7 @@ }, "recipe": { "sha256": "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150508.1757", "deps": [] @@ -42430,7 +42449,7 @@ }, "recipe": { "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151014.151", "deps": [ @@ -42448,7 +42467,7 @@ }, "recipe": { "sha256": "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131015.725", "deps": [ @@ -42464,7 +42483,7 @@ }, "recipe": { "sha256": "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150827.2151", "deps": [ @@ -42479,7 +42498,7 @@ }, "recipe": { "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.707", "deps": [] @@ -42493,7 +42512,7 @@ }, "recipe": { "sha256": "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140126.301", "deps": [] @@ -42507,7 +42526,7 @@ }, "recipe": { "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140112.559", "deps": [] @@ -42521,7 +42540,7 @@ }, "recipe": { "sha256": "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130419.2254", "deps": [] @@ -42535,7 +42554,7 @@ }, "recipe": { "sha256": "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150314.944", "deps": [] @@ -42549,7 +42568,7 @@ }, "recipe": { "sha256": "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151118.1500", "deps": [] @@ -42563,7 +42582,7 @@ }, "recipe": { "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151203.147", "deps": [ @@ -42581,7 +42600,7 @@ }, "recipe": { "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150924.1111", "deps": [ @@ -42597,7 +42616,7 @@ }, "recipe": { "sha256": "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150421.1522", "deps": [ @@ -42615,7 +42634,7 @@ }, "recipe": { "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130122.1522", "deps": [] @@ -42629,7 +42648,7 @@ }, "recipe": { "sha256": "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151001.221", "deps": [] @@ -42643,7 +42662,7 @@ }, "recipe": { "sha256": "1rsplnh18w1fqr6da79vj8x9q2lyss9sssy8pfz3hfw7p6qi6zkg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151125.1758", "deps": [ @@ -42664,7 +42683,7 @@ }, "recipe": { "sha256": "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141219.1046", "deps": [] @@ -42677,7 +42696,7 @@ }, "recipe": { "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150104.1748", "deps": [] @@ -42691,7 +42710,7 @@ }, "recipe": { "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150218.55", "deps": [ @@ -42708,7 +42727,7 @@ }, "recipe": { "sha256": "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150405.214", "deps": [ @@ -42724,7 +42743,7 @@ }, "recipe": { "sha256": "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151130.958", "deps": [] @@ -42738,7 +42757,7 @@ }, "recipe": { "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150328.1928", "deps": [] @@ -42752,7 +42771,7 @@ }, "recipe": { "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151105.240", "deps": [ @@ -42768,7 +42787,7 @@ }, "recipe": { "sha256": "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150516.1633", "deps": [] @@ -42782,7 +42801,7 @@ }, "recipe": { "sha256": "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140401.203", "deps": [] @@ -42796,7 +42815,7 @@ }, "recipe": { "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151202.2204", "deps": [ @@ -42812,7 +42831,7 @@ }, "recipe": { "sha256": "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141203.932", "deps": [ @@ -42829,7 +42848,7 @@ }, "recipe": { "sha256": "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141204.1156", "deps": [] @@ -42843,7 +42862,7 @@ }, "recipe": { "sha256": "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150930.1117", "deps": [] @@ -42857,7 +42876,7 @@ }, "recipe": { "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140827.32", "deps": [ @@ -42874,7 +42893,7 @@ }, "recipe": { "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151209.1400", "deps": [ @@ -42892,7 +42911,7 @@ }, "recipe": { "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141128.1611", "deps": [ @@ -42908,7 +42927,7 @@ }, "recipe": { "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130328.527", "deps": [] @@ -42922,7 +42941,7 @@ }, "recipe": { "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151101.56", "deps": [ @@ -42938,7 +42957,7 @@ }, "recipe": { "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025.1420", "deps": [] @@ -42952,7 +42971,7 @@ }, "recipe": { "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140705.1429", "deps": [] @@ -42966,7 +42985,7 @@ }, "recipe": { "sha256": "15z8l3adw8il0simk8phjgksh0v88cffb6gg3hv8a7nf5bla43my", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140330.1056", "deps": [] @@ -42980,7 +42999,7 @@ }, "recipe": { "sha256": "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150921.1950", "deps": [ @@ -42997,7 +43016,7 @@ }, "recipe": { "sha256": "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140723.37", "deps": [] @@ -43006,14 +43025,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/clojure-emacs/cider.git", - "sha256": "f45f10ecbaba25a2438c6ff00641e4308ace127234cd41e4da4ed75f3c3c826f", - "rev": "716237f66ee784433756bb571416fcda480fb932" + "sha256": "f7db3f7de53ea4fd2b8d33574b9dbf352a2eca91ecfd9a76d110497f7d3a3fe5", + "rev": "492e8ab16c3e69d2850e1dbeb2e2f7224ce8a58a" }, "recipe": { "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151213.839", + "version": "20151214.1527", "deps": [ "clojure-mode", "emacs", @@ -43031,7 +43050,7 @@ }, "recipe": { "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130130.1551", "deps": [] @@ -43044,7 +43063,7 @@ }, "recipe": { "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20051013.1256", "deps": [] @@ -43058,7 +43077,7 @@ }, "recipe": { "sha256": "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150124.1116", "deps": [ @@ -43074,7 +43093,7 @@ }, "recipe": { "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150729.2235", "deps": [ @@ -43092,7 +43111,7 @@ }, "recipe": { "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20120211.857", "deps": [] @@ -43105,7 +43124,7 @@ }, "recipe": { "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.700", "deps": [] @@ -43119,7 +43138,7 @@ }, "recipe": { "sha256": "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150427.547", "deps": [ @@ -43136,7 +43155,7 @@ }, "recipe": { "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140817.611", "deps": [ @@ -43148,14 +43167,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/xahlee/xah-find.git", - "sha256": "d8ac8b3bd54c6163b86b28a9e3cabc0b815e572596e842b0503dfe13df72d852", - "rev": "f67a86e3e9dfb1709e359283bc5630fc15a22e95" + "sha256": "1bf37853c6d374c57d911bee6e5ad84e34cc1790ffd1fd4ca160d880e0aebb15", + "rev": "e25eb9343fca71523ea6bf76741e6c5aab8004a4" }, "recipe": { "sha256": "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151209.2317", + "version": "20151214.1257", "deps": [] }, "wandbox": { @@ -43167,7 +43186,7 @@ }, "recipe": { "sha256": "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150905.1024", "deps": [ @@ -43185,7 +43204,7 @@ }, "recipe": { "sha256": "17l05m1lg0vmahh53b2lvw316y4z7jz3nmy0zyiyiygax313y42l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130923.1454", "deps": [] @@ -43199,7 +43218,7 @@ }, "recipe": { "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150303.228", "deps": [ @@ -43220,7 +43239,7 @@ }, "recipe": { "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150906.1154", "deps": [ @@ -43237,7 +43256,7 @@ }, "recipe": { "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150110.705", "deps": [ @@ -43253,7 +43272,7 @@ }, "recipe": { "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130524.643", "deps": [] @@ -43267,7 +43286,7 @@ }, "recipe": { "sha256": "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151212.1843", "deps": [ @@ -43283,7 +43302,7 @@ }, "recipe": { "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151112.717", "deps": [ @@ -43300,7 +43319,7 @@ }, "recipe": { "sha256": "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130822.48", "deps": [] @@ -43314,7 +43333,7 @@ }, "recipe": { "sha256": "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150728.1204", "deps": [] @@ -43328,7 +43347,7 @@ }, "recipe": { "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150614.957", "deps": [ @@ -43341,12 +43360,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/magnars/buster-mode.git", - "sha256": "52a29be50dce22b0ab9ae7af979308270ba22bb8f8aada1db9a4ba8f60cc6fb6", + "sha256": "10c1dd9f7d2c6d66bdaf6beb97f0130f6b5a7743161a62c1a86de2245dba0438", "rev": "de6958ef8369400922618b8d1e99abfa91b97ac5" }, "recipe": { "sha256": "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140928.713", "deps": [] @@ -43360,7 +43379,7 @@ }, "recipe": { "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151108.2352", "deps": [ @@ -43376,7 +43395,7 @@ }, "recipe": { "sha256": "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150406.2202", "deps": [] @@ -43390,7 +43409,7 @@ }, "recipe": { "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151030.232", "deps": [ @@ -43408,7 +43427,7 @@ }, "recipe": { "sha256": "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20131112.214", "deps": [] @@ -43422,7 +43441,7 @@ }, "recipe": { "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151109.603", "deps": [ @@ -43440,7 +43459,7 @@ }, "recipe": { "sha256": "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130413.419", "deps": [] @@ -43454,7 +43473,7 @@ }, "recipe": { "sha256": "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140326.550", "deps": [] @@ -43468,7 +43487,7 @@ }, "recipe": { "sha256": "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140810.717", "deps": [ @@ -43479,12 +43498,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-request.git", - "sha256": "d28de83f8390b8b30d000631e89ae6a8b2b25f30507ee01fae2bb67f2b9d69af", + "sha256": "7ba9a68d6b0a117510a409f8fba2281dc33d6beb5336d92eff0cb462adf31dcc", "rev": "adf7de452f9914406bfb693541f1d280093c4efd" }, "recipe": { "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140316.617", "deps": [] @@ -43493,14 +43512,14 @@ "fetch": { "tag": "fetchgit", "url": "git://jblevins.org/git/markdown-mode.git", - "sha256": "04bdb250853244ee7d47f098508b3fcc0635fee807c80a9f6db38202ca647a67", - "rev": "8826fe678d80ab0580883d407faaace3fa39fb4a" + "sha256": "9598cac1aec72eb4133bde780488cab417bd0158cb91d5368f619f62d743676f", + "rev": "23113fa13292712899ad66c355dcd44c0ee9055c" }, "recipe": { "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "20151206.1016", + "version": "20151215.1502", "deps": [] }, "sphinx-doc": { @@ -43512,7 +43531,7 @@ }, "recipe": { "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150616.1350", "deps": [ @@ -43530,7 +43549,7 @@ }, "recipe": { "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151126.324", "deps": [ @@ -43548,7 +43567,7 @@ }, "recipe": { "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151119.1038", "deps": [ @@ -43564,7 +43583,7 @@ }, "recipe": { "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150410.2025", "deps": [] @@ -43578,7 +43597,7 @@ }, "recipe": { "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150418.900", "deps": [ @@ -43595,7 +43614,7 @@ }, "recipe": { "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150511.2247", "deps": [ @@ -43610,7 +43629,7 @@ }, "recipe": { "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130824.658", "deps": [] @@ -43624,7 +43643,7 @@ }, "recipe": { "sha256": "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151123.1327", "deps": [ @@ -43640,7 +43659,7 @@ }, "recipe": { "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140405.1827", "deps": [ @@ -43656,7 +43675,7 @@ }, "recipe": { "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140426.1204", "deps": [] @@ -43670,7 +43689,7 @@ }, "recipe": { "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151022.1210", "deps": [ @@ -43690,7 +43709,7 @@ }, "recipe": { "sha256": "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150204.508", "deps": [] @@ -43704,11 +43723,11 @@ }, "recipe": { "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20141216.1719", "deps": [ "coffee-mode" ] } -} +} \ No newline at end of file From e21f5f933c7e61f4b3a6687cd9e6062ce19430cd Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 06:55:03 -0600 Subject: [PATCH 051/289] emacsPackagesNgGen: use import, not callPackage `callPackage` should only be used for actual packages. Functions, like `emacsPackagesNgGen`, should be `import`ed. This also has the effect of exposing the `override` function provided by `makeScope` so that `emacsPackagesNg.override` overrides the package set instead of overriding the arguments to `emacsPackagesNgGen`. --- pkgs/top-level/all-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 012b7225831..d12a05f83bc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11624,10 +11624,11 @@ let emacs24Packages = recurseIntoAttrs (emacsPackagesGen emacs24 pkgs.emacs24Packages); - emacsPackagesNgGen = emacs: callPackage ./emacs-packages.nix { + emacsPackagesNgGen = emacs: import ./emacs-packages.nix { overrides = (config.emacsPackageOverrides or (p: {})) pkgs; - inherit newScope; + inherit lib newScope stdenv; + inherit fetchFromGitHub fetchgit fetchhg fetchurl; inherit emacs elpaPackages melpaPackages melpaStablePackages; trivialBuild = callPackage ../build-support/emacs/trivial.nix { From bf9b4b03d5be5cf96cbc5fd694f85dcfe9253428 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 08:13:46 -0600 Subject: [PATCH 052/289] elpa-packages: mark broken packages These packages fail to build on Hydra. --- .../editors/emacs-modes/elpa-packages.nix | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 6c48969a9ef..00f127a2992 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -51,4 +51,25 @@ self: meta = (args.meta or {}) // { broken = true; }; }); }; - in super // { inherit elpaBuild; elpaPackage = super; } + + elpaPackages = super // { + ace-window = markBroken super.ace-window; + ada-mode = markBroken super.ada-mode; + beacon = markBroken super.beacon; + bug-hunter = markBroken super.bug-hunter; + company-math = markBroken super.company-math; + company-statistics = markBroken super.company-statistics; + context-coloring = markBroken super.context-coloring; + dict-tree = markBroken super.dict-tree; + el-search = markBroken super.el-search; + ergoemacs-mode = markBroken super.ergoemacs-mode; + exwm = markBroken super.exwm; + gnugo = markBroken super.gnugo; + iterators = markBroken super.iterators; + midi-kbd = markBroken super.mini-kbd; + stream = markBroken super.stream; + tNFA = markBroken super.tNFA; + trie = markBroken super.trie; + xelb = markBroken super.xelb; + }; + in elpaPackages // { inherit elpaBuild elpaPackages; } From ccc8265d44482c338c5beeccb6d777f79d5aca73 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 08:22:25 -0600 Subject: [PATCH 053/289] melpa-stable-packages: 2015-12-16 Fixes Git hashes by using `nix-prefetch-git --fetch-submodules`. --- .../emacs-modes/melpa-stable-packages.json | 3022 +++++++++-------- 1 file changed, 1521 insertions(+), 1501 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json index ccf76ad40e1..e4e1755be3d 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json @@ -8,7 +8,7 @@ }, "recipe": { "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [] @@ -22,7 +22,7 @@ }, "recipe": { "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -36,7 +36,7 @@ }, "recipe": { "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.7.8", "deps": [ @@ -52,7 +52,7 @@ }, "recipe": { "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.16", "deps": [] @@ -66,7 +66,7 @@ }, "recipe": { "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -83,7 +83,7 @@ }, "recipe": { "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.2", "deps": [] @@ -97,7 +97,7 @@ }, "recipe": { "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -116,7 +116,7 @@ }, "recipe": { "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [ @@ -129,11 +129,11 @@ "fetch": { "tag": "fetchurl", "url": "http://www.emacswiki.org/emacs/download/help-fns+.el", - "sha256": "0ljciaa0dc09m7xq22z1sad4bshphjpyf0i8hlf6xh7wg1vgavma" + "sha256": "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w" }, "recipe": { "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -142,15 +142,17 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/atilaneves/cmake-ide.git", - "sha256": "7bf27290c33b017e8cc557dbe11c11f2f1d1156dba4947592a2c2c738fdf6ff4", - "rev": "8d395a5aef72e58dd3256ba3f70c912c0e6d059a" + "sha256": "12d3d757ef71a4ea5fa4d5418bb3a673c3410eb441365e3910427d619875c73b", + "rev": "b6953102d022adb60678eb5c4186008de987cdce" }, "recipe": { "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "0.2", - "deps": [] + "version": "0.3", + "deps": [ + "emacs" + ] }, "jammer": { "fetch": { @@ -161,7 +163,7 @@ }, "recipe": { "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -174,7 +176,7 @@ }, "recipe": { "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -190,7 +192,7 @@ }, "recipe": { "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.26", "deps": [ @@ -206,7 +208,7 @@ }, "recipe": { "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -220,7 +222,7 @@ }, "recipe": { "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -239,7 +241,7 @@ }, "recipe": { "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -252,7 +254,7 @@ }, "recipe": { "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -266,7 +268,7 @@ }, "recipe": { "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -283,7 +285,7 @@ }, "recipe": { "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -301,7 +303,7 @@ }, "recipe": { "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.5", "deps": [ @@ -317,7 +319,7 @@ }, "recipe": { "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -331,7 +333,7 @@ }, "recipe": { "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.1", "deps": [ @@ -348,7 +350,7 @@ }, "recipe": { "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [ @@ -364,7 +366,7 @@ }, "recipe": { "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -378,7 +380,7 @@ }, "recipe": { "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.9", "deps": [ @@ -396,7 +398,7 @@ }, "recipe": { "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -410,7 +412,7 @@ }, "recipe": { "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.41", "deps": [ @@ -429,7 +431,7 @@ }, "recipe": { "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [ @@ -447,7 +449,7 @@ }, "recipe": { "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [ @@ -464,7 +466,7 @@ }, "recipe": { "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -480,7 +482,7 @@ }, "recipe": { "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.63", "deps": [ @@ -496,7 +498,7 @@ }, "recipe": { "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [] @@ -510,7 +512,7 @@ }, "recipe": { "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [ @@ -526,7 +528,7 @@ }, "recipe": { "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -542,7 +544,7 @@ }, "recipe": { "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10", "deps": [] @@ -556,7 +558,7 @@ }, "recipe": { "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -573,7 +575,7 @@ }, "recipe": { "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -592,7 +594,7 @@ }, "recipe": { "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -608,7 +610,7 @@ }, "recipe": { "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -625,7 +627,7 @@ }, "recipe": { "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [ @@ -643,7 +645,7 @@ }, "recipe": { "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -657,7 +659,7 @@ }, "recipe": { "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [] @@ -671,7 +673,7 @@ }, "recipe": { "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.5", "deps": [ @@ -687,7 +689,7 @@ }, "recipe": { "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "5.4.3", "deps": [ @@ -703,7 +705,7 @@ }, "recipe": { "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -717,7 +719,7 @@ }, "recipe": { "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2.2", "deps": [ @@ -733,7 +735,7 @@ }, "recipe": { "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.3", "deps": [ @@ -751,7 +753,7 @@ }, "recipe": { "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [ @@ -770,7 +772,7 @@ }, "recipe": { "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.1", "deps": [ @@ -790,7 +792,7 @@ }, "recipe": { "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2_24", "deps": [] @@ -804,7 +806,7 @@ }, "recipe": { "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2.6", "deps": [ @@ -821,7 +823,7 @@ }, "recipe": { "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -835,7 +837,7 @@ }, "recipe": { "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [ @@ -846,12 +848,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.7", "deps": [ @@ -870,7 +872,7 @@ }, "recipe": { "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.4", "deps": [] @@ -883,7 +885,7 @@ }, "recipe": { "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -897,7 +899,7 @@ }, "recipe": { "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.14", "deps": [] @@ -911,7 +913,7 @@ }, "recipe": { "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0Alpha", "deps": [ @@ -927,7 +929,7 @@ }, "recipe": { "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -943,7 +945,7 @@ }, "recipe": { "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -961,7 +963,7 @@ }, "recipe": { "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.16", "deps": [ @@ -978,7 +980,7 @@ }, "recipe": { "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.5", "deps": [ @@ -994,7 +996,7 @@ }, "recipe": { "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1008,7 +1010,7 @@ }, "recipe": { "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -1024,7 +1026,7 @@ }, "recipe": { "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.9.0", "deps": [ @@ -1043,7 +1045,7 @@ }, "recipe": { "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -1059,7 +1061,7 @@ }, "recipe": { "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -1073,7 +1075,7 @@ }, "recipe": { "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -1088,7 +1090,7 @@ }, "recipe": { "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1102,7 +1104,7 @@ }, "recipe": { "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -1120,7 +1122,7 @@ }, "recipe": { "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -1134,7 +1136,7 @@ }, "recipe": { "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -1150,7 +1152,7 @@ }, "recipe": { "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.7", "deps": [] @@ -1164,7 +1166,7 @@ }, "recipe": { "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -1178,7 +1180,7 @@ }, "recipe": { "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -1193,7 +1195,7 @@ }, "recipe": { "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1207,7 +1209,7 @@ }, "recipe": { "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -1221,7 +1223,7 @@ }, "recipe": { "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.5.2", "deps": [ @@ -1239,7 +1241,7 @@ }, "recipe": { "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [] @@ -1253,7 +1255,7 @@ }, "recipe": { "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.0", "deps": [ @@ -1271,7 +1273,7 @@ }, "recipe": { "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1285,7 +1287,7 @@ }, "recipe": { "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.3", "deps": [ @@ -1303,7 +1305,7 @@ }, "recipe": { "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -1317,7 +1319,7 @@ }, "recipe": { "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13.0", "deps": [ @@ -1335,7 +1337,7 @@ }, "recipe": { "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -1349,7 +1351,7 @@ }, "recipe": { "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [ @@ -1365,7 +1367,7 @@ }, "recipe": { "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "5.4.0.0", "deps": [ @@ -1381,7 +1383,7 @@ }, "recipe": { "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.0", "deps": [ @@ -1397,7 +1399,7 @@ }, "recipe": { "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [] @@ -1411,7 +1413,7 @@ }, "recipe": { "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.9.1", "deps": [] @@ -1424,7 +1426,7 @@ }, "recipe": { "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1438,7 +1440,7 @@ }, "recipe": { "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -1453,7 +1455,7 @@ }, "recipe": { "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -1472,7 +1474,7 @@ }, "recipe": { "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.3", "deps": [ @@ -1489,7 +1491,7 @@ }, "recipe": { "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1502,7 +1504,7 @@ }, "recipe": { "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1516,7 +1518,7 @@ }, "recipe": { "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "4.4", "deps": [ @@ -1533,7 +1535,7 @@ }, "recipe": { "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -1547,7 +1549,7 @@ }, "recipe": { "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.1", "deps": [ @@ -1564,7 +1566,7 @@ }, "recipe": { "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1", "deps": [ @@ -1581,7 +1583,7 @@ }, "recipe": { "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.5", "deps": [ @@ -1597,7 +1599,7 @@ }, "recipe": { "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.9", "deps": [] @@ -1611,7 +1613,7 @@ }, "recipe": { "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.79", "deps": [] @@ -1624,7 +1626,7 @@ }, "recipe": { "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -1640,7 +1642,7 @@ }, "recipe": { "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -1657,7 +1659,7 @@ }, "recipe": { "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.2", "deps": [] @@ -1671,7 +1673,7 @@ }, "recipe": { "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -1687,7 +1689,7 @@ }, "recipe": { "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1700,7 +1702,7 @@ }, "recipe": { "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1713,7 +1715,7 @@ }, "recipe": { "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1727,7 +1729,7 @@ }, "recipe": { "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.1", "deps": [ @@ -1744,7 +1746,7 @@ }, "recipe": { "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -1760,7 +1762,7 @@ }, "recipe": { "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "7.1", "deps": [ @@ -1778,7 +1780,7 @@ }, "recipe": { "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -1792,7 +1794,7 @@ }, "recipe": { "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [] @@ -1806,11 +1808,29 @@ }, "recipe": { "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "24", "deps": [] }, + "gh": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/sigma/gh.el.git", + "sha256": "04c1aee9517fe7168658623019e2692c39d59e12a100b29637746c73003525ac", + "rev": "33b88251e8989069cc08f3f5d6886635f276f42e" + }, + "recipe": { + "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + }, + "version": "0.9.2", + "deps": [ + "eieio", + "logito", + "pcache" + ] + }, "lispy": { "fetch": { "tag": "fetchgit", @@ -1820,7 +1840,7 @@ }, "recipe": { "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.26.0", "deps": [ @@ -1836,12 +1856,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-request.git", - "sha256": "5770398cb264a41fa229e0ad3da7845816b1787ee0211f3e89335bd157730d46", + "sha256": "cca4b7bc7720b98b805698b572dbae58b44b960313fc01c70e5eac3591cb6a68", "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff" }, "recipe": { "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -1854,7 +1874,7 @@ }, "recipe": { "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1868,7 +1888,7 @@ }, "recipe": { "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -1884,7 +1904,7 @@ }, "recipe": { "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -1900,7 +1920,7 @@ }, "recipe": { "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.09", "deps": [ @@ -1917,7 +1937,7 @@ }, "recipe": { "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -1938,7 +1958,7 @@ }, "recipe": { "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -1951,7 +1971,7 @@ }, "recipe": { "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -1965,7 +1985,7 @@ }, "recipe": { "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -1979,7 +1999,7 @@ }, "recipe": { "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.2", "deps": [ @@ -1998,7 +2018,7 @@ }, "recipe": { "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2011,7 +2031,7 @@ }, "recipe": { "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2025,7 +2045,7 @@ }, "recipe": { "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.4", "deps": [] @@ -2039,7 +2059,7 @@ }, "recipe": { "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.4", "deps": [ @@ -2055,7 +2075,7 @@ }, "recipe": { "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -2074,7 +2094,7 @@ }, "recipe": { "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -2088,7 +2108,7 @@ }, "recipe": { "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.1", "deps": [] @@ -2102,7 +2122,7 @@ }, "recipe": { "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [] @@ -2116,7 +2136,7 @@ }, "recipe": { "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -2129,7 +2149,7 @@ }, "recipe": { "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2143,7 +2163,7 @@ }, "recipe": { "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -2157,7 +2177,7 @@ }, "recipe": { "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [ @@ -2174,7 +2194,7 @@ }, "recipe": { "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [] @@ -2188,7 +2208,7 @@ }, "recipe": { "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.10", "deps": [] @@ -2201,7 +2221,7 @@ }, "recipe": { "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2214,7 +2234,7 @@ }, "recipe": { "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2228,7 +2248,7 @@ }, "recipe": { "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.5", "deps": [ @@ -2243,7 +2263,7 @@ }, "recipe": { "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2257,7 +2277,7 @@ }, "recipe": { "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -2275,7 +2295,7 @@ }, "recipe": { "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.7", "deps": [] @@ -2289,7 +2309,7 @@ }, "recipe": { "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [ @@ -2304,7 +2324,7 @@ }, "recipe": { "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2313,12 +2333,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "62a355528a4ebc5372e37fe82287322ae8d335ee901da6122370be827bb159bd", + "sha256": "aea707d4ea0911a3232dfa42b704381f3a96b8584faec048acafd32ff0afa108", "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" }, "recipe": { "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0", "deps": [ @@ -2334,7 +2354,7 @@ }, "recipe": { "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.2", "deps": [ @@ -2350,7 +2370,7 @@ }, "recipe": { "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -2368,7 +2388,7 @@ }, "recipe": { "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [] @@ -2382,7 +2402,7 @@ }, "recipe": { "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -2402,7 +2422,7 @@ }, "recipe": { "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.0", "deps": [ @@ -2424,7 +2444,7 @@ }, "recipe": { "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.0", "deps": [ @@ -2440,7 +2460,7 @@ }, "recipe": { "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -2454,7 +2474,7 @@ }, "recipe": { "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.1", "deps": [ @@ -2471,7 +2491,7 @@ }, "recipe": { "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -2489,7 +2509,7 @@ }, "recipe": { "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.3", "deps": [] @@ -2503,7 +2523,7 @@ }, "recipe": { "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.16", "deps": [ @@ -2519,7 +2539,7 @@ }, "recipe": { "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.6", "deps": [ @@ -2535,7 +2555,7 @@ }, "recipe": { "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "7.2.2", "deps": [] @@ -2549,7 +2569,7 @@ }, "recipe": { "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -2565,7 +2585,7 @@ }, "recipe": { "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -2581,7 +2601,7 @@ }, "recipe": { "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -2594,7 +2614,7 @@ }, "recipe": { "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -2608,7 +2628,7 @@ }, "recipe": { "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5", "deps": [ @@ -2624,7 +2644,7 @@ }, "recipe": { "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.45", "deps": [ @@ -2640,7 +2660,7 @@ }, "recipe": { "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [] @@ -2654,7 +2674,7 @@ }, "recipe": { "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [ @@ -2671,7 +2691,7 @@ }, "recipe": { "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "6.7", "deps": [] @@ -2685,7 +2705,7 @@ }, "recipe": { "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -2704,7 +2724,7 @@ }, "recipe": { "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -2718,7 +2738,7 @@ }, "recipe": { "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [] @@ -2732,7 +2752,7 @@ }, "recipe": { "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.9", "deps": [ @@ -2749,7 +2769,7 @@ }, "recipe": { "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.4", "deps": [ @@ -2767,7 +2787,7 @@ }, "recipe": { "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.7", "deps": [ @@ -2783,7 +2803,7 @@ }, "recipe": { "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -2797,7 +2817,7 @@ }, "recipe": { "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -2814,7 +2834,7 @@ }, "recipe": { "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [ @@ -2831,7 +2851,7 @@ }, "recipe": { "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -2848,7 +2868,7 @@ }, "recipe": { "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.4", "deps": [ @@ -2864,7 +2884,7 @@ }, "recipe": { "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [ @@ -2883,7 +2903,7 @@ }, "recipe": { "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.12", "deps": [] @@ -2897,7 +2917,7 @@ }, "recipe": { "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.99a", "deps": [ @@ -2913,7 +2933,7 @@ }, "recipe": { "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.04", "deps": [ @@ -2929,7 +2949,7 @@ }, "recipe": { "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -2945,7 +2965,7 @@ }, "recipe": { "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [] @@ -2959,7 +2979,7 @@ }, "recipe": { "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4", "deps": [ @@ -2978,7 +2998,7 @@ }, "recipe": { "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.22", "deps": [] @@ -2991,7 +3011,7 @@ }, "recipe": { "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3000,12 +3020,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/millejoh/emacs-ipython-notebook.git", - "sha256": "c2c5dd3a02ea00e194a376d1d50ee4c0fd52f95b0c219c154eb8cdca094aada3", + "sha256": "abb0443563ccd529f0eb1fdc52addd8c996671c0c60522dd027717662044abb9", "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" }, "recipe": { "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -3022,7 +3042,7 @@ }, "recipe": { "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -3039,7 +3059,7 @@ }, "recipe": { "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -3053,7 +3073,7 @@ }, "recipe": { "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -3066,7 +3086,7 @@ }, "recipe": { "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3080,7 +3100,7 @@ }, "recipe": { "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -3098,7 +3118,7 @@ }, "recipe": { "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -3114,7 +3134,7 @@ }, "recipe": { "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -3131,7 +3151,7 @@ }, "recipe": { "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.07", "deps": [ @@ -3149,7 +3169,7 @@ }, "recipe": { "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.7.5", "deps": [ @@ -3165,7 +3185,7 @@ }, "recipe": { "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [] @@ -3179,7 +3199,7 @@ }, "recipe": { "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.4", "deps": [] @@ -3193,7 +3213,7 @@ }, "recipe": { "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -3208,7 +3228,7 @@ }, "recipe": { "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3222,7 +3242,7 @@ }, "recipe": { "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -3240,7 +3260,7 @@ }, "recipe": { "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "5.1", "deps": [] @@ -3254,7 +3274,7 @@ }, "recipe": { "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -3270,7 +3290,7 @@ }, "recipe": { "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -3283,7 +3303,7 @@ }, "recipe": { "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -3298,7 +3318,7 @@ }, "recipe": { "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3312,7 +3332,7 @@ }, "recipe": { "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -3326,7 +3346,7 @@ }, "recipe": { "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -3340,7 +3360,7 @@ }, "recipe": { "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -3356,7 +3376,7 @@ }, "recipe": { "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -3369,7 +3389,7 @@ }, "recipe": { "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3382,7 +3402,7 @@ }, "recipe": { "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3396,7 +3416,7 @@ }, "recipe": { "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -3413,7 +3433,7 @@ }, "recipe": { "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -3429,7 +3449,7 @@ }, "recipe": { "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [] @@ -3443,7 +3463,7 @@ }, "recipe": { "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3", "deps": [ @@ -3460,7 +3480,7 @@ }, "recipe": { "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -3478,7 +3498,7 @@ }, "recipe": { "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -3494,7 +3514,7 @@ }, "recipe": { "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [ @@ -3517,7 +3537,7 @@ }, "recipe": { "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13", "deps": [] @@ -3531,7 +3551,7 @@ }, "recipe": { "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.12", "deps": [ @@ -3549,7 +3569,7 @@ }, "recipe": { "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -3567,7 +3587,7 @@ }, "recipe": { "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -3581,7 +3601,7 @@ }, "recipe": { "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -3595,7 +3615,7 @@ }, "recipe": { "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -3609,7 +3629,7 @@ }, "recipe": { "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -3623,7 +3643,7 @@ }, "recipe": { "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [] @@ -3632,12 +3652,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/pjones/bufshow.git", - "sha256": "56868174258e16f4778ff77218915116322c06c1264a7e3b1b193d8cafac8485", + "sha256": "41c9aec30bd62fc5e3f6b64b3ced3b9065cfcfdef5db071664f6d5d3b5769451", "rev": "d8424e412d63dcc721c64fbd2ddd2420a03b4e8b" }, "recipe": { "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -3650,7 +3670,7 @@ }, "recipe": { "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3664,7 +3684,7 @@ }, "recipe": { "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -3682,7 +3702,7 @@ }, "recipe": { "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.2", "deps": [ @@ -3698,7 +3718,7 @@ }, "recipe": { "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3712,7 +3732,7 @@ }, "recipe": { "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.3", "deps": [ @@ -3729,7 +3749,7 @@ }, "recipe": { "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.2", "deps": [ @@ -3746,7 +3766,7 @@ }, "recipe": { "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -3760,7 +3780,7 @@ }, "recipe": { "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -3777,7 +3797,7 @@ }, "recipe": { "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -3793,7 +3813,7 @@ }, "recipe": { "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -3807,7 +3827,7 @@ }, "recipe": { "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [] @@ -3820,7 +3840,7 @@ }, "recipe": { "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3834,7 +3854,7 @@ }, "recipe": { "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -3848,7 +3868,7 @@ }, "recipe": { "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -3864,7 +3884,7 @@ }, "recipe": { "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [] @@ -3878,7 +3898,7 @@ }, "recipe": { "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.8", "deps": [] @@ -3892,7 +3912,7 @@ }, "recipe": { "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2.0", "deps": [] @@ -3906,7 +3926,7 @@ }, "recipe": { "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3", "deps": [] @@ -3920,7 +3940,7 @@ }, "recipe": { "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.85", "deps": [ @@ -3936,7 +3956,7 @@ }, "recipe": { "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -3950,7 +3970,7 @@ }, "recipe": { "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -3966,7 +3986,7 @@ }, "recipe": { "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [] @@ -3980,7 +4000,7 @@ }, "recipe": { "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.4", "deps": [ @@ -4002,7 +4022,7 @@ }, "recipe": { "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.3", "deps": [ @@ -4019,7 +4039,7 @@ }, "recipe": { "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.4", "deps": [] @@ -4033,7 +4053,7 @@ }, "recipe": { "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.7", "deps": [ @@ -4048,7 +4068,7 @@ }, "recipe": { "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4062,7 +4082,7 @@ }, "recipe": { "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [] @@ -4076,7 +4096,7 @@ }, "recipe": { "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10", "deps": [] @@ -4090,7 +4110,7 @@ }, "recipe": { "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [] @@ -4104,7 +4124,7 @@ }, "recipe": { "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.9", "deps": [] @@ -4118,7 +4138,7 @@ }, "recipe": { "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.8", "deps": [ @@ -4134,7 +4154,7 @@ }, "recipe": { "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "4.4.0", "deps": [] @@ -4148,7 +4168,7 @@ }, "recipe": { "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150303", "deps": [ @@ -4164,7 +4184,7 @@ }, "recipe": { "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.11.2", "deps": [] @@ -4177,7 +4197,7 @@ }, "recipe": { "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4191,7 +4211,7 @@ }, "recipe": { "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -4209,7 +4229,7 @@ }, "recipe": { "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -4227,7 +4247,7 @@ }, "recipe": { "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.8", "deps": [ @@ -4247,7 +4267,7 @@ }, "recipe": { "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -4261,7 +4281,7 @@ }, "recipe": { "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -4278,7 +4298,7 @@ }, "recipe": { "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [ @@ -4294,7 +4314,7 @@ }, "recipe": { "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [ @@ -4310,7 +4330,7 @@ }, "recipe": { "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -4328,7 +4348,7 @@ }, "recipe": { "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.2", "deps": [ @@ -4344,7 +4364,7 @@ }, "recipe": { "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4358,7 +4378,7 @@ }, "recipe": { "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -4374,7 +4394,7 @@ }, "recipe": { "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4388,7 +4408,7 @@ }, "recipe": { "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [] @@ -4402,7 +4422,7 @@ }, "recipe": { "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [] @@ -4416,7 +4436,7 @@ }, "recipe": { "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -4432,11 +4452,25 @@ }, "recipe": { "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] }, + "project-persist": { + "fetch": { + "tag": "fetchgit", + "url": "git://github.com/rdallasgray/project-persist.git", + "sha256": "b2148a6d7095b7ea4e99a1c51362375aec9589cb5582e48197d68c83f9121113", + "rev": "a4e5de1833edb60656d8a04357c527d34e81d27c" + }, + "recipe": { + "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + }, + "version": "0.3.2", + "deps": [] + }, "popup": { "fetch": { "tag": "fetchgit", @@ -4446,7 +4480,7 @@ }, "recipe": { "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.3", "deps": [ @@ -4462,7 +4496,7 @@ }, "recipe": { "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.1", "deps": [ @@ -4478,7 +4512,7 @@ }, "recipe": { "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [ @@ -4495,7 +4529,7 @@ }, "recipe": { "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.3", "deps": [ @@ -4512,7 +4546,7 @@ }, "recipe": { "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -4528,7 +4562,7 @@ }, "recipe": { "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -4541,7 +4575,7 @@ }, "recipe": { "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4555,7 +4589,7 @@ }, "recipe": { "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.22", "deps": [ @@ -4573,7 +4607,7 @@ }, "recipe": { "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -4587,7 +4621,7 @@ }, "recipe": { "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -4601,7 +4635,7 @@ }, "recipe": { "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.7", "deps": [ @@ -4622,7 +4656,7 @@ }, "recipe": { "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0", "deps": [] @@ -4636,7 +4670,7 @@ }, "recipe": { "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -4650,7 +4684,7 @@ }, "recipe": { "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -4664,7 +4698,7 @@ }, "recipe": { "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -4676,12 +4710,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "d5afed5b0b24092c366cb57bcf7205c39f640e27186ff9b4af57b60e5a8d7aed", + "sha256": "b5854f8953ddb065c57dff2b7a13116a941eafbe9e7f19f7cf04f7d1399caf53", "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" }, "recipe": { "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -4696,7 +4730,7 @@ }, "recipe": { "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4710,7 +4744,7 @@ }, "recipe": { "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -4727,7 +4761,7 @@ }, "recipe": { "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -4740,7 +4774,7 @@ }, "recipe": { "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -4756,7 +4790,7 @@ }, "recipe": { "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.9", "deps": [] @@ -4769,7 +4803,7 @@ }, "recipe": { "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4783,7 +4817,7 @@ }, "recipe": { "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.16.0", "deps": [ @@ -4801,7 +4835,7 @@ }, "recipe": { "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.1", "deps": [ @@ -4818,7 +4852,7 @@ }, "recipe": { "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.2", "deps": [ @@ -4839,7 +4873,7 @@ }, "recipe": { "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -4856,7 +4890,7 @@ }, "recipe": { "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5", "deps": [ @@ -4872,7 +4906,7 @@ }, "recipe": { "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [] @@ -4886,7 +4920,7 @@ }, "recipe": { "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [ @@ -4904,7 +4938,7 @@ }, "recipe": { "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -4921,7 +4955,7 @@ }, "recipe": { "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -4935,7 +4969,7 @@ }, "recipe": { "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150909", "deps": [ @@ -4951,7 +4985,7 @@ }, "recipe": { "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -4965,7 +4999,7 @@ }, "recipe": { "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -4979,7 +5013,7 @@ }, "recipe": { "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [] @@ -4993,7 +5027,7 @@ }, "recipe": { "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [ @@ -5009,7 +5043,7 @@ }, "recipe": { "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.14", "deps": [ @@ -5026,7 +5060,7 @@ }, "recipe": { "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5040,7 +5074,7 @@ }, "recipe": { "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.7", "deps": [ @@ -5057,7 +5091,7 @@ }, "recipe": { "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5066,12 +5100,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/capitaomorte/yasnippet.git", - "sha256": "bdc884416100f3348425ae6bf192c4e193c46aa9374636f87f68bc25c192fdaf", + "sha256": "df9c033f6e057b3c47414d19f551161e7b77a7d1bf101ddc64fbc18af8669ba8", "rev": "be2f815c43deb74e0f809ed47debc4aa2e67ea1e" }, "recipe": { "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0-a", "deps": [] @@ -5085,7 +5119,7 @@ }, "recipe": { "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -5099,7 +5133,7 @@ }, "recipe": { "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [] @@ -5113,7 +5147,7 @@ }, "recipe": { "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -5127,7 +5161,7 @@ }, "recipe": { "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -5144,7 +5178,7 @@ }, "recipe": { "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -5159,7 +5193,7 @@ }, "recipe": { "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -5175,7 +5209,7 @@ }, "recipe": { "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.6", "deps": [ @@ -5192,7 +5226,7 @@ }, "recipe": { "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -5206,7 +5240,7 @@ }, "recipe": { "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [] @@ -5220,7 +5254,7 @@ }, "recipe": { "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -5239,7 +5273,7 @@ }, "recipe": { "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.9", "deps": [ @@ -5261,7 +5295,7 @@ }, "recipe": { "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5274,7 +5308,7 @@ }, "recipe": { "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5288,7 +5322,7 @@ }, "recipe": { "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -5305,7 +5339,7 @@ }, "recipe": { "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.0", "deps": [] @@ -5319,7 +5353,7 @@ }, "recipe": { "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -5335,7 +5369,7 @@ }, "recipe": { "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -5351,7 +5385,7 @@ }, "recipe": { "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.11", "deps": [] @@ -5364,7 +5398,7 @@ }, "recipe": { "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -5380,7 +5414,7 @@ }, "recipe": { "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [] @@ -5394,7 +5428,7 @@ }, "recipe": { "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -5411,7 +5445,7 @@ }, "recipe": { "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.2", "deps": [ @@ -5427,7 +5461,7 @@ }, "recipe": { "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -5443,7 +5477,7 @@ }, "recipe": { "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130322.926", "deps": [ @@ -5462,7 +5496,7 @@ }, "recipe": { "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.8", "deps": [ @@ -5480,7 +5514,7 @@ }, "recipe": { "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [] @@ -5494,7 +5528,7 @@ }, "recipe": { "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [] @@ -5507,7 +5541,7 @@ }, "recipe": { "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5521,7 +5555,7 @@ }, "recipe": { "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "15.09", "deps": [ @@ -5537,7 +5571,7 @@ }, "recipe": { "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.2", "deps": [] @@ -5551,7 +5585,7 @@ }, "recipe": { "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -5567,7 +5601,7 @@ }, "recipe": { "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5581,7 +5615,7 @@ }, "recipe": { "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.6", "deps": [ @@ -5599,7 +5633,7 @@ }, "recipe": { "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.07", "deps": [ @@ -5616,7 +5650,7 @@ }, "recipe": { "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [ @@ -5631,7 +5665,7 @@ }, "recipe": { "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5645,7 +5679,7 @@ }, "recipe": { "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.16", "deps": [ @@ -5661,7 +5695,7 @@ }, "recipe": { "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5670,12 +5704,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/project-persist-drawer.git", - "sha256": "3b9f9a8389df069d7e547a28db72c4b4dae3ce987cf20ad5f42e387b18cfa152", + "sha256": "8c5550403d4e4d2fe12092f2a04c4ce53809b0b8f4cad840593923060c6c8aeb", "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" }, "recipe": { "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -5690,7 +5724,7 @@ }, "recipe": { "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5704,7 +5738,7 @@ }, "recipe": { "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.7", "deps": [ @@ -5721,7 +5755,7 @@ }, "recipe": { "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [ @@ -5737,7 +5771,7 @@ }, "recipe": { "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -5752,7 +5786,7 @@ }, "recipe": { "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5766,7 +5800,7 @@ }, "recipe": { "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -5782,7 +5816,7 @@ }, "recipe": { "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -5795,7 +5829,7 @@ }, "recipe": { "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5804,12 +5838,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/timvisher/vimgolf.git", - "sha256": "eeb55f04c955f62b031d36dfce3e4edb64a3781a29161825fc26e5b1099cbe49", + "sha256": "d455d10d8cd4dc59b8934b6b6a95f507426b95bb4df874f7bd12cdf8a757ce17", "rev": "9fd8aaf68bc69d1dd628de4c7cbb070e366545a9" }, "recipe": { "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10.0", "deps": [] @@ -5823,7 +5857,7 @@ }, "recipe": { "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -5839,7 +5873,7 @@ }, "recipe": { "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -5853,7 +5887,7 @@ }, "recipe": { "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.9", "deps": [ @@ -5869,7 +5903,7 @@ }, "recipe": { "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [] @@ -5883,7 +5917,7 @@ }, "recipe": { "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -5899,7 +5933,7 @@ }, "recipe": { "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -5913,7 +5947,7 @@ }, "recipe": { "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6", "deps": [] @@ -5927,7 +5961,7 @@ }, "recipe": { "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -5936,12 +5970,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/eschulte/rinari.git", - "sha256": "e5d04f3d22216ff7a1abedddf324b5d84b6ae74b02d019a5e4c3490e3c5bf9c8", + "sha256": "897d16725048e216a432bf3beec17dc5d3975a3bcc09e4230b7569c4ce760fb8", "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" }, "recipe": { "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.11", "deps": [ @@ -5956,7 +5990,7 @@ }, "recipe": { "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -5972,7 +6006,7 @@ }, "recipe": { "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.0", "deps": [ @@ -5992,7 +6026,7 @@ }, "recipe": { "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.3", "deps": [] @@ -6006,7 +6040,7 @@ }, "recipe": { "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -6022,7 +6056,7 @@ }, "recipe": { "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [ @@ -6038,7 +6072,7 @@ }, "recipe": { "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10", "deps": [] @@ -6051,7 +6085,7 @@ }, "recipe": { "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -6065,7 +6099,7 @@ }, "recipe": { "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.2", "deps": [] @@ -6079,7 +6113,7 @@ }, "recipe": { "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.81", "deps": [] @@ -6088,12 +6122,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/k1LoW/emacs-serverspec.git", - "sha256": "d7c8496483173311871f653468c6ba8b38855b2bb109eca70169483f5dae3c4a", + "sha256": "141e525f5827ce7841d556ae8fe02c455c124847fd020da39b38012fd2c7b732", "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" }, "recipe": { "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.7", "deps": [ @@ -6112,7 +6146,7 @@ }, "recipe": { "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.4", "deps": [ @@ -6130,7 +6164,7 @@ }, "recipe": { "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -6144,7 +6178,7 @@ }, "recipe": { "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -6158,7 +6192,7 @@ }, "recipe": { "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -6172,7 +6206,7 @@ }, "recipe": { "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -6186,7 +6220,7 @@ }, "recipe": { "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -6200,7 +6234,7 @@ }, "recipe": { "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [ @@ -6219,7 +6253,7 @@ }, "recipe": { "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -6233,7 +6267,7 @@ }, "recipe": { "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -6247,7 +6281,7 @@ }, "recipe": { "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.4", "deps": [ @@ -6265,7 +6299,7 @@ }, "recipe": { "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.3", "deps": [ @@ -6281,7 +6315,7 @@ }, "recipe": { "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10", "deps": [] @@ -6295,7 +6329,7 @@ }, "recipe": { "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.12", "deps": [ @@ -6312,7 +6346,7 @@ }, "recipe": { "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.3", "deps": [ @@ -6329,7 +6363,7 @@ }, "recipe": { "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [] @@ -6342,7 +6376,7 @@ }, "recipe": { "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -6356,7 +6390,7 @@ }, "recipe": { "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.22", "deps": [] @@ -6370,7 +6404,7 @@ }, "recipe": { "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -6386,7 +6420,7 @@ }, "recipe": { "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.0", "deps": [] @@ -6400,7 +6434,7 @@ }, "recipe": { "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3", "deps": [] @@ -6414,7 +6448,7 @@ }, "recipe": { "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.3", "deps": [ @@ -6430,7 +6464,7 @@ }, "recipe": { "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -6443,7 +6477,7 @@ }, "recipe": { "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -6457,7 +6491,7 @@ }, "recipe": { "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -6471,7 +6505,7 @@ }, "recipe": { "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -6484,7 +6518,7 @@ }, "recipe": { "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -6498,7 +6532,7 @@ }, "recipe": { "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "4.1", "deps": [] @@ -6512,7 +6546,7 @@ }, "recipe": { "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.126", "deps": [] @@ -6526,7 +6560,7 @@ }, "recipe": { "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.3", "deps": [ @@ -6541,7 +6575,7 @@ }, "recipe": { "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -6555,7 +6589,7 @@ }, "recipe": { "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.37", "deps": [] @@ -6569,7 +6603,7 @@ }, "recipe": { "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -6583,7 +6617,7 @@ }, "recipe": { "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -6597,7 +6631,7 @@ }, "recipe": { "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.3", "deps": [] @@ -6611,7 +6645,7 @@ }, "recipe": { "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -6627,7 +6661,7 @@ }, "recipe": { "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [ @@ -6643,7 +6677,7 @@ }, "recipe": { "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -6659,7 +6693,7 @@ }, "recipe": { "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.9", "deps": [ @@ -6675,7 +6709,7 @@ }, "recipe": { "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -6689,7 +6723,7 @@ }, "recipe": { "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -6705,7 +6739,7 @@ }, "recipe": { "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -6723,7 +6757,7 @@ }, "recipe": { "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.4", "deps": [] @@ -6737,7 +6771,7 @@ }, "recipe": { "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -6751,7 +6785,7 @@ }, "recipe": { "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -6765,7 +6799,7 @@ }, "recipe": { "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [ @@ -6781,7 +6815,7 @@ }, "recipe": { "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -6798,7 +6832,7 @@ }, "recipe": { "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -6812,7 +6846,7 @@ }, "recipe": { "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [] @@ -6825,7 +6859,7 @@ }, "recipe": { "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -6839,7 +6873,7 @@ }, "recipe": { "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -6853,7 +6887,7 @@ }, "recipe": { "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [] @@ -6867,7 +6901,7 @@ }, "recipe": { "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -6883,7 +6917,7 @@ }, "recipe": { "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [] @@ -6897,7 +6931,7 @@ }, "recipe": { "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.0", "deps": [ @@ -6914,7 +6948,7 @@ }, "recipe": { "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.11.2", "deps": [ @@ -6930,7 +6964,7 @@ }, "recipe": { "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10.0", "deps": [] @@ -6944,7 +6978,7 @@ }, "recipe": { "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [ @@ -6962,7 +6996,7 @@ }, "recipe": { "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.22", "deps": [ @@ -6979,7 +7013,7 @@ }, "recipe": { "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.28", "deps": [] @@ -6992,7 +7026,7 @@ }, "recipe": { "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7005,7 +7039,7 @@ }, "recipe": { "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7019,7 +7053,7 @@ }, "recipe": { "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -7033,7 +7067,7 @@ }, "recipe": { "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [] @@ -7047,7 +7081,7 @@ }, "recipe": { "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.9.0", "deps": [] @@ -7061,7 +7095,7 @@ }, "recipe": { "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -7080,7 +7114,7 @@ }, "recipe": { "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7094,7 +7128,7 @@ }, "recipe": { "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [ @@ -7109,7 +7143,7 @@ }, "recipe": { "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7123,7 +7157,7 @@ }, "recipe": { "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -7141,7 +7175,7 @@ }, "recipe": { "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [] @@ -7155,7 +7189,7 @@ }, "recipe": { "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -7168,7 +7202,7 @@ }, "recipe": { "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7182,7 +7216,7 @@ }, "recipe": { "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -7199,7 +7233,7 @@ }, "recipe": { "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [] @@ -7213,7 +7247,7 @@ }, "recipe": { "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.0.0", "deps": [] @@ -7222,12 +7256,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/Andersbakken/rtags.git", - "sha256": "40f8d8987341fa3dc1c5ea96d8d4049044843a7bda3624187457c929b7fb1cee", + "sha256": "b0120b123c7e6e68100a84e4f1520986754e8ba10b2078702a618eb82774c1e7", "rev": "ba85598841648490e64246be802fc2dcdd45bc3c" }, "recipe": { "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -7241,7 +7275,7 @@ }, "recipe": { "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.2", "deps": [ @@ -7259,7 +7293,7 @@ }, "recipe": { "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -7277,7 +7311,7 @@ }, "recipe": { "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.11", "deps": [ @@ -7293,7 +7327,7 @@ }, "recipe": { "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7307,7 +7341,7 @@ }, "recipe": { "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.0", "deps": [ @@ -7326,7 +7360,7 @@ }, "recipe": { "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.14.3", "deps": [ @@ -7344,7 +7378,7 @@ }, "recipe": { "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7358,7 +7392,7 @@ }, "recipe": { "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1", "deps": [ @@ -7376,7 +7410,7 @@ }, "recipe": { "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.1", "deps": [] @@ -7389,7 +7423,7 @@ }, "recipe": { "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7403,7 +7437,7 @@ }, "recipe": { "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -7422,7 +7456,7 @@ }, "recipe": { "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.4", "deps": [ @@ -7441,7 +7475,7 @@ }, "recipe": { "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -7455,7 +7489,7 @@ }, "recipe": { "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -7475,7 +7509,7 @@ }, "recipe": { "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -7489,7 +7523,7 @@ }, "recipe": { "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -7505,7 +7539,7 @@ }, "recipe": { "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -7521,7 +7555,7 @@ }, "recipe": { "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -7537,7 +7571,7 @@ }, "recipe": { "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [ @@ -7553,7 +7587,7 @@ }, "recipe": { "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -7570,7 +7604,7 @@ }, "recipe": { "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -7588,7 +7622,7 @@ }, "recipe": { "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [] @@ -7602,7 +7636,7 @@ }, "recipe": { "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -7616,7 +7650,7 @@ }, "recipe": { "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [] @@ -7630,7 +7664,7 @@ }, "recipe": { "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1", "deps": [] @@ -7644,7 +7678,7 @@ }, "recipe": { "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -7662,7 +7696,7 @@ }, "recipe": { "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.3", "deps": [ @@ -7679,7 +7713,7 @@ }, "recipe": { "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -7690,13 +7724,13 @@ "swbuff": { "fetch": { "tag": "fetchcvs", - "cvsRoot": ":pserver:anonymous@emhacks.cvs.sourceforge.net:/cvsroot/emhacks", "module": "emhacks/swbuff.el", + "cvsRoot": ":pserver:anonymous@emhacks.cvs.sourceforge.net:/cvsroot/emhacks", "sha256": "c579839fb395f1f778683324269269ca3d916995177804ca5dff3548007ec4b5" }, "recipe": { "sha256": "1p4jj2ikhfp56d9iai1n1x2ggf1nsfkrhfnggbvk4zb0d2wy3l44", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7710,7 +7744,7 @@ }, "recipe": { "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [] @@ -7724,7 +7758,7 @@ }, "recipe": { "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [] @@ -7738,7 +7772,7 @@ }, "recipe": { "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [ @@ -7754,7 +7788,7 @@ }, "recipe": { "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "13.10", "deps": [] @@ -7767,7 +7801,7 @@ }, "recipe": { "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7781,7 +7815,7 @@ }, "recipe": { "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -7798,7 +7832,7 @@ }, "recipe": { "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.8", "deps": [] @@ -7812,7 +7846,7 @@ }, "recipe": { "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -7828,7 +7862,7 @@ }, "recipe": { "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -7842,7 +7876,7 @@ }, "recipe": { "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.2", "deps": [ @@ -7857,7 +7891,7 @@ }, "recipe": { "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7871,7 +7905,7 @@ }, "recipe": { "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -7888,7 +7922,7 @@ }, "recipe": { "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.1", "deps": [] @@ -7902,7 +7936,7 @@ }, "recipe": { "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -7916,7 +7950,7 @@ }, "recipe": { "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -7936,7 +7970,7 @@ }, "recipe": { "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -7952,7 +7986,7 @@ }, "recipe": { "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -7966,7 +8000,7 @@ }, "recipe": { "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -7983,7 +8017,7 @@ }, "recipe": { "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -7999,7 +8033,7 @@ }, "recipe": { "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -8013,7 +8047,7 @@ }, "recipe": { "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [ @@ -8030,7 +8064,7 @@ }, "recipe": { "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.4", "deps": [] @@ -8044,7 +8078,7 @@ }, "recipe": { "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -8060,7 +8094,7 @@ }, "recipe": { "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -8073,7 +8107,7 @@ }, "recipe": { "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -8087,7 +8121,7 @@ }, "recipe": { "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -8103,7 +8137,7 @@ }, "recipe": { "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -8117,7 +8151,7 @@ }, "recipe": { "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -8133,7 +8167,7 @@ }, "recipe": { "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.8", "deps": [] @@ -8147,7 +8181,7 @@ }, "recipe": { "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [ @@ -8163,7 +8197,7 @@ }, "recipe": { "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [] @@ -8177,7 +8211,7 @@ }, "recipe": { "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [ @@ -8194,7 +8228,7 @@ }, "recipe": { "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -8215,7 +8249,7 @@ }, "recipe": { "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2", "deps": [] @@ -8229,7 +8263,7 @@ }, "recipe": { "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "13", "deps": [] @@ -8243,7 +8277,7 @@ }, "recipe": { "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [] @@ -8257,7 +8291,7 @@ }, "recipe": { "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -8271,7 +8305,7 @@ }, "recipe": { "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [ @@ -8288,7 +8322,7 @@ }, "recipe": { "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -8303,7 +8337,7 @@ }, "recipe": { "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -8317,7 +8351,7 @@ }, "recipe": { "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.21", "deps": [] @@ -8331,7 +8365,7 @@ }, "recipe": { "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -8348,7 +8382,7 @@ }, "recipe": { "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -8367,7 +8401,7 @@ }, "recipe": { "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -8381,7 +8415,7 @@ }, "recipe": { "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.4", "deps": [ @@ -8398,7 +8432,7 @@ }, "recipe": { "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.2", "deps": [] @@ -8412,7 +8446,7 @@ }, "recipe": { "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.2", "deps": [] @@ -8426,7 +8460,7 @@ }, "recipe": { "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [ @@ -8442,7 +8476,7 @@ }, "recipe": { "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.0", "deps": [ @@ -8465,7 +8499,7 @@ }, "recipe": { "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6", "deps": [ @@ -8482,7 +8516,7 @@ }, "recipe": { "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.0", "deps": [ @@ -8501,7 +8535,7 @@ }, "recipe": { "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.1", "deps": [ @@ -8518,7 +8552,7 @@ }, "recipe": { "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -8532,7 +8566,7 @@ }, "recipe": { "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -8546,7 +8580,7 @@ }, "recipe": { "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -8560,7 +8594,7 @@ }, "recipe": { "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "7.1.0", "deps": [] @@ -8569,12 +8603,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tjarvstrand/edts.git", - "sha256": "3cb76a6815d0445dc3c62f3a45c5200663f6e30d9ad69e9f3d643c0f2d2a66ae", + "sha256": "f76caf8ffd4677d6f3298f2ba53de5799b51646c90bcf7828bb064e2951821a4", "rev": "61855db6f1315ea45f97ed95b47a3f182ec4c6be" }, "recipe": { "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -8588,7 +8622,7 @@ }, "recipe": { "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -8605,7 +8639,7 @@ }, "recipe": { "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -8621,7 +8655,7 @@ }, "recipe": { "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [ @@ -8637,7 +8671,7 @@ }, "recipe": { "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -8653,7 +8687,7 @@ }, "recipe": { "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10", "deps": [] @@ -8667,7 +8701,7 @@ }, "recipe": { "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.2", "deps": [ @@ -8683,7 +8717,7 @@ }, "recipe": { "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -8697,7 +8731,7 @@ }, "recipe": { "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "5.0.1", "deps": [ @@ -8713,7 +8747,7 @@ }, "recipe": { "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.18.1", "deps": [ @@ -8729,7 +8763,7 @@ }, "recipe": { "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.1", "deps": [ @@ -8747,7 +8781,7 @@ }, "recipe": { "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -8763,7 +8797,7 @@ }, "recipe": { "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -8777,7 +8811,7 @@ }, "recipe": { "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -8794,7 +8828,7 @@ }, "recipe": { "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -8810,7 +8844,7 @@ }, "recipe": { "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -8829,7 +8863,7 @@ }, "recipe": { "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.25.1", "deps": [] @@ -8843,7 +8877,7 @@ }, "recipe": { "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13.3", "deps": [ @@ -8859,7 +8893,7 @@ }, "recipe": { "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [] @@ -8873,7 +8907,7 @@ }, "recipe": { "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.2", "deps": [ @@ -8890,7 +8924,7 @@ }, "recipe": { "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -8907,7 +8941,7 @@ }, "recipe": { "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140303.946", "deps": [ @@ -8923,7 +8957,7 @@ }, "recipe": { "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -8939,7 +8973,7 @@ }, "recipe": { "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "6.3", "deps": [] @@ -8952,7 +8986,7 @@ }, "recipe": { "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -8965,7 +8999,7 @@ }, "recipe": { "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -8979,7 +9013,7 @@ }, "recipe": { "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.2", "deps": [] @@ -8993,7 +9027,7 @@ }, "recipe": { "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -9007,7 +9041,7 @@ }, "recipe": { "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.6", "deps": [] @@ -9021,7 +9055,7 @@ }, "recipe": { "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -9037,7 +9071,7 @@ }, "recipe": { "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9051,7 +9085,7 @@ }, "recipe": { "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [ @@ -9069,7 +9103,7 @@ }, "recipe": { "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -9085,7 +9119,7 @@ }, "recipe": { "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4", "deps": [ @@ -9101,7 +9135,7 @@ }, "recipe": { "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [ @@ -9117,7 +9151,7 @@ }, "recipe": { "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -9131,7 +9165,7 @@ }, "recipe": { "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10.2", "deps": [] @@ -9145,7 +9179,7 @@ }, "recipe": { "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -9159,7 +9193,7 @@ }, "recipe": { "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1", "deps": [ @@ -9175,7 +9209,7 @@ }, "recipe": { "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.2", "deps": [ @@ -9192,7 +9226,7 @@ }, "recipe": { "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.8", "deps": [ @@ -9208,7 +9242,7 @@ }, "recipe": { "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.17.0", "deps": [] @@ -9222,7 +9256,7 @@ }, "recipe": { "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.1", "deps": [ @@ -9238,7 +9272,7 @@ }, "recipe": { "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -9255,7 +9289,7 @@ }, "recipe": { "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -9271,7 +9305,7 @@ }, "recipe": { "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -9287,7 +9321,7 @@ }, "recipe": { "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9301,7 +9335,7 @@ }, "recipe": { "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -9319,7 +9353,7 @@ }, "recipe": { "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6", "deps": [ @@ -9336,7 +9370,7 @@ }, "recipe": { "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9350,7 +9384,7 @@ }, "recipe": { "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [] @@ -9363,7 +9397,7 @@ }, "recipe": { "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9377,7 +9411,7 @@ }, "recipe": { "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -9391,7 +9425,7 @@ }, "recipe": { "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.10", "deps": [ @@ -9408,7 +9442,7 @@ }, "recipe": { "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6", "deps": [] @@ -9422,7 +9456,7 @@ }, "recipe": { "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -9439,7 +9473,7 @@ }, "recipe": { "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -9453,7 +9487,7 @@ }, "recipe": { "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -9470,7 +9504,7 @@ }, "recipe": { "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9484,7 +9518,7 @@ }, "recipe": { "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -9504,7 +9538,7 @@ }, "recipe": { "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -9522,7 +9556,7 @@ }, "recipe": { "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.46", "deps": [ @@ -9540,7 +9574,7 @@ }, "recipe": { "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -9554,7 +9588,7 @@ }, "recipe": { "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -9572,7 +9606,7 @@ }, "recipe": { "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [ @@ -9589,7 +9623,7 @@ }, "recipe": { "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.0", "deps": [] @@ -9603,7 +9637,7 @@ }, "recipe": { "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -9618,7 +9652,7 @@ }, "recipe": { "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9631,7 +9665,7 @@ }, "recipe": { "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -9646,7 +9680,7 @@ }, "recipe": { "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9660,7 +9694,7 @@ }, "recipe": { "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -9677,7 +9711,7 @@ }, "recipe": { "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9691,7 +9725,7 @@ }, "recipe": { "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.9", "deps": [ @@ -9704,12 +9738,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/the-lambda-church/merlin.git", - "sha256": "590bc08a6476a92c16aaa6b173bd3440fc144970cff7e92cb781a9b432674622", + "sha256": "a026a3f80427f49d3db66fbd9c94b32b50f0b586ade0c9fb5a0cad49eca5d9c3", "rev": "6f9915e0d87bf721ea2859ffa17d3fbeeabcfb9d" }, "recipe": { "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.1", "deps": [] @@ -9723,7 +9757,7 @@ }, "recipe": { "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -9741,7 +9775,7 @@ }, "recipe": { "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.2", "deps": [] @@ -9755,7 +9789,7 @@ }, "recipe": { "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -9768,7 +9802,7 @@ }, "recipe": { "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9782,7 +9816,7 @@ }, "recipe": { "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3", "deps": [] @@ -9796,7 +9830,7 @@ }, "recipe": { "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -9810,7 +9844,7 @@ }, "recipe": { "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -9826,7 +9860,7 @@ }, "recipe": { "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10", "deps": [ @@ -9846,7 +9880,7 @@ }, "recipe": { "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "04b", "deps": [] @@ -9860,7 +9894,7 @@ }, "recipe": { "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10.1", "deps": [] @@ -9873,7 +9907,7 @@ }, "recipe": { "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -9887,7 +9921,7 @@ }, "recipe": { "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -9901,7 +9935,7 @@ }, "recipe": { "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.2", "deps": [ @@ -9917,7 +9951,7 @@ }, "recipe": { "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -9931,7 +9965,7 @@ }, "recipe": { "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [ @@ -9950,7 +9984,7 @@ }, "recipe": { "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6", "deps": [ @@ -9970,7 +10004,7 @@ }, "recipe": { "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -9986,7 +10020,7 @@ }, "recipe": { "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10000,7 +10034,7 @@ }, "recipe": { "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.32", "deps": [] @@ -10014,7 +10048,7 @@ }, "recipe": { "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -10030,7 +10064,7 @@ }, "recipe": { "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.3", "deps": [ @@ -10046,7 +10080,7 @@ }, "recipe": { "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6", "deps": [] @@ -10060,7 +10094,7 @@ }, "recipe": { "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.6", "deps": [] @@ -10074,7 +10108,7 @@ }, "recipe": { "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -10088,7 +10122,7 @@ }, "recipe": { "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.6.1", "deps": [] @@ -10102,7 +10136,7 @@ }, "recipe": { "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -10118,7 +10152,7 @@ }, "recipe": { "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -10134,7 +10168,7 @@ }, "recipe": { "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [ @@ -10149,7 +10183,7 @@ }, "recipe": { "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10162,7 +10196,7 @@ }, "recipe": { "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10175,7 +10209,7 @@ }, "recipe": { "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10189,7 +10223,7 @@ }, "recipe": { "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.6", "deps": [ @@ -10205,7 +10239,7 @@ }, "recipe": { "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10", "deps": [ @@ -10221,7 +10255,7 @@ }, "recipe": { "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -10244,7 +10278,7 @@ }, "recipe": { "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -10260,7 +10294,7 @@ }, "recipe": { "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [] @@ -10274,7 +10308,7 @@ }, "recipe": { "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [] @@ -10288,7 +10322,7 @@ }, "recipe": { "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [ @@ -10303,7 +10337,7 @@ }, "recipe": { "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10317,7 +10351,7 @@ }, "recipe": { "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -10331,7 +10365,7 @@ }, "recipe": { "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.44", "deps": [] @@ -10345,7 +10379,7 @@ }, "recipe": { "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [] @@ -10359,7 +10393,7 @@ }, "recipe": { "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.20", "deps": [] @@ -10373,7 +10407,7 @@ }, "recipe": { "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -10390,7 +10424,7 @@ }, "recipe": { "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -10404,7 +10438,7 @@ }, "recipe": { "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.8", "deps": [ @@ -10421,7 +10455,7 @@ }, "recipe": { "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -10435,7 +10469,7 @@ }, "recipe": { "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0", "deps": [] @@ -10448,7 +10482,7 @@ }, "recipe": { "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10462,7 +10496,7 @@ }, "recipe": { "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.13.3", "deps": [ @@ -10479,7 +10513,7 @@ }, "recipe": { "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -10493,7 +10527,7 @@ }, "recipe": { "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10.0", "deps": [ @@ -10509,7 +10543,7 @@ }, "recipe": { "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -10526,7 +10560,7 @@ }, "recipe": { "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -10542,7 +10576,7 @@ }, "recipe": { "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2", "deps": [ @@ -10558,7 +10592,7 @@ }, "recipe": { "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -10576,7 +10610,7 @@ }, "recipe": { "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -10591,7 +10625,7 @@ }, "recipe": { "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10605,7 +10639,7 @@ }, "recipe": { "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.3", "deps": [ @@ -10620,7 +10654,7 @@ }, "recipe": { "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10633,7 +10667,7 @@ }, "recipe": { "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -10649,7 +10683,7 @@ }, "recipe": { "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13", "deps": [ @@ -10666,7 +10700,7 @@ }, "recipe": { "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -10683,7 +10717,7 @@ }, "recipe": { "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.11", "deps": [ @@ -10699,7 +10733,7 @@ }, "recipe": { "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10713,7 +10747,7 @@ }, "recipe": { "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -10730,7 +10764,7 @@ }, "recipe": { "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.8.0b1", "deps": [] @@ -10744,7 +10778,7 @@ }, "recipe": { "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -10757,7 +10791,7 @@ }, "recipe": { "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10771,7 +10805,7 @@ }, "recipe": { "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.2", "deps": [ @@ -10787,7 +10821,7 @@ }, "recipe": { "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -10803,7 +10837,7 @@ }, "recipe": { "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.1", "deps": [ @@ -10819,7 +10853,7 @@ }, "recipe": { "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6", "deps": [] @@ -10833,7 +10867,7 @@ }, "recipe": { "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.4", "deps": [ @@ -10851,7 +10885,7 @@ }, "recipe": { "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [ @@ -10866,7 +10900,7 @@ }, "recipe": { "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10880,7 +10914,7 @@ }, "recipe": { "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -10897,7 +10931,7 @@ }, "recipe": { "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -10912,7 +10946,7 @@ }, "recipe": { "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -10926,7 +10960,7 @@ }, "recipe": { "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10", "deps": [] @@ -10940,7 +10974,7 @@ }, "recipe": { "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [] @@ -10954,7 +10988,7 @@ }, "recipe": { "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -10968,7 +11002,7 @@ }, "recipe": { "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [] @@ -10982,7 +11016,7 @@ }, "recipe": { "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -10996,7 +11030,7 @@ }, "recipe": { "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -11014,7 +11048,7 @@ }, "recipe": { "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -11030,7 +11064,7 @@ }, "recipe": { "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.5", "deps": [] @@ -11044,7 +11078,7 @@ }, "recipe": { "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.3", "deps": [ @@ -11059,7 +11093,7 @@ }, "recipe": { "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -11073,7 +11107,7 @@ }, "recipe": { "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [] @@ -11087,7 +11121,7 @@ }, "recipe": { "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.1", "deps": [] @@ -11101,7 +11135,7 @@ }, "recipe": { "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.13", "deps": [] @@ -11115,7 +11149,7 @@ }, "recipe": { "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [] @@ -11129,7 +11163,7 @@ }, "recipe": { "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [ @@ -11146,7 +11180,7 @@ }, "recipe": { "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -11160,7 +11194,7 @@ }, "recipe": { "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -11174,7 +11208,7 @@ }, "recipe": { "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [] @@ -11188,7 +11222,7 @@ }, "recipe": { "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.12.1", "deps": [ @@ -11205,7 +11239,7 @@ }, "recipe": { "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.70", "deps": [ @@ -11223,7 +11257,7 @@ }, "recipe": { "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.2", "deps": [ @@ -11239,7 +11273,7 @@ }, "recipe": { "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [] @@ -11253,7 +11287,7 @@ }, "recipe": { "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -11267,7 +11301,7 @@ }, "recipe": { "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.2", "deps": [ @@ -11287,7 +11321,7 @@ }, "recipe": { "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -11304,7 +11338,7 @@ }, "recipe": { "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [ @@ -11323,7 +11357,7 @@ }, "recipe": { "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -11341,7 +11375,7 @@ }, "recipe": { "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -11358,7 +11392,7 @@ }, "recipe": { "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -11375,7 +11409,7 @@ }, "recipe": { "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [] @@ -11389,7 +11423,7 @@ }, "recipe": { "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.9", "deps": [ @@ -11405,7 +11439,7 @@ }, "recipe": { "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -11419,7 +11453,7 @@ }, "recipe": { "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.8.1", "deps": [] @@ -11433,7 +11467,7 @@ }, "recipe": { "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.6", "deps": [] @@ -11447,7 +11481,7 @@ }, "recipe": { "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -11466,7 +11500,7 @@ }, "recipe": { "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.92", "deps": [] @@ -11480,7 +11514,7 @@ }, "recipe": { "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -11496,7 +11530,7 @@ }, "recipe": { "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.3", "deps": [ @@ -11513,7 +11547,7 @@ }, "recipe": { "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -11527,7 +11561,7 @@ }, "recipe": { "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.2", "deps": [ @@ -11544,7 +11578,7 @@ }, "recipe": { "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -11560,7 +11594,7 @@ }, "recipe": { "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [] @@ -11574,7 +11608,7 @@ }, "recipe": { "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -11588,7 +11622,7 @@ }, "recipe": { "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150723.0", "deps": [ @@ -11605,7 +11639,7 @@ }, "recipe": { "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -11619,7 +11653,7 @@ }, "recipe": { "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -11635,7 +11669,7 @@ }, "recipe": { "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -11649,7 +11683,7 @@ }, "recipe": { "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -11667,7 +11701,7 @@ }, "recipe": { "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -11681,7 +11715,7 @@ }, "recipe": { "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.1", "deps": [ @@ -11698,7 +11732,7 @@ }, "recipe": { "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [] @@ -11712,7 +11746,7 @@ }, "recipe": { "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -11731,7 +11765,7 @@ }, "recipe": { "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -11749,7 +11783,7 @@ }, "recipe": { "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -11763,7 +11797,7 @@ }, "recipe": { "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0", "deps": [ @@ -11779,7 +11813,7 @@ }, "recipe": { "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -11793,7 +11827,7 @@ }, "recipe": { "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -11807,7 +11841,7 @@ }, "recipe": { "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13.0", "deps": [ @@ -11826,7 +11860,7 @@ }, "recipe": { "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.5", "deps": [] @@ -11840,7 +11874,7 @@ }, "recipe": { "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -11859,7 +11893,7 @@ }, "recipe": { "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.2", "deps": [] @@ -11873,7 +11907,7 @@ }, "recipe": { "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.0", "deps": [ @@ -11888,7 +11922,7 @@ }, "recipe": { "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -11902,7 +11936,7 @@ }, "recipe": { "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -11918,7 +11952,7 @@ }, "recipe": { "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.4", "deps": [] @@ -11932,7 +11966,7 @@ }, "recipe": { "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [] @@ -11941,12 +11975,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "62a355528a4ebc5372e37fe82287322ae8d335ee901da6122370be827bb159bd", + "sha256": "aea707d4ea0911a3232dfa42b704381f3a96b8584faec048acafd32ff0afa108", "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" }, "recipe": { "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0", "deps": [ @@ -11962,7 +11996,7 @@ }, "recipe": { "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -11979,7 +12013,7 @@ }, "recipe": { "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3", "deps": [] @@ -11992,7 +12026,7 @@ }, "recipe": { "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12006,7 +12040,7 @@ }, "recipe": { "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.29", "deps": [] @@ -12020,7 +12054,7 @@ }, "recipe": { "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [] @@ -12034,7 +12068,7 @@ }, "recipe": { "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.2", "deps": [] @@ -12048,7 +12082,7 @@ }, "recipe": { "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -12064,7 +12098,7 @@ }, "recipe": { "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -12080,7 +12114,7 @@ }, "recipe": { "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [ @@ -12095,7 +12129,7 @@ }, "recipe": { "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12109,7 +12143,7 @@ }, "recipe": { "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [] @@ -12122,7 +12156,7 @@ }, "recipe": { "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12136,7 +12170,7 @@ }, "recipe": { "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.12", "deps": [ @@ -12152,7 +12186,7 @@ }, "recipe": { "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1", "deps": [] @@ -12166,7 +12200,7 @@ }, "recipe": { "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -12181,7 +12215,7 @@ }, "recipe": { "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12195,7 +12229,7 @@ }, "recipe": { "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [] @@ -12209,7 +12243,7 @@ }, "recipe": { "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [] @@ -12222,7 +12256,7 @@ }, "recipe": { "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12236,7 +12270,7 @@ }, "recipe": { "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [ @@ -12252,7 +12286,7 @@ }, "recipe": { "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -12270,7 +12304,7 @@ }, "recipe": { "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -12284,7 +12318,7 @@ }, "recipe": { "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -12301,7 +12335,7 @@ }, "recipe": { "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12315,7 +12349,7 @@ }, "recipe": { "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -12331,7 +12365,7 @@ }, "recipe": { "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.0.18", "deps": [ @@ -12347,7 +12381,7 @@ }, "recipe": { "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -12362,7 +12396,7 @@ }, "recipe": { "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12376,7 +12410,7 @@ }, "recipe": { "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -12392,7 +12426,7 @@ }, "recipe": { "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.7", "deps": [] @@ -12401,14 +12435,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/juanjux/evil-search-highlight-persist.git", - "sha256": "92ce9e360c2e386702bba7f55c604c8fed7d3f75ac2a5d28a60949f1ec831ca1", - "rev": "c563a05de36bb06f5385848aa3b1dae5ebd3d2cd" + "sha256": "d31ff1cc55b9c39d5220c658a14ee00d365f4caaf7d289fa4a8c81dad214d1c9", + "rev": "0e2b3d4e3dec5f38ae95f62519eb2736f73c0b85" }, "recipe": { "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "1.6", + "version": "1.8", "deps": [ "highlight" ] @@ -12422,7 +12456,7 @@ }, "recipe": { "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.2", "deps": [ @@ -12441,7 +12475,7 @@ }, "recipe": { "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12455,7 +12489,7 @@ }, "recipe": { "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -12469,7 +12503,7 @@ }, "recipe": { "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -12483,7 +12517,7 @@ }, "recipe": { "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.11", "deps": [ @@ -12500,7 +12534,7 @@ }, "recipe": { "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -12518,7 +12552,7 @@ }, "recipe": { "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.8", "deps": [ @@ -12535,7 +12569,7 @@ }, "recipe": { "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -12551,7 +12585,7 @@ }, "recipe": { "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.2", "deps": [ @@ -12567,7 +12601,7 @@ }, "recipe": { "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.2", "deps": [] @@ -12581,7 +12615,7 @@ }, "recipe": { "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -12598,7 +12632,7 @@ }, "recipe": { "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -12616,7 +12650,7 @@ }, "recipe": { "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4", "deps": [ @@ -12632,7 +12666,7 @@ }, "recipe": { "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.1", "deps": [] @@ -12646,7 +12680,7 @@ }, "recipe": { "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -12662,7 +12696,7 @@ }, "recipe": { "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -12678,7 +12712,7 @@ }, "recipe": { "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [] @@ -12692,7 +12726,7 @@ }, "recipe": { "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -12708,7 +12742,7 @@ }, "recipe": { "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -12725,7 +12759,7 @@ }, "recipe": { "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -12740,7 +12774,7 @@ }, "recipe": { "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12754,7 +12788,7 @@ }, "recipe": { "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5", "deps": [] @@ -12768,7 +12802,7 @@ }, "recipe": { "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [] @@ -12782,7 +12816,7 @@ }, "recipe": { "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -12802,7 +12836,7 @@ }, "recipe": { "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4", "deps": [ @@ -12818,7 +12852,7 @@ }, "recipe": { "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -12832,7 +12866,7 @@ }, "recipe": { "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.10", "deps": [ @@ -12848,7 +12882,7 @@ }, "recipe": { "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12862,7 +12896,7 @@ }, "recipe": { "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.5", "deps": [] @@ -12876,7 +12910,7 @@ }, "recipe": { "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1", "deps": [] @@ -12889,7 +12923,7 @@ }, "recipe": { "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12903,7 +12937,7 @@ }, "recipe": { "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -12919,7 +12953,7 @@ }, "recipe": { "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.12", "deps": [ @@ -12936,7 +12970,7 @@ }, "recipe": { "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -12950,7 +12984,7 @@ }, "recipe": { "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -12966,7 +13000,7 @@ }, "recipe": { "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -12983,7 +13017,7 @@ }, "recipe": { "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -12992,12 +13026,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/eschulte/rinari.git", - "sha256": "e5d04f3d22216ff7a1abedddf324b5d84b6ae74b02d019a5e4c3490e3c5bf9c8", + "sha256": "897d16725048e216a432bf3beec17dc5d3975a3bcc09e4230b7569c4ce760fb8", "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" }, "recipe": { "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.11", "deps": [ @@ -13007,20 +13041,6 @@ "ruby-mode" ] }, - "seq": { - "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/seq.el.git", - "sha256": "34530414c3bf71a8d9466e9378ad6963540573acf45dfe13408b50e9abfab053", - "rev": "ff8083a29b7e0a3686ded17d35c2aa839e8489e4" - }, - "recipe": { - "sha256": "1a4ldmaqsd0jjgcyqwpyklj306xlnfqh2gg44vjlwp95m4aqv58l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" - }, - "version": "1.11", - "deps": [] - }, "ucs-utils": { "fetch": { "tag": "fetchgit", @@ -13030,7 +13050,7 @@ }, "recipe": { "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.4", "deps": [ @@ -13048,7 +13068,7 @@ }, "recipe": { "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.2", "deps": [ @@ -13064,7 +13084,7 @@ }, "recipe": { "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -13078,7 +13098,7 @@ }, "recipe": { "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.5.10", "deps": [] @@ -13092,7 +13112,7 @@ }, "recipe": { "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -13108,7 +13128,7 @@ }, "recipe": { "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13122,7 +13142,7 @@ }, "recipe": { "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -13136,7 +13156,7 @@ }, "recipe": { "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.3", "deps": [] @@ -13150,7 +13170,7 @@ }, "recipe": { "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -13164,7 +13184,7 @@ }, "recipe": { "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.4", "deps": [ @@ -13180,7 +13200,7 @@ }, "recipe": { "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.48", "deps": [ @@ -13197,7 +13217,7 @@ }, "recipe": { "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -13212,7 +13232,7 @@ }, "recipe": { "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13225,7 +13245,7 @@ }, "recipe": { "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13239,7 +13259,7 @@ }, "recipe": { "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.4.1", "deps": [] @@ -13252,7 +13272,7 @@ }, "recipe": { "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -13268,7 +13288,7 @@ }, "recipe": { "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -13282,7 +13302,7 @@ }, "recipe": { "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.9", "deps": [ @@ -13298,7 +13318,7 @@ }, "recipe": { "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13312,7 +13332,7 @@ }, "recipe": { "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.0", "deps": [] @@ -13326,7 +13346,7 @@ }, "recipe": { "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [] @@ -13340,7 +13360,7 @@ }, "recipe": { "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [] @@ -13354,7 +13374,7 @@ }, "recipe": { "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2", "deps": [] @@ -13368,7 +13388,7 @@ }, "recipe": { "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [] @@ -13382,7 +13402,7 @@ }, "recipe": { "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -13401,7 +13421,7 @@ }, "recipe": { "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -13415,7 +13435,7 @@ }, "recipe": { "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [ @@ -13431,7 +13451,7 @@ }, "recipe": { "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6", "deps": [ @@ -13447,7 +13467,7 @@ }, "recipe": { "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2015.11.29", "deps": [] @@ -13461,7 +13481,7 @@ }, "recipe": { "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -13478,7 +13498,7 @@ }, "recipe": { "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13492,7 +13512,7 @@ }, "recipe": { "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -13506,7 +13526,7 @@ }, "recipe": { "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -13522,7 +13542,7 @@ }, "recipe": { "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -13538,7 +13558,7 @@ }, "recipe": { "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [] @@ -13552,7 +13572,7 @@ }, "recipe": { "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -13565,7 +13585,7 @@ }, "recipe": { "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13579,7 +13599,7 @@ }, "recipe": { "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -13597,7 +13617,7 @@ }, "recipe": { "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -13614,7 +13634,7 @@ }, "recipe": { "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -13628,7 +13648,7 @@ }, "recipe": { "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [ @@ -13644,7 +13664,7 @@ }, "recipe": { "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -13660,7 +13680,7 @@ }, "recipe": { "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [] @@ -13674,7 +13694,7 @@ }, "recipe": { "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -13690,7 +13710,7 @@ }, "recipe": { "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.7", "deps": [ @@ -13708,7 +13728,7 @@ }, "recipe": { "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [ @@ -13720,14 +13740,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/TheBB/spaceline.git", - "sha256": "b3d6e4aec5eacc2f489b9170c22043e08882ab480643d14860ad45f9e6809e39", - "rev": "3990442b0b1f4f5975ae1bba3248fd89d4b5dff8" + "sha256": "91c54a898a0c631c2cc0e1e6cf5c9480a3fcd90209891fb490593d4105418e0f", + "rev": "2cc31a94b8b8c3eefc81ab409071365d120d2535" }, "recipe": { "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "1.0.1", + "version": "1.0.2", "deps": [ "cl-lib", "dash", @@ -13745,7 +13765,7 @@ }, "recipe": { "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [] @@ -13759,7 +13779,7 @@ }, "recipe": { "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [] @@ -13773,7 +13793,7 @@ }, "recipe": { "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -13787,7 +13807,7 @@ }, "recipe": { "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.6", "deps": [] @@ -13801,7 +13821,7 @@ }, "recipe": { "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10", "deps": [ @@ -13816,7 +13836,7 @@ }, "recipe": { "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -13830,7 +13850,7 @@ }, "recipe": { "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.2", "deps": [] @@ -13844,7 +13864,7 @@ }, "recipe": { "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.7", "deps": [ @@ -13861,7 +13881,7 @@ }, "recipe": { "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.20131027", "deps": [] @@ -13875,7 +13895,7 @@ }, "recipe": { "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -13889,7 +13909,7 @@ }, "recipe": { "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -13898,12 +13918,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "fccbe0a69f8c84a3594ab0fe8a02f36ad5f46c14e7d5debbfb75befa802881e3", + "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.7", "deps": [ @@ -13921,7 +13941,7 @@ }, "recipe": { "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.1", "deps": [ @@ -13944,7 +13964,7 @@ }, "recipe": { "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1", "deps": [] @@ -13958,7 +13978,7 @@ }, "recipe": { "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -13972,7 +13992,7 @@ }, "recipe": { "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.2", "deps": [] @@ -13986,7 +14006,7 @@ }, "recipe": { "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -14002,7 +14022,7 @@ }, "recipe": { "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14016,7 +14036,7 @@ }, "recipe": { "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.25.20130814", "deps": [] @@ -14030,7 +14050,7 @@ }, "recipe": { "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -14050,7 +14070,7 @@ }, "recipe": { "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -14066,7 +14086,7 @@ }, "recipe": { "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.6", "deps": [ @@ -14086,7 +14106,7 @@ }, "recipe": { "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14100,7 +14120,7 @@ }, "recipe": { "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -14116,7 +14136,7 @@ }, "recipe": { "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.3", "deps": [] @@ -14130,7 +14150,7 @@ }, "recipe": { "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -14148,7 +14168,7 @@ }, "recipe": { "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -14161,7 +14181,7 @@ }, "recipe": { "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -14178,7 +14198,7 @@ }, "recipe": { "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.8", "deps": [ @@ -14194,7 +14214,7 @@ }, "recipe": { "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.8", "deps": [] @@ -14208,7 +14228,7 @@ }, "recipe": { "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -14226,7 +14246,7 @@ }, "recipe": { "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.8", "deps": [ @@ -14244,7 +14264,7 @@ }, "recipe": { "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.31", "deps": [ @@ -14261,7 +14281,7 @@ }, "recipe": { "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -14277,7 +14297,7 @@ }, "recipe": { "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -14291,7 +14311,7 @@ }, "recipe": { "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.08", "deps": [ @@ -14307,7 +14327,7 @@ }, "recipe": { "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -14323,7 +14343,7 @@ }, "recipe": { "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [] @@ -14337,7 +14357,7 @@ }, "recipe": { "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.1", "deps": [ @@ -14354,7 +14374,7 @@ }, "recipe": { "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.0", "deps": [ @@ -14370,7 +14390,7 @@ }, "recipe": { "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -14389,7 +14409,7 @@ }, "recipe": { "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -14404,7 +14424,7 @@ }, "recipe": { "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14418,7 +14438,7 @@ }, "recipe": { "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.6", "deps": [ @@ -14442,7 +14462,7 @@ }, "recipe": { "sha256": "0lj91lfhiy6hwglv62bzqk2qjqg3dvwv0nff6cbv0za3zdwdj5yv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -14461,7 +14481,7 @@ }, "recipe": { "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -14475,7 +14495,7 @@ }, "recipe": { "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -14495,7 +14515,7 @@ }, "recipe": { "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -14513,7 +14533,7 @@ }, "recipe": { "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [] @@ -14527,7 +14547,7 @@ }, "recipe": { "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -14541,7 +14561,7 @@ }, "recipe": { "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.3", "deps": [] @@ -14555,7 +14575,7 @@ }, "recipe": { "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "13.16", "deps": [ @@ -14570,7 +14590,7 @@ }, "recipe": { "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14584,7 +14604,7 @@ }, "recipe": { "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -14598,7 +14618,7 @@ }, "recipe": { "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.23", "deps": [] @@ -14612,7 +14632,7 @@ }, "recipe": { "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.4", "deps": [] @@ -14625,7 +14645,7 @@ }, "recipe": { "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14638,7 +14658,7 @@ }, "recipe": { "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14652,7 +14672,7 @@ }, "recipe": { "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -14668,7 +14688,7 @@ }, "recipe": { "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14682,7 +14702,7 @@ }, "recipe": { "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -14698,7 +14718,7 @@ }, "recipe": { "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.9", "deps": [] @@ -14712,7 +14732,7 @@ }, "recipe": { "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.7", "deps": [] @@ -14725,7 +14745,7 @@ }, "recipe": { "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14739,7 +14759,7 @@ }, "recipe": { "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.96", "deps": [] @@ -14752,7 +14772,7 @@ }, "recipe": { "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14766,7 +14786,7 @@ }, "recipe": { "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.9.0", "deps": [ @@ -14784,7 +14804,7 @@ }, "recipe": { "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -14803,7 +14823,7 @@ }, "recipe": { "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.7", "deps": [ @@ -14820,7 +14840,7 @@ }, "recipe": { "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14833,7 +14853,7 @@ }, "recipe": { "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14846,7 +14866,7 @@ }, "recipe": { "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -14860,7 +14880,7 @@ }, "recipe": { "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -14874,12 +14894,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/graphene.git", - "sha256": "961ff5be2e0aa1fe05befc9293a5c8022134ddf29b4e6c12f6225ddbb2a29f54", + "sha256": "f93ea7697fdf0b0a51410903ba62e21f30e367abc147defafd3e2f32690e5233", "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" }, "recipe": { "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.5", "deps": [ @@ -14905,7 +14925,7 @@ }, "recipe": { "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -14918,12 +14938,12 @@ "fetch": { "tag": "fetchgit", "url": "git://orgmode.org/org-mode.git", - "sha256": "868656dc794d05db566b6ae0052f148a635a737c625d965d89dc036fdd12ccbf", + "sha256": "5cb84c3c4bf3f7c3e0c9ab869dababb785d44198b1e1072dc9c0937fc483aa14", "rev": "592dc2ee7e4c80b9b61efb77117c8dc22d6cefd1" }, "recipe": { "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "7.9.3e", "deps": [] @@ -14937,7 +14957,7 @@ }, "recipe": { "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.4", "deps": [] @@ -14951,7 +14971,7 @@ }, "recipe": { "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -14965,7 +14985,7 @@ }, "recipe": { "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -14981,7 +15001,7 @@ }, "recipe": { "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.4", "deps": [ @@ -14997,7 +15017,7 @@ }, "recipe": { "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -15010,7 +15030,7 @@ }, "recipe": { "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15024,7 +15044,7 @@ }, "recipe": { "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.6", "deps": [] @@ -15038,7 +15058,7 @@ }, "recipe": { "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.1", "deps": [ @@ -15054,7 +15074,7 @@ }, "recipe": { "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [] @@ -15068,7 +15088,7 @@ }, "recipe": { "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [] @@ -15082,7 +15102,7 @@ }, "recipe": { "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.3", "deps": [] @@ -15096,7 +15116,7 @@ }, "recipe": { "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [] @@ -15110,7 +15130,7 @@ }, "recipe": { "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -15128,7 +15148,7 @@ }, "recipe": { "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15142,7 +15162,7 @@ }, "recipe": { "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.17.1", "deps": [] @@ -15151,12 +15171,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/osv/ac-html-bootstrap.git", - "sha256": "641652bf1b99ef486340437500e4e9ad97321446e6cbb56e27cad22741ff7fce", + "sha256": "a37e8552f2e08a0aa5cab25bf9f81a001a6d57fc65c8fab101c1aa8146e74c4c", "rev": "591e1e996c820da218ea1eee0a500c556769f128" }, "recipe": { "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.3", "deps": [ @@ -15172,7 +15192,7 @@ }, "recipe": { "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.2", "deps": [] @@ -15186,7 +15206,7 @@ }, "recipe": { "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -15204,7 +15224,7 @@ }, "recipe": { "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -15222,7 +15242,7 @@ }, "recipe": { "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15236,7 +15256,7 @@ }, "recipe": { "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -15252,7 +15272,7 @@ }, "recipe": { "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [] @@ -15266,7 +15286,7 @@ }, "recipe": { "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.3", "deps": [] @@ -15280,7 +15300,7 @@ }, "recipe": { "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.0", "deps": [ @@ -15296,7 +15316,7 @@ }, "recipe": { "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.2", "deps": [] @@ -15310,7 +15330,7 @@ }, "recipe": { "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.3", "deps": [] @@ -15324,7 +15344,7 @@ }, "recipe": { "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -15341,7 +15361,7 @@ }, "recipe": { "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [] @@ -15355,7 +15375,7 @@ }, "recipe": { "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.5", "deps": [ @@ -15372,7 +15392,7 @@ }, "recipe": { "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15386,7 +15406,7 @@ }, "recipe": { "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [] @@ -15400,7 +15420,7 @@ }, "recipe": { "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [ @@ -15417,7 +15437,7 @@ }, "recipe": { "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -15434,7 +15454,7 @@ }, "recipe": { "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.14", "deps": [ @@ -15452,7 +15472,7 @@ }, "recipe": { "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -15466,12 +15486,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "d5afed5b0b24092c366cb57bcf7205c39f640e27186ff9b4af57b60e5a8d7aed", + "sha256": "b5854f8953ddb065c57dff2b7a13116a941eafbe9e7f19f7cf04f7d1399caf53", "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" }, "recipe": { "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -15488,7 +15508,7 @@ }, "recipe": { "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -15503,7 +15523,7 @@ }, "recipe": { "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15517,7 +15537,7 @@ }, "recipe": { "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -15533,7 +15553,7 @@ }, "recipe": { "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -15554,7 +15574,7 @@ }, "recipe": { "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.2", "deps": [ @@ -15571,7 +15591,7 @@ }, "recipe": { "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -15587,7 +15607,7 @@ }, "recipe": { "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -15601,7 +15621,7 @@ }, "recipe": { "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.0", "deps": [ @@ -15617,7 +15637,7 @@ }, "recipe": { "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15631,7 +15651,7 @@ }, "recipe": { "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [ @@ -15650,7 +15670,7 @@ }, "recipe": { "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.2", "deps": [ @@ -15666,7 +15686,7 @@ }, "recipe": { "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -15680,7 +15700,7 @@ }, "recipe": { "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -15698,7 +15718,7 @@ }, "recipe": { "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5", "deps": [ @@ -15715,7 +15735,7 @@ }, "recipe": { "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [] @@ -15729,7 +15749,7 @@ }, "recipe": { "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [ @@ -15747,7 +15767,7 @@ }, "recipe": { "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -15761,7 +15781,7 @@ }, "recipe": { "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [] @@ -15774,7 +15794,7 @@ }, "recipe": { "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15788,7 +15808,7 @@ }, "recipe": { "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [] @@ -15802,7 +15822,7 @@ }, "recipe": { "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.1", "deps": [] @@ -15816,7 +15836,7 @@ }, "recipe": { "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -15832,7 +15852,7 @@ }, "recipe": { "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.3", "deps": [ @@ -15848,7 +15868,7 @@ }, "recipe": { "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -15864,7 +15884,7 @@ }, "recipe": { "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.150707", "deps": [ @@ -15883,7 +15903,7 @@ }, "recipe": { "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -15902,7 +15922,7 @@ }, "recipe": { "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13.0", "deps": [ @@ -15919,7 +15939,7 @@ }, "recipe": { "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -15933,7 +15953,7 @@ }, "recipe": { "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.8.9", "deps": [ @@ -15950,7 +15970,7 @@ }, "recipe": { "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.25.1", "deps": [ @@ -15971,7 +15991,7 @@ }, "recipe": { "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -15980,11 +16000,11 @@ "fetch": { "tag": "fetchurl", "url": "http://www.emacswiki.org/emacs/download/dired+.el", - "sha256": "0nizzrahz0fm2w9qfnx34l3jy8nwp9vxjk3xn5sj44k7p2j11m8s" + "sha256": "0pgm5pg3z7cbrvs12fwj6g2kxm7qqq0410lsb1kpsdlgixb2yh5q" }, "recipe": { "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -15998,7 +16018,7 @@ }, "recipe": { "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -16014,7 +16034,7 @@ }, "recipe": { "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16028,7 +16048,7 @@ }, "recipe": { "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -16045,7 +16065,7 @@ }, "recipe": { "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.20", "deps": [ @@ -16060,7 +16080,7 @@ }, "recipe": { "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -16076,7 +16096,7 @@ }, "recipe": { "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -16092,7 +16112,7 @@ }, "recipe": { "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16106,7 +16126,7 @@ }, "recipe": { "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -16122,7 +16142,7 @@ }, "recipe": { "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.1", "deps": [ @@ -16139,7 +16159,7 @@ }, "recipe": { "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -16156,7 +16176,7 @@ }, "recipe": { "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -16170,7 +16190,7 @@ }, "recipe": { "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2.8", "deps": [ @@ -16187,7 +16207,7 @@ }, "recipe": { "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -16204,7 +16224,7 @@ }, "recipe": { "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -16218,7 +16238,7 @@ }, "recipe": { "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [ @@ -16229,14 +16249,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/emacsmirror/diminish.git", - "sha256": "09a8ac18ded366d54941d415e2b77b3adf6d8d5c931cdedfeef82257fee15043", - "rev": "b50752d7e2ed87e2c729ccbb82f418c2145b3983" + "sha256": "662d9ccb0608806cfc7541a9e3dea71228608b80087717db26ff6788ee73ef62", + "rev": "0211de96b7cfba9c9dc8d2d392dbd4ccdb22bc65" }, "recipe": { "sha256": "03sskxgvkj8zrkh1p6kc993609r6261q4ww9hr78kr2f2a98lj88", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "0.44", + "version": "0.45", "deps": [] }, "easy-kill-extras": { @@ -16248,7 +16268,7 @@ }, "recipe": { "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.4", "deps": [ @@ -16264,7 +16284,7 @@ }, "recipe": { "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -16279,7 +16299,7 @@ }, "recipe": { "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16293,7 +16313,7 @@ }, "recipe": { "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.7", "deps": [ @@ -16309,7 +16329,7 @@ }, "recipe": { "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -16323,7 +16343,7 @@ }, "recipe": { "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -16337,7 +16357,7 @@ }, "recipe": { "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -16353,7 +16373,7 @@ }, "recipe": { "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [] @@ -16367,7 +16387,7 @@ }, "recipe": { "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [ @@ -16385,7 +16405,7 @@ }, "recipe": { "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.9", "deps": [] @@ -16399,7 +16419,7 @@ }, "recipe": { "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -16416,7 +16436,7 @@ }, "recipe": { "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -16430,7 +16450,7 @@ }, "recipe": { "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.1", "deps": [] @@ -16443,7 +16463,7 @@ }, "recipe": { "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -16459,7 +16479,7 @@ }, "recipe": { "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -16476,7 +16496,7 @@ }, "recipe": { "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -16490,7 +16510,7 @@ }, "recipe": { "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.3", "deps": [ @@ -16509,7 +16529,7 @@ }, "recipe": { "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.2", "deps": [] @@ -16523,7 +16543,7 @@ }, "recipe": { "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.59", "deps": [ @@ -16540,7 +16560,7 @@ }, "recipe": { "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -16554,7 +16574,7 @@ }, "recipe": { "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.2", "deps": [] @@ -16568,7 +16588,7 @@ }, "recipe": { "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -16577,12 +16597,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/pallet.git", - "sha256": "dbedee607b66db70fe1c49c2cdc3f3c8bcc69726889d2cd2daba07c8849c7ebb", + "sha256": "2caef10bf2794c3104abce1dac8eefd061894aa5de251ac868e72006a1ba42f4", "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" }, "recipe": { "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.2", "deps": [ @@ -16601,7 +16621,7 @@ }, "recipe": { "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -16619,7 +16639,7 @@ }, "recipe": { "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -16634,7 +16654,7 @@ }, "recipe": { "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16648,7 +16668,7 @@ }, "recipe": { "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -16664,7 +16684,7 @@ }, "recipe": { "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.4", "deps": [] @@ -16678,7 +16698,7 @@ }, "recipe": { "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -16692,7 +16712,7 @@ }, "recipe": { "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "5.14.7.3.1", "deps": [ @@ -16709,7 +16729,7 @@ }, "recipe": { "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -16725,7 +16745,7 @@ }, "recipe": { "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -16741,7 +16761,7 @@ }, "recipe": { "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16755,7 +16775,7 @@ }, "recipe": { "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -16773,7 +16793,7 @@ }, "recipe": { "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [] @@ -16787,7 +16807,7 @@ }, "recipe": { "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.1.2", "deps": [] @@ -16801,7 +16821,7 @@ }, "recipe": { "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [ @@ -16817,7 +16837,7 @@ }, "recipe": { "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -16830,7 +16850,7 @@ }, "recipe": { "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16844,7 +16864,7 @@ }, "recipe": { "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [] @@ -16858,7 +16878,7 @@ }, "recipe": { "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.7.1", "deps": [ @@ -16878,7 +16898,7 @@ }, "recipe": { "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -16894,7 +16914,7 @@ }, "recipe": { "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -16912,7 +16932,7 @@ }, "recipe": { "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [] @@ -16926,7 +16946,7 @@ }, "recipe": { "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.15", "deps": [] @@ -16940,7 +16960,7 @@ }, "recipe": { "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.12", "deps": [ @@ -16956,7 +16976,7 @@ }, "recipe": { "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.1", "deps": [ @@ -16972,7 +16992,7 @@ }, "recipe": { "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -16986,7 +17006,7 @@ }, "recipe": { "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -16999,7 +17019,7 @@ }, "recipe": { "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17013,7 +17033,7 @@ }, "recipe": { "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -17032,7 +17052,7 @@ }, "recipe": { "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -17046,7 +17066,7 @@ }, "recipe": { "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4", "deps": [] @@ -17059,7 +17079,7 @@ }, "recipe": { "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17073,7 +17093,7 @@ }, "recipe": { "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -17091,7 +17111,7 @@ }, "recipe": { "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -17105,7 +17125,7 @@ }, "recipe": { "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1", "deps": [] @@ -17119,7 +17139,7 @@ }, "recipe": { "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.3", "deps": [ @@ -17137,7 +17157,7 @@ }, "recipe": { "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17151,7 +17171,7 @@ }, "recipe": { "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [] @@ -17165,7 +17185,7 @@ }, "recipe": { "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -17179,7 +17199,7 @@ }, "recipe": { "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.1.2", "deps": [ @@ -17194,7 +17214,7 @@ }, "recipe": { "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17208,7 +17228,7 @@ }, "recipe": { "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [] @@ -17222,7 +17242,7 @@ }, "recipe": { "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.21", "deps": [] @@ -17236,7 +17256,7 @@ }, "recipe": { "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [ @@ -17252,7 +17272,7 @@ }, "recipe": { "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -17267,7 +17287,7 @@ }, "recipe": { "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17281,7 +17301,7 @@ }, "recipe": { "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -17297,7 +17317,7 @@ }, "recipe": { "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [ @@ -17316,7 +17336,7 @@ }, "recipe": { "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -17332,7 +17352,7 @@ }, "recipe": { "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.2", "deps": [] @@ -17346,7 +17366,7 @@ }, "recipe": { "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.13", "deps": [ @@ -17363,7 +17383,7 @@ }, "recipe": { "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [ @@ -17380,7 +17400,7 @@ }, "recipe": { "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.5", "deps": [ @@ -17396,7 +17416,7 @@ }, "recipe": { "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -17412,7 +17432,7 @@ }, "recipe": { "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -17428,7 +17448,7 @@ }, "recipe": { "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.1.2", "deps": [ @@ -17444,7 +17464,7 @@ }, "recipe": { "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -17460,7 +17480,7 @@ }, "recipe": { "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -17478,7 +17498,7 @@ }, "recipe": { "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -17494,7 +17514,7 @@ }, "recipe": { "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "4.0.0", "deps": [] @@ -17508,7 +17528,7 @@ }, "recipe": { "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -17524,7 +17544,7 @@ }, "recipe": { "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [ @@ -17543,7 +17563,7 @@ }, "recipe": { "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [] @@ -17557,7 +17577,7 @@ }, "recipe": { "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -17571,7 +17591,7 @@ }, "recipe": { "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.6", "deps": [ @@ -17591,7 +17611,7 @@ }, "recipe": { "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.3", "deps": [] @@ -17605,7 +17625,7 @@ }, "recipe": { "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2.5", "deps": [] @@ -17619,7 +17639,7 @@ }, "recipe": { "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.07", "deps": [ @@ -17636,7 +17656,7 @@ }, "recipe": { "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -17653,7 +17673,7 @@ }, "recipe": { "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.2", "deps": [ @@ -17669,7 +17689,7 @@ }, "recipe": { "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17683,7 +17703,7 @@ }, "recipe": { "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.2", "deps": [] @@ -17697,7 +17717,7 @@ }, "recipe": { "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -17715,7 +17735,7 @@ }, "recipe": { "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10.0", "deps": [ @@ -17735,7 +17755,7 @@ }, "recipe": { "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -17749,7 +17769,7 @@ }, "recipe": { "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [ @@ -17765,7 +17785,7 @@ }, "recipe": { "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.4.0", "deps": [] @@ -17779,7 +17799,7 @@ }, "recipe": { "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10", "deps": [] @@ -17792,7 +17812,7 @@ }, "recipe": { "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17806,7 +17826,7 @@ }, "recipe": { "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -17822,7 +17842,7 @@ }, "recipe": { "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [ @@ -17839,7 +17859,7 @@ }, "recipe": { "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.2", "deps": [ @@ -17856,7 +17876,7 @@ }, "recipe": { "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.0", "deps": [ @@ -17876,7 +17896,7 @@ }, "recipe": { "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.15", "deps": [ @@ -17892,7 +17912,7 @@ }, "recipe": { "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -17909,7 +17929,7 @@ }, "recipe": { "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -17925,7 +17945,7 @@ }, "recipe": { "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -17941,7 +17961,7 @@ }, "recipe": { "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -17961,7 +17981,7 @@ }, "recipe": { "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.2", "deps": [ @@ -17976,7 +17996,7 @@ }, "recipe": { "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -17990,7 +18010,7 @@ }, "recipe": { "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [] @@ -18004,7 +18024,7 @@ }, "recipe": { "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -18022,7 +18042,7 @@ }, "recipe": { "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [ @@ -18042,7 +18062,7 @@ }, "recipe": { "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -18059,7 +18079,7 @@ }, "recipe": { "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -18073,7 +18093,7 @@ }, "recipe": { "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [ @@ -18089,7 +18109,7 @@ }, "recipe": { "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -18102,7 +18122,7 @@ }, "recipe": { "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -18119,7 +18139,7 @@ }, "recipe": { "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [] @@ -18132,7 +18152,7 @@ }, "recipe": { "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -18146,7 +18166,7 @@ }, "recipe": { "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -18162,7 +18182,7 @@ }, "recipe": { "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -18176,7 +18196,7 @@ }, "recipe": { "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -18195,7 +18215,7 @@ }, "recipe": { "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [ @@ -18212,7 +18232,7 @@ }, "recipe": { "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -18229,7 +18249,7 @@ }, "recipe": { "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -18246,7 +18266,7 @@ }, "recipe": { "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -18260,7 +18280,7 @@ }, "recipe": { "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -18277,7 +18297,7 @@ }, "recipe": { "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20150303", "deps": [ @@ -18293,7 +18313,7 @@ }, "recipe": { "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -18307,7 +18327,7 @@ }, "recipe": { "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.19", "deps": [ @@ -18325,7 +18345,7 @@ }, "recipe": { "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10", "deps": [] @@ -18339,7 +18359,7 @@ }, "recipe": { "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -18348,12 +18368,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/rdallasgray/ppd-sr-speedbar.git", - "sha256": "7f9e18af90aec5dc5e59e5a6a26c2ddb213352569cd295bc8df8a0005397b955", + "sha256": "209984df0ae73c549afaeded5bf820a47f275068390f65ba66201d422fa3f946", "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" }, "recipe": { "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6", "deps": [ @@ -18369,7 +18389,7 @@ }, "recipe": { "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -18383,7 +18403,7 @@ }, "recipe": { "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -18400,7 +18420,7 @@ }, "recipe": { "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -18414,7 +18434,7 @@ }, "recipe": { "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.6.1", "deps": [ @@ -18431,7 +18451,7 @@ }, "recipe": { "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -18448,7 +18468,7 @@ }, "recipe": { "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [] @@ -18462,7 +18482,7 @@ }, "recipe": { "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -18480,7 +18500,7 @@ }, "recipe": { "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.16.0", "deps": [ @@ -18499,7 +18519,7 @@ }, "recipe": { "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -18518,7 +18538,7 @@ }, "recipe": { "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -18531,7 +18551,7 @@ }, "recipe": { "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -18540,12 +18560,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "d5afed5b0b24092c366cb57bcf7205c39f640e27186ff9b4af57b60e5a8d7aed", + "sha256": "b5854f8953ddb065c57dff2b7a13116a941eafbe9e7f19f7cf04f7d1399caf53", "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" }, "recipe": { "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.1", "deps": [ @@ -18561,7 +18581,7 @@ }, "recipe": { "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.03", "deps": [ @@ -18578,7 +18598,7 @@ }, "recipe": { "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.9", "deps": [ @@ -18594,7 +18614,7 @@ }, "recipe": { "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -18607,7 +18627,7 @@ }, "recipe": { "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -18621,7 +18641,7 @@ }, "recipe": { "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4", "deps": [ @@ -18637,7 +18657,7 @@ }, "recipe": { "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10.0", "deps": [] @@ -18651,7 +18671,7 @@ }, "recipe": { "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [ @@ -18670,7 +18690,7 @@ }, "recipe": { "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.0", "deps": [] @@ -18684,7 +18704,7 @@ }, "recipe": { "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [] @@ -18698,7 +18718,7 @@ }, "recipe": { "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -18715,7 +18735,7 @@ }, "recipe": { "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -18724,14 +18744,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/n3mo/cyberpunk-theme.el.git", - "sha256": "0b341581ec14c75b62368a673db2798810230ab0fc3e690eae795d3a86214e35", - "rev": "ae3f3d14fd92b70c988847aa760967dfff06c796" + "sha256": "48d9d161170c7af95a4d7f2f5685ee91b40461e4a7f03f3c2b8c23123585938a", + "rev": "08ac966ce38be4a3de0a6f6051b8763b5c85e534" }, "recipe": { "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "1.15", + "version": "1.16", "deps": [] }, "elwm": { @@ -18743,7 +18763,7 @@ }, "recipe": { "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -18759,7 +18779,7 @@ }, "recipe": { "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [ @@ -18775,7 +18795,7 @@ }, "recipe": { "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.1", "deps": [ @@ -18791,7 +18811,7 @@ }, "recipe": { "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.5", "deps": [ @@ -18807,7 +18827,7 @@ }, "recipe": { "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.05", "deps": [ @@ -18823,7 +18843,7 @@ }, "recipe": { "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [] @@ -18837,7 +18857,7 @@ }, "recipe": { "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.06", "deps": [ @@ -18853,7 +18873,7 @@ }, "recipe": { "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.10", "deps": [] @@ -18867,7 +18887,7 @@ }, "recipe": { "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -18883,7 +18903,7 @@ }, "recipe": { "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -18902,7 +18922,7 @@ }, "recipe": { "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -18918,7 +18938,7 @@ }, "recipe": { "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.6", "deps": [] @@ -18932,7 +18952,7 @@ }, "recipe": { "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "7.1.0", "deps": [ @@ -18949,7 +18969,7 @@ }, "recipe": { "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0.0", "deps": [ @@ -18967,7 +18987,7 @@ }, "recipe": { "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "4.7", "deps": [] @@ -18981,7 +19001,7 @@ }, "recipe": { "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [ @@ -18999,7 +19019,7 @@ }, "recipe": { "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -19013,7 +19033,7 @@ }, "recipe": { "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.2", "deps": [ @@ -19032,7 +19052,7 @@ }, "recipe": { "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.1", "deps": [ @@ -19048,7 +19068,7 @@ }, "recipe": { "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.0", "deps": [] @@ -19062,7 +19082,7 @@ }, "recipe": { "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [ @@ -19078,7 +19098,7 @@ }, "recipe": { "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.5", "deps": [ @@ -19099,7 +19119,7 @@ }, "recipe": { "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -19113,7 +19133,7 @@ }, "recipe": { "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.2", "deps": [ @@ -19131,7 +19151,7 @@ }, "recipe": { "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [] @@ -19145,7 +19165,7 @@ }, "recipe": { "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3", "deps": [] @@ -19159,7 +19179,7 @@ }, "recipe": { "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.4", "deps": [ @@ -19175,7 +19195,7 @@ }, "recipe": { "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -19191,7 +19211,7 @@ }, "recipe": { "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -19209,7 +19229,7 @@ }, "recipe": { "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -19225,7 +19245,7 @@ }, "recipe": { "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0", "deps": [] @@ -19239,7 +19259,7 @@ }, "recipe": { "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.4", "deps": [] @@ -19252,7 +19272,7 @@ }, "recipe": { "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19266,7 +19286,7 @@ }, "recipe": { "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -19280,7 +19300,7 @@ }, "recipe": { "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.0", "deps": [ @@ -19299,7 +19319,7 @@ }, "recipe": { "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [] @@ -19313,7 +19333,7 @@ }, "recipe": { "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -19326,7 +19346,7 @@ }, "recipe": { "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19339,7 +19359,7 @@ }, "recipe": { "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19352,7 +19372,7 @@ }, "recipe": { "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19366,7 +19386,7 @@ }, "recipe": { "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.7", "deps": [ @@ -19382,7 +19402,7 @@ }, "recipe": { "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -19399,7 +19419,7 @@ }, "recipe": { "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.15", "deps": [ @@ -19415,7 +19435,7 @@ }, "recipe": { "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -19431,7 +19451,7 @@ }, "recipe": { "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.15", "deps": [ @@ -19452,7 +19472,7 @@ }, "recipe": { "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [] @@ -19466,7 +19486,7 @@ }, "recipe": { "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.12.1", "deps": [] @@ -19480,7 +19500,7 @@ }, "recipe": { "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "3.1.9", "deps": [ @@ -19496,7 +19516,7 @@ }, "recipe": { "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.2", "deps": [ @@ -19513,7 +19533,7 @@ }, "recipe": { "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -19527,7 +19547,7 @@ }, "recipe": { "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -19543,7 +19563,7 @@ }, "recipe": { "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19557,7 +19577,7 @@ }, "recipe": { "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [ @@ -19574,7 +19594,7 @@ }, "recipe": { "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -19591,7 +19611,7 @@ }, "recipe": { "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2015.11.29", "deps": [] @@ -19605,7 +19625,7 @@ }, "recipe": { "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [] @@ -19618,7 +19638,7 @@ }, "recipe": { "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19632,7 +19652,7 @@ }, "recipe": { "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3a", "deps": [] @@ -19646,7 +19666,7 @@ }, "recipe": { "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [ @@ -19662,7 +19682,7 @@ }, "recipe": { "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [] @@ -19676,7 +19696,7 @@ }, "recipe": { "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [] @@ -19690,7 +19710,7 @@ }, "recipe": { "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [ @@ -19706,7 +19726,7 @@ }, "recipe": { "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -19719,7 +19739,7 @@ }, "recipe": { "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19733,7 +19753,7 @@ }, "recipe": { "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.5", "deps": [] @@ -19747,7 +19767,7 @@ }, "recipe": { "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -19764,7 +19784,7 @@ }, "recipe": { "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -19778,7 +19798,7 @@ }, "recipe": { "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.1", "deps": [ @@ -19799,7 +19819,7 @@ }, "recipe": { "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.14", "deps": [] @@ -19813,7 +19833,7 @@ }, "recipe": { "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.1.2", "deps": [ @@ -19830,7 +19850,7 @@ }, "recipe": { "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -19844,7 +19864,7 @@ }, "recipe": { "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.0", "deps": [ @@ -19861,7 +19881,7 @@ }, "recipe": { "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -19875,7 +19895,7 @@ }, "recipe": { "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6", "deps": [ @@ -19891,7 +19911,7 @@ }, "recipe": { "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.2", "deps": [] @@ -19905,7 +19925,7 @@ }, "recipe": { "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.2", "deps": [ @@ -19923,7 +19943,7 @@ }, "recipe": { "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.1", "deps": [ @@ -19939,7 +19959,7 @@ }, "recipe": { "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [ @@ -19958,7 +19978,7 @@ }, "recipe": { "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2.8", "deps": [ @@ -19975,7 +19995,7 @@ }, "recipe": { "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.1", "deps": [] @@ -19989,7 +20009,7 @@ }, "recipe": { "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.18.0", "deps": [ @@ -20006,7 +20026,7 @@ }, "recipe": { "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -20024,7 +20044,7 @@ }, "recipe": { "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [] @@ -20037,7 +20057,7 @@ }, "recipe": { "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -20050,7 +20070,7 @@ }, "recipe": { "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -20066,7 +20086,7 @@ }, "recipe": { "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.01", "deps": [ @@ -20083,7 +20103,7 @@ }, "recipe": { "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -20100,7 +20120,7 @@ }, "recipe": { "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.0", "deps": [ @@ -20118,7 +20138,7 @@ }, "recipe": { "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [ @@ -20130,12 +20150,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/k1LoW/emacs-ansible.git", - "sha256": "735db7feefa7e6b1c20679227be0cc2f23610dd4153c94799da7cb019fcb07a9", + "sha256": "1c29ec9e88727a7dd25e691b7d7a3d9b7af907c753e56ee58593a12e51fadb2c", "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" }, "recipe": { "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -20152,7 +20172,7 @@ }, "recipe": { "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.1", "deps": [] @@ -20166,7 +20186,7 @@ }, "recipe": { "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -20180,7 +20200,7 @@ }, "recipe": { "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.1", "deps": [ @@ -20198,7 +20218,7 @@ }, "recipe": { "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.6.0", "deps": [ @@ -20215,7 +20235,7 @@ }, "recipe": { "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.0", "deps": [ @@ -20231,7 +20251,7 @@ }, "recipe": { "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -20245,7 +20265,7 @@ }, "recipe": { "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -20262,7 +20282,7 @@ }, "recipe": { "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -20276,7 +20296,7 @@ }, "recipe": { "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.20", "deps": [] @@ -20289,7 +20309,7 @@ }, "recipe": { "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -20302,7 +20322,7 @@ }, "recipe": { "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -20316,7 +20336,7 @@ }, "recipe": { "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.22", "deps": [ @@ -20335,7 +20355,7 @@ }, "recipe": { "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.6.10", "deps": [] @@ -20349,7 +20369,7 @@ }, "recipe": { "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.4", "deps": [] @@ -20363,7 +20383,7 @@ }, "recipe": { "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -20379,7 +20399,7 @@ }, "recipe": { "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7.0", "deps": [] @@ -20393,7 +20413,7 @@ }, "recipe": { "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -20407,7 +20427,7 @@ }, "recipe": { "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -20421,7 +20441,7 @@ }, "recipe": { "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [ @@ -20437,7 +20457,7 @@ }, "recipe": { "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20140225.944", "deps": [] @@ -20451,7 +20471,7 @@ }, "recipe": { "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.3", "deps": [] @@ -20465,7 +20485,7 @@ }, "recipe": { "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.11", "deps": [] @@ -20479,7 +20499,7 @@ }, "recipe": { "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -20493,7 +20513,7 @@ }, "recipe": { "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.4", "deps": [ @@ -20511,7 +20531,7 @@ }, "recipe": { "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -20525,7 +20545,7 @@ }, "recipe": { "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -20547,7 +20567,7 @@ }, "recipe": { "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20151025", "deps": [] @@ -20561,7 +20581,7 @@ }, "recipe": { "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0", "deps": [ @@ -20577,7 +20597,7 @@ }, "recipe": { "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -20595,7 +20615,7 @@ }, "recipe": { "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [] @@ -20609,7 +20629,7 @@ }, "recipe": { "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.2", "deps": [ @@ -20625,7 +20645,7 @@ }, "recipe": { "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.0", "deps": [ @@ -20642,7 +20662,7 @@ }, "recipe": { "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [] @@ -20656,7 +20676,7 @@ }, "recipe": { "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -20669,11 +20689,11 @@ "fetch": { "tag": "fetchurl", "url": "http://www.emacswiki.org/emacs/download/files+.el", - "sha256": "04bz0fb7g5516hwwzl01mp6s2mv9vigibv3965amajyvm8qm269f" + "sha256": "0yl98k1yxmqidyc08dn20dmqkb450xnanqr0iqs01z3q6agpqc0v" }, "recipe": { "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -20687,7 +20707,7 @@ }, "recipe": { "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -20699,14 +20719,14 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/bkruczyk/badwolf-emacs.git", - "sha256": "14810b3a5875cc11991f35d36920e9e8a601a1e04a6837f0021f2b830e60daca", - "rev": "aa8dfa11da4f24894c8efdcd09fc792325387634" + "sha256": "b230a774f1aa5f7eeeeb6b73fbc742f6eb59b3b3f4dcb3273eb768f8493c90de", + "rev": "24a557f92a702f632901a5b7bee59945a0a8cde9" }, "recipe": { "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, - "version": "1.1", + "version": "1.2", "deps": [ "emacs" ] @@ -20720,7 +20740,7 @@ }, "recipe": { "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.11", "deps": [ @@ -20737,7 +20757,7 @@ }, "recipe": { "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [ @@ -20753,7 +20773,7 @@ }, "recipe": { "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [] @@ -20767,7 +20787,7 @@ }, "recipe": { "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -20781,7 +20801,7 @@ }, "recipe": { "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.2", "deps": [ @@ -20797,7 +20817,7 @@ }, "recipe": { "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -20811,7 +20831,7 @@ }, "recipe": { "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8.12", "deps": [ @@ -20827,7 +20847,7 @@ }, "recipe": { "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [] @@ -20841,7 +20861,7 @@ }, "recipe": { "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -20860,7 +20880,7 @@ }, "recipe": { "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.3", "deps": [ @@ -20877,7 +20897,7 @@ }, "recipe": { "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5.0", "deps": [] @@ -20891,7 +20911,7 @@ }, "recipe": { "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.10", "deps": [] @@ -20905,7 +20925,7 @@ }, "recipe": { "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.3", "deps": [ @@ -20922,7 +20942,7 @@ }, "recipe": { "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -20938,7 +20958,7 @@ }, "recipe": { "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [] @@ -20952,7 +20972,7 @@ }, "recipe": { "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [] @@ -20966,7 +20986,7 @@ }, "recipe": { "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -20980,7 +21000,7 @@ }, "recipe": { "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.3", "deps": [ @@ -20997,7 +21017,7 @@ }, "recipe": { "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -21010,7 +21030,7 @@ }, "recipe": { "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21024,7 +21044,7 @@ }, "recipe": { "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.0", "deps": [] @@ -21038,7 +21058,7 @@ }, "recipe": { "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -21052,7 +21072,7 @@ }, "recipe": { "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -21068,7 +21088,7 @@ }, "recipe": { "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.2", "deps": [ @@ -21083,7 +21103,7 @@ }, "recipe": { "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21097,7 +21117,7 @@ }, "recipe": { "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.0", "deps": [ @@ -21113,7 +21133,7 @@ }, "recipe": { "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -21129,7 +21149,7 @@ }, "recipe": { "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.6", "deps": [ @@ -21151,7 +21171,7 @@ }, "recipe": { "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [ @@ -21167,7 +21187,7 @@ }, "recipe": { "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -21185,7 +21205,7 @@ }, "recipe": { "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.7", "deps": [] @@ -21193,13 +21213,13 @@ "matlab-mode": { "fetch": { "tag": "fetchcvs", - "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", "module": "matlab-emacs", + "cvsRoot": ":pserver:anonymous@matlab-emacs.cvs.sourceforge.net:/cvsroot/matlab-emacs", "sha256": "694652e361b9d15a3f1542d45b43c6516f20030dbaa8a058b5fdb4c833885465" }, "recipe": { "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21213,7 +21233,7 @@ }, "recipe": { "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.1", "deps": [ @@ -21230,7 +21250,7 @@ }, "recipe": { "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.4", "deps": [] @@ -21243,7 +21263,7 @@ }, "recipe": { "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [ @@ -21260,7 +21280,7 @@ }, "recipe": { "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0", "deps": [ @@ -21276,7 +21296,7 @@ }, "recipe": { "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.4", "deps": [ @@ -21292,7 +21312,7 @@ }, "recipe": { "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [] @@ -21305,7 +21325,7 @@ }, "recipe": { "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21318,7 +21338,7 @@ }, "recipe": { "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21332,7 +21352,7 @@ }, "recipe": { "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.5", "deps": [ @@ -21348,7 +21368,7 @@ }, "recipe": { "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.4", "deps": [ @@ -21363,12 +21383,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "62a355528a4ebc5372e37fe82287322ae8d335ee901da6122370be827bb159bd", + "sha256": "aea707d4ea0911a3232dfa42b704381f3a96b8584faec048acafd32ff0afa108", "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" }, "recipe": { "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9.0", "deps": [ @@ -21385,7 +21405,7 @@ }, "recipe": { "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -21402,7 +21422,7 @@ }, "recipe": { "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.2", "deps": [ @@ -21419,7 +21439,7 @@ }, "recipe": { "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -21433,7 +21453,7 @@ }, "recipe": { "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1.0", "deps": [] @@ -21446,7 +21466,7 @@ }, "recipe": { "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21460,7 +21480,7 @@ }, "recipe": { "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.1", "deps": [ @@ -21478,7 +21498,7 @@ }, "recipe": { "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [] @@ -21492,7 +21512,7 @@ }, "recipe": { "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.5", "deps": [ @@ -21509,7 +21529,7 @@ }, "recipe": { "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21523,7 +21543,7 @@ }, "recipe": { "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2", "deps": [] @@ -21537,7 +21557,7 @@ }, "recipe": { "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -21554,7 +21574,7 @@ }, "recipe": { "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -21570,7 +21590,7 @@ }, "recipe": { "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -21583,7 +21603,7 @@ }, "recipe": { "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21597,7 +21617,7 @@ }, "recipe": { "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.2.1", "deps": [ @@ -21614,7 +21634,7 @@ }, "recipe": { "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -21628,7 +21648,7 @@ }, "recipe": { "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.5.1", "deps": [] @@ -21642,7 +21662,7 @@ }, "recipe": { "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.5", "deps": [ @@ -21658,7 +21678,7 @@ }, "recipe": { "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.2", "deps": [ @@ -21675,7 +21695,7 @@ }, "recipe": { "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.1", "deps": [ @@ -21693,7 +21713,7 @@ }, "recipe": { "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.3.1", "deps": [ @@ -21709,7 +21729,7 @@ }, "recipe": { "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21723,7 +21743,7 @@ }, "recipe": { "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.8.0", "deps": [ @@ -21739,7 +21759,7 @@ }, "recipe": { "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.4.5", "deps": [] @@ -21753,7 +21773,7 @@ }, "recipe": { "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.23.4", "deps": [] @@ -21767,7 +21787,7 @@ }, "recipe": { "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.10.0", "deps": [ @@ -21787,7 +21807,7 @@ }, "recipe": { "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21800,7 +21820,7 @@ }, "recipe": { "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21814,7 +21834,7 @@ }, "recipe": { "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.8", "deps": [ @@ -21832,7 +21852,7 @@ }, "recipe": { "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.7", "deps": [] @@ -21845,7 +21865,7 @@ }, "recipe": { "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -21859,7 +21879,7 @@ }, "recipe": { "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4", "deps": [] @@ -21873,7 +21893,7 @@ }, "recipe": { "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -21894,7 +21914,7 @@ }, "recipe": { "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.3.1", "deps": [ @@ -21911,7 +21931,7 @@ }, "recipe": { "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "5.0.1", "deps": [ @@ -21927,7 +21947,7 @@ }, "recipe": { "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "20130521", "deps": [] @@ -21941,7 +21961,7 @@ }, "recipe": { "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.4.0", "deps": [ @@ -21958,7 +21978,7 @@ }, "recipe": { "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3", "deps": [ @@ -21976,7 +21996,7 @@ }, "recipe": { "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.2.1", "deps": [ @@ -21993,7 +22013,7 @@ }, "recipe": { "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -22011,7 +22031,7 @@ }, "recipe": { "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [ @@ -22024,12 +22044,12 @@ "fetch": { "tag": "fetchgit", "url": "git://github.com/tkf/emacs-request.git", - "sha256": "5770398cb264a41fa229e0ad3da7845816b1787ee0211f3e89335bd157730d46", + "sha256": "cca4b7bc7720b98b805698b572dbae58b44b960313fc01c70e5eac3591cb6a68", "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff" }, "recipe": { "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -22043,7 +22063,7 @@ }, "recipe": { "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "2.0", "deps": [] @@ -22057,7 +22077,7 @@ }, "recipe": { "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [ @@ -22074,7 +22094,7 @@ }, "recipe": { "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.3.0", "deps": [ @@ -22093,7 +22113,7 @@ }, "recipe": { "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1", "deps": [] @@ -22107,7 +22127,7 @@ }, "recipe": { "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.1", "deps": [] @@ -22121,7 +22141,7 @@ }, "recipe": { "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.02", "deps": [ @@ -22138,7 +22158,7 @@ }, "recipe": { "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "1.0.0", "deps": [ @@ -22153,7 +22173,7 @@ }, "recipe": { "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "nil", "deps": [] @@ -22167,7 +22187,7 @@ }, "recipe": { "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.0.1", "deps": [ @@ -22183,7 +22203,7 @@ }, "recipe": { "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.1.0", "deps": [] @@ -22197,7 +22217,7 @@ }, "recipe": { "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.9", "deps": [ @@ -22216,11 +22236,11 @@ }, "recipe": { "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", - "commit": "f0258cc41de809b67811a5dde3d475c429df0695" + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" }, "version": "0.04", "deps": [ "coffee-mode" ] } -} +} \ No newline at end of file From 9f55d3f29f644b1a0f0aca62a06c1b48a813407c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 08:24:35 -0600 Subject: [PATCH 054/289] elpaPackages: fix typo in midi-kbd --- pkgs/applications/editors/emacs-modes/elpa-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 00f127a2992..0f92ded4043 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -66,7 +66,7 @@ self: exwm = markBroken super.exwm; gnugo = markBroken super.gnugo; iterators = markBroken super.iterators; - midi-kbd = markBroken super.mini-kbd; + midi-kbd = markBroken super.midi-kbd; stream = markBroken super.stream; tNFA = markBroken super.tNFA; trie = markBroken super.trie; From f7ce3cdddb9ef7d5d5470005b2c4a481748800af Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 12:45:57 -0600 Subject: [PATCH 055/289] emacsPackagesNg: don't call `override` repeatedly Calling override repeatedly obfuscates how the final package set is actually constructed. --- pkgs/top-level/emacs-packages.nix | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index ebd6464de5a..cb6da618768 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -46,12 +46,7 @@ with lib.licenses; let - addMelpaPackages = scope: scope.override (super: melpaPackages); - addMelpaStablePackages = scope: scope.override (super: melpaStablePackages); - addElpaPackages = scope: scope.override (super: elpaPackages); - addOverrides = scope: scope.override packagesFun; - - packagesFun = super: self: with self; { + packagesFun = self: with self; { inherit emacs melpaBuild trivialBuild; @@ -2029,8 +2024,10 @@ let }; in - addOverrides - (addElpaPackages - (addMelpaStablePackages - (addMelpaPackages - (lib.makeScope newScope (self: { inherit emacs; }))))) + lib.makeScope newScope (self: + {} + // melpaPackages self + // melpaStablePackages self + // elpaPackages self + // packagesFun self + ) From a4f4d1717d377d8d3698ed0e306e18c8278bd2a7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 20:39:45 -0600 Subject: [PATCH 056/289] elpaPackages: don't import all of pkgs --- pkgs/applications/editors/emacs-modes/elpa-packages.nix | 8 +++----- pkgs/top-level/all-packages.nix | 5 +++-- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 0f92ded4043..7b8d429f76a 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -1,8 +1,8 @@ -pkgs: with pkgs; +{ fetchurl, lib, stdenv, texinfo }: let - inherit (stdenv.lib) makeScope mapAttrs; + inherit (lib) makeScope mapAttrs; json = builtins.readFile ./elpa-packages.json; manifest = builtins.fromJSON json; @@ -40,12 +40,10 @@ self: super = mapAttrs (mkPackage self) manifest; elpaBuild = import ../../../build-support/emacs/melpa.nix { - inherit (pkgs) lib stdenv fetchurl texinfo; + inherit fetchurl lib stdenv texinfo; inherit (self) emacs; }; - builtin = null; - markBroken = pkg: pkg.override { elpaBuild = args: self.elpaBuild (args // { meta = (args.meta or {}) // { broken = true; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d12a05f83bc..feb55346c0f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11648,8 +11648,9 @@ let emacs24PackagesNg = recurseIntoAttrs (emacsPackagesNgGen emacs24); - elpaPackages = - import ../applications/editors/emacs-modes/elpa-packages.nix pkgs; + elpaPackages = import ../applications/editors/emacs-modes/elpa-packages.nix { + inherit fetchurl lib stdenv texinfo; + }; melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix pkgs; From 28af093438a7f9d7d836bc5fe41cca8a2ed92ced Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 20:41:08 -0600 Subject: [PATCH 057/289] melpaPackages: don't import all of pkgs --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 4 ++-- pkgs/top-level/all-packages.nix | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index 1bc4363cb11..e48baa2d6e0 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -1,8 +1,8 @@ -pkgs: with pkgs; +{ lib }: let - inherit (stdenv.lib) makeScope mapAttrs; + inherit (lib) makeScope mapAttrs; json = builtins.readFile ./melpa-stable-packages.json; manifest = builtins.fromJSON json; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index feb55346c0f..74d3caabd6f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11655,8 +11655,9 @@ let melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix pkgs; - melpaPackages = - import ../applications/editors/emacs-modes/melpa-packages.nix pkgs; + melpaPackages = import ../applications/editors/emacs-modes/melpa-packages.nix { + inherit lib; + }; emacsWithPackages = callPackage ../build-support/emacs/wrapper.nix { }; emacs24WithPackages = emacsWithPackages.override { emacs = emacs24; }; From a338959da6fb976345aac467e2c0d2f9b2c4ac46 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 20:41:50 -0600 Subject: [PATCH 058/289] melpaStablePackages: don't import all of pkgs --- .../editors/emacs-modes/melpa-stable-packages.nix | 4 ++-- pkgs/top-level/all-packages.nix | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index 869c5549bfa..bf8df730a77 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -1,8 +1,8 @@ -pkgs: with pkgs; +{ lib }: let - inherit (stdenv.lib) makeScope mapAttrs; + inherit (lib) makeScope mapAttrs; json = builtins.readFile ./melpa-stable-packages.json; manifest = builtins.fromJSON json; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 74d3caabd6f..e748f0b2fb0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11652,8 +11652,9 @@ let inherit fetchurl lib stdenv texinfo; }; - melpaStablePackages = - import ../applications/editors/emacs-modes/melpa-stable-packages.nix pkgs; + melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix { + inherit lib; + }; melpaPackages = import ../applications/editors/emacs-modes/melpa-packages.nix { inherit lib; From 78d68b8c149d7c7a2f6f48d25ae61e5ec66212d7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 20:43:43 -0600 Subject: [PATCH 059/289] emacsPackagesNg: don't expose package functions Remove elpaPackages, melpaStablePackages, and melpaPackages from the top-level. --- pkgs/top-level/all-packages.nix | 14 +------------- pkgs/top-level/emacs-packages.nix | 14 +++++++++++++- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e748f0b2fb0..5559135e242 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11629,7 +11629,7 @@ let inherit lib newScope stdenv; inherit fetchFromGitHub fetchgit fetchhg fetchurl; - inherit emacs elpaPackages melpaPackages melpaStablePackages; + inherit emacs texinfo; trivialBuild = callPackage ../build-support/emacs/trivial.nix { inherit emacs; @@ -11648,18 +11648,6 @@ let emacs24PackagesNg = recurseIntoAttrs (emacsPackagesNgGen emacs24); - elpaPackages = import ../applications/editors/emacs-modes/elpa-packages.nix { - inherit fetchurl lib stdenv texinfo; - }; - - melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix { - inherit lib; - }; - - melpaPackages = import ../applications/editors/emacs-modes/melpa-packages.nix { - inherit lib; - }; - emacsWithPackages = callPackage ../build-support/emacs/wrapper.nix { }; emacs24WithPackages = emacsWithPackages.override { emacs = emacs24; }; diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index cb6da618768..727ceb24c8a 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -35,7 +35,7 @@ , lib, newScope, stdenv, fetchurl, fetchgit, fetchFromGitHub, fetchhg -, emacs, elpaPackages, melpaPackages, melpaStablePackages +, emacs, texinfo , trivialBuild , melpaBuild @@ -46,6 +46,18 @@ with lib.licenses; let + elpaPackages = import ../applications/editors/emacs-modes/elpa-packages.nix { + inherit fetchurl lib stdenv texinfo; + }; + + melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix { + inherit lib; + }; + + melpaPackages = import ../applications/editors/emacs-modes/melpa-packages.nix { + inherit lib; + }; + packagesFun = self: with self; { inherit emacs melpaBuild trivialBuild; From 3b1f994347a3a9e95b48256e0218b563c7887639 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 17 Dec 2015 14:09:49 +0100 Subject: [PATCH 060/289] release: remove reference to castle_combat The game itself was removed in 66f663e19. --- pkgs/top-level/release.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index c55f8f0825f..50331b83e8e 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -66,7 +66,6 @@ let binutils = linux; bind = linux; bvi = all; - castle_combat = linux; cdrkit = linux; classpath = linux; ddrescue = linux; From 07eb0ad76c5bf14f71e9260206c92c180e915557 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 17 Dec 2015 16:47:25 +0300 Subject: [PATCH 061/289] phc-intel: fix installation dir --- pkgs/os-specific/linux/phc-intel/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/phc-intel/default.nix b/pkgs/os-specific/linux/phc-intel/default.nix index c3c62dbf5eb..4eed41254f9 100644 --- a/pkgs/os-specific/linux/phc-intel/default.nix +++ b/pkgs/os-specific/linux/phc-intel/default.nix @@ -33,8 +33,8 @@ in stdenv.mkDerivation { enableParallelBuilding = false; installPhase = '' - install -m 755 -d $out/lib/modules/${kernel.version}/extra/ - install -m 644 *.ko $out/lib/modules/${kernel.version}/extra/ + install -m 755 -d $out/lib/modules/${kernel.modDirVersion}/extra/ + install -m 644 *.ko $out/lib/modules/${kernel.modDirVersion}/extra/ ''; meta = with stdenv.lib; { From 301c74bc161dc48ba6059ab83338200dfad7cf79 Mon Sep 17 00:00:00 2001 From: michael bishop Date: Thu, 17 Dec 2015 08:10:16 -0400 Subject: [PATCH 062/289] nixos: improve mime DB cache generation (close #11785) --- nixos/modules/config/system-path.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix index e14e4cf1314..f510b58842e 100644 --- a/nixos/modules/config/system-path.nix +++ b/nixos/modules/config/system-path.nix @@ -128,7 +128,7 @@ in # !!! Hacky, should modularise. postBuild = '' - if [ -x $out/bin/update-mime-database -a -w $out/share/mime/packages ]; then + if [ -x $out/bin/update-mime-database -a -w $out/share/mime ]; then XDG_DATA_DIRS=$out/share $out/bin/update-mime-database -V $out/share/mime > /dev/null fi From f2a98371138fe58680d035846f46a18e39a581c2 Mon Sep 17 00:00:00 2001 From: Matthijs Steen Date: Thu, 17 Dec 2015 12:48:43 +0100 Subject: [PATCH 063/289] grml-zsh-config: init at 0.12.4 --- pkgs/shells/grml-zsh-config/default.nix | 38 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 40 insertions(+) create mode 100644 pkgs/shells/grml-zsh-config/default.nix diff --git a/pkgs/shells/grml-zsh-config/default.nix b/pkgs/shells/grml-zsh-config/default.nix new file mode 100644 index 00000000000..5da96adaabd --- /dev/null +++ b/pkgs/shells/grml-zsh-config/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchurl, lib +, zsh, coreutils, inetutils, procps, txt2tags }: + +with lib; + +stdenv.mkDerivation rec { + name = "grml-zsh-config-${version}"; + version = "0.12.4"; + + src = fetchurl { + url = "http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${version}.tar.gz"; + sha256 = "1cbedc41e32787c37c2ed546355a26376dacf2ae1fab9551c9ace3e46d236b72"; + }; + + buildInputs = [ zsh coreutils inetutils procps txt2tags ]; + + buildPhase = '' + cd doc + make + cd .. + ''; + + installPhase = '' + install -D -m644 etc/zsh/keephack $out/etc/zsh/keephack + install -D -m644 etc/zsh/zshrc $out/etc/zsh/zshrc + + install -D -m644 doc/grmlzshrc.5 $out/share/man/man5/grmlzshrc.5 + ln -s grmlzshrc.5.gz $out/share/man/man5/grml-zsh-config.5.gz + ''; + + meta = with stdenv.lib; { + description = "grml's zsh setup"; + homepage = http://grml.org/zsh/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.msteen ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 44b92c77c9c..790312b11e7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3741,6 +3741,8 @@ let nix-zsh-completions = callPackage ../shells/nix-zsh-completions { }; + grml-zsh-config = callPackage ../shells/grml-zsh-config { }; + ### DEVELOPMENT / COMPILERS From c3e010720191c29df9728a3fb9697bcd237031e1 Mon Sep 17 00:00:00 2001 From: aaron levin Date: Thu, 17 Dec 2015 16:40:35 +0100 Subject: [PATCH 064/289] Remove default scsiLinkPolicy --- nixos/modules/config/power-management.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/config/power-management.nix b/nixos/modules/config/power-management.nix index 6086f06ca3d..fbd7867a095 100644 --- a/nixos/modules/config/power-management.nix +++ b/nixos/modules/config/power-management.nix @@ -71,7 +71,6 @@ in # FIXME: Implement powersave governor for sandy bridge or later Intel CPUs powerManagement.cpuFreqGovernor = mkDefault "ondemand"; - powerManagement.scsiLinkPolicy = mkDefault "max_performance"; systemd.targets.post-resume = { description = "Post-Resume Actions"; From a111fa517e3bff2e9b240c16f544d997b5e1c9dc Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 17 Dec 2015 18:27:18 +0100 Subject: [PATCH 065/289] zsh-navigation-tools: 1.3.2 -> 1.4 --- pkgs/tools/misc/zsh-navigation-tools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/zsh-navigation-tools/default.nix b/pkgs/tools/misc/zsh-navigation-tools/default.nix index 8f335d7cf58..ae4774c0e12 100644 --- a/pkgs/tools/misc/zsh-navigation-tools/default.nix +++ b/pkgs/tools/misc/zsh-navigation-tools/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "zsh-navigation-tools-${version}"; - version = "1.3.2"; + version = "1.4"; src = fetchFromGitHub { owner = "psprint"; repo = "zsh-navigation-tools"; rev = "v${version}"; - sha256 = "1xj1jakcrf0sfkiq6l1drg6vzylhkk0kmhs7nz08dv18pgx9jy36"; + sha256 = "1r24mpx57jyn201mdhd793rlhlr5r83n9137aafkgf86282ghr7y"; }; dontBuild = true; From 976a5f68fb9ce10036577b88440b1df3231ba1a6 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Thu, 17 Dec 2015 19:30:37 +0100 Subject: [PATCH 066/289] pythonPackages.colorlog: init at 2.6.0 --- pkgs/top-level/python-packages.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 135e5b06cb3..59ff6f9a921 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1513,6 +1513,22 @@ in modules // { propagatedBuildInputs = with self; [ iowait psutil pyzmq tornado mock ]; }; + colorlog = buildPythonPackage rec { + name = "colorlog-${version}"; + version = "2.6.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/colorlog/${name}.tar.gz"; + sha256 = "1s8z9zr4r18igr4rri71nba01arnpppifrkaxhi2xb51500sw0qg"; + }; + + meta = { + description = "Log formatting with colors"; + homepage = https://github.com/borntyping/python-colorlog; + license = licenses.free; # BSD-like + }; + }; + colour = buildPythonPackage rec { name = "${pname}-${version}"; pname = "colour"; From d879a242cd747c1cee86f9f651b34409aabbfd73 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 17 Dec 2015 11:51:07 -0800 Subject: [PATCH 067/289] haskellPackages.git-annex: Do not build lsof on Darwin --- pkgs/development/haskell-modules/configuration-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index f7fe236da35..dbfd7850c37 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -66,11 +66,13 @@ self: super: { # build which has the assistant to be used in the top-level. git-annex_5_20150727 = (disableCabalFlag super.git-annex_5_20150727 "assistant").override { dbus = if pkgs.stdenv.isLinux then self.dbus else null; + lsof = if pkgs.stdenv.isLinux then pkgs.lsof else null; fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null; hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify; }; git-annex = (disableCabalFlag super.git-annex "assistant").override { dbus = if pkgs.stdenv.isLinux then self.dbus else null; + lsof = if pkgs.stdenv.isLinux then pkgs.lsof else null; fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null; hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify; }; From 20c1ef63cb85fd1c423cea9a62cad79ca2a4d3db Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Thu, 17 Dec 2015 23:14:27 +0300 Subject: [PATCH 068/289] vimPlugins: update 2015-12-17 --- pkgs/misc/vim-plugins/default.nix | 96 +++++++++++++++---------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 30c4c7d63b1..603e4db4ac6 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -302,11 +302,11 @@ rec { }; fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "fugitive-2015-12-01"; + name = "fugitive-2015-12-15"; src = fetchgit { url = "git://github.com/tpope/vim-fugitive"; - rev = "d854197c03c0b027cca41abf86a5557c5473b82f"; - sha256 = "cbe8333d1d359c5ba556d8f59e6700d14c0425a3b333503e3411e48b4b239cda"; + rev = "8851b8fe643517af160f59dfc3d88a0c4eed1fa5"; + sha256 = "bba527606ab63cc6cce24ca1b44226aa37aced7f1aac4c352a6b83ce522c4b5f"; }; dependencies = []; @@ -357,11 +357,11 @@ rec { }; neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neomake-2015-12-05"; + name = "neomake-2015-12-11"; src = fetchgit { url = "git://github.com/benekastah/neomake"; - rev = "73f186e069d432b7746c1c09ac085c68d6e120f8"; - sha256 = "e6bbe895e373a3b596291e0420d856928cd874485c4c2f5b7c2972738696464b"; + rev = "d4c0a6f062a0d098126e87bb718b92fe7b79fd97"; + sha256 = "1b2f1e024ffdfe0613c0aeb4c6fc64d64c6a25a00841538b7a371efd34cb8615"; }; dependencies = []; @@ -434,11 +434,11 @@ rec { }; vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-go-2015-12-08"; + name = "vim-go-2015-12-15"; src = fetchgit { url = "git://github.com/fatih/vim-go"; - rev = "0aeb07e9305f5696bfc1cffb1e3b2226d851b913"; - sha256 = "6bd784ef49f68526b26b25149f153b2caafa5840690ee65452b9ee6d0e99814e"; + rev = "70c363044df808e34d947815d01a37d4e7564421"; + sha256 = "9f1764a5e8c7450c4af9fc64b3170e10d89c4d6b4ad69a758878bed16362cf09"; }; dependencies = []; @@ -511,11 +511,11 @@ rec { }; vim-buffergator = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-buffergator-2015-08-15"; + name = "vim-buffergator-2015-12-16"; src = fetchgit { url = "git://github.com/jeetsukumaran/vim-buffergator"; - rev = "ed3bfc2b560f687075d9c2225079bfe43f1f2390"; - sha256 = "f2024ecf447e5cca2d66efdb6d31e2890e7210e142728873ab521b8c5ea17c11"; + rev = "ab5ef1a2c3b5076204ed3ee1601fcedda379967b"; + sha256 = "5c479d884bccf6a07891aff2cb09fbaf59d8460bdc91ad9fb19cf0d8e020c29d"; }; dependencies = []; @@ -621,11 +621,11 @@ rec { }; vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimtex-2015-12-11"; + name = "vimtex-2015-12-16"; src = fetchgit { url = "git://github.com/lervag/vimtex"; - rev = "62d0b9b44c53eb2302a50ad6f7a8446ab10e233c"; - sha256 = "b847f22a40e605c05a5e7672562e2e58b0effd5615c1e199937a920002ff4634"; + rev = "e982722e89462716e2ecdb6ce7aa9baea6dc8c98"; + sha256 = "4c0e8399b97cbd24b0131c3e22fc8873d04576e21156b80e5c678b4ce3d19fe0"; }; dependencies = []; @@ -727,44 +727,44 @@ rec { }; neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neocomplete-vim-2015-12-11"; + name = "neocomplete-vim-2015-12-13"; src = fetchgit { url = "git://github.com/shougo/neocomplete.vim"; - rev = "1c8d6356ad562e7430f091950530925f0a9dad5f"; - sha256 = "148d61fff5e07547a09e41f9105fa3a4bbecf82089855cab8d5b26cccddec0f5"; + rev = "d1cb4c57e5eb8b453b63432dcbcb45a15c0fd07e"; + sha256 = "a704696e66101875e98a1b2b6815acad647b87a07a3842fd6f9f91b8a70411e5"; }; dependencies = []; }; neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-snippets-2015-12-05"; + name = "neosnippet-snippets-2015-12-13"; src = fetchgit { url = "git://github.com/shougo/neosnippet-snippets"; - rev = "42e81d1409fd08a3acec8c82c8480880338e4808"; - sha256 = "fb8aca8264851bceecf06d483162a55897f8ecdbe873fbc383d5a05cd0a50e1f"; + rev = "ec9267240ecb855657de830c9c68e5f6e34cfe65"; + sha256 = "319a7ac504b462f7e466c9e02ff6e54b8374e5970f148552986c83136c423854"; }; dependencies = []; }; neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-vim-2015-12-12"; + name = "neosnippet-vim-2015-12-16"; src = fetchgit { url = "git://github.com/shougo/neosnippet.vim"; - rev = "7dc7ce803e28783bcbb829bfdbe8bbae6e51139a"; - sha256 = "bddcd3e651fbd96cb740fec67782439f3d899715e564b539e6e19eef34750d56"; + rev = "cfc99eedb5caf3d6baf867db5220a891b4686699"; + sha256 = "aa34c6e28eb281bec6e617f03eb5e094cd2cfe18951f9e4823dda0ccdabaffad"; }; dependencies = []; }; unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "unite-vim-2015-12-05"; + name = "unite-vim-2015-12-13"; src = fetchgit { url = "git://github.com/shougo/unite.vim"; - rev = "f376de838a46c4848a81a2e95ebc4116732b1fef"; - sha256 = "372c353040b3e79dd6c223e0ead442090e4257daabd0d002e733d9cb691c778c"; + rev = "aefd6c32ef8dc5b357efe7d8e5cd3dd4aa785d5c"; + sha256 = "83562a15afc1c41a5d407fd0eb7d26beec216a9431dd80992bcd615afd595e5e"; }; dependencies = []; @@ -822,11 +822,11 @@ rec { }; vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-quickrun-2015-11-14"; + name = "vim-quickrun-2015-12-17"; src = fetchgit { url = "git://github.com/thinca/vim-quickrun"; - rev = "5bcb966b80d9d9e4051d9882a07fd61a2ea39d23"; - sha256 = "894a0f5c569ddd633514084e8021322b2fe62889fa8d32b2211d7bab04a701f2"; + rev = "97e1c8f6674d3ccce4730510d67c4e15894adcdc"; + sha256 = "c61167569d5b05767fdaffc1b09aab729c777d01afaff8c0efd641a61ebe758c"; }; dependencies = []; @@ -877,11 +877,11 @@ rec { }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2015-12-11"; + name = "youcompleteme-2015-12-13"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "14083d939d4b1341dc6ad2053914c327b7d647b1"; - sha256 = "ec900cb1fabfb1690ae735a46375e1f5044f70df5fd34e2ea233e9b4f558e342"; + rev = "93c2a8644bcfc84590bea5e19eab350fe245e504"; + sha256 = "32aaa99c5398d65875c1fdf5ed22f58aeeb267a2840930479523815b94b4111c"; }; dependencies = []; buildInputs = [ @@ -1127,11 +1127,11 @@ rec { }; sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "sensible-2015-09-24"; + name = "sensible-2015-12-11"; src = fetchgit { url = "git://github.com/tpope/vim-sensible"; - rev = "26f8783e08efef27fc01e0df6465b8f94c8bf270"; - sha256 = "e04193a4f38bdc3c552ce5033bb3922a7ccae84ec6e1e46e12e71e1afb93cac3"; + rev = "8c4429c70c186f9be47121b126c13095793062a1"; + sha256 = "f3b5de776ae4fa2c8769f2f04639d2a0218c88345beba9364899d359d32cf6e5"; }; dependencies = []; @@ -1214,22 +1214,22 @@ rec { }; tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "tlib-2015-12-11"; + name = "tlib-2015-12-12"; src = fetchgit { url = "git://github.com/tomtom/tlib_vim"; - rev = "b957a0a6b7f7a1b0ffa370963712b4ef526b5f76"; - sha256 = "12168055ecafbbde4afafe7d5fce8046b21d62d748326a290b5dc4239b30db34"; + rev = "599934acbbcf1637616878fc6e8f5aba1b301a29"; + sha256 = "2401a623363bf31fa9f152faae90268d06ed5cef8352163c19b0c7b013e5c0b7"; }; dependencies = []; }; undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "undotree-2015-10-28"; + name = "undotree-2015-12-16"; src = fetchgit { url = "git://github.com/mbbill/undotree"; - rev = "74874d92d4bde3d026f2d0f3ff780b1787ba4e84"; - sha256 = "aa36bd56b1af88b55aac561ba7339944a28f8159c11f1058abb692eb9f99990d"; + rev = "39e5cf0fc241c64e920f91d52299b444475d54df"; + sha256 = "767c84917392d1b370ef542c218c0f7bd642e59a7176735bbdd80c8a8f8b04ca"; }; dependencies = []; @@ -1489,11 +1489,11 @@ rec { }; vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gitgutter-2015-12-10"; + name = "vim-gitgutter-2015-12-16"; src = fetchgit { url = "git://github.com/airblade/vim-gitgutter"; - rev = "28aea43adf187ca01f0255c5a9418a5aac6380f1"; - sha256 = "74c6655373fd7d671e8599cd1996b962b12fc23fcc1c6437a9a09429509f3efb"; + rev = "f52f875fc7b25b601366bd6c0d67c53ad84f9559"; + sha256 = "43e36cff7c12115f05dc3dc5225f38e6c084bf37f8a43a600ad54861392eadf7"; }; dependencies = []; @@ -1555,11 +1555,11 @@ rec { }; vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-snippets-2015-12-08"; + name = "vim-snippets-2015-12-17"; src = fetchgit { url = "git://github.com/honza/vim-snippets"; - rev = "c0040abe4e54786c77ec41d6dbd1be916a03a506"; - sha256 = "20b8a1e4ae563b5119d181d19538d540e4811cd20dd2509cc29940a01208bc7e"; + rev = "d5153d63b16e956e892f039ac5982963660a1c68"; + sha256 = "c79fc743ec1e565111876357136cee1a04ed6b3f58d1586df322a38b026f8a49"; }; dependencies = []; From 996a0a9abf7e3338e9fbcf3af540749bda565012 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 22:43:34 +0100 Subject: [PATCH 069/289] liboauth: add `nss3` path to liboauth.la Fixes the following libgdata build error: ``` CCLD gdata/libgdata.la /nix/store/5kdjp8200hazaydx0dmwn5qghqkyi3py-binutils-2.23.1/bin/ld: cannot find -lssl3 /nix/store/5kdjp8200hazaydx0dmwn5qghqkyi3py-binutils-2.23.1/bin/ld: cannot find -lsmime3 /nix/store/5kdjp8200hazaydx0dmwn5qghqkyi3py-binutils-2.23.1/bin/ld: cannot find -lnss3 /nix/store/5kdjp8200hazaydx0dmwn5qghqkyi3py-binutils-2.23.1/bin/ld: cannot find -lnssutil3 collect2: error: ld returned 1 exit status ``` --- pkgs/development/libraries/liboauth/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/liboauth/default.nix b/pkgs/development/libraries/liboauth/default.nix index 8f46d1c0bfd..479a187cf87 100644 --- a/pkgs/development/libraries/liboauth/default.nix +++ b/pkgs/development/libraries/liboauth/default.nix @@ -13,6 +13,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-nss" ]; + postInstall = '' + substituteInPlace $out/lib/liboauth.la \ + --replace "-lnss3" "-L${nss}/lib -lnss3" + ''; + meta = with stdenv.lib; { platforms = platforms.linux; description = "C library implementing the OAuth secure authentication protocol"; From a3c2bd5aec63b7b3512a4a53f1ed1bde39d1ccb8 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 16 Dec 2015 21:47:21 +0100 Subject: [PATCH 070/289] eboard: fix build Add perl dependency and patch ./configure to use it. --- pkgs/games/eboard/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/games/eboard/default.nix b/pkgs/games/eboard/default.nix index 8dd06fa6a28..3d070c5eafb 100644 --- a/pkgs/games/eboard/default.nix +++ b/pkgs/games/eboard/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchurl, pkgconfig, gtk }: +{ stdenv, fetchurl, perl, pkgconfig, gtk }: stdenv.mkDerivation { name = "eboard-1.1.1"; - + src = fetchurl { url = mirror://sourceforge/eboard/eboard-1.1.1.tar.bz2; sha256 = "0vm25j1s2zg1lipwjv9qrcm877ikfmk1yh34i8f5l3bwd63115xd"; @@ -10,7 +10,14 @@ stdenv.mkDerivation { patches = [ ./eboard.patch ]; - buildInputs = [ pkgconfig gtk ]; + buildInputs = [ gtk ]; + nativeBuildInputs = [ perl pkgconfig ]; + + preConfigure = '' + patchShebangs ./configure + ''; + + NIX_CFLAGS_COMPILE = [ "-fpermissive" ]; meta = { homepage = http://www.bergo.eng.br/eboard/; From 341d23324de72c4b3ebc6891dbfce49c8918081c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 05:43:21 +0100 Subject: [PATCH 071/289] libpsl: 2015-12-03 -> 2015-12-17 --- pkgs/development/libraries/libpsl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index 4058943b6f3..1412e1d59fa 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -5,10 +5,10 @@ let version = "${libVersion}-list-${listVersion}"; - listVersion = "2015-12-03"; + listVersion = "2015-12-17"; listSources = fetchFromGitHub { - sha256 = "1192g8x57pm9r3va1xfvni0jczg8wy5kka6vcwnvc3lk4314l2na"; - rev = "6c137ba598d61f2ea299632bb447608a9fc25d0f"; + sha256 = "09scxqlw7cp7vkjn7bp7dr9nqb3wg84kvw3iyapyxddfri4k0rvl"; + rev = "9636089f5f22b0af98b1a48fb9179dc875f0872d"; repo = "list"; owner = "publicsuffix"; }; From 11a8cddff41343d2add0239b02709b38d2c3c1e9 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 06:30:20 +0100 Subject: [PATCH 072/289] man-db: use groff from closure, not PATH --- pkgs/tools/misc/man-db/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/misc/man-db/default.nix b/pkgs/tools/misc/man-db/default.nix index 3ec429269a3..d77b7ff4812 100644 --- a/pkgs/tools/misc/man-db/default.nix +++ b/pkgs/tools/misc/man-db/default.nix @@ -9,12 +9,18 @@ stdenv.mkDerivation rec { }; buildInputs = [ pkgconfig libpipeline db groff ]; - + configureFlags = [ "--disable-setuid" "--sysconfdir=/etc" "--localstatedir=/var" "--with-systemdtmpfilesdir=\${out}/lib/tmpfiles.d" + "--with-eqn=${groff}/bin/eqn" + "--with-neqn=${groff}/bin/neqn" + "--with-nroff=${groff}/bin/nroff" + "--with-pic=${groff}/bin/pic" + "--with-refer=${groff}/bin/refer" + "--with-tbl=${groff}/bin/tbl" ]; installFlags = [ "DESTDIR=\${out}" ]; From 1e3314718debdd69aac8d333525c7a3f20e2f0b6 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 02:39:44 +0100 Subject: [PATCH 073/289] uksmtools: init at 2015-09-25 --- pkgs/os-specific/linux/uksmtools/default.nix | 27 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/os-specific/linux/uksmtools/default.nix diff --git a/pkgs/os-specific/linux/uksmtools/default.nix b/pkgs/os-specific/linux/uksmtools/default.nix new file mode 100644 index 00000000000..eeb5440f510 --- /dev/null +++ b/pkgs/os-specific/linux/uksmtools/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchgit, cmake }: + +let version = "2015-09-25"; in +stdenv.mkDerivation { + name = "uksmtools-${version}"; + + src = fetchgit { + sha256 = "0ngdmici2vgi2z02brzc3f78j1g1y9myzfxn46zlm1skg94fp692"; + rev = "9f59a3a0b494b758aa91d7d8fa04e21b5e6463c0"; + url = "https://github.com/pfactum/uksmtools.git"; + }; + + nativeBuildInputs = [ cmake ]; + + enableParallelBuilding = true; + + doCheck = false; + + meta = with stdenv.lib; { + inherit version; + description = "Tools to control Linux UKSM (Ultra Kernel Same-page Merging)"; + homepage = https://github.com/pfactum/uksmtools/; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4ca05bd5563..7de5ad294a3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10547,6 +10547,8 @@ let udisks_glue = callPackage ../os-specific/linux/udisks-glue { }; + uksmtools = callPackage ../os-specific/linux/uksmtools { }; + untie = callPackage ../os-specific/linux/untie { }; upower = callPackage ../os-specific/linux/upower { }; From 535b4279c7aafe68971527fe2ddb0dd8d2b70ec9 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 17 Dec 2015 16:41:57 +0100 Subject: [PATCH 074/289] ipad_charge, simple-scan: libusb{-compat -> 1} --- pkgs/applications/graphics/simple-scan/default.nix | 4 ++-- pkgs/tools/misc/ipad_charge/default.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix index c205c2a3f1c..c169d262fb6 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool -, libusb, libxml2, pkgconfig, saneBackends, vala, wrapGAppsHook }: +, libusb1, libxml2, pkgconfig, saneBackends, vala, wrapGAppsHook }: let version = "3.19.3"; in stdenv.mkDerivation rec { @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { url = "https://launchpad.net/simple-scan/3.19/${version}/+download/${name}.tar.xz"; }; - buildInputs = [ cairo colord glib gusb gtk3 libusb libxml2 saneBackends + buildInputs = [ cairo colord glib gusb gtk3 libusb1 libxml2 saneBackends vala ]; nativeBuildInputs = [ intltool itstool pkgconfig wrapGAppsHook ]; diff --git a/pkgs/tools/misc/ipad_charge/default.nix b/pkgs/tools/misc/ipad_charge/default.nix index df987ed86c1..73fee38cbf2 100644 --- a/pkgs/tools/misc/ipad_charge/default.nix +++ b/pkgs/tools/misc/ipad_charge/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, libusb }: +{ stdenv, fetchFromGitHub, libusb1 }: let version = "2015-02-03"; in stdenv.mkDerivation rec { @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { owner = "mkorenkov"; }; - buildInputs = [ libusb ]; + buildInputs = [ libusb1 ]; postPatch = '' substituteInPlace Makefile \ From 61420e7ea95933db47e4b74c5a274e008fd31feb Mon Sep 17 00:00:00 2001 From: Markus Kohlhase Date: Fri, 18 Dec 2015 00:43:07 +0100 Subject: [PATCH 075/289] pkgs.zdfmediathk: 9 -> 10 --- pkgs/applications/video/zdfmediathk/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/video/zdfmediathk/default.nix b/pkgs/applications/video/zdfmediathk/default.nix index 06342075182..b7f95fccda3 100644 --- a/pkgs/applications/video/zdfmediathk/default.nix +++ b/pkgs/applications/video/zdfmediathk/default.nix @@ -4,19 +4,16 @@ with stdenv; mkDerivation rec { - version = "9"; + version = "10"; name = "zdfmediathk-${version}"; src = fetchurl { - url = "http://downloads.sourceforge.net/project/zdfmediathk/Mediathek/Mediathek%209/MediathekView_${version}.zip"; - sha256 = "1wff0igr33z9p1mjw7yvb6658smdwnp22dv8klz0y8qg116wx7a4"; + url = "https://github.com/xaverW/MediathekView/archive/Version${version}.tar.gz"; + sha256 = "12iyigqjslbn8rzym1mq1s0mvss7r97aiy6wfdrq5m0psarlcljw"; }; - buildInputs = [ unzip ]; - - unpackPhase = "unzip $src"; - installPhase = '' mkdir -p $out/{lib,bin,share/{doc,licenses}} + cd dist/ install -m644 MediathekView.jar $out/ install -m644 -t $out/lib lib/* install -m755 bin/flv.sh $out/bin/ @@ -32,7 +29,7 @@ mkDerivation rec { meta = with stdenv.lib; { description = "Offers access to the Mediathek of different tv stations (ARD, ZDF, Arte, etc.)"; - homepage = "http://zdfmediathk.sourceforge.net/"; + homepage = "https://github.com/xaverW/MediathekView/"; license = licenses.gpl3; maintainers = [ maintainers.flosse ]; platforms = platforms.all; From 68c504fa8ffed81a4d666b059865cb0ebf85c70b Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 18 Dec 2015 02:03:00 +0100 Subject: [PATCH 076/289] beets: Use bs1770gain by default for replaygain After trying with a dozen files, it seems the bs1770gain backend is much more reliable than the audiotools backend and especially does a better job (well, compared to audiotools which either does doing nothing at all or throws an exception) when used on alboms that contain different sample rates/sizes. Additionally, we already had a few issues regarding the audiotools backend, even to the extent that @sampsyco almost wanted to drop it upstream (see sampsyco/beets#1342). Also related issues are #10376 and sampsyo/beets#1592. Signed-off-by: aszlig --- pkgs/tools/audio/beets/default.nix | 13 +++++++++---- ...ls.patch => replaygain-default-bs1770gain.patch} | 2 +- 2 files changed, 10 insertions(+), 5 deletions(-) rename pkgs/tools/audio/beets/{replaygain-default-audiotools.patch => replaygain-default-bs1770gain.patch} (93%) diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix index 123b183f2d3..7a678148944 100644 --- a/pkgs/tools/audio/beets/default.nix +++ b/pkgs/tools/audio/beets/default.nix @@ -8,7 +8,7 @@ , enableFetchart ? true , enableLastfm ? true , enableMpd ? true -, enableReplaygain ? true +, enableReplaygain ? true, bs1770gain ? null , enableThumbnails ? true , enableWeb ? true @@ -22,7 +22,7 @@ assert enableEchonest -> pythonPackages.pyechonest != null; assert enableFetchart -> pythonPackages.responses != null; assert enableLastfm -> pythonPackages.pylast != null; assert enableMpd -> pythonPackages.mpd != null; -assert enableReplaygain -> pythonPackages.audiotools != null; +assert enableReplaygain -> bs1770gain != null; assert enableThumbnails -> pythonPackages.pyxdg != null; assert enableWeb -> pythonPackages.flask != null; @@ -90,7 +90,6 @@ in buildPythonPackage rec { ++ optional enableEchonest pythonPackages.pyechonest ++ optional enableLastfm pythonPackages.pylast ++ optional enableMpd pythonPackages.mpd - ++ optional enableReplaygain pythonPackages.audiotools ++ optional enableThumbnails pythonPackages.pyxdg ++ optional enableWeb pythonPackages.flask; @@ -104,7 +103,7 @@ in buildPythonPackage rec { ]; patches = [ - ./replaygain-default-audiotools.patch + ./replaygain-default-bs1770gain.patch ]; postPatch = '' @@ -119,6 +118,12 @@ in buildPythonPackage rec { s,"flac","${flac}/bin/flac", s,"mp3val","${mp3val}/bin/mp3val", }' beetsplug/badfiles.py + '' + optionalString enableReplaygain '' + sed -i -re ' + s!^( *cmd *= *b?['\'''"])(bs1770gain['\'''"])!\1${bs1770gain}/bin/\2! + ' beetsplug/replaygain.py + sed -i -e 's/if has_program.*bs1770gain.*:/if True:/' \ + test/test_replaygain.py ''; doCheck = true; diff --git a/pkgs/tools/audio/beets/replaygain-default-audiotools.patch b/pkgs/tools/audio/beets/replaygain-default-bs1770gain.patch similarity index 93% rename from pkgs/tools/audio/beets/replaygain-default-audiotools.patch rename to pkgs/tools/audio/beets/replaygain-default-bs1770gain.patch index d852ea6feca..538f9e93303 100644 --- a/pkgs/tools/audio/beets/replaygain-default-audiotools.patch +++ b/pkgs/tools/audio/beets/replaygain-default-bs1770gain.patch @@ -11,7 +11,7 @@ index 40b3a3a..9b54a5a 100644 'overwrite': False, 'auto': True, - 'backend': u'command', -+ 'backend': u'audiotools', ++ 'backend': u'bs1770gain', 'targetlevel': 89, }) From ec3d068170a5e29731655e7fc94a4f8a8d9ba8a1 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 18 Dec 2015 03:06:47 +0100 Subject: [PATCH 077/289] tomahawk: Build with older taglib version 1.9 The 0.8.4 version of Tomahawk doesn't yet recognize the new taglib version that has been introduced in b762a20 and fails during configurePhase. Signed-off-by: aszlig --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7de5ad294a3..e109024a199 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13329,6 +13329,7 @@ let tomahawk = callPackage ../applications/audio/tomahawk { inherit (pkgs.kde4) kdelibs; + taglib = taglib_1_9; enableXMPP = config.tomahawk.enableXMPP or true; enableKDE = config.tomahawk.enableKDE or false; enableTelepathy = config.tomahawk.enableTelepathy or false; From 662ab05119e88f70d6b43518bffec0bca4bdb474 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 18 Dec 2015 05:34:46 +0100 Subject: [PATCH 078/289] beets: Add the external beets-alternatives plugin It's not included in upstream beets but are linked in the documentation under "Other plugins", see: http://beets.readthedocs.org/en/v1.3.15/plugins/index.html#other-plugins I found this one particularly useful for syncing files to varios media players that refuse to read my FLAC files properly. Signed-off-by: aszlig --- .../tools/audio/beets/alternatives-plugin.nix | 25 +++++++++++++++++++ pkgs/tools/audio/beets/default.nix | 8 +++++- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 pkgs/tools/audio/beets/alternatives-plugin.nix diff --git a/pkgs/tools/audio/beets/alternatives-plugin.nix b/pkgs/tools/audio/beets/alternatives-plugin.nix new file mode 100644 index 00000000000..1b0c9b3992b --- /dev/null +++ b/pkgs/tools/audio/beets/alternatives-plugin.nix @@ -0,0 +1,25 @@ +{ stdenv, buildPythonPackage, fetchFromGitHub, pythonPackages }: + +buildPythonPackage rec { + name = "beets-alternatives-${version}"; + version = "0.8.2"; + + src = fetchFromGitHub { + repo = "beets-alternatives"; + owner = "geigerzaehler"; + rev = "v${version}"; + sha256 = "10za6h59pxa13y8i4amqhc6392csml0dl771lssv6b6a98kamsy7"; + }; + + postPatch = '' + sed -i -e '/install_requires/,/\]/{/beets/d}' setup.py + ''; + + propagatedBuildInputs = with pythonPackages; [ futures ]; + + meta = { + description = "Beets plugin to manage external files"; + homepage = "https://github.com/geigerzaehler/beets-alternatives"; + license = stdenv.lib.licenses.mit; + }; +} diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix index 7a678148944..35a69262acd 100644 --- a/pkgs/tools/audio/beets/default.nix +++ b/pkgs/tools/audio/beets/default.nix @@ -12,6 +12,9 @@ , enableThumbnails ? true , enableWeb ? true +# External plugins +, enableAlternatives ? false + , bashInteractive, bashCompletion }: @@ -91,7 +94,10 @@ in buildPythonPackage rec { ++ optional enableLastfm pythonPackages.pylast ++ optional enableMpd pythonPackages.mpd ++ optional enableThumbnails pythonPackages.pyxdg - ++ optional enableWeb pythonPackages.flask; + ++ optional enableWeb pythonPackages.flask + ++ optional enableAlternatives (import ./alternatives-plugin.nix { + inherit stdenv buildPythonPackage pythonPackages fetchFromGitHub; + }); buildInputs = with pythonPackages; [ beautifulsoup4 From 4c61faa009df175b77148ce587ade14fe9b31b12 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 18 Dec 2015 07:09:42 +0100 Subject: [PATCH 079/289] nixos/tests/networking: Add a test for loopback It serves as a regression test, because right now if you enable networking.useNetworkd the default loopback interface doesn't get assigned any IP addresses. To be sure, I have bisected this and it has been introduced with the update to systemd 228 in 1da87d4. Only the "scripted" networking tests have to succeed in order to trigger a channel update of nixos-unstable, so I'm leaving this test as broken and we have to figure out next what's the *exact* reason for the breakage. Signed-off-by: aszlig --- nixos/release-combined.nix | 1 + nixos/release.nix | 2 ++ nixos/tests/networking.nix | 11 +++++++++++ 3 files changed, 14 insertions(+) diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index 9a2a77b3155..06890b458ef 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -71,6 +71,7 @@ in rec { (all nixos.tests.misc) (all nixos.tests.nat.firewall) (all nixos.tests.nat.standalone) + (all nixos.tests.networking.scripted.loopback) (all nixos.tests.networking.scripted.static) (all nixos.tests.networking.scripted.dhcpSimple) (all nixos.tests.networking.scripted.dhcpOneIf) diff --git a/nixos/release.nix b/nixos/release.nix index b5ac97b3b94..e1235c5fe28 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -256,6 +256,7 @@ in rec { tests.mysqlReplication = callTest tests/mysql-replication.nix {}; tests.nat.firewall = callTest tests/nat.nix { withFirewall = true; }; tests.nat.standalone = callTest tests/nat.nix { withFirewall = false; }; + tests.networking.networkd.loopback = callTest tests/networking.nix { networkd = true; test = "loopback"; }; tests.networking.networkd.static = callTest tests/networking.nix { networkd = true; test = "static"; }; tests.networking.networkd.dhcpSimple = callTest tests/networking.nix { networkd = true; test = "dhcpSimple"; }; tests.networking.networkd.dhcpOneIf = callTest tests/networking.nix { networkd = true; test = "dhcpOneIf"; }; @@ -264,6 +265,7 @@ in rec { tests.networking.networkd.macvlan = callTest tests/networking.nix { networkd = true; test = "macvlan"; }; tests.networking.networkd.sit = callTest tests/networking.nix { networkd = true; test = "sit"; }; tests.networking.networkd.vlan = callTest tests/networking.nix { networkd = true; test = "vlan"; }; + tests.networking.scripted.loopback = callTest tests/networking.nix { networkd = false; test = "loopback"; }; tests.networking.scripted.static = callTest tests/networking.nix { networkd = false; test = "static"; }; tests.networking.scripted.dhcpSimple = callTest tests/networking.nix { networkd = false; test = "dhcpSimple"; }; tests.networking.scripted.dhcpOneIf = callTest tests/networking.nix { networkd = false; test = "dhcpOneIf"; }; diff --git a/nixos/tests/networking.nix b/nixos/tests/networking.nix index 6a7f63702c4..813d7c2bf51 100644 --- a/nixos/tests/networking.nix +++ b/nixos/tests/networking.nix @@ -31,6 +31,17 @@ import ./make-test.nix ({ pkgs, networkd, test, ... }: }; }; testCases = { + loopback = { + name = "Loopback"; + machine.networking.useNetworkd = networkd; + testScript = '' + startAll; + $machine->waitForUnit("network-interfaces.target"); + $machine->waitForUnit("network.target"); + $machine->succeed("ip addr show lo | grep -q 'inet 127.0.0.1/8 '"); + $machine->succeed("ip addr show lo | grep -q 'inet6 ::1/128 '"); + ''; + }; static = { name = "Static"; nodes.router = router; From 37341582bb738a6d0ab0abdf33e710f862897c84 Mon Sep 17 00:00:00 2001 From: Allan Espinosa Date: Fri, 18 Dec 2015 00:12:31 -0600 Subject: [PATCH 080/289] screen: include the utmp from the apple_sdk --- pkgs/tools/misc/screen/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/screen/default.nix b/pkgs/tools/misc/screen/default.nix index 3e130154e46..de9836422e6 100644 --- a/pkgs/tools/misc/screen/default.nix +++ b/pkgs/tools/misc/screen/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, fetchpatch, ncurses, pam ? null }: +{ stdenv, fetchurl, fetchpatch, ncurses, utmp, pam ? null }: stdenv.mkDerivation rec { name = "screen-4.3.1"; @@ -26,7 +26,8 @@ stdenv.mkDerivation rec { sha256 = "192dsa8hm1zw8m638avzhwhnrddgizhyrwaxgwa96zr9vwai2nvc"; }); - buildInputs = [ ncurses ] ++ stdenv.lib.optional stdenv.isLinux pam; + buildInputs = [ ncurses ] ++ stdenv.lib.optional stdenv.isLinux pam + ++ stdenv.lib.optional stdenv.isDarwin utmp; doCheck = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7de5ad294a3..7902b5de95d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2985,7 +2985,9 @@ let samplicator = callPackage ../tools/networking/samplicator { }; - screen = callPackage ../tools/misc/screen { }; + screen = callPackage ../tools/misc/screen { + inherit (darwin.apple_sdk.libs) utmp; + }; screen-message = callPackage ../tools/X11/screen-message { }; From eab677ea213e040e6102f4acf7fb8ec59b1bb5d4 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 15 Dec 2015 14:53:18 +0900 Subject: [PATCH 081/289] eventstore: fix source hash (close #11732) --- pkgs/servers/nosql/eventstore/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/servers/nosql/eventstore/default.nix b/pkgs/servers/nosql/eventstore/default.nix index 9cb5dd41c1c..a42212ade08 100644 --- a/pkgs/servers/nosql/eventstore/default.nix +++ b/pkgs/servers/nosql/eventstore/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, fetchpatch, git, mono, v8, icu }: +{ stdenv, fetchFromGitHub, fetchpatch, git, mono, v8, icu }: # There are some similarities with the pinta derivation. We should # have a helper to make it easy to package these Mono apps. @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "EventStore-${version}"; version = "3.0.3"; - src = fetchgit { - url = "https://github.com/EventStore/EventStore.git"; - rev = "a1382252dd1ed0554ddb04015cdb2cbc1b0a65c1"; - sha256 = "07ir6jlli2q1yvsnyw8r8dfril6h1wmfj98yf7a6k81585v2mc6g"; - leaveDotGit = true; + src = fetchFromGitHub { + owner = "EventStore"; + repo = "EventStore"; + rev = "oss-v${version}"; + sha256 = "1xz1dpnbkqqd3ph9g3z5cghr8zp14sr9y31lrdjrdydr3gm4sll2"; }; patches = [ From 10e0b68141aef12c7841f71588b2688768483124 Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Fri, 18 Dec 2015 09:41:11 +0100 Subject: [PATCH 082/289] lastpass-cli: 0.5.1 -> 0.7.0 --- pkgs/tools/security/lastpass-cli/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/lastpass-cli/default.nix b/pkgs/tools/security/lastpass-cli/default.nix index 92c7a027d69..01495156810 100644 --- a/pkgs/tools/security/lastpass-cli/default.nix +++ b/pkgs/tools/security/lastpass-cli/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "lastpass-cli-${version}"; - version = "0.5.1"; + version = "0.7.0"; src = fetchFromGitHub { owner = "lastpass"; repo = "lastpass-cli"; rev = "v${version}"; - sha256 = "0k2dbfizd6gwd4s8badm50qg2djrh22szd932l1a96mn79q8zb70"; + sha256 = "18dn4sx173666w6aaqhwcya5x2z3q0fmhg8h76lgdmx8adrhzdzc"; }; buildInputs = [ From cf99e57c804b796299717ea429db85814c2025f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steve=20M=C3=BCller?= Date: Fri, 18 Dec 2015 09:41:51 +0100 Subject: [PATCH 083/289] php: 7.0.0 -> 7.0.1 --- pkgs/development/interpreters/php/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index 2c554648290..6760b88dac6 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -303,8 +303,8 @@ in { }; php70 = generic { - version = "7.0.0"; - sha256 = "1spwxpfx0q95cfkwl1n8hpczgwy69x901v60ywwpl5ijd0q58am9"; + version = "7.0.1"; + sha256 = "0hiyv71ysbzcl3kf28phjyycp7myjd89l8f28arrf4q0vb8kpkh4"; }; } From be6c6254107b4cac011a54946ecf39161c935db2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 18 Dec 2015 10:05:57 +0100 Subject: [PATCH 084/289] telepathy-farstream: minor update 0.6.1 -> 0.6.2 Also cleanup unneeded dependencies, in particular gst-0.10. --- .../libraries/telepathy/farstream/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/telepathy/farstream/default.nix b/pkgs/development/libraries/telepathy/farstream/default.nix index a5185689ee0..88eecd0703c 100644 --- a/pkgs/development/libraries/telepathy/farstream/default.nix +++ b/pkgs/development/libraries/telepathy/farstream/default.nix @@ -1,17 +1,14 @@ -{ stdenv, fetchurl, telepathy_glib, farstream, gst_plugins_base, dbus_glib -, pkgconfig, libxslt, python, gstreamer, gst_python, pygobject }: +{ stdenv, fetchurl, pkgconfig, telepathy_glib, farstream, dbus_glib }: stdenv.mkDerivation rec { - name = "${pname}-0.6.1"; + name = "${pname}-0.6.2"; pname = "telepathy-farstream"; src = fetchurl { url = "http://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz"; - sha256 = "0ia8nldxxan1cvplr62aicjhfcrm27s3qyk0x46c8q0fmqvnzlm3"; + sha256 = "02ky12bb92prr5f6xmvmfq4yz2lj33li6nj4829a98hk5pr9k83g"; }; - buildInputs = [ gst_plugins_base gst_python pygobject ]; - - propagatedBuildInputs = [ dbus_glib telepathy_glib gstreamer farstream ]; - nativeBuildInputs = [ pkgconfig python libxslt]; + propagatedBuildInputs = [ dbus_glib telepathy_glib farstream ]; + nativeBuildInputs = [ pkgconfig ]; } From 2ee0e45172a2955b23941ccfc20496e56076e320 Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sun, 13 Dec 2015 16:15:13 +0000 Subject: [PATCH 085/289] python systemd: init at 231 This module has been split out from the main systemd repository. --- pkgs/top-level/python-packages.nix | 97 ++++++++++++++++-------------- 1 file changed, 52 insertions(+), 45 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1ed0528f6fe..a21faf4866d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18554,7 +18554,6 @@ in modules // { }; }; - structlog = buildPythonPackage rec { name = "structlog-15.3.0"; @@ -18596,21 +18595,59 @@ in modules // { }; }; + syncthing-gtk = buildPythonPackage rec { + version = "0.6.3"; + name = "syncthing-gtk-${version}"; + src = pkgs.fetchFromGitHub { + owner = "syncthing"; + repo = "syncthing-gtk"; + rev = "v${version}"; + sha256 = "1qa5bw2qizjiqvkms8i31wsjf8cw9p0ciamxgfgq6n37wcalv6ms"; + }; - # XXX: ValueError: ZIP does not support timestamps before 1980 - # svneverever = buildPythonPackage rec { - # name = "svneverever-778489a8"; - # - # src = pkgs.fetchgit { - # url = git://git.goodpoint.de/svneverever.git; - # rev = "778489a8c6f07825fb18c9da3892a781c3d659ac"; - # sha256 = "41c9da1dab2be7b60bff87e618befdf5da37c0a56287385cb0cbd3f91e452bb6"; - # }; - # - # propagatedBuildInputs = with self; [ pysvn argparse ]; - # - # doCheck = false; - # }; + disabled = isPy3k; + + propagatedBuildInputs = with self; [ pkgs.syncthing dateutil pyinotify pkgs.libnotify pkgs.psmisc + pygobject3 pkgs.gtk3 ]; + + patchPhase = '' + substituteInPlace "scripts/syncthing-gtk" \ + --replace "/usr/share" "$out/share" + substituteInPlace setup.py --replace "version = get_version()" "version = '${version}'" + ''; + + meta = { + description = " GTK3 & python based GUI for Syncthing "; + maintainers = with maintainers; [ DamienCassou ]; + platforms = pkgs.syncthing.meta.platforms; + homepage = "https://github.com/syncthing/syncthing-gtk"; + license = licenses.gpl2; + }; + }; + + systemd = buildPythonPackage rec { + version = "231"; + name = "python-systemd-${version}"; + + src = pkgs.fetchurl { + url = "https://github.com/systemd/python-systemd/archive/v${version}.tar.gz"; + sha256 = "1sifq7mdg0y5ngab8vjy8995nz9c0hxny35dxs5qjx0k0hyzb71c"; + }; + + buildInputs = with pkgs; [ systemd pkgconfig ]; + + patchPhase = '' + substituteInPlace setup.py \ + --replace "/usr/include" "${pkgs.systemd}/include" + echo '#include ' >> systemd/pyutil.h + ''; + + meta = { + description = "Python module for native access to the systemd facilities"; + homepage = http://www.freedesktop.org/software/systemd/python-systemd/; + license = licenses.lgpl21; + }; + }; tabulate = buildPythonPackage rec { version = "0.7.5"; @@ -18656,36 +18693,6 @@ in modules // { }; }; - syncthing-gtk = buildPythonPackage rec { - version = "0.6.3"; - name = "syncthing-gtk-${version}"; - src = pkgs.fetchFromGitHub { - owner = "syncthing"; - repo = "syncthing-gtk"; - rev = "v${version}"; - sha256 = "1qa5bw2qizjiqvkms8i31wsjf8cw9p0ciamxgfgq6n37wcalv6ms"; - }; - - disabled = isPy3k; - - propagatedBuildInputs = with self; [ pkgs.syncthing dateutil pyinotify pkgs.libnotify pkgs.psmisc - pygobject3 pkgs.gtk3 ]; - - patchPhase = '' - substituteInPlace "scripts/syncthing-gtk" \ - --replace "/usr/share" "$out/share" - substituteInPlace setup.py --replace "version = get_version()" "version = '${version}'" - ''; - - meta = { - description = " GTK3 & python based GUI for Syncthing "; - maintainers = with maintainers; [ DamienCassou ]; - platforms = pkgs.syncthing.meta.platforms; - homepage = "https://github.com/syncthing/syncthing-gtk"; - license = licenses.gpl2; - }; - }; - tarsnapper = buildPythonPackage rec { name = "tarsnapper-0.2.1"; disabled = isPy3k; From 2eb8c3e491f7431e65fc2ea43c7f6949fca2d6ad Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sun, 13 Dec 2015 16:31:36 +0000 Subject: [PATCH 086/289] systemd: python module split out since v223 --- pkgs/os-specific/linux/systemd/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 54c04a8b3f2..2e742b4d82d 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -3,14 +3,11 @@ , glib, kbd, libxslt, coreutils, libgcrypt , kexectools, libmicrohttpd, linuxHeaders, libseccomp , autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45 -, pythonPackages ? null, pythonSupport ? false , enableKDbus ? false }: assert stdenv.isLinux; -assert pythonSupport -> pythonPackages != null; - stdenv.mkDerivation rec { version = "228"; name = "systemd-${version}"; @@ -32,7 +29,7 @@ stdenv.mkDerivation rec { by generating an autoconf'd tarball, but that's probably not worth it. */ autoreconfHook gettext docbook_xsl docbook_xml_dtd_42 docbook_xml_dtd_45 - ] ++ stdenv.lib.optionals pythonSupport [pythonPackages.python pythonPackages.lxml]; + ]; configureFlags = [ "--localstatedir=/var" From 242c24c402e9c00a8d3a4ffabe087b5b7e709a55 Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sun, 13 Dec 2015 16:36:21 +0000 Subject: [PATCH 087/289] fail2ban: python packaging workaround for /etc/fail2ban installation (fixes #11534) Removed path substitutions from setup.py because these should be handled by the setuptools install prefix. Except that the install prefix won't quite work until issue #4968 is resolved. In the meantime there are preInstall and postInstall scripts so that this package continues to work with the nix python packaging improvements. --- pkgs/tools/security/fail2ban/default.nix | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix index 184f8a59d28..33638e5f494 100644 --- a/pkgs/tools/security/fail2ban/default.nix +++ b/pkgs/tools/security/fail2ban/default.nix @@ -18,14 +18,6 @@ pythonPackages.buildPythonPackage { ++ [ python.modules.sqlite3 gamin ]; preConfigure = '' - substituteInPlace setup.cfg \ - --replace /usr $out - - substituteInPlace setup.py \ - --replace /usr $out \ - --replace /etc $out/etc \ - --replace /var $TMPDIR/var \ - for i in fail2ban-client fail2ban-regex fail2ban-server; do substituteInPlace $i \ --replace /usr/share/fail2ban $out/share/fail2ban @@ -40,6 +32,18 @@ pythonPackages.buildPythonPackage { doCheck = false; + preInstall = '' + # see https://github.com/NixOS/nixpkgs/issues/4968 + ${python}/bin/${python.executable} setup.py install_data --install-dir=$out --root=$out + ''; + + postInstall = let + sitePackages = "$out/lib/${python.libPrefix}/site-packages"; + in '' + # see https://github.com/NixOS/nixpkgs/issues/4968 + rm -rf ${sitePackages}/etc ${sitePackages}/usr ${sitePackages}/var; + ''; + meta = with stdenv.lib; { homepage = http://www.fail2ban.org/; description = "A program that scans log files for repeated failing login attempts and bans IP addresses"; From 201859ea188a976abba64ce17a27a702ec50657c Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sun, 13 Dec 2015 16:53:07 +0000 Subject: [PATCH 088/289] fail2ban: update python-systemd dependency The python module has been split off from systemd since v223. --- pkgs/tools/security/fail2ban/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 6 +----- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix index 33638e5f494..a0451ea63a3 100644 --- a/pkgs/tools/security/fail2ban/default.nix +++ b/pkgs/tools/security/fail2ban/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchzip, python, pythonPackages, unzip, systemd, gamin }: +{ stdenv, fetchzip, python, pythonPackages, unzip, gamin }: let version = "0.9.1"; in @@ -14,8 +14,8 @@ pythonPackages.buildPythonPackage { buildInputs = [ unzip ]; - pythonPath = (stdenv.lib.optional stdenv.isLinux systemd) - ++ [ python.modules.sqlite3 gamin ]; + propagatedBuildInputs = [ python.modules.sqlite3 gamin ] + ++ (stdenv.lib.optional stdenv.isLinux pythonPackages.systemd); preConfigure = '' for i in fail2ban-client fail2ban-regex fail2ban-server; do diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e109024a199..e47ce53832e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1432,11 +1432,7 @@ let fabric = pythonPackages.fabric; - fail2ban = callPackage ../tools/security/fail2ban { - systemd = systemd.override { - pythonSupport = true; - }; - }; + fail2ban = callPackage ../tools/security/fail2ban { }; fakeroot = callPackage ../tools/system/fakeroot { }; From 75d143ae9a44306c412be09105d05044d1ac33c2 Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sun, 13 Dec 2015 15:13:18 +0000 Subject: [PATCH 089/289] fail2ban: 0.9.1 -> 0.9.3 --- pkgs/tools/security/fail2ban/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix index a0451ea63a3..667157978a3 100644 --- a/pkgs/tools/security/fail2ban/default.nix +++ b/pkgs/tools/security/fail2ban/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchzip, python, pythonPackages, unzip, gamin }: -let version = "0.9.1"; in +let version = "0.9.3"; in pythonPackages.buildPythonPackage { name = "fail2ban-${version}"; @@ -9,7 +9,7 @@ pythonPackages.buildPythonPackage { src = fetchzip { name = "fail2ban-${version}-src"; url = "https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"; - sha256 = "111xvy2gxwn868kn0zy2fmdfa423z6fk57i7wsfrc0l74p1cdvs5"; + sha256 = "1pwgr56i6l6wh2ap8b5vknxgsscfzjqy2nmd1c3vzdii5kf72j0f"; }; buildInputs = [ unzip ]; From 7070c2d9008f8f637d25f9da2f4fd129a8619f5e Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Sat, 12 Dec 2015 14:23:56 -0200 Subject: [PATCH 090/289] Higan: 094 -> 095 In order to increase portability and flexibility, now the build phase explicitly sets "compiler=c++" as a make parameter. Further, there is a link "higan" for backwards compatibility; higan was split in icarus (the game ROMS database manager) and tomoko (the emulator itself). --- .../emulators/higan/0001-change-flags.diff | 35 +++++++++++++ pkgs/misc/emulators/higan/default.nix | 52 +++++++++---------- pkgs/top-level/all-packages.nix | 4 +- 3 files changed, 61 insertions(+), 30 deletions(-) create mode 100644 pkgs/misc/emulators/higan/0001-change-flags.diff diff --git a/pkgs/misc/emulators/higan/0001-change-flags.diff b/pkgs/misc/emulators/higan/0001-change-flags.diff new file mode 100644 index 00000000000..78f4a248c5f --- /dev/null +++ b/pkgs/misc/emulators/higan/0001-change-flags.diff @@ -0,0 +1,35 @@ +diff -rupN higan_v095-source.orig/GNUmakefile higan_v095-source/GNUmakefile +--- higan_v095-source.orig/GNUmakefile 2015-11-04 10:28:26.173428178 +0100 ++++ higan_v095-source/GNUmakefile 2015-11-04 10:28:31.752231593 +0100 +@@ -12,7 +12,8 @@ target := tomoko + # console := true + + # compiler +-flags += -I. -O3 ++flags += -I. $(CXXFLAGS) ++link += $(LDFLAGS) + objects := libco + + # profile-guided optimization mode +@@ -43,7 +44,7 @@ ifeq ($(platform),windows) + else ifeq ($(platform),macosx) + flags += -march=native + else ifeq ($(platform),linux) +- flags += -march=native -fopenmp ++ flags += -fopenmp + link += -fopenmp + link += -Wl,-export-dynamic + link += -lX11 -lXext -ldl +diff -rupN higan_v095-source.orig/icarus/GNUmakefile higan_v095-source/icarus/GNUmakefile +--- higan_v095-source.orig/icarus/GNUmakefile 2015-11-04 10:28:26.186486119 +0100 ++++ higan_v095-source/icarus/GNUmakefile 2015-11-04 10:28:48.755059317 +0100 +@@ -1,8 +1,8 @@ + include ../nall/GNUmakefile + include ../hiro/GNUmakefile + +-flags += -I.. -O3 +-link += ++flags += -I.. $(CXXFLAGS) ++link += $(LDFLAGS) + objects := obj/hiro.o obj/icarus.o + objects += $(if $(call streq,$(platform),windows),obj/resource.o) diff --git a/pkgs/misc/emulators/higan/default.nix b/pkgs/misc/emulators/higan/default.nix index 95793de9884..080805e9df5 100644 --- a/pkgs/misc/emulators/higan/default.nix +++ b/pkgs/misc/emulators/higan/default.nix @@ -1,56 +1,51 @@ { stdenv, fetchurl -, pkgconfig +, p7zip, pkgconfig , libX11, libXv , udev , mesa, SDL , libao, openal, libpulseaudio -, profile ? "performance" # Options: accuracy, balanced, performance -, guiToolkit ? "gtk" # can be gtk or qt4 -, gtk ? null, qt4 ? null }: - -assert guiToolkit == "gtk" || guiToolkit == "qt4"; -assert (guiToolkit == "gtk" -> gtk != null) || (guiToolkit == "qt4" -> qt4 != null); +, gtk, gtksourceview +, profile ? "balanced" # Options: accuracy, balanced, performance +}: with stdenv.lib; stdenv.mkDerivation rec { - name = "higan-${version}"; - version = "094"; - sourceName = "higan_v${version}-source"; + name = "higan-${meta.version}"; + sourceName = "higan_v${meta.version}-source"; src = fetchurl { - urls = [ "http://files.byuu.org/download/${sourceName}.tar.xz" ]; - sha256 = "06qm271pzf3qf2labfw2lx6k0xcd89jndmn0jzmnc40cspwrs52y"; + urls = [ "http://download.byuu.org/${sourceName}.7z" ]; + sha256 = "0xsgyijcf4psi3mlahr5iq7vbbw3jby1if5pkhg8c5xqckpi2fj4"; curlOpts = "--user-agent 'Mozilla/5.0'"; # the good old user-agent trick... }; + patches = [ ./0001-change-flags.diff ]; + buildInputs = - [ pkgconfig libX11 libXv udev mesa SDL libao openal libpulseaudio ] - ++ optionals (guiToolkit == "gtk") [ gtk ] - ++ optionals (guiToolkit == "qt4") [ qt4 ]; + [ p7zip pkgconfig libX11 libXv udev mesa SDL libao openal libpulseaudio gtk gtksourceview ]; + + unpackPhase = '' + 7z x $src + sourceRoot=${sourceName} + ''; buildPhase = '' - make phoenix=${guiToolkit} profile=${profile} -C ananke - make phoenix=${guiToolkit} profile=${profile} + make compiler=c++ profile=${profile} -C icarus + make compiler=c++ profile=${profile} ''; installPhase = '' - install -dm 755 $out/share/applications $out/share/pixmaps $out/share/higan/Video\ Shaders $out/bin $out/lib - + install -dm 755 $out/bin $out/share/applications $out/share/higan $out/share/pixmaps + install -m 755 icarus/icarus $out/bin/ + install -m 755 out/tomoko $out/bin/ + (cd $out/bin; ln -Ts tomoko higan) #backwards compatibility install -m 644 data/higan.desktop $out/share/applications/ install -m 644 data/higan.png $out/share/pixmaps/ - cp -dr --no-preserve=ownership profile/* data/cheats.bml $out/share/higan/ - cp -dr --no-preserve=ownership shaders/*.shader $out/share/higan/Video\ Shaders/ - - install -m 755 out/higan $out/bin/higan - install -m 644 ananke/libananke.so $out/lib/libananke.so.1 - (cd $out/lib && ln -s libananke.so.1 libananke.so) + cp -dr --no-preserve='ownership' profile/* data/cheats.bml $out/share/higan/ ''; fixupPhase = '' - oldRPath=$(patchelf --print-rpath $out/bin/higan) - patchelf --set-rpath $oldRPath:$out/lib $out/bin/higan - # A dirty workaround, suggested by @cpages: # we create a first-run script to populate # the local $HOME with all the auxiliary @@ -67,6 +62,7 @@ stdenv.mkDerivation rec { ''; meta = { + version = "095"; description = "An open-source, cycle-accurate Nintendo multi-system emulator"; longDescription = '' Higan (formerly bsnes) is a Nintendo multi-system emulator. diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e109024a199..1176256e63a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15773,8 +15773,8 @@ let snes9x-gtk = callPackage ../misc/emulators/snes9x-gtk { }; higan = callPackage ../misc/emulators/higan { - profile = config.higan.profile or "performance"; - guiToolkit = config.higan.guiToolkit or "gtk"; + inherit (gnome) gtksourceview; + profile = config.higan.profile or "balanced"; }; misc = callPackage ../misc/misc.nix { }; From 1932d101e21dfab5af1c475c10b5ae463d28a283 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 18 Dec 2015 10:51:27 +0100 Subject: [PATCH 091/289] telepathy-qt: minor update, fix by patch, unify - The patch fixes building against gst-1.6. - Having to change three files with almost same contents would drive me mad, so I unified them into a single expression. /cc @ttuegel - libxslt seemed unneeded, and it uses libxml2 anyway. --- .../libraries/telepathy/qt/default.nix | 20 +++++++++---- .../libraries/telepathy/qt5/default.nix | 29 ------------------- .../libraries/telepathy/qt5/old.nix | 29 ------------------- pkgs/top-level/all-packages.nix | 6 ++-- 4 files changed, 17 insertions(+), 67 deletions(-) delete mode 100644 pkgs/development/libraries/telepathy/qt5/default.nix delete mode 100644 pkgs/development/libraries/telepathy/qt5/old.nix diff --git a/pkgs/development/libraries/telepathy/qt/default.nix b/pkgs/development/libraries/telepathy/qt/default.nix index 7ef48d09725..1052e92d380 100644 --- a/pkgs/development/libraries/telepathy/qt/default.nix +++ b/pkgs/development/libraries/telepathy/qt/default.nix @@ -1,19 +1,27 @@ -{ stdenv, fetchurl, cmake, qt4, pkgconfig, python, libxslt, dbus_glib, dbus_daemon -, telepathy_farstream, telepathy_glib, pythonDBus }: +{ stdenv, fetchurl, cmake, qtbase, pkgconfig, python, dbus_glib, dbus_daemon +, telepathy_farstream, telepathy_glib, pythonDBus, fetchpatch }: stdenv.mkDerivation rec { - name = "telepathy-qt-0.9.5"; + name = "telepathy-qt-0.9.6"; src = fetchurl { url = "http://telepathy.freedesktop.org/releases/telepathy-qt/${name}.tar.gz"; - sha256 = "13lwh23ad9bg7hx1mj4xjc2lb8nlaaw8hbrmx5gg8nz5xxc4hiwk"; + sha256 = "0j7hs055cx5g9chn3b2p0arig70m5g9547qgqvk29kxdyxxxsmqc"; }; + patches = [(fetchpatch { + name = "gst-1.6.patch"; + url = "http://cgit.freedesktop.org/telepathy/telepathy-qt/patch" + + "/?id=ec4a3d62b68a57254515f01fc5ea3325ffb1dbfb"; + sha256 = "1rh7n3xyrwpvpa3haqi35qn4mfz4396ha43w4zsqpmcyda9y65v2"; + })]; - nativeBuildInputs = [ cmake pkgconfig python libxslt ]; - propagatedBuildInputs = [ qt4 dbus_glib telepathy_farstream telepathy_glib pythonDBus ]; + nativeBuildInputs = [ cmake pkgconfig python ]; + propagatedBuildInputs = [ qtbase dbus_glib telepathy_farstream telepathy_glib pythonDBus ]; buildInputs = stdenv.lib.optional doCheck dbus_daemon; + cmakeFlags = "-DDESIRED_QT_VERSION=${builtins.substring 0 1 qtbase.version}"; + preBuild = '' NIX_CFLAGS_COMPILE+=" `pkg-config --cflags dbus-glib-1`" ''; diff --git a/pkgs/development/libraries/telepathy/qt5/default.nix b/pkgs/development/libraries/telepathy/qt5/default.nix deleted file mode 100644 index 1c18e844689..00000000000 --- a/pkgs/development/libraries/telepathy/qt5/default.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ stdenv, fetchurl, cmake, qtbase, pkgconfig, python, libxslt, dbus_glib, dbus_daemon -, telepathy_farstream, telepathy_glib, pythonDBus }: - -stdenv.mkDerivation rec { - name = "telepathy-qt5-0.9.5"; - - src = fetchurl { - url = "http://telepathy.freedesktop.org/releases/telepathy-qt/${name}.tar.gz"; - sha256 = "13lwh23ad9bg7hx1mj4xjc2lb8nlaaw8hbrmx5gg8nz5xxc4hiwk"; - }; - - nativeBuildInputs = [ cmake pkgconfig python libxslt ]; - propagatedBuildInputs = [ qtbase dbus_glib telepathy_farstream telepathy_glib pythonDBus ]; - - cmakeFlags = [ "-DDESIRED_QT_VERSION=5" ]; - - buildInputs = stdenv.lib.optional doCheck dbus_daemon; - - preBuild = '' - NIX_CFLAGS_COMPILE+=" `pkg-config --cflags dbus-glib-1`" - ''; - - enableParallelBuilding = true; - doCheck = false; # giving up for now - - meta = { - platforms = stdenv.lib.platforms.linux; - }; -} diff --git a/pkgs/development/libraries/telepathy/qt5/old.nix b/pkgs/development/libraries/telepathy/qt5/old.nix deleted file mode 100644 index 50d569f3091..00000000000 --- a/pkgs/development/libraries/telepathy/qt5/old.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ stdenv, fetchurl, cmake, qt5, pkgconfig, python, libxslt, dbus_glib, dbus_daemon -, telepathy_farstream, telepathy_glib, pythonDBus }: - -stdenv.mkDerivation rec { - name = "telepathy-qt5-0.9.5"; - - src = fetchurl { - url = "http://telepathy.freedesktop.org/releases/telepathy-qt/${name}.tar.gz"; - sha256 = "13lwh23ad9bg7hx1mj4xjc2lb8nlaaw8hbrmx5gg8nz5xxc4hiwk"; - }; - - nativeBuildInputs = [ cmake pkgconfig python libxslt ]; - propagatedBuildInputs = [ qt5.base dbus_glib telepathy_farstream telepathy_glib pythonDBus ]; - - cmakeFlags = [ "-DDESIRED_QT_VERSION=5" ]; - - buildInputs = stdenv.lib.optional doCheck dbus_daemon; - - preBuild = '' - NIX_CFLAGS_COMPILE+=" `pkg-config --cflags dbus-glib-1`" - ''; - - enableParallelBuilding = true; - doCheck = false; # giving up for now - - meta = { - platforms = stdenv.lib.platforms.linux; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e109024a199..13cac40328f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8190,7 +8190,7 @@ let signon = callPackage ../development/libraries/signon { }; - telepathy = callPackage ../development/libraries/telepathy/qt5 { }; + telepathy = callPackage ../development/libraries/telepathy/qt { }; vlc = callPackage ../applications/video/vlc { qt4 = null; @@ -8503,9 +8503,9 @@ let telepathy_farstream = callPackage ../development/libraries/telepathy/farstream {}; - telepathy_qt = callPackage ../development/libraries/telepathy/qt { }; + telepathy_qt = callPackage ../development/libraries/telepathy/qt { qtbase = qt4; }; - telepathy_qt5 = callPackage ../development/libraries/telepathy/qt5/old.nix {}; + telepathy_qt5 = telepathy_qt.override { qtbase = qt5.base; }; tevent = callPackage ../development/libraries/tevent { python = python2; From d2d68b0d92934d76a0c4294c357e4a4226cbbfed Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Dec 2015 00:30:45 +0100 Subject: [PATCH 092/289] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20151217 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/1e4c0752db037bd56ee5731098a5fb3fe12da18c - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/42db5021ee1a4b501ec28e7d32a17b76a6b49e74 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/253d4da34232ee2e34c825f5937f836f3374abd1 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/57c8505aea9ea07de3bc4e319a583befbb124ea4 --- .../haskell-modules/configuration-lts-0.0.nix | 6 + .../haskell-modules/configuration-lts-0.1.nix | 7 + .../haskell-modules/configuration-lts-0.2.nix | 7 + .../haskell-modules/configuration-lts-0.3.nix | 7 + .../haskell-modules/configuration-lts-0.4.nix | 7 + .../haskell-modules/configuration-lts-0.5.nix | 7 + .../haskell-modules/configuration-lts-0.6.nix | 7 + .../haskell-modules/configuration-lts-0.7.nix | 7 + .../haskell-modules/configuration-lts-1.0.nix | 7 + .../haskell-modules/configuration-lts-1.1.nix | 7 + .../configuration-lts-1.10.nix | 8 + .../configuration-lts-1.11.nix | 8 + .../configuration-lts-1.12.nix | 8 + .../configuration-lts-1.13.nix | 8 + .../configuration-lts-1.14.nix | 8 + .../configuration-lts-1.15.nix | 8 + .../haskell-modules/configuration-lts-1.2.nix | 7 + .../haskell-modules/configuration-lts-1.4.nix | 7 + .../haskell-modules/configuration-lts-1.5.nix | 7 + .../haskell-modules/configuration-lts-1.7.nix | 7 + .../haskell-modules/configuration-lts-1.8.nix | 8 + .../haskell-modules/configuration-lts-1.9.nix | 8 + .../haskell-modules/configuration-lts-2.0.nix | 8 + .../haskell-modules/configuration-lts-2.1.nix | 8 + .../configuration-lts-2.10.nix | 8 + .../configuration-lts-2.11.nix | 8 + .../configuration-lts-2.12.nix | 8 + .../configuration-lts-2.13.nix | 8 + .../configuration-lts-2.14.nix | 8 + .../configuration-lts-2.15.nix | 8 + .../configuration-lts-2.16.nix | 9 + .../configuration-lts-2.17.nix | 10 + .../configuration-lts-2.18.nix | 11 + .../configuration-lts-2.19.nix | 11 + .../haskell-modules/configuration-lts-2.2.nix | 8 + .../configuration-lts-2.20.nix | 11 + .../configuration-lts-2.21.nix | 11 + .../configuration-lts-2.22.nix | 11 + .../haskell-modules/configuration-lts-2.3.nix | 8 + .../haskell-modules/configuration-lts-2.4.nix | 8 + .../haskell-modules/configuration-lts-2.5.nix | 8 + .../haskell-modules/configuration-lts-2.6.nix | 8 + .../haskell-modules/configuration-lts-2.7.nix | 8 + .../haskell-modules/configuration-lts-2.8.nix | 8 + .../haskell-modules/configuration-lts-2.9.nix | 8 + .../haskell-modules/configuration-lts-3.0.nix | 15 + .../haskell-modules/configuration-lts-3.1.nix | 16 + .../configuration-lts-3.10.nix | 16 + .../configuration-lts-3.11.nix | 16 + .../configuration-lts-3.12.nix | 16 + .../configuration-lts-3.13.nix | 16 + .../configuration-lts-3.14.nix | 16 + .../configuration-lts-3.15.nix | 16 + .../configuration-lts-3.16.nix | 17 + .../configuration-lts-3.17.nix | 18 + .../configuration-lts-3.18.nix | 19 + .../haskell-modules/configuration-lts-3.2.nix | 16 + .../haskell-modules/configuration-lts-3.3.nix | 16 + .../haskell-modules/configuration-lts-3.4.nix | 16 + .../haskell-modules/configuration-lts-3.5.nix | 16 + .../haskell-modules/configuration-lts-3.6.nix | 16 + .../haskell-modules/configuration-lts-3.7.nix | 16 + .../haskell-modules/configuration-lts-3.8.nix | 16 + .../haskell-modules/configuration-lts-3.9.nix | 16 + .../haskell-modules/hackage-packages.nix | 846 ++++++++++++------ 65 files changed, 1228 insertions(+), 290 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 23b3bdf8454..bbdac77f255 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -1973,6 +1973,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -4792,6 +4793,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4982,6 +4984,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5377,6 +5380,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6929,6 +6933,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7167,6 +7172,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 22a5f246372..e4843781374 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -1973,6 +1973,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2190,6 +2191,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4791,6 +4793,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4981,6 +4984,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5376,6 +5380,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6928,6 +6933,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7166,6 +7172,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index adfe05857ed..05eb3606504 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -1973,6 +1973,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2190,6 +2191,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4791,6 +4793,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4981,6 +4984,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5376,6 +5380,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6928,6 +6933,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7166,6 +7172,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 1856c9787ab..0f715809110 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -1973,6 +1973,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2190,6 +2191,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4791,6 +4793,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4981,6 +4984,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5376,6 +5380,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6928,6 +6933,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7166,6 +7172,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 26af9f6a7c4..9a854e7c578 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -1973,6 +1973,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2190,6 +2191,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4788,6 +4790,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4978,6 +4981,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5373,6 +5377,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6924,6 +6929,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7162,6 +7168,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index a41c1bfc3b4..cb4a40e3b65 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -1973,6 +1973,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2190,6 +2191,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4788,6 +4790,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4978,6 +4981,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5373,6 +5377,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6924,6 +6929,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7162,6 +7168,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index fadd237ffbc..53c49850676 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -1970,6 +1970,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2187,6 +2188,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4784,6 +4786,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4974,6 +4977,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5369,6 +5373,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6918,6 +6923,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7156,6 +7162,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index c5aa7f8ebb9..788506e212d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -1970,6 +1970,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2187,6 +2188,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4784,6 +4786,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4974,6 +4977,7 @@ self: super: { "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5369,6 +5373,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6918,6 +6923,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7156,6 +7162,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index dac2e4c977f..800dcfdb69e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -1963,6 +1963,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; @@ -2179,6 +2180,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4772,6 +4774,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4962,6 +4965,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5357,6 +5361,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6904,6 +6909,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7142,6 +7148,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index fbcdb8a86f5..3f94ca7c1e0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -1962,6 +1962,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2177,6 +2178,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4765,6 +4767,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4955,6 +4958,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5350,6 +5354,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6896,6 +6901,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7134,6 +7140,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 992d6212022..d6a801b156c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -1959,6 +1959,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2173,6 +2174,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4223,6 +4225,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4745,6 +4748,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4934,6 +4938,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5328,6 +5333,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6868,6 +6874,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7105,6 +7112,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 8aa2db947bb..70ba9664ab7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -1959,6 +1959,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2173,6 +2174,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4222,6 +4224,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4743,6 +4746,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4931,6 +4935,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5324,6 +5329,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6864,6 +6870,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7101,6 +7108,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 87461679853..5a167b8678b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -1959,6 +1959,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2173,6 +2174,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4221,6 +4223,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4742,6 +4745,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4930,6 +4934,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_8"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5323,6 +5328,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6863,6 +6869,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7100,6 +7107,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index e50346655f1..aad007e67de 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -1959,6 +1959,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2173,6 +2174,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4220,6 +4222,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4741,6 +4744,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4929,6 +4933,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_8"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5322,6 +5327,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6862,6 +6868,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7099,6 +7106,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 2addeb5c06d..80925f0cd60 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -1957,6 +1957,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2171,6 +2172,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4216,6 +4218,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4737,6 +4740,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4925,6 +4929,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_9"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5317,6 +5322,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6854,6 +6860,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7091,6 +7098,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 5682f7e1f25..3190e508d4f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -1956,6 +1956,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2169,6 +2170,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4211,6 +4213,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4732,6 +4735,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4920,6 +4924,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_9"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5312,6 +5317,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6845,6 +6851,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7082,6 +7089,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index d5b3f51926b..b9522cce53b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -1962,6 +1962,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2176,6 +2177,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4762,6 +4764,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4952,6 +4955,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5347,6 +5351,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6891,6 +6896,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7128,6 +7134,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 0b3ac781834..296b837f1aa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -1961,6 +1961,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2175,6 +2176,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4759,6 +4761,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4949,6 +4952,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5344,6 +5348,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6886,6 +6891,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7123,6 +7129,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index fd90d1d8d45..d20f6f60d6b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -1960,6 +1960,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2174,6 +2175,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4757,6 +4759,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4947,6 +4950,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5342,6 +5346,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6884,6 +6889,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7121,6 +7127,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index dad8d991a76..db971f7d85c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -1960,6 +1960,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2174,6 +2175,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4752,6 +4754,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4941,6 +4944,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5336,6 +5340,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6878,6 +6883,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7115,6 +7121,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 11ba47df60d..dd8b559020b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -1960,6 +1960,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2174,6 +2175,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4225,6 +4227,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4748,6 +4751,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4937,6 +4941,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5331,6 +5336,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6873,6 +6879,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7110,6 +7117,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 3d43aab4224..bdc271e4378 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -1960,6 +1960,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2174,6 +2175,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4224,6 +4226,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_16"; "hlogger" = dontDistribute super."hlogger"; @@ -4746,6 +4749,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4935,6 +4939,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5329,6 +5334,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_9_3"; @@ -6870,6 +6876,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = dontDistribute super."retry"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7107,6 +7114,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index cab9b99357b..f47ce735b9e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -1943,6 +1943,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2154,6 +2155,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4184,6 +4186,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_19"; "hlogger" = dontDistribute super."hlogger"; @@ -4697,6 +4700,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4882,6 +4886,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_11"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5269,6 +5274,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6786,6 +6792,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7022,6 +7029,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 3b450fc9081..553a4ef2834 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -1942,6 +1942,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2153,6 +2154,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4182,6 +4184,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_19"; "hlogger" = dontDistribute super."hlogger"; @@ -4695,6 +4698,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4880,6 +4884,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5267,6 +5272,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6784,6 +6790,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7020,6 +7027,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 3e703edcc20..632f1da31ae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -1930,6 +1930,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2140,6 +2141,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4159,6 +4161,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4668,6 +4671,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4850,6 +4854,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5234,6 +5239,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6738,6 +6744,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6973,6 +6980,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 8f8cd53d76b..211d1193965 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -1929,6 +1929,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2139,6 +2140,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4156,6 +4158,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4664,6 +4667,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4845,6 +4849,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5229,6 +5234,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6730,6 +6736,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6965,6 +6972,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index b612864ed83..9fddb60412e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -1929,6 +1929,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2139,6 +2140,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4156,6 +4158,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4664,6 +4667,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4845,6 +4849,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5229,6 +5234,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6730,6 +6736,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6964,6 +6971,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index bd2110ef60c..516f6370f0c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -1929,6 +1929,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2139,6 +2140,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4155,6 +4157,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4662,6 +4665,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4843,6 +4847,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5227,6 +5232,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6727,6 +6733,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6961,6 +6968,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index cec6bda6e3a..339b5d73d6d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -1928,6 +1928,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2138,6 +2139,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4153,6 +4155,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4659,6 +4662,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4840,6 +4844,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5224,6 +5229,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6723,6 +6729,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6957,6 +6964,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 2d98f22ccc1..ed79543f331 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -1928,6 +1928,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2138,6 +2139,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4152,6 +4154,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4658,6 +4661,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4839,6 +4843,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5223,6 +5228,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6719,6 +6725,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6953,6 +6960,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index cebef846148..5b3b21e8168 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -1927,6 +1927,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2136,6 +2137,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4145,6 +4147,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4651,6 +4654,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4832,6 +4836,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5215,6 +5220,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6711,6 +6717,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6945,6 +6952,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7170,6 +7178,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 5d66775b49e..d86fd0c1a13 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -1437,6 +1437,7 @@ self: super: { "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1924,6 +1925,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2133,6 +2135,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4138,6 +4141,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4644,6 +4648,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4825,6 +4830,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5208,6 +5214,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1"; @@ -6702,6 +6709,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6936,6 +6944,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7161,6 +7170,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 8f3048c29e7..1494a52c28d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -1437,6 +1437,7 @@ self: super: { "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1922,6 +1923,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2131,6 +2133,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -3585,6 +3588,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -4133,6 +4137,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4639,6 +4644,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4820,6 +4826,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5203,6 +5210,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1_1"; @@ -6695,6 +6703,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6929,6 +6938,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7154,6 +7164,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index fd4812219ec..7af271824c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -1437,6 +1437,7 @@ self: super: { "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1922,6 +1923,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2131,6 +2133,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -3584,6 +3587,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -4132,6 +4136,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4638,6 +4643,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4819,6 +4825,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5202,6 +5209,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_1_1"; @@ -6692,6 +6700,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6926,6 +6935,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7150,6 +7160,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index f54a7c92e52..edc9796f2ba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -1939,6 +1939,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2150,6 +2151,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4179,6 +4181,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_19"; "hlogger" = dontDistribute super."hlogger"; @@ -4692,6 +4695,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4877,6 +4881,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5264,6 +5269,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6781,6 +6787,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7017,6 +7024,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index f78f8e91c56..e9e2de96aa3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -1437,6 +1437,7 @@ self: super: { "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1922,6 +1923,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2130,6 +2132,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -3583,6 +3586,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -4130,6 +4134,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4636,6 +4641,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4817,6 +4823,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5200,6 +5207,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6689,6 +6697,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6923,6 +6932,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7146,6 +7156,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 12f836e2f9a..1e261f7e7cc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -1437,6 +1437,7 @@ self: super: { "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1922,6 +1923,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2130,6 +2132,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -3583,6 +3586,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -4130,6 +4134,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4636,6 +4641,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4817,6 +4823,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5199,6 +5206,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6687,6 +6695,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6921,6 +6930,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7144,6 +7154,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index a1f3a7d8573..e0f88573e21 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -1436,6 +1436,7 @@ self: super: { "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1921,6 +1922,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2129,6 +2131,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -3582,6 +3585,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -4128,6 +4132,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4634,6 +4639,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4815,6 +4821,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5196,6 +5203,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6683,6 +6691,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6917,6 +6926,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -7140,6 +7150,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 090646697dc..c38b94ccae7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -1939,6 +1939,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2150,6 +2151,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4178,6 +4180,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_19"; "hlogger" = dontDistribute super."hlogger"; @@ -4690,6 +4693,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4875,6 +4879,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5262,6 +5267,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6779,6 +6785,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7015,6 +7022,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 727580bbaf5..9ee8703de10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -1938,6 +1938,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2149,6 +2150,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4177,6 +4179,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_19"; "hlogger" = dontDistribute super."hlogger"; @@ -4689,6 +4692,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4874,6 +4878,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5261,6 +5266,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6774,6 +6780,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7010,6 +7017,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index ed098498a05..e0c37b51beb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -1938,6 +1938,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2149,6 +2150,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4176,6 +4178,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4688,6 +4691,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4873,6 +4877,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5259,6 +5264,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6772,6 +6778,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7008,6 +7015,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 6c1e7ef0a44..346d3550fa7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -1935,6 +1935,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2146,6 +2147,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4171,6 +4173,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4683,6 +4686,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4868,6 +4872,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5254,6 +5259,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6766,6 +6772,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7002,6 +7009,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 68d05b0fae3..14cce5df287 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -1934,6 +1934,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2145,6 +2146,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4170,6 +4172,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4682,6 +4685,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4867,6 +4871,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5253,6 +5258,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6765,6 +6771,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -7001,6 +7008,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 15402d99af2..24b8b51ed82 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -1933,6 +1933,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2144,6 +2145,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4168,6 +4170,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4679,6 +4682,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4863,6 +4867,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5249,6 +5254,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6761,6 +6767,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6996,6 +7003,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index c6a043b4b59..657c571b286 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -1930,6 +1930,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2141,6 +2142,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -4162,6 +4164,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlibsass" = dontDistribute super."hlibsass"; "hlint" = doDistribute super."hlint_1_9_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4671,6 +4674,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4855,6 +4859,7 @@ self: super: { "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; "json-builder" = dontDistribute super."json-builder"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5240,6 +5245,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_0_1"; @@ -6749,6 +6755,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6984,6 +6991,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; "servant-blaze" = dontDistribute super."servant-blaze"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 18efcac44b5..2bcc9271083 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -1394,6 +1394,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1501,6 +1502,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1854,6 +1856,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1957,6 +1960,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2056,6 +2060,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2425,6 +2430,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3463,6 +3470,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3999,6 +4007,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4485,6 +4494,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4660,6 +4670,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5019,6 +5030,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6461,6 +6473,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6690,6 +6703,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6902,6 +6916,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 5f272356846..f4d36188938 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -1393,6 +1393,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1456,6 +1457,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1499,6 +1501,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1852,6 +1855,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1955,6 +1959,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2054,6 +2059,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2423,6 +2429,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3458,6 +3466,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3993,6 +4002,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4479,6 +4489,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4654,6 +4665,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5013,6 +5025,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6451,6 +6464,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6680,6 +6694,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6892,6 +6907,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index a41aa1b749b..db2b73b9d56 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -1376,6 +1376,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1439,6 +1440,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1482,6 +1484,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1826,6 +1829,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1929,6 +1933,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2026,6 +2031,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2389,6 +2395,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3399,6 +3407,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3928,6 +3937,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4409,6 +4419,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4581,6 +4592,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4933,6 +4945,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6343,6 +6356,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6570,6 +6584,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6772,6 +6787,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 847d00dd79b..ce72e7fbb86 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -1376,6 +1376,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1439,6 +1440,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1482,6 +1484,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1824,6 +1827,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1927,6 +1931,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2024,6 +2029,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2387,6 +2393,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3395,6 +3403,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3923,6 +3932,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4404,6 +4414,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4576,6 +4587,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4928,6 +4940,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6336,6 +6349,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6562,6 +6576,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6763,6 +6778,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index ca3ed4a6fdb..7109ae66a10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -1375,6 +1375,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1438,6 +1439,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1481,6 +1483,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1823,6 +1826,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1922,6 +1926,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2019,6 +2024,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2382,6 +2388,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3389,6 +3397,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3917,6 +3926,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4398,6 +4408,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4570,6 +4581,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4922,6 +4934,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6329,6 +6342,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6555,6 +6569,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6756,6 +6771,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index a12b0ab22f4..5c5ea1c12ea 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -1375,6 +1375,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1438,6 +1439,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1481,6 +1483,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1823,6 +1826,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1922,6 +1926,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2019,6 +2024,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2382,6 +2388,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3389,6 +3397,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3916,6 +3925,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4397,6 +4407,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4569,6 +4580,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4920,6 +4932,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6325,6 +6338,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6551,6 +6565,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6752,6 +6767,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 30316276737..99b04cd6a8f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -1373,6 +1373,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1436,6 +1437,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1479,6 +1481,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1820,6 +1823,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1919,6 +1923,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2016,6 +2021,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2378,6 +2384,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3380,6 +3388,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3907,6 +3916,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4387,6 +4397,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4559,6 +4570,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4910,6 +4922,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6312,6 +6325,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6538,6 +6552,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6739,6 +6754,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index af656608acf..64ed99c9448 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -1372,6 +1372,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1435,6 +1436,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1478,6 +1480,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1819,6 +1822,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1918,6 +1922,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2015,6 +2020,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2377,6 +2383,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3378,6 +3386,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3904,6 +3913,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4382,6 +4392,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4554,6 +4565,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4905,6 +4917,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6305,6 +6318,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6531,6 +6545,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6731,6 +6746,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 2fa74f7262d..84d32e7fe44 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -1371,6 +1371,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1433,6 +1434,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1476,6 +1478,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1817,6 +1820,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1916,6 +1920,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2013,6 +2018,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2375,6 +2381,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3375,6 +3383,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3900,6 +3909,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4378,6 +4388,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4550,6 +4561,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4899,6 +4911,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6294,6 +6307,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6519,6 +6533,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6719,6 +6734,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; @@ -7859,6 +7875,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_1_2"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 279cfaedde9..5dcf83ccb8c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -1367,6 +1367,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1429,6 +1430,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1472,6 +1474,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1812,6 +1815,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1910,6 +1914,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2007,6 +2012,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2367,6 +2373,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3366,6 +3374,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3890,6 +3899,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4368,6 +4378,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4538,6 +4549,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4887,6 +4899,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; @@ -5693,6 +5706,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -6276,6 +6290,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6501,6 +6516,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6701,6 +6717,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; @@ -7839,6 +7856,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_1_2"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index d4b51cdc561..09fd9006a86 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -1367,6 +1367,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1429,6 +1430,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1472,6 +1474,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1811,6 +1814,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1909,6 +1913,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2006,6 +2011,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2366,6 +2372,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3363,6 +3371,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3883,6 +3892,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4212,6 +4222,7 @@ self: super: { "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_25"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4357,6 +4368,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4527,6 +4539,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4876,6 +4889,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-effect" = dontDistribute super."log-effect"; @@ -5680,6 +5694,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -6261,6 +6276,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6486,6 +6502,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; @@ -6685,6 +6702,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; @@ -7819,6 +7837,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_1_2"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 7f3faa96206..2c89aae7f38 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -1390,6 +1390,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1453,6 +1454,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1496,6 +1498,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1849,6 +1852,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1952,6 +1956,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2051,6 +2056,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2420,6 +2426,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3453,6 +3461,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3988,6 +3997,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4474,6 +4484,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4649,6 +4660,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -5006,6 +5018,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6441,6 +6454,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6669,6 +6683,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6879,6 +6894,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 0818d564b15..d391c532538 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -1389,6 +1389,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1452,6 +1453,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1495,6 +1497,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1848,6 +1851,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1951,6 +1955,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2049,6 +2054,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2416,6 +2422,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3448,6 +3456,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3982,6 +3991,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4467,6 +4477,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4642,6 +4653,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4999,6 +5011,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6433,6 +6446,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6661,6 +6675,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6871,6 +6886,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index dc22d5aa5bf..f2c645af7ac 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -1389,6 +1389,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1452,6 +1453,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1495,6 +1497,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1847,6 +1850,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1950,6 +1954,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2048,6 +2053,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2415,6 +2421,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3447,6 +3455,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3981,6 +3990,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4466,6 +4476,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4641,6 +4652,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4998,6 +5010,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2"; @@ -6432,6 +6445,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6659,6 +6673,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6869,6 +6884,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index ad76072710f..48f7963be65 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -1388,6 +1388,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1451,6 +1452,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1494,6 +1496,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1845,6 +1848,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1948,6 +1952,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2046,6 +2051,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2412,6 +2418,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3442,6 +3450,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3974,6 +3983,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4456,6 +4466,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4630,6 +4641,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4986,6 +4998,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_2_1"; @@ -6415,6 +6428,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6642,6 +6656,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6851,6 +6866,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index a8f64fef71b..6f7f9e75e00 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -1387,6 +1387,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1450,6 +1451,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1493,6 +1495,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1843,6 +1846,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1946,6 +1950,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2044,6 +2049,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2410,6 +2416,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3435,6 +3443,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3967,6 +3976,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4449,6 +4459,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4622,6 +4633,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4975,6 +4987,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6402,6 +6415,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6629,6 +6643,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6838,6 +6853,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 157dcb22bfa..94979700e62 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -1382,6 +1382,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1445,6 +1446,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1488,6 +1490,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1838,6 +1841,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1941,6 +1945,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2039,6 +2044,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2404,6 +2410,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3426,6 +3434,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3956,6 +3965,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4438,6 +4448,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4610,6 +4621,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4963,6 +4975,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6383,6 +6396,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6610,6 +6624,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6818,6 +6833,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 900e14b8aef..b109fbd9392 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -1382,6 +1382,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1445,6 +1446,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1488,6 +1490,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1834,6 +1837,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1937,6 +1941,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2034,6 +2039,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2398,6 +2404,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3415,6 +3423,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3945,6 +3954,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4427,6 +4437,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4599,6 +4610,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4952,6 +4964,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6367,6 +6380,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6594,6 +6608,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6802,6 +6817,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 66de270065c..d7b955a5c84 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -1380,6 +1380,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1443,6 +1444,7 @@ self: super: { "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; + "base-orphans" = doDistribute super."base-orphans_0_4_4"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1486,6 +1488,7 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1830,6 +1833,7 @@ self: super: { "cef" = dontDistribute super."cef"; "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -1933,6 +1937,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2030,6 +2035,7 @@ self: super: { "concrete-typerep" = dontDistribute super."concrete-typerep"; "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; @@ -2393,6 +2399,8 @@ self: super: { "delta-h" = dontDistribute super."delta-h"; "demarcate" = dontDistribute super."demarcate"; "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; "depends" = dontDistribute super."depends"; "dephd" = dontDistribute super."dephd"; "dequeue" = dontDistribute super."dequeue"; @@ -3407,6 +3415,7 @@ self: super: { "gstreamer" = dontDistribute super."gstreamer"; "gt-tools" = dontDistribute super."gt-tools"; "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; "gtk-helpers" = dontDistribute super."gtk-helpers"; "gtk-jsinput" = dontDistribute super."gtk-jsinput"; "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; @@ -3937,6 +3946,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4419,6 +4429,7 @@ self: super: { "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; "implicit" = dontDistribute super."implicit"; "implicit-params" = dontDistribute super."implicit-params"; @@ -4591,6 +4602,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; @@ -4944,6 +4956,7 @@ self: super: { "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; "lockfree-queue" = dontDistribute super."lockfree-queue"; "log" = dontDistribute super."log"; "log-domain" = doDistribute super."log-domain_0_10_3"; @@ -6358,6 +6371,7 @@ self: super: { "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retry" = doDistribute super."retry_0_6"; "retryer" = dontDistribute super."retryer"; + "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; @@ -6585,6 +6599,7 @@ self: super: { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6793,6 +6808,7 @@ self: super: { "snaplet-coffee" = dontDistribute super."snaplet-coffee"; "snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_12"; "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; "snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-haxl" = dontDistribute super."snaplet-haxl"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index f1a0e64c4e9..4334c17b655 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -2568,6 +2568,7 @@ self: { version = "0.2.0.0"; sha256 = "8b0484241f389a9b83225f97ca0d903b7e5d3b0d98c34f5a526a0c7c3b934b45"; libraryHaskellDepends = [ base lens template-haskell ]; + jailbreak = true; description = "Coordinate systems"; license = stdenv.lib.licenses.mit; }) {}; @@ -4445,6 +4446,7 @@ self: { sha256 = "71b3cfb410c08cf1692d4aa484b3190cc0840245adc23ea7ed8bb3e109a41c88"; libraryHaskellDepends = [ base containers MonadRandom ]; testHaskellDepends = [ base containers MonadRandom ]; + jailbreak = true; homepage = "https://github.com/wyager/Dist"; description = "A Haskell library for probability distributions"; license = stdenv.lib.licenses.mit; @@ -5916,6 +5918,7 @@ self: { executableHaskellDepends = [ base FTGL GLFW-b OpenGLRaw parallel random time ]; + jailbreak = true; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -6329,8 +6332,8 @@ self: { }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUtil" = callPackage - ({ mkDerivation, array, base, bytestring, containers, cpphs - , directory, filepath, JuicyPixels, linear, OpenGL, OpenGLRaw + ({ mkDerivation, array, base, bytestring, containers, directory + , filepath, hpp, JuicyPixels, linear, OpenGL, OpenGLRaw , transformers, vector }: mkDerivation { @@ -6338,10 +6341,9 @@ self: { version = "0.8.8"; sha256 = "2ceb807d97c1c599d26be80d4bae98321cdbd59cff3af0dd68d1daa27615c7d4"; libraryHaskellDepends = [ - array base bytestring containers directory filepath JuicyPixels + array base bytestring containers directory filepath hpp JuicyPixels linear OpenGL OpenGLRaw transformers vector ]; - libraryToolDepends = [ cpphs ]; description = "Miscellaneous OpenGL utilities"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -11650,6 +11652,7 @@ self: { template-haskell text transformers unordered-containers vector vector-binary-instances zlib ]; + jailbreak = true; homepage = "http://github.com/LambdaHack/LambdaHack"; description = "A game engine library for roguelike dungeon crawlers"; license = stdenv.lib.licenses.bsd3; @@ -12502,16 +12505,15 @@ self: { }) {}; "MemoTrie" = callPackage - ({ mkDerivation, base, void }: + ({ mkDerivation, base }: mkDerivation { pname = "MemoTrie"; version = "0.6.4"; sha256 = "4238c8f7ea1ecd2497d0a948493acbdc47728b2528b6e7841ef064b783d68b1c"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base void ]; + libraryHaskellDepends = [ base ]; executableHaskellDepends = [ base ]; - jailbreak = true; homepage = "https://github.com/conal/MemoTrie"; description = "Trie-based memo functions"; license = stdenv.lib.licenses.bsd3; @@ -12589,7 +12591,7 @@ self: { base bytestring containers GLUtil lens linear OpenGL OpenGLRaw WaveFront ]; - doHaddock = false; + jailbreak = true; description = "OpenGL for dummies"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -13407,6 +13409,7 @@ self: { base bytestring cereal containers directory hashable messagepack network stm vector ]; + jailbreak = true; description = "Simple networked key/value store"; license = stdenv.lib.licenses.mit; }) {}; @@ -14816,17 +14819,17 @@ self: { "Plot-ho-matic" = callPackage ({ mkDerivation, base, cairo, Chart, Chart-cairo, containers , data-default-class, generic-accessors, glib, gtk, lens, text - , time + , time, vector }: mkDerivation { pname = "Plot-ho-matic"; - version = "0.6.0.0"; - sha256 = "b78ef18527546825ba965ae6373b6d999a2ba7140b64517869273619abaaf73b"; + version = "0.7.0.0"; + sha256 = "8fb8ca89074e10f325c7c0107a405718455bf6120e74140623252b9347aa2c97"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base cairo Chart Chart-cairo containers data-default-class - generic-accessors glib gtk lens text time + generic-accessors glib gtk lens text time vector ]; executableHaskellDepends = [ base containers generic-accessors ]; description = "Real-time line plotter for generic data"; @@ -18976,6 +18979,7 @@ self: { libraryHaskellDepends = [ base containers filepath GLUtil lens linear OpenGL ]; + jailbreak = true; description = "Parsers and utilities for the OBJ WaveFront 3D model format"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -19605,6 +19609,7 @@ self: { executableHaskellDepends = [ base cgi containers hsparql pretty rdf4h text ]; + jailbreak = true; homepage = "http://hafiz.myweb.cs.uwindsor.ca/proHome.html"; description = "An implementation of a polynomial-time top-down parser suitable for NLP"; license = stdenv.lib.licenses.bsd3; @@ -24425,6 +24430,8 @@ self: { pname = "amazonka-core"; version = "0.3.3"; sha256 = "2382e3ba4576a544ee54037b346dea2cb99326d8d417fedfde70d50bb8a9f4d5"; + revision = "1"; + editedCabalFile = "5f5396e3f969b8f5c0eb6c956c85dade9a751388bd40e8d1c0b007ee3a59dde8"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring base64-bytestring bifunctors bytestring case-insensitive conduit conduit-extra @@ -24456,6 +24463,8 @@ self: { pname = "amazonka-core"; version = "0.3.4"; sha256 = "5f268010d0dff030398b272f7c505f25acc33a9c8c0ccb3ad9e667663707306a"; + revision = "1"; + editedCabalFile = "906720ed3918b2ceab4fb4d87a5f8e1dff1fbcf978e85b7a20195c2b35872aca"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring base64-bytestring bifunctors bytestring case-insensitive conduit conduit-extra @@ -24486,6 +24495,8 @@ self: { pname = "amazonka-core"; version = "0.3.6"; sha256 = "821e635dc21ea7a06c6ba6711dec228c6fb18c12de51924f84d92fc71cf8c0d0"; + revision = "1"; + editedCabalFile = "a0471c700a9a90808fac28a7f77802220d61b5bf84c3d50b8e0b8fb146413aef"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring base64-bytestring bifunctors bytestring case-insensitive conduit conduit-extra @@ -28690,6 +28701,7 @@ self: { docopt filepath ghc ghc-paths ghc-syb-utils hlint hspec lens-simple pathwalk pipes pipes-group QuickCheck syb ]; + doCheck = false; homepage = "http://github.com/rubik/argon"; description = "Measure your code's complexity"; license = stdenv.lib.licenses.isc; @@ -30665,7 +30677,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "auto-update" = callPackage + "auto-update_0_1_2_2" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "auto-update"; @@ -30675,9 +30687,10 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Efficiently run periodic, on-demand actions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "auto-update_0_1_3" = callPackage + "auto-update" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "auto-update"; @@ -30687,7 +30700,6 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Efficiently run periodic, on-demand actions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "autonix-deps" = callPackage @@ -30836,6 +30848,7 @@ self: { version = "0.0.1.2"; sha256 = "60102786473f189ea0f97d97b91d9de5a2867dde466b96386c28afbe22e056cc"; libraryHaskellDepends = [ base dependent-sum mtl process shake ]; + jailbreak = true; homepage = "https://github.com/mokus0/avr-shake"; description = "AVR Crosspack actions for shake build systems"; license = stdenv.lib.licenses.publicDomain; @@ -32413,19 +32426,6 @@ self: { }) {}; "base-noprelude" = callPackage - ({ mkDerivation, base }: - mkDerivation { - pname = "base-noprelude"; - version = "4.8.1.0"; - sha256 = "bd524ee4d4b9fb433a4f10eedf8605de3baccc9c2c533d1ab57ee6941ade4014"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - homepage = "https://github.com/hvr/base-noprelude"; - description = "\"base\" package sans \"Prelude\" module"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "base-noprelude_4_8_2_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "base-noprelude"; @@ -32433,11 +32433,9 @@ self: { sha256 = "bd4ab7685a14d82f7586074b1af88e22a8401e552a439286710592e3a2d763c7"; libraryHaskellDepends = [ base ]; doHaddock = false; - jailbreak = true; homepage = "https://github.com/hvr/base-noprelude"; description = "\"base\" package sans \"Prelude\" module"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "base-orphans_0_4_3" = callPackage @@ -32450,13 +32448,14 @@ self: { editedCabalFile = "a29b52bb0bcf5ec63ab526d5382553497cc5eb40ac02752c75c43752cf464344"; libraryHaskellDepends = [ base ghc-prim ]; testHaskellDepends = [ base hspec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/haskell-compat/base-orphans#readme"; description = "Backwards-compatible orphan instances for base"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base-orphans" = callPackage + "base-orphans_0_4_4" = callPackage ({ mkDerivation, base, ghc-prim, hspec, QuickCheck }: mkDerivation { pname = "base-orphans"; @@ -32469,9 +32468,10 @@ self: { homepage = "https://github.com/haskell-compat/base-orphans#readme"; description = "Backwards-compatible orphan instances for base"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base-orphans_0_4_5" = callPackage + "base-orphans" = callPackage ({ mkDerivation, base, ghc-prim, hspec, QuickCheck }: mkDerivation { pname = "base-orphans"; @@ -32482,7 +32482,6 @@ self: { homepage = "https://github.com/haskell-compat/base-orphans#readme"; description = "Backwards-compatible orphan instances for base"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "base-prelude_0_1_6" = callPackage @@ -32625,6 +32624,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "base-prelude_0_1_20" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "base-prelude"; + version = "0.1.20"; + sha256 = "0adb753a2f638b432c79bb02e39ce417adff6d4e9f51046b423ac2931074b0c8"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/nikita-volkov/base-prelude"; + description = "The most complete prelude formed from only the \"base\" package"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "base-unicode-symbols" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -33404,6 +33416,7 @@ self: { base lens QuickCheck semigroups test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/Noeda/bet/"; description = "Betfair API bindings. Bet on sports on betting exchanges."; license = stdenv.lib.licenses.mit; @@ -33596,7 +33609,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bifunctors" = callPackage + "bifunctors_5" = callPackage ({ mkDerivation, base, semigroups, tagged }: mkDerivation { pname = "bifunctors"; @@ -33606,9 +33619,10 @@ self: { homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bifunctors_5_1" = callPackage + "bifunctors" = callPackage ({ mkDerivation, base, containers, hspec, QuickCheck, semigroups , tagged, template-haskell, transformers, transformers-compat }: @@ -33627,7 +33641,6 @@ self: { homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billboard-parser" = callPackage @@ -37939,6 +37952,28 @@ self: { hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; + "buffer-builder_0_2_4_1" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion + , deepseq, HTF, mtl, quickcheck-instances, text + , unordered-containers, vector + }: + mkDerivation { + pname = "buffer-builder"; + version = "0.2.4.1"; + sha256 = "f9ced75361df829a377fd3227ebb26ab9905b3c1eb6eef9b0234a9e14d519795"; + libraryHaskellDepends = [ + base bytestring mtl text unordered-containers vector + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring criterion deepseq HTF + quickcheck-instances text vector + ]; + homepage = "https://github.com/chadaustin/buffer-builder"; + description = "Library for efficiently building up buffers, one piece at a time"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "buffer-builder-aeson" = callPackage ({ mkDerivation, aeson, attoparsec, base, buffer-builder , bytestring, hashable, HUnit, integer-gmp, QuickCheck, scientific @@ -42249,6 +42284,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {gtk2 = pkgs.gnome2.gtk;}; + "cerberus" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, cmdargs + , conduit-extra, ekg, ekg-core, hslogger, http-client + , http-client-tls, http-reverse-proxy, http-types, pretty-show + , text, wai, wai-middleware-caching, wai-middleware-caching-lru + , wai-middleware-caching-redis, wai-middleware-throttle, warp + }: + mkDerivation { + pname = "cerberus"; + version = "0.1.0.0"; + sha256 = "11c9b5aa94939e289869a1a98cf60b6081b1be8ba5d75a66cf4ed8be0faa5c8e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-builder bytestring conduit-extra ekg ekg-core hslogger + http-client http-client-tls http-reverse-proxy http-types text wai + wai-middleware-caching wai-middleware-caching-lru + wai-middleware-caching-redis wai-middleware-throttle warp + ]; + executableHaskellDepends = [ + base cmdargs ekg ekg-core hslogger pretty-show + ]; + testHaskellDepends = [ base ]; + jailbreak = true; + homepage = "http://github.com/yogsototh/cerberus#readme"; + description = "Protect and control API access with cerberus"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cereal_0_4_1_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, ghc-prim }: mkDerivation { @@ -45761,7 +45825,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clock" = callPackage + "clock_0_5_1" = callPackage ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; @@ -45772,6 +45836,21 @@ self: { homepage = "https://github.com/corsis/clock"; description = "High-resolution clock functions: monotonic, realtime, cputime"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clock" = callPackage + ({ mkDerivation, base, tasty, tasty-quickcheck }: + mkDerivation { + pname = "clock"; + version = "0.5.2"; + sha256 = "6c9a2276b5e76f2ea4c0bc2410d68549782dcc38f56964a49245c1070896d0d7"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base tasty tasty-quickcheck ]; + doCheck = false; + homepage = "https://github.com/corsis/clock"; + description = "High-resolution clock functions: monotonic, realtime, cputime"; + license = stdenv.lib.licenses.bsd3; }) {}; "clock_0_6_0_1" = callPackage @@ -47957,7 +48036,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "concurrent-extra" = callPackage + "concurrent-extra_0_7_0_9" = callPackage ({ mkDerivation, async, base, HUnit, random, stm, test-framework , test-framework-hunit, unbounded-delays }: @@ -47975,9 +48054,10 @@ self: { homepage = "https://github.com/basvandijk/concurrent-extra"; description = "Extra concurrency primitives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "concurrent-extra_0_7_0_10" = callPackage + "concurrent-extra" = callPackage ({ mkDerivation, async, base, HUnit, random, stm, test-framework , test-framework-hunit, unbounded-delays }: @@ -47990,10 +48070,10 @@ self: { async base HUnit random stm test-framework test-framework-hunit unbounded-delays ]; + doCheck = false; homepage = "https://github.com/basvandijk/concurrent-extra"; description = "Extra concurrency primitives"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concurrent-machines" = callPackage @@ -49638,17 +49718,15 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "containers_0_5_6_3" = callPackage + "containers_0_5_7_0" = callPackage ({ mkDerivation, array, base, ChasingBottoms, deepseq, ghc-prim , HUnit, QuickCheck, test-framework, test-framework-hunit , test-framework-quickcheck2 }: mkDerivation { pname = "containers"; - version = "0.5.6.3"; - sha256 = "1647e62e31ed066c61b4a3c1a4403ddb15210bab0e658d624af16f406d298dcd"; - revision = "1"; - editedCabalFile = "d62a931abcdc917811b7eff078c117e0f2b2c2ac030d843cbebb00b8c8f87a5e"; + version = "0.5.7.0"; + sha256 = "f293f840d99c285630d7524d5c92da58f59921c26e1592a7f0600cda062a30f9"; libraryHaskellDepends = [ array base deepseq ghc-prim ]; testHaskellDepends = [ array base ChasingBottoms deepseq ghc-prim HUnit QuickCheck @@ -56791,25 +56869,13 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dependent-map" = callPackage + "dependent-map_0_1_1_3" = callPackage ({ mkDerivation, base, containers, dependent-sum }: mkDerivation { pname = "dependent-map"; version = "0.1.1.3"; sha256 = "44dd913868dddfaa104c27794cbf852e8c4783fe78f49b3b2dd635b4731ec8af"; libraryHaskellDepends = [ base containers dependent-sum ]; - homepage = "https://github.com/mokus0/dependent-map"; - description = "Dependent finite maps (partial dependent products)"; - license = "unknown"; - }) {}; - - "dependent-map_0_2_0_1" = callPackage - ({ mkDerivation, base, containers, dependent-sum }: - mkDerivation { - pname = "dependent-map"; - version = "0.2.0.1"; - sha256 = "645c5c519d5cb6393ee826dfca183736be84fda87e980f0daecd7be207bb8f50"; - libraryHaskellDepends = [ base containers dependent-sum ]; jailbreak = true; homepage = "https://github.com/mokus0/dependent-map"; description = "Dependent finite maps (partial dependent products)"; @@ -56817,7 +56883,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dependent-sum" = callPackage + "dependent-map" = callPackage + ({ mkDerivation, base, containers, dependent-sum }: + mkDerivation { + pname = "dependent-map"; + version = "0.2.0.1"; + sha256 = "645c5c519d5cb6393ee826dfca183736be84fda87e980f0daecd7be207bb8f50"; + libraryHaskellDepends = [ base containers dependent-sum ]; + homepage = "https://github.com/mokus0/dependent-map"; + description = "Dependent finite maps (partial dependent products)"; + license = "unknown"; + }) {}; + + "dependent-map_0_2_1_0" = callPackage + ({ mkDerivation, base, containers, dependent-sum }: + mkDerivation { + pname = "dependent-map"; + version = "0.2.1.0"; + sha256 = "567d81bf090feda43c9bc01708e6f3684399628329b64a266ba6a6a79351d284"; + libraryHaskellDepends = [ base containers dependent-sum ]; + homepage = "https://github.com/mokus0/dependent-map"; + description = "Dependent finite maps (partial dependent products)"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dependent-sum_0_2_1_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "dependent-sum"; @@ -56827,9 +56918,10 @@ self: { homepage = "https://github.com/mokus0/dependent-sum"; description = "Dependent sum type"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dependent-sum_0_3_2_1" = callPackage + "dependent-sum" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "dependent-sum"; @@ -56839,7 +56931,6 @@ self: { homepage = "https://github.com/mokus0/dependent-sum"; description = "Dependent sum type"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dependent-sum-template" = callPackage @@ -58223,6 +58314,7 @@ self: { libraryHaskellDepends = [ base cairo diagrams-cairo diagrams-lib gtk ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Backend for rendering diagrams directly to GTK windows"; license = stdenv.lib.licenses.bsd3; @@ -60081,12 +60173,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "directory_1_2_4_0" = callPackage + "directory_1_2_5_0" = callPackage ({ mkDerivation, base, filepath, time, unix }: mkDerivation { pname = "directory"; - version = "1.2.4.0"; - sha256 = "f80eb093f772f4be6c9c6d4d179b6cb2358ef40a62f7f9e52bfc6df643268517"; + version = "1.2.5.0"; + sha256 = "ac9d7fdd402c3281fab7ffad004229671f0ecfb7ddd70fd58b90b0a48c1ddef7"; libraryHaskellDepends = [ base filepath time unix ]; testHaskellDepends = [ base filepath time unix ]; description = "Platform-agnostic library for filesystem operations"; @@ -66725,8 +66817,8 @@ self: { }: mkDerivation { pname = "eventstore"; - version = "0.9.1.1"; - sha256 = "0b14aa08ac3e26d4db103c18fe7c95758168f7a3aaad9387b54b83e981f4bbff"; + version = "0.9.1.2"; + sha256 = "0104a347dde1620795c82e60b16d38bd2c1b00f7ff1fbf0c8dccf8e877d0d497"; libraryHaskellDepends = [ aeson async attoparsec base bytestring cereal containers network protobuf random stm text time unordered-containers uuid @@ -66741,29 +66833,6 @@ self: { platforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; - "eventstore_0_9_1_2" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bytestring, cereal - , containers, network, protobuf, random, stm, tasty, tasty-hunit - , text, time, unordered-containers, uuid - }: - mkDerivation { - pname = "eventstore"; - version = "0.9.1.2"; - sha256 = "0104a347dde1620795c82e60b16d38bd2c1b00f7ff1fbf0c8dccf8e877d0d497"; - libraryHaskellDepends = [ - aeson async attoparsec base bytestring cereal containers network - protobuf random stm text time unordered-containers uuid - ]; - testHaskellDepends = [ - aeson base stm tasty tasty-hunit text time - ]; - homepage = "http://github.com/YoEight/eventstore"; - description = "EventStore TCP Client"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" "x86_64-linux" ]; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "every-bit-counts" = callPackage ({ mkDerivation, base, haskell98 }: mkDerivation { @@ -69494,8 +69563,7 @@ self: { description = "Signal Processing extension for Feldspar"; license = stdenv.lib.licenses.bsd3; broken = true; - }) {feldspar-compiler-shim = null; imperative-edsl = null; - monadic-edsl-priv = null;}; + }) {feldspar-compiler-shim = null; monadic-edsl-priv = null;}; "fen2s" = callPackage ({ mkDerivation, api-opentheory-unicode, base, opentheory-unicode @@ -73716,27 +73784,29 @@ self: { }) {}; "funbot" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, feed - , feed-collect, funbot-ext-events, HTTP, http-client - , http-client-tls, http-listen, irc-fun-bot, irc-fun-color - , json-state, network-uri, settings, tagsoup, text, time - , time-interval, time-units, transformers, unordered-containers - , utf8-string, vcs-web-hook-parse + ({ mkDerivation, aeson, auto-update, base, bytestring, clock + , containers, data-default-class, feed, feed-collect + , funbot-ext-events, HTTP, http-client, http-client-tls + , http-listen, irc-fun-bot, irc-fun-color, json-state, network-uri + , settings, tagsoup, text, time, time-interval, time-units + , transformers, unordered-containers, utf8-string + , vcs-web-hook-parse }: mkDerivation { pname = "funbot"; - version = "0.3"; - sha256 = "b59ff6ae40115e1c470677d5bc7188276a282dc383f6afad1f7c801f9c0d52b4"; + version = "0.4.0.1"; + sha256 = "444da7bc772b17de0aa329292dbe1a3ad3134990f824d6f88d6355ff28c3537e"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - aeson base bytestring containers feed feed-collect - funbot-ext-events HTTP http-client http-client-tls http-listen - irc-fun-bot irc-fun-color json-state network-uri settings tagsoup - text time time-interval time-units transformers - unordered-containers utf8-string vcs-web-hook-parse + aeson auto-update base bytestring clock containers + data-default-class feed feed-collect funbot-ext-events HTTP + http-client http-client-tls http-listen irc-fun-bot irc-fun-color + json-state network-uri settings tagsoup text time time-interval + time-units transformers unordered-containers utf8-string + vcs-web-hook-parse ]; - homepage = "https://notabug.org/fr33domlover/funbot/"; + homepage = "https://notabug.org/fr33domlover/funbot"; description = "IRC bot for fun, learning, creativity and collaboration"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -73764,8 +73834,8 @@ self: { ({ mkDerivation, aeson, base, text }: mkDerivation { pname = "funbot-ext-events"; - version = "0.1.0.0"; - sha256 = "5e37649835bc82210744615b623608f5e5d450487a4a598b1b43eed8184c37c8"; + version = "0.2.0.0"; + sha256 = "5224fee263e625708cc937356cdb5dfcf55f0cfd26bf61a8fcb9b2392aa37e26"; libraryHaskellDepends = [ aeson base text ]; homepage = "https://notabug.org/fr33domlover/funbot-ext-events/"; description = "Interact with FunBot's external events"; @@ -76036,8 +76106,8 @@ self: { }: mkDerivation { pname = "ghc-parmake"; - version = "0.1.8"; - sha256 = "cce9254e2f12fd8aab4ef56659db0df0c0853e8cea8024320ce66f2f2b523521"; + version = "0.1.9"; + sha256 = "381973ada7fc3e944dab09ff35d3b26070b1585f5a115fc2ddb09508c1e11c5e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -76050,7 +76120,6 @@ self: { base directory filepath HUnit process QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - jailbreak = true; homepage = "https://github.com/23Skidoo/ghc-parmake"; description = "A parallel wrapper for 'ghc --make'"; license = stdenv.lib.licenses.bsd3; @@ -76167,25 +76236,6 @@ self: { }) {}; "ghc-session" = callPackage - ({ mkDerivation, base, exceptions, ghc, ghc-mtl, ghc-paths - , transformers - }: - mkDerivation { - pname = "ghc-session"; - version = "0.1.1.0"; - sha256 = "fe73ed93744e1d324b85c6a029aac9363ec6b6badfcc791e212309d515b61f28"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base exceptions ghc ghc-mtl ghc-paths transformers - ]; - executableHaskellDepends = [ base transformers ]; - homepage = "http://github.com/pmlodawski/ghc-session"; - description = "Simplified GHC API"; - license = stdenv.lib.licenses.mit; - }) {}; - - "ghc-session_0_1_2_0" = callPackage ({ mkDerivation, base, exceptions, ghc, ghc-mtl, ghc-paths , transformers, transformers-compat }: @@ -76203,7 +76253,6 @@ self: { homepage = "http://github.com/pmlodawski/ghc-session"; description = "Simplified GHC API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-simple" = callPackage @@ -76359,6 +76408,7 @@ self: { base cairo containers deepseq fgl ghc-heap-view graphviz gtk mtl svgcairo text transformers xdot ]; + jailbreak = true; homepage = "http://felsin9.de/nnis/ghc-vis"; description = "Live visualization of data structures in GHCi"; license = stdenv.lib.licenses.bsd3; @@ -79145,8 +79195,8 @@ self: { }: mkDerivation { pname = "gnss-converters"; - version = "0.1.1"; - sha256 = "b225a109b0d264196abdf899c824c4d1e38c24c662bf888a9af9d968029117de"; + version = "0.1.2"; + sha256 = "8e43f583e7562c086bb8de1a88ef5b5e6bdca72a3ea4645e6d9f486861d07f0c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -79282,6 +79332,7 @@ self: { ]; executableHaskellDepends = [ base gtk ]; testHaskellDepends = [ base HUnit ]; + jailbreak = true; homepage = "http://khumba.net/projects/goatee"; description = "A monadic take on a 2,500-year-old board game - GTK+ UI"; license = stdenv.lib.licenses.agpl3; @@ -80817,6 +80868,7 @@ self: { base colour containers fraction glib grapefruit-frp grapefruit-records grapefruit-ui gtk ]; + jailbreak = true; homepage = "http://grapefruit-project.org/"; description = "GTK+-based backend for declarative user interface programming"; license = stdenv.lib.licenses.bsd3; @@ -82242,7 +82294,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; - "gtk" = callPackage + "gtk_0_13_9" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk2, gtk2hs-buildtools, mtl, pango, text }: @@ -82259,9 +82311,10 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; - "gtk_0_14_2" = callPackage + "gtk" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk2, gtk2hs-buildtools, mtl, pango, text }: @@ -82274,10 +82327,10 @@ self: { ]; libraryPkgconfigDepends = [ gtk2 ]; libraryToolDepends = [ gtk2hs-buildtools ]; + doHaddock = false; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; "gtk-helpers" = callPackage @@ -82405,6 +82458,7 @@ self: { sha256 = "1582e229aafe22cf5499fe1519e2ff4f49cecbe83a6eb1a8de04f45dd44df443"; libraryHaskellDepends = [ base glib gtk ]; libraryPkgconfigDepends = [ gtk2 x11 ]; + jailbreak = true; homepage = "http://github.com/travitch/gtk-traymanager"; description = "A wrapper around the eggtraymanager library for Linux system trays"; license = stdenv.lib.licenses.lgpl21; @@ -82898,6 +82952,7 @@ self: { ]; libraryPkgconfigDepends = [ gtksourceview ]; libraryToolDepends = [ gtk2hs-buildtools ]; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; @@ -85687,6 +85742,7 @@ self: { base containers grid HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/timjb/halma"; description = "Library implementing Halma rules"; license = stdenv.lib.licenses.mit; @@ -94619,6 +94675,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hindent_4_6_1" = callPackage + ({ mkDerivation, base, data-default, descriptive, directory + , ghc-prim, haskell-src-exts, hspec, monad-loops, mtl, text + , transformers + }: + mkDerivation { + pname = "hindent"; + version = "4.6.1"; + sha256 = "04e8ffb44b46a45cd6425233efe595d6e412a20c71b69749f72c036bca4870f5"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base data-default haskell-src-exts monad-loops mtl text + transformers + ]; + executableHaskellDepends = [ + base descriptive directory ghc-prim haskell-src-exts text + ]; + testHaskellDepends = [ + base data-default directory haskell-src-exts hspec monad-loops mtl + text + ]; + homepage = "http://www.github.com/chrisdone/hindent"; + description = "Extensible Haskell pretty printer"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hinduce-associations-apriori" = callPackage ({ mkDerivation, base, containers, deepseq, hinduce-missingh , parallel, vector @@ -96158,8 +96242,8 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; - "hlibgit2" = callPackage - ({ mkDerivation, base, bindings-DSL, openssl, process, zlib }: + "hlibgit2_0_18_0_14" = callPackage + ({ mkDerivation, base, bindings-DSL, git, openssl, process, zlib }: mkDerivation { pname = "hlibgit2"; version = "0.18.0.14"; @@ -96167,11 +96251,13 @@ self: { libraryHaskellDepends = [ base bindings-DSL zlib ]; librarySystemDepends = [ openssl ]; testHaskellDepends = [ base process ]; + testToolDepends = [ git ]; description = "Low-level bindings to libgit2"; license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) openssl;}; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) git; inherit (pkgs) openssl;}; - "hlibgit2_0_18_0_15" = callPackage + "hlibgit2" = callPackage ({ mkDerivation, base, bindings-DSL, git, openssl, process, zlib }: mkDerivation { pname = "hlibgit2"; @@ -96183,7 +96269,6 @@ self: { testToolDepends = [ git ]; description = "Low-level bindings to libgit2"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) git; inherit (pkgs) openssl;}; "hlibsass" = callPackage @@ -96192,7 +96277,6 @@ self: { pname = "hlibsass"; version = "0.1.4.0"; sha256 = "2673ff4a4189bdfda61e5b936e1e91c4de29ede91db40055511a835ccbd35818"; - configureFlags = [ "-fexternallibsass" ]; libraryHaskellDepends = [ base ]; librarySystemDepends = [ libsass ]; testHaskellDepends = [ base hspec ]; @@ -105234,7 +105318,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-client" = callPackage + "http-client_0_4_25" = callPackage ({ mkDerivation, array, async, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, exceptions, filepath @@ -105262,9 +105346,10 @@ self: { homepage = "https://github.com/snoyberg/http-client"; description = "An HTTP client engine, intended as a base layer for more user-friendly packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-client_0_4_26_1" = callPackage + "http-client" = callPackage ({ mkDerivation, array, async, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, exceptions, filepath @@ -105292,7 +105377,6 @@ self: { homepage = "https://github.com/snoyberg/http-client"; description = "An HTTP client engine, intended as a base layer for more user-friendly packages"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-client-auth" = callPackage @@ -108639,6 +108723,8 @@ self: { pname = "ide-backend"; version = "0.10.0"; sha256 = "26a35f82533d8361824e04468176cab7c14d3fa4d0a1ebe1aa243a986a3ae0a2"; + revision = "1"; + editedCabalFile = "96888cccc65f025e63931b466ac392e6caa581f6e902a428fd203cdf3c22f5ef"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -108816,6 +108902,8 @@ self: { pname = "ide-backend-common"; version = "0.10.1.1"; sha256 = "858cc32d6c73ca0d55e1fc7dc25831e437a3cca483438a74bbc236f8f93cfcb3"; + revision = "1"; + editedCabalFile = "ed08fca4f17984a5ef06a632b23bc604d5e93a3040fde4cde9721a8ef4991975"; libraryHaskellDepends = [ aeson async attoparsec base binary bytestring bytestring-trie containers crypto-api data-accessor directory filepath fingertree @@ -108994,12 +109082,12 @@ self: { , optparse-applicative, parsers, pretty, process, safe, split, text , time, transformers, transformers-compat, trifecta, uniplate, unix , unordered-containers, utf8-string, vector - , vector-binary-instances, zip-archive, zlib + , vector-binary-instances, zip-archive }: mkDerivation { pname = "idris"; - version = "0.9.20.1"; - sha256 = "3613b7ded2358e63df21e96ad8bc966d33dcb26d796771f1d5e9f2267d325c39"; + version = "0.9.20.2"; + sha256 = "499339fc6a443dd2902ae76114eba6a61ebbd5955dcf3d3687199df5829a0f47"; configureFlags = [ "-fcurses" "-fffi" "-fgmp" ]; isLibrary = true; isExecutable = true; @@ -109010,7 +109098,7 @@ self: { haskeline hscurses libffi mtl network optparse-applicative parsers pretty process safe split text time transformers transformers-compat trifecta uniplate unix unordered-containers - utf8-string vector vector-binary-instances zip-archive zlib + utf8-string vector vector-binary-instances zip-archive ]; librarySystemDepends = [ gmp ]; executableHaskellDepends = [ @@ -109897,6 +109985,29 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "imperative-edsl" = callPackage + ({ mkDerivation, array, base, BoundedChan, constraints, containers + , directory, exception-transformers, language-c-quote + , mainland-pretty, microlens, microlens-mtl, microlens-th, mtl + , open-typerep, operational-alacarte, process, srcloc, syntactic + , tagged + }: + mkDerivation { + pname = "imperative-edsl"; + version = "0.4.1"; + sha256 = "5b78994b208351b4fdd8465146559d7198c6969dfaaa3767ed667d9df29bfad4"; + libraryHaskellDepends = [ + array base BoundedChan constraints containers + exception-transformers language-c-quote mainland-pretty microlens + microlens-mtl microlens-th mtl open-typerep operational-alacarte + srcloc syntactic tagged + ]; + testHaskellDepends = [ base directory mainland-pretty process ]; + homepage = "https://github.com/emilaxelsson/imperative-edsl"; + description = "Deep embedding of imperative programs with code generation"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "imperative-edsl-vhdl" = callPackage ({ mkDerivation, base, bytestring, constraints, containers , language-vhdl, mtl, operational-alacarte, pretty, syntactic @@ -111956,18 +112067,18 @@ self: { }) {}; "irc-fun-bot" = callPackage - ({ mkDerivation, aeson, base, clock, fast-logger, irc-fun-client - , irc-fun-messages, json-state, time, time-interval, time-units - , transformers, unordered-containers + ({ mkDerivation, aeson, auto-update, base, clock, containers + , fast-logger, irc-fun-client, irc-fun-messages, json-state, time + , time-interval, time-units, transformers, unordered-containers }: mkDerivation { pname = "irc-fun-bot"; - version = "0.4.0.0"; - sha256 = "defa781ecd1ff744f5b36907be56d58189fcd31de85599f713628a4ffd06c253"; + version = "0.5.0.0"; + sha256 = "1104c508068dcfba3f8c60c39d5cc8ccb9b264af57097e8fa2b61e68e3754b51"; libraryHaskellDepends = [ - aeson base clock fast-logger irc-fun-client irc-fun-messages - json-state time time-interval time-units transformers - unordered-containers + aeson auto-update base clock containers fast-logger irc-fun-client + irc-fun-messages json-state time time-interval time-units + transformers unordered-containers ]; jailbreak = true; homepage = "http://rel4tion.org/projects/irc-fun-bot/"; @@ -111981,8 +112092,8 @@ self: { }: mkDerivation { pname = "irc-fun-client"; - version = "0.3.0.0"; - sha256 = "325178cd683dc79974519e87da2e23fe7707c12feff697605915fa5e99aaf258"; + version = "0.4.0.0"; + sha256 = "2567be16b259a37a4234a1716bef694d6f1ce6c3b7c9f553d9d0a12a0be65c33"; libraryHaskellDepends = [ auto-update base fast-logger irc-fun-messages network time time-units unordered-containers @@ -112011,8 +112122,8 @@ self: { ({ mkDerivation, base, regex-applicative }: mkDerivation { pname = "irc-fun-messages"; - version = "0.2.0.0"; - sha256 = "47345b37fb95a265c5237a826ba1351e78ad956b35a7dcd13bd7c625f8d8c5a1"; + version = "0.2.0.1"; + sha256 = "b54ab9b8a259c49a495f111bc7a56c5cd50334c4708dea6e3f06b66534325198"; libraryHaskellDepends = [ base regex-applicative ]; homepage = "http://rel4tion.org/projects/irc-fun-messages/"; description = "Types and functions for working with the IRC protocol"; @@ -113896,6 +114007,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "json-encoder" = callPackage + ({ mkDerivation, base, base-prelude, bytestring + , bytestring-tree-builder, contravariant, contravariant-extras + , scientific, text + }: + mkDerivation { + pname = "json-encoder"; + version = "0.1.3.1"; + sha256 = "0127462ef932a643adc948bbb1de89de78d705a464c2591aedafddcd8382fadc"; + libraryHaskellDepends = [ + base base-prelude bytestring bytestring-tree-builder contravariant + contravariant-extras scientific text + ]; + homepage = "https://github.com/sannsyn/json-encoder"; + description = "A very fast single-pass JSON encoder with a declarative DSL"; + license = stdenv.lib.licenses.mit; + }) {}; + "json-enumerator" = callPackage ({ mkDerivation, base, blaze-builder, blaze-builder-enumerator , bytestring, containers, enumerator, json-types, text @@ -116801,6 +116930,7 @@ self: { template-haskell time transformers transformers-base unix utf8-string zlib ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot core functionality"; license = "GPL"; @@ -120309,7 +120439,6 @@ self: { attoparsec base bytestring containers data-default-class filepath hspec mtl network old-locale QuickCheck text time unix utf8-string ]; - jailbreak = true; homepage = "http://github.com/vimus/libmpd-haskell#readme"; description = "An MPD client library"; license = stdenv.lib.licenses.mit; @@ -120426,16 +120555,16 @@ self: { }) {}; "libravatar" = callPackage - ({ mkDerivation, base, bytestring, crypto-api, dns, network-uri - , pureMD5, random, SHA, url, utf8-string + ({ mkDerivation, base, bytestring, crypto-api, data-default-class + , dns, network-uri, pureMD5, random, SHA, url, utf8-string }: mkDerivation { pname = "libravatar"; - version = "0.2.0.0"; - sha256 = "a195549f60f88966732141a7bcab3fdfedb70bdbbb686ad3e2651518317082d5"; + version = "0.3.0.0"; + sha256 = "2371b91f8ff4abdeba4374d20b4fa9c90fe0e9871c874bd61f32380b32ef88bf"; libraryHaskellDepends = [ - base bytestring crypto-api dns network-uri pureMD5 random SHA url - utf8-string + base bytestring crypto-api data-default-class dns network-uri + pureMD5 random SHA url utf8-string ]; homepage = "http://rel4tion.org/projects/libravatar/"; description = "Use Libravatar, the decentralized avatar delivery service"; @@ -121881,6 +122010,7 @@ self: { stm tagged tasty tasty-hunit tasty-rerun transformers ]; testSystemDepends = [ z3 ]; + jailbreak = true; homepage = "http://goto.ucsd.edu/liquidhaskell"; description = "Liquid Types for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -121936,6 +122066,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "list-fusion-probe_0_1_0_5" = callPackage + ({ mkDerivation, base, tasty, tasty-hunit }: + mkDerivation { + pname = "list-fusion-probe"; + version = "0.1.0.5"; + sha256 = "7471363bd737abca1888bb8274cb3fef8f4fc925875b27fa0901efa1358adb50"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + description = "testing list fusion for success"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "list-grouping" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -122893,6 +123036,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "locked-poll" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, clock, containers + , lens, QuickCheck, random, regex-genex, tasty, tasty-golden + , tasty-hunit, tasty-quickcheck, time + }: + mkDerivation { + pname = "locked-poll"; + version = "0.1.0"; + sha256 = "6a369cb194ce975fe663b97eef47adcdc5d96e73abeea0f5087a00ee9201a164"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base clock containers ]; + executableHaskellDepends = [ base clock containers ]; + testHaskellDepends = [ + attoparsec base bytestring clock containers lens QuickCheck random + regex-genex tasty tasty-golden tasty-hunit tasty-quickcheck time + ]; + description = "Very simple poll lock"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "lockfree-queue" = callPackage ({ mkDerivation, abstract-deque, abstract-deque-tests , atomic-primops, base, bytestring, ghc-prim, HUnit, test-framework @@ -136226,15 +136390,12 @@ self: { }) {}; "niagra" = callPackage - ({ mkDerivation, base, criterion, mtl, text, transformers }: + ({ mkDerivation, base, mtl, text, transformers }: mkDerivation { pname = "niagra"; - version = "0.0.1"; - sha256 = "848bd318b105bd23de959d3a6e026de1577337fcae803bfa1dc70461491c9058"; - isLibrary = true; - isExecutable = true; + version = "0.0.3"; + sha256 = "bb6dd33a0b00996263ae770fdf5ba461a956e33492310f27f83fbd248951f49b"; libraryHaskellDepends = [ base mtl text transformers ]; - executableHaskellDepends = [ base criterion text transformers ]; description = "CSS EDSL for Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -141383,8 +141544,8 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "parseargs"; - version = "0.2.0.3"; - sha256 = "252276e93adc941218220891a82a7b6622eacf829eda8b753c476fb13ece0073"; + version = "0.2.0.4"; + sha256 = "79241584c88dbde0abd5dd32a079b9baaad4a87b136a19e78492141ace1aa090"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers ]; @@ -143610,7 +143771,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent" = callPackage + "persistent_2_2_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , blaze-html, blaze-markup, bytestring, conduit, containers , exceptions, fast-logger, hspec, http-api-data, lifted-base @@ -143641,10 +143802,11 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, multi-backend data serialization"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent_2_2_4" = callPackage + "persistent" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , blaze-html, blaze-markup, bytestring, conduit, containers , exceptions, fast-logger, hspec, http-api-data, lifted-base @@ -143675,7 +143837,6 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, multi-backend data serialization"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -145615,6 +145776,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pinchot_0_6_0_0" = callPackage + ({ mkDerivation, base, containers, Earley, lens, template-haskell + , transformers + }: + mkDerivation { + pname = "pinchot"; + version = "0.6.0.0"; + sha256 = "53cada3eace3bd2ffa297944adb1260ad71ebd8761defe0fd67053327e2d75a4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers Earley lens template-haskell transformers + ]; + homepage = "http://www.github.com/massysett/pinchot"; + description = "Build parsers and ASTs for context-free grammars"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pipe-enumerator" = callPackage ({ mkDerivation, base, enumerator, pipes, transformers }: mkDerivation { @@ -145948,6 +146128,7 @@ self: { async base bytestring cacophony hlint mtl pipes QuickCheck tasty tasty-quickcheck ]; + doCheck = false; homepage = "https://github.com/centromere/pipes-cacophony"; description = "Pipes for Noise-secured network connections"; license = stdenv.lib.licenses.publicDomain; @@ -146984,6 +147165,7 @@ self: { version = "0.2.0.2"; sha256 = "b6fab12df045798e95ee7e55ff19cea709d179d66e7a3770194daba0b394e3a2"; libraryHaskellDepends = [ base glib gtk hmatrix mtl plot process ]; + jailbreak = true; homepage = "http://code.haskell.org/plot"; description = "GTK plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; @@ -146991,18 +147173,6 @@ self: { }) {}; "plot-gtk" = callPackage - ({ mkDerivation, base, glib, gtk, hmatrix, mtl, plot, process }: - mkDerivation { - pname = "plot-gtk"; - version = "0.2.0.3"; - sha256 = "fe433cdb56b1585d3fc94b51d60324a05f5f9419d861303986336e5889c1fefe"; - libraryHaskellDepends = [ base glib gtk hmatrix mtl plot process ]; - homepage = "http://code.haskell.org/plot"; - description = "GTK plots and interaction with GHCi"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "plot-gtk_0_2_0_4" = callPackage ({ mkDerivation, base, glib, gtk, hmatrix, mtl, plot, process }: mkDerivation { pname = "plot-gtk"; @@ -147012,7 +147182,6 @@ self: { homepage = "http://code.haskell.org/plot"; description = "GTK plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plot-gtk-ui" = callPackage @@ -148037,6 +148206,7 @@ self: { ]; libraryPkgconfigDepends = [ gdk2 gdk_pixbuf pango poppler ]; libraryToolDepends = [ gtk2hs-buildtools ]; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs"; description = "Binding to the Poppler"; license = stdenv.lib.licenses.gpl2; @@ -148718,8 +148888,8 @@ self: { }: mkDerivation { pname = "postgresql-simple"; - version = "0.5.1.1"; - sha256 = "e80bb4655745d5802b70c9276cee1a3772892451ea985047dd77fd1c242a43be"; + version = "0.5.1.2"; + sha256 = "d289eb7835b001550b9f9887e1fae050957797ead62394a85e6f5ae700976756"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-builder case-insensitive containers hashable postgresql-libpq scientific @@ -148734,30 +148904,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "postgresql-simple_0_5_1_2" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base16-bytestring - , bytestring, bytestring-builder, case-insensitive, containers - , cryptohash, hashable, HUnit, postgresql-libpq, scientific - , template-haskell, text, time, transformers, uuid-types, vector - }: - mkDerivation { - pname = "postgresql-simple"; - version = "0.5.1.2"; - sha256 = "d289eb7835b001550b9f9887e1fae050957797ead62394a85e6f5ae700976756"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring bytestring-builder - case-insensitive containers hashable postgresql-libpq scientific - template-haskell text time transformers uuid-types vector - ]; - testHaskellDepends = [ - aeson base base16-bytestring bytestring containers cryptohash HUnit - text time vector - ]; - description = "Mid-Level PostgreSQL client library"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "postgresql-simple-migration" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, cryptohash , directory, hspec, postgresql-simple, time @@ -149199,7 +149345,6 @@ self: { quickcheck-instances semigroups tasty tasty-hunit tasty-quickcheck tries unordered-containers ]; - doCheck = false; description = "Predicative tries"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -149404,8 +149549,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "prelude-edsl"; - version = "0.3"; - sha256 = "8250585549ad9c64c2b0407157cacb8a4a2dd0dcf77c8de4b005adddf2b98008"; + version = "0.3.1"; + sha256 = "7b6233ca1eeb916185f87a7ba9ba8007a3b3f3307b795e52b32444fbcce44658"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/emilaxelsson/prelude-edsl"; description = "An EDSL-motivated subset of the Prelude"; @@ -155688,6 +155833,7 @@ self: { libraryHaskellDepends = [ base dependent-sum gloss reflex transformers ]; + jailbreak = true; homepage = "https://github.com/reflex-frp/reflex-gloss"; description = "An reflex interface for gloss"; license = stdenv.lib.licenses.bsd3; @@ -155716,6 +155862,7 @@ self: { base containers gloss lens linear mtl reflex reflex-animation reflex-transformers transformers ]; + jailbreak = true; homepage = "https://github.com/saulzar/reflex-gloss-scene"; description = "A simple scene-graph using reflex and gloss"; license = stdenv.lib.licenses.bsd3; @@ -159265,7 +159412,7 @@ self: { license = stdenv.lib.licenses.mpl20; }) {}; - "rev-state" = callPackage + "rev-state_0_1" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { pname = "rev-state"; @@ -159275,9 +159422,10 @@ self: { homepage = "https://github.com/DanBurton/rev-state#readme"; description = "Reverse State monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rev-state_0_1_1" = callPackage + "rev-state" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { pname = "rev-state"; @@ -159288,7 +159436,6 @@ self: { homepage = "https://github.com/DanBurton/rev-state#readme"; description = "Reverse State monad transformer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "revdectime" = callPackage @@ -161787,8 +161934,8 @@ self: { "sbv_5_6" = callPackage ({ mkDerivation, array, async, base, base-compat, containers - , crackNum, data-binary-ieee754, deepseq, directory, filepath, mtl - , old-time, pretty, process, QuickCheck, random, syb + , crackNum, data-binary-ieee754, deepseq, directory, filepath + , HUnit, mtl, old-time, pretty, process, QuickCheck, random, syb }: mkDerivation { pname = "sbv"; @@ -161801,6 +161948,12 @@ self: { data-binary-ieee754 deepseq directory filepath mtl old-time pretty process QuickCheck random syb ]; + executableHaskellDepends = [ + base data-binary-ieee754 directory filepath HUnit process syb + ]; + testHaskellDepends = [ + base data-binary-ieee754 directory filepath HUnit syb + ]; homepage = "http://leventerkok.github.com/sbv/"; description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; license = stdenv.lib.licenses.bsd3; @@ -164415,6 +164568,32 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "serv" = callPackage + ({ mkDerivation, aeson, base, bytestring, case-insensitive + , containers, http-media, http-types, HUnit, mtl, QuickCheck + , tagged, tasty, tasty-ant-xml, tasty-hunit, tasty-quickcheck, text + , time, transformers, wai, wai-extra, warp + }: + mkDerivation { + pname = "serv"; + version = "0.1.0.0"; + sha256 = "29d8124bcd00ae8ed28a37b6b7bcffa333cf4c30b845c9da725c71153274b371"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring case-insensitive containers http-media + http-types mtl tagged text time transformers wai + ]; + executableHaskellDepends = [ base text wai warp ]; + testHaskellDepends = [ + base HUnit QuickCheck tasty tasty-ant-xml tasty-hunit + tasty-quickcheck text wai wai-extra + ]; + homepage = "http://github.com/tel/serv#readme"; + description = "Dependently typed API server framework"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "servant_0_2_2" = callPackage ({ mkDerivation, base, hspec, parsec, QuickCheck , string-conversions, template-haskell, text @@ -165858,8 +166037,8 @@ self: { }: mkDerivation { pname = "settings"; - version = "0.2.1.0"; - sha256 = "b182e9e6093734311318f87940b9a0c5ee49d41978f82044a5ebbccdfbb2b3a8"; + version = "0.2.2.0"; + sha256 = "8ca39518d7ed4d0575dbb3bce2064aca006c449765c842906d07484fecf0b831"; libraryHaskellDepends = [ aeson aeson-pretty base bytestring time-units unordered-containers ]; @@ -170738,7 +170917,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "snaplet-fay" = callPackage + "snaplet-fay_0_3_3_12" = callPackage ({ mkDerivation, aeson, base, bytestring, configurator, directory , fay, filepath, mtl, snap, snap-core, transformers }: @@ -170753,9 +170932,10 @@ self: { homepage = "https://github.com/faylang/snaplet-fay"; description = "Fay integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "snaplet-fay_0_3_3_13" = callPackage + "snaplet-fay" = callPackage ({ mkDerivation, aeson, base, bytestring, configurator, directory , fay, filepath, mtl, snap, snap-core, transformers }: @@ -170770,7 +170950,6 @@ self: { homepage = "https://github.com/faylang/snaplet-fay"; description = "Fay integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-ghcjs" = callPackage @@ -173930,6 +174109,7 @@ self: { monad-logger optparse-applicative path process QuickCheck resourcet retry temporary text transformers unix-compat ]; + jailbreak = true; doCheck = false; enableSharedExecutables = false; postInstall = '' @@ -174000,6 +174180,7 @@ self: { monad-logger optparse-applicative path process QuickCheck resourcet retry temporary text transformers unix-compat ]; + jailbreak = true; doCheck = false; enableSharedExecutables = false; postInstall = '' @@ -174070,6 +174251,7 @@ self: { monad-logger optparse-applicative path process QuickCheck resourcet retry temporary text transformers unix-compat ]; + doHaddock = false; doCheck = false; enableSharedExecutables = false; postInstall = '' @@ -179735,6 +179917,7 @@ self: { base dyre filepath gtk safe xdg-basedir ]; executablePkgconfigDepends = [ gtk2 ]; + jailbreak = true; homepage = "http://github.com/travitch/taffybar"; description = "A desktop bar similar to xmobar, but with more GUI"; license = stdenv.lib.licenses.bsd3; @@ -183086,35 +183269,6 @@ self: { }) {}; "text-show" = callPackage - ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors - , bytestring, bytestring-builder, containers, generic-deriving - , ghc-prim, hspec, integer-gmp, nats, QuickCheck - , quickcheck-instances, semigroups, tagged, template-haskell, text - , transformers, transformers-compat, void - }: - mkDerivation { - pname = "text-show"; - version = "2.1.1"; - sha256 = "0c42b918bb3a20eda3dc060b14a74c216e1ef3472d9cc8f4a15623a3f2e8c1eb"; - revision = "1"; - editedCabalFile = "6a44a796ef99a25dc68351d0c37364b301b01de63aaf31c6f376c5811da22778"; - libraryHaskellDepends = [ - array base base-compat bytestring bytestring-builder containers - generic-deriving ghc-prim integer-gmp nats semigroups tagged - template-haskell text transformers void - ]; - testHaskellDepends = [ - array base base-compat base-orphans bifunctors bytestring - bytestring-builder generic-deriving ghc-prim hspec nats QuickCheck - quickcheck-instances tagged text transformers transformers-compat - void - ]; - homepage = "https://github.com/RyanGlScott/text-show"; - description = "Efficient conversion of values into Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "text-show_2_1_2" = callPackage ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors , bytestring, bytestring-builder, containers, generic-deriving , ghc-prim, hspec, integer-gmp, nats, QuickCheck @@ -183136,11 +183290,9 @@ self: { quickcheck-instances tagged text transformers transformers-compat void ]; - jailbreak = true; homepage = "https://github.com/RyanGlScott/text-show"; description = "Efficient conversion of values into Text"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-show-instances" = callPackage @@ -184091,6 +184243,7 @@ self: { base bifunctors containers hashable QuickCheck quickcheck-instances tasty tasty-quickcheck transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/isomorphism/these"; description = "An either-or-both data type & a generalized 'zip with padding' typeclass"; license = stdenv.lib.licenses.bsd3; @@ -186915,31 +187068,6 @@ self: { }) {}; "tries" = callPackage - ({ mkDerivation, base, bytestring, bytestring-trie, composition - , composition-extra, containers, deepseq, hashable, keys, mtl - , QuickCheck, quickcheck-instances, rose-trees, semigroups, sets - , tasty, tasty-quickcheck, unordered-containers - }: - mkDerivation { - pname = "tries"; - version = "0.0.3"; - sha256 = "45a90df3926415f24454fdeaf838d3982c8c441d4582b635a13f5f5ba1319971"; - libraryHaskellDepends = [ - base bytestring bytestring-trie composition composition-extra - containers deepseq hashable keys QuickCheck quickcheck-instances - rose-trees semigroups sets unordered-containers - ]; - testHaskellDepends = [ - base bytestring bytestring-trie composition composition-extra - containers deepseq hashable keys mtl QuickCheck - quickcheck-instances rose-trees semigroups sets tasty - tasty-quickcheck unordered-containers - ]; - description = "Various trie implementations in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "tries_0_0_4" = callPackage ({ mkDerivation, base, bytestring, bytestring-trie, composition , composition-extra, containers, deepseq, hashable, keys, mtl , QuickCheck, quickcheck-instances, rose-trees, semigroups, sets @@ -186962,7 +187090,6 @@ self: { ]; description = "Various trie implementations in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "trifecta_1_5_1_3" = callPackage @@ -187911,6 +188038,7 @@ self: { aeson base bytestring Cabal http-client http-client-tls network-uri text transformers ]; + jailbreak = true; homepage = "https://github.com/markandrus/twilio-haskell"; description = "Twilio REST API library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -188824,6 +188952,7 @@ self: { executableHaskellDepends = [ base diagrams-cairo diagrams-lib text ]; + jailbreak = true; description = "Typed and composable spreadsheets"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -189505,6 +189634,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "unbound-generics_0_3" = callPackage + ({ mkDerivation, base, containers, contravariant, deepseq, mtl + , profunctors, QuickCheck, tasty, tasty-hunit, tasty-quickcheck + , template-haskell, transformers, transformers-compat + }: + mkDerivation { + pname = "unbound-generics"; + version = "0.3"; + sha256 = "8956c309de512339ee6d37501683df2e973c40437554fffab9b48cbe7283af07"; + libraryHaskellDepends = [ + base containers contravariant deepseq mtl profunctors + template-haskell transformers transformers-compat + ]; + testHaskellDepends = [ + base mtl QuickCheck tasty tasty-hunit tasty-quickcheck + ]; + homepage = "http://github.com/lambdageek/unbound-generics"; + description = "Support for programming with names and binders using GHC Generics"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "unbounded-delays_0_1_0_8" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -193861,6 +194012,7 @@ self: { libraryHaskellDepends = [ base glib gtk pango ]; libraryPkgconfigDepends = [ vte ]; libraryToolDepends = [ gtk2hs-buildtools ]; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; @@ -194506,6 +194658,43 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "wai-app-static_3_1_4" = callPackage + ({ mkDerivation, base, base64-bytestring, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, containers, cryptohash + , cryptohash-conduit, directory, file-embed, filepath, hspec + , http-date, http-types, mime-types, network, old-locale + , optparse-applicative, template-haskell, temporary, text, time + , transformers, unix-compat, unordered-containers, wai, wai-extra + , warp, zlib + }: + mkDerivation { + pname = "wai-app-static"; + version = "3.1.4"; + sha256 = "630e34d404da96327d312cf6a6002a098877282177b07eb875afbbcf47f43a67"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base64-bytestring blaze-builder blaze-html blaze-markup + byteable bytestring containers cryptohash cryptohash-conduit + directory file-embed filepath http-date http-types mime-types + old-locale optparse-applicative template-haskell text time + transformers unix-compat unordered-containers wai wai-extra warp + zlib + ]; + executableHaskellDepends = [ + base bytestring containers directory mime-types text + ]; + testHaskellDepends = [ + base bytestring filepath hspec http-date http-types mime-types + network old-locale temporary text time transformers unix-compat wai + wai-extra zlib + ]; + homepage = "http://www.yesodweb.com/book/web-application-interface"; + description = "WAI application for static serving"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wai-conduit_3_0_0_1" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, conduit , http-types, transformers, wai @@ -195507,6 +195696,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "wai-middleware-caching_0_1_0_2" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, http-types, wai + }: + mkDerivation { + pname = "wai-middleware-caching"; + version = "0.1.0.2"; + sha256 = "15b5fb9c92599d5ecb6a70ba40bad024488f9eca7139abe23b961ba21602d78d"; + libraryHaskellDepends = [ + base blaze-builder bytestring http-types wai + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; + description = "WAI Middleware to cache things"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wai-middleware-caching-lru" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, http-types , lrucache, text, wai, wai-middleware-caching @@ -198229,6 +198435,7 @@ self: { base bytestring http-types optparse-applicative scotty text transformers ]; + jailbreak = true; homepage = "https://github.com/fhsjaagshs/webapp"; description = "Haskell web scaffolding using Scotty, WAI, and Warp"; license = stdenv.lib.licenses.mit; @@ -201095,6 +201302,7 @@ self: { base cairo graphviz gtk mtl polyparse text ]; executableHaskellDepends = [ base cairo graphviz gtk text ]; + jailbreak = true; description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -201478,7 +201686,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xlsx" = callPackage + "xlsx_0_1_2" = callPackage ({ mkDerivation, base, binary-search, bytestring, conduit , containers, data-default, digest, HUnit, lens, old-locale , old-time, smallcheck, tasty, tasty-hunit, tasty-smallcheck, text @@ -201508,9 +201716,10 @@ self: { homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xlsx_0_2_0" = callPackage + "xlsx" = callPackage ({ mkDerivation, base, binary-search, bytestring, conduit , containers, data-default, digest, HUnit, lens, mtl, old-locale , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time @@ -201540,7 +201749,6 @@ self: { homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xlsx-templater" = callPackage @@ -206907,6 +207115,46 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "yesod-core_1_4_18" = callPackage + ({ mkDerivation, aeson, async, auto-update, base, blaze-builder + , blaze-html, blaze-markup, byteable, bytestring, case-insensitive + , cereal, clientsession, conduit, conduit-extra, containers, cookie + , data-default, deepseq, directory, exceptions, fast-logger, hspec + , hspec-expectations, http-types, HUnit, lifted-base, monad-control + , monad-logger, mtl, mwc-random, network, old-locale, parsec + , path-pieces, primitive, QuickCheck, random, resourcet, safe + , semigroups, shakespeare, streaming-commons, template-haskell + , text, time, transformers, transformers-base, unix-compat + , unordered-containers, vector, wai, wai-extra, wai-logger, warp + , word8 + }: + mkDerivation { + pname = "yesod-core"; + version = "1.4.18"; + sha256 = "1580cfac8d8255fe0d14af2d5edabfbad2e62238af13cea33b7144cdfba11d16"; + libraryHaskellDepends = [ + aeson auto-update base blaze-builder blaze-html blaze-markup + byteable bytestring case-insensitive cereal clientsession conduit + conduit-extra containers cookie data-default deepseq directory + exceptions fast-logger http-types lifted-base monad-control + monad-logger mtl mwc-random old-locale parsec path-pieces primitive + random resourcet safe semigroups shakespeare template-haskell text + time transformers transformers-base unix-compat + unordered-containers vector wai wai-extra wai-logger warp word8 + ]; + testHaskellDepends = [ + async base blaze-builder bytestring clientsession conduit + conduit-extra containers cookie hspec hspec-expectations http-types + HUnit lifted-base mwc-random network path-pieces QuickCheck random + resourcet shakespeare streaming-commons template-haskell text + transformers wai wai-extra + ]; + homepage = "http://www.yesodweb.com/"; + description = "Creation of type-safe, RESTful web applications"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yesod-crud" = callPackage ({ mkDerivation, base, classy-prelude, containers, MissingH , monad-control, persistent, random, safe, stm, uuid, yesod-core @@ -208394,6 +208642,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "yesod-table_2_0_1" = callPackage + ({ mkDerivation, base, bytestring, containers, contravariant, text + , yesod-core + }: + mkDerivation { + pname = "yesod-table"; + version = "2.0.1"; + sha256 = "48ff72f00f6c957585bef6639b38252ba8aec6a2c409b4f59ef0a7b70e56a086"; + libraryHaskellDepends = [ + base bytestring containers contravariant text yesod-core + ]; + homepage = "https://github.com/andrewthad/yesod-table"; + description = "HTML tables for Yesod"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yesod-tableview" = callPackage ({ mkDerivation, base, hamlet, persistent, yesod }: mkDerivation { @@ -208918,6 +209183,7 @@ self: { base directory filepath HUnit lens QuickCheck semigroups tasty tasty-hunit tasty-quickcheck text yi-language yi-rope ]; + jailbreak = true; homepage = "https://yi-editor.github.io"; description = "The Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; From fced3e32221758d1a5b01acd4872fe826156e3a2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Dec 2015 11:43:35 +0100 Subject: [PATCH 093/289] haskellPackages: Stackage Nightly 2015-12-17 updates to GHC 7.10.3 --- .../haskell-modules/configuration-hackage2nix.yaml | 8 ++++---- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index ffba1d42664..94ebc3049fd 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -1,19 +1,19 @@ # pkgs/development/haskell-modules/configuration-hackage2nix.yaml -compiler: ghc-7.10 +compiler: ghc-7.10.3 core-packages: - array-0.5.1.0 - - base-4.8.1.0 + - base-4.8.2.0 - binary-0.7.5.0 - bin-package-db-0.0.0.0 - bytestring-0.10.6.0 - - Cabal-1.22.4.0 + - Cabal-1.22.5.0 - containers-0.5.6.2 - deepseq-1.4.1.1 - directory-1.2.2.0 - filepath-1.4.0.0 - - ghc-7.10.2 + - ghc-7.10.3 - ghc-prim-0.4.0.0 - haskeline-0.7.2.1 - hoopl-3.10.0.2 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 13cac40328f..2a77b9e55ee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4113,7 +4113,7 @@ let haskell = callPackage ./haskell-packages.nix { }; - haskellPackages = haskell.packages.ghc7102.override { + haskellPackages = haskell.packages.ghc7103.override { overrides = config.haskellPackageOverrides or (self: super: {}); }; inherit (haskellPackages) ghc cabal-install stack; From 16e9b44afa55a5d29988950a5c70ebc91c9687dd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Dec 2015 14:35:11 +0100 Subject: [PATCH 094/289] cabal2nix: update to version 20151217 --- pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix | 4 ++-- .../tools/haskell/cabal2nix/distribution-nixpkgs.nix | 6 +++--- pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix index 89a56f1dbad..68c85fb2951 100644 --- a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix +++ b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix @@ -6,12 +6,12 @@ mkDerivation rec { pname = "cabal2nix"; - version = "20150922"; + version = "20151217"; src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; rev = "v${version}"; - sha256 = "17s800yd8mm48yjjqiayvycaf8z0y1giwp8jp271875wdrx3p75a"; + sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5"; }; postUnpack = "sourceRoot+=/${pname}"; isLibrary = false; diff --git a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix index 6c2243628da..7aac407e3ce 100644 --- a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix +++ b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix @@ -7,12 +7,12 @@ mkDerivation rec { pname = "distribution-nixpkgs"; - version = "20150922"; + version = "1"; src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; - rev = "v${version}"; - sha256 = "17s800yd8mm48yjjqiayvycaf8z0y1giwp8jp271875wdrx3p75a"; + rev = "v20151217"; + sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5"; }; postUnpack = "sourceRoot+=/${pname}"; libraryHaskellDepends = [ diff --git a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix index 422ab0fb18f..b2b3b46581a 100644 --- a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix +++ b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix @@ -7,12 +7,12 @@ mkDerivation rec { pname = "hackage2nix"; - version = "20150922"; + version = "20151217"; src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; rev = "v${version}"; - sha256 = "17s800yd8mm48yjjqiayvycaf8z0y1giwp8jp271875wdrx3p75a"; + sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5"; }; postUnpack = "sourceRoot+=/${pname}"; isLibrary = false; From 9cb7aa8357e61ff22ac082f5cb1a5c8f5a7903a6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Dec 2015 14:49:24 +0100 Subject: [PATCH 095/289] haskell-gtksourceview2: add override to fix build --- pkgs/development/haskell-modules/configuration-common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index dbfd7850c37..065fd9b34d8 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -255,6 +255,7 @@ self: super: { glib = addPkgconfigDepend super.glib pkgs.glib; gtk3 = super.gtk3.override { inherit (pkgs) gtk3; }; gtk = addPkgconfigDepend super.gtk pkgs.gtk; + gtksourceview2 = (addPkgconfigDepend super.gtksourceview2 pkgs.gtk2).override { inherit (pkgs.gnome2) gtksourceview; }; gtksourceview3 = super.gtksourceview3.override { inherit (pkgs.gnome3) gtksourceview; }; # Need WebkitGTK, not just webkit. From 4ba31045e46b54e8b3b3d240858f83a60b9ef49c Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 18 Dec 2015 14:50:47 +0100 Subject: [PATCH 096/289] nixpkgs manual: more strict commit policy (close #11609) --- doc/submitting-changes.xml | 73 +++++++++++++++++++++++++++++++------- 1 file changed, 61 insertions(+), 12 deletions(-) diff --git a/doc/submitting-changes.xml b/doc/submitting-changes.xml index 0fd1954c528..0b09dffbb2d 100644 --- a/doc/submitting-changes.xml +++ b/doc/submitting-changes.xml @@ -261,23 +261,72 @@ Additional information. Hydra builds for master and staging should not be used as testing platform, it's a build farm for changes that have been already tested. - -Master should only see non-breaking commits that do not cause mass rebuilds. - - - -Staging should only see non-breaking mass-rebuild commits. That means it's not to be used for testing, and changes must have been well tested already. Read policy here. - - - -If staging is already in a broken state, please refrain from adding extra new breakages. Stabilize it for a few days, merge into master, then resume development on staging. Keep an eye on the staging evaluations here. If any fixes for staging happen to be already in master, then master can be merged into staging. - - When changing the bootloader installation process, extra care must be taken. Grub installations cannot be rolled back, hence changes may break people's installations forever. For any non-trivial change to the bootloader please file a PR asking for review, especially from @edolstra. +
+ Master branch + + + + + It should only see non-breaking commits that do not cause mass rebuilds. + + + +
+ +
+ Staging branch + + + + + It's only for non-breaking mass-rebuild commits. That means it's not to + be used for testing, and changes must have been well tested already. + Read policy here. + + + + + If the branch is already in a broken state, please refrain from adding + extra new breakages. Stabilize it for a few days, merge into master, + then resume development on staging. + Keep an eye on the staging evaluations here. + If any fixes for staging happen to be already in master, then master can + be merged into staging. + + + +
+ +
+ Stable release branches + + + + + If you're cherry-picking a commit to a stable release branch, always use + git cherry-pick -xe and ensure the message contains a + clear description about why this needs to be included in the stable + branch. + + An example of a cherry-picked commit would look like this: + +nixos: Refactor the world. + +The original commit message describing the reason why the world was torn apart. + +(cherry picked from commit abcdef) +Reason: I just had a gut feeling that this would also be wanted by people from +the stone age. + + + +
+ From 8843368a135ec4613ddb31d477db60f59a58cb5c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 18 Dec 2015 16:36:35 +0300 Subject: [PATCH 097/289] deluge: add .desktop file --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1ed0528f6fe..72178086c50 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6828,8 +6828,10 @@ in modules // { nativeBuildInputs = [ pkgs.intltool ]; postInstall = '' + mkdir -p $out/share/applications cp -R deluge/data/pixmaps $out/share/ cp -R deluge/data/icons $out/share/ + cp deluge/data/share/applications/deluge.desktop $out/share/applications ''; meta = { From ff58a9831b0554968f4d714f2626078d5f89d3d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Andr=C3=A9?= Date: Thu, 17 Dec 2015 12:45:42 +0100 Subject: [PATCH 098/289] matter-compiler: initial expression, fixes #11780 --- lib/maintainers.nix | 1 + .../compilers/matter-compiler/Gemfile | 3 +++ .../compilers/matter-compiler/Gemfile.lock | 13 +++++++++++ .../compilers/matter-compiler/default.nix | 22 +++++++++++++++++++ .../compilers/matter-compiler/gemset.nix | 9 ++++++++ pkgs/top-level/all-packages.nix | 2 ++ 6 files changed, 50 insertions(+) create mode 100644 pkgs/development/compilers/matter-compiler/Gemfile create mode 100644 pkgs/development/compilers/matter-compiler/Gemfile.lock create mode 100644 pkgs/development/compilers/matter-compiler/default.nix create mode 100644 pkgs/development/compilers/matter-compiler/gemset.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index f1dce94bf8c..e19970fe914 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -266,6 +266,7 @@ rszibele = "Richard Szibele "; rushmorem = "Rushmore Mushambi "; rvl = "Rodney Lorrimar "; + rvlander = "Gaëtan André "; rycee = "Robert Helgesson "; samuelrivas = "Samuel Rivas "; sander = "Sander van der Burg "; diff --git a/pkgs/development/compilers/matter-compiler/Gemfile b/pkgs/development/compilers/matter-compiler/Gemfile new file mode 100644 index 00000000000..21ec2345205 --- /dev/null +++ b/pkgs/development/compilers/matter-compiler/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gem 'matter_compiler' diff --git a/pkgs/development/compilers/matter-compiler/Gemfile.lock b/pkgs/development/compilers/matter-compiler/Gemfile.lock new file mode 100644 index 00000000000..2eefe96ec63 --- /dev/null +++ b/pkgs/development/compilers/matter-compiler/Gemfile.lock @@ -0,0 +1,13 @@ +GEM + remote: https://rubygems.org/ + specs: + matter_compiler (0.5.1) + +PLATFORMS + ruby + +DEPENDENCIES + matter_compiler + +BUNDLED WITH + 1.10.6 diff --git a/pkgs/development/compilers/matter-compiler/default.nix b/pkgs/development/compilers/matter-compiler/default.nix new file mode 100644 index 00000000000..12da620fe5b --- /dev/null +++ b/pkgs/development/compilers/matter-compiler/default.nix @@ -0,0 +1,22 @@ + +{ stdenv, lib, bundlerEnv, ruby }: + +bundlerEnv { + name = "matter_compiler-0.5.1"; + + inherit ruby; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + + meta = with lib; { + description = '' + Matter Compiler is a API Blueprint AST Media Types to API Blueprint conversion tool. + It composes an API blueprint from its serialzed AST media-type. + ''; + homepage = https://github.com/apiaryio/matter_compiler/; + license = licenses.mit; + maintainers = with maintainers; [ rvlander ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/development/compilers/matter-compiler/gemset.nix b/pkgs/development/compilers/matter-compiler/gemset.nix new file mode 100644 index 00000000000..9ac7ae8d20e --- /dev/null +++ b/pkgs/development/compilers/matter-compiler/gemset.nix @@ -0,0 +1,9 @@ +{ + "matter_compiler" = { + version = "0.5.1"; + source = { + type = "gem"; + sha256 = "16501zdiqxk34v2d0nlbwrcrjm6g57hrsmsw0crwssn29v5zbykf"; + }; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2b4541cc550..d0d2f211548 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5538,6 +5538,8 @@ let ruby = ruby_2_0_0; }; + matter-compiler = callPackage ../development/compilers/matter-compiler {}; + cfr = callPackage ../development/tools/java/cfr { }; checkstyle = callPackage ../development/tools/analysis/checkstyle { }; From 640ca7e97588026a0da0a46e6419ec1a7f8c1a16 Mon Sep 17 00:00:00 2001 From: Simon Vandel Sillesen Date: Fri, 18 Dec 2015 17:40:56 +0100 Subject: [PATCH 099/289] tvheadend: 4.0.7 -> 4.0.8 --- pkgs/servers/tvheadend/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/tvheadend/default.nix b/pkgs/servers/tvheadend/default.nix index 569eecd4f6e..ee51ace4b68 100644 --- a/pkgs/servers/tvheadend/default.nix +++ b/pkgs/servers/tvheadend/default.nix @@ -3,7 +3,7 @@ with stdenv.lib; -let version = "4.0.7"; +let version = "4.0.8"; pkgName = "tvheadend"; in @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://github.com/tvheadend/tvheadend/archive/v${version}.tar.gz"; - sha256 = "0vhj4vkgl4brjw1pdc80g1wbjn6hyy57jrxkwilnivqfd1mwx3aw"; + sha256 = "0k4g7pvfyk4bxpsjdwv7bmbygbp7gfg9wrr2aqb099ncbz18bx04"; }; enableParallelBuilding = true; From b60f0fdcd41534bd69dd4ba54194c5a1736a2489 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 18 Dec 2015 18:02:16 +0100 Subject: [PATCH 100/289] systemd: Apply upstream fix: networkd: link - do not drop config for loopback device --- pkgs/os-specific/linux/systemd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 54c04a8b3f2..fa858454965 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -18,8 +18,8 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "NixOS"; repo = "systemd"; - rev = "e9a321e25fe31f0fd2ec0cc28088172ebf819c7e"; - sha256 = "0cgdnzq60ji7kk27xk4scsjkghgzcms7qlqkz3k1cx3r9c8gszz9"; + rev = "b737c07cc0234acfa87282786025d556bca91c3f"; + sha256 = "0wca8zkn39914c232andvf3v0ni6ylv154kz3s9fcvg47rhpd5n1"; }; outputs = [ "out" "man" "doc" ]; From 463793827f5ef7afc11f6a83501332830ed76078 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 18 Dec 2015 18:16:54 +0100 Subject: [PATCH 101/289] Update copyright to include contributors See discussion at https://github.com/NixOS/nixpkgs/pull/11557. Closes #11557. --- COPYING | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/COPYING b/COPYING index 919d1e25bbe..0d5734a591c 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 2003-2006 Eelco Dolstra +Copyright (c) 2003-2015 Eelco Dolstra and the Nixpkgs/NixOS contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the From 0e4e01c7a6f823f1f0f31af21458ced902de365a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 18 Dec 2015 18:51:01 +0100 Subject: [PATCH 102/289] add back nixopsUnstable --- .../package-management/nixops/default.nix | 44 +++---------------- .../package-management/nixops/generic.nix | 43 ++++++++++++++++++ .../package-management/nixops/unstable.nix | 9 ++++ pkgs/top-level/all-packages.nix | 2 +- 4 files changed, 58 insertions(+), 40 deletions(-) create mode 100644 pkgs/tools/package-management/nixops/generic.nix create mode 100644 pkgs/tools/package-management/nixops/unstable.nix diff --git a/pkgs/tools/package-management/nixops/default.nix b/pkgs/tools/package-management/nixops/default.nix index 12e1989525d..4388cbc5b3d 100644 --- a/pkgs/tools/package-management/nixops/default.nix +++ b/pkgs/tools/package-management/nixops/default.nix @@ -1,43 +1,9 @@ -{ lib, pythonPackages, fetchurl, libxslt, docbook5_xsl, openssh }: - -pythonPackages.buildPythonPackage rec { - name = "nixops-1.3"; - namePrefix = ""; +{ callPackage, fetchurl }: +callPackage ./generic.nix (rec { + version = "1.3"; src = fetchurl { - url = "http://nixos.org/releases/nixops/${name}/${name}.tar.bz2"; + url = "http://nixos.org/releases/nixops/nixops/nixops-${version}.tar.bz2"; sha256 = "d80b0fe3bb31bb84a8545f9ea804ec8137172c8df44f03326ed7639e5a4bad55"; }; - - buildInputs = [ libxslt ]; - - pythonPath = - [ pythonPackages.prettytable - pythonPackages.boto - pythonPackages.sqlite3 - pythonPackages.hetzner - pythonPackages.libcloud - ]; - - doCheck = false; - - postInstall = - '' - make -C doc/manual install nixops.1 docbookxsl=${docbook5_xsl}/xml/xsl/docbook \ - docdir=$out/share/doc/nixops mandir=$out/share/man - - mkdir -p $out/share/nix/nixops - cp -av "nix/"* $out/share/nix/nixops - - # Add openssh to nixops' PATH. On some platforms, e.g. CentOS and RHEL - # the version of openssh is causing errors when have big networks (40+) - wrapProgram $out/bin/nixops --prefix PATH : "${openssh}/bin" - ''; - - meta = { - homepage = https://github.com/NixOS/nixops; - description = "NixOS cloud provisioning and deployment tool"; - maintainers = [ lib.maintainers.eelco lib.maintainers.rob ]; - platforms = lib.platforms.unix; - }; -} +}) diff --git a/pkgs/tools/package-management/nixops/generic.nix b/pkgs/tools/package-management/nixops/generic.nix new file mode 100644 index 00000000000..b9b9eee8d16 --- /dev/null +++ b/pkgs/tools/package-management/nixops/generic.nix @@ -0,0 +1,43 @@ +{ lib, pythonPackages, fetchurl, libxslt, docbook5_xsl, openssh +# version args +, src, version +}: + +pythonPackages.buildPythonPackage { + name = "nixops-${version}"; + namePrefix = ""; + + src = src; + + buildInputs = [ libxslt ]; + + pythonPath = + [ pythonPackages.prettytable + pythonPackages.boto + pythonPackages.sqlite3 + pythonPackages.hetzner + pythonPackages.libcloud + ]; + + doCheck = false; + + postInstall = + '' + make -C doc/manual install nixops.1 docbookxsl=${docbook5_xsl}/xml/xsl/docbook \ + docdir=$out/share/doc/nixops mandir=$out/share/man + + mkdir -p $out/share/nix/nixops + cp -av "nix/"* $out/share/nix/nixops + + # Add openssh to nixops' PATH. On some platforms, e.g. CentOS and RHEL + # the version of openssh is causing errors when have big networks (40+) + wrapProgram $out/bin/nixops --prefix PATH : "${openssh}/bin" + ''; + + meta = { + homepage = https://github.com/NixOS/nixops; + description = "NixOS cloud provisioning and deployment tool"; + maintainers = [ lib.maintainers.eelco lib.maintainers.rob ]; + platforms = lib.platforms.unix; + }; +} diff --git a/pkgs/tools/package-management/nixops/unstable.nix b/pkgs/tools/package-management/nixops/unstable.nix new file mode 100644 index 00000000000..40d56518b3d --- /dev/null +++ b/pkgs/tools/package-management/nixops/unstable.nix @@ -0,0 +1,9 @@ +{ callPackage, fetchurl }: + +callPackage ./generic.nix (rec { + version = "2015-12-18"; + src = fetchurl { + url = "http://hydra.nixos.org/build/29118371/download/2/nixops-1.3.1pre1673_a0d5681.tar.bz2"; + sha256 = "177lnlfz32crcc0gjmh1gn5y2xs142kmb4b68k4raxcxxw118kw9"; + }; +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d0d2f211548..c8781b13329 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15407,7 +15407,7 @@ let nixops = callPackage ../tools/package-management/nixops { }; - nixopsUnstable = nixops; + nixopsUnstable = callPackage ../tools/package-management/nixops/unstable.nix { }; nixui = callPackage ../tools/package-management/nixui { node_webkit = nwjs_0_12; }; From b3b7f9f37f8c134aa22b66ec6a0a1d555f1638bb Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Thu, 17 Dec 2015 18:38:29 +0100 Subject: [PATCH 103/289] fix lib path for gradle, fixes #11191 --- pkgs/development/tools/build-managers/gradle/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index 8055a918ff3..bee95d67ec3 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -8,7 +8,7 @@ rec { mkdir -pv $out/lib/gradle/ cp -rv lib/ $out/lib/gradle/ - gradle_launcher_jar=$(echo $out/gradle/lib/gradle-launcher-*.jar) + gradle_launcher_jar=$(echo $out/lib/gradle/lib/gradle-launcher-*.jar) test -f $gradle_launcher_jar makeWrapper ${jdk}/bin/java $out/bin/gradle \ --set JAVA_HOME ${jdk} \ From d7e17c2e71fc3c70e24ae69cfe5508e34a64c0a3 Mon Sep 17 00:00:00 2001 From: Gleb Peregud Date: Fri, 18 Dec 2015 23:51:51 +0100 Subject: [PATCH 104/289] Add shell env to buildHex packages. This adds erlangPackages.${name}.env, which is usable to launch a shell with the package and it's dependencies like this: nix-shell -A erlangPackages.lager.env This required: 1) refactoring buildHex to become a fixed-point function, 2) moves output of a package into $out/${name}, 3) introduces erlEnv (buildEnv, which links in package and it's deps into one directory - a super-simple plagiarization of haskellPackages.compiler.ghcWithPackages) and 4) shell function producing a un-buildable derivation to be used by nix-shell --- .../erlang-modules/build-erlang.nix | 3 + pkgs/development/erlang-modules/build-hex.nix | 166 ++++++++++-------- 2 files changed, 96 insertions(+), 73 deletions(-) diff --git a/pkgs/development/erlang-modules/build-erlang.nix b/pkgs/development/erlang-modules/build-erlang.nix index 19320f0394c..e662166741a 100644 --- a/pkgs/development/erlang-modules/build-erlang.nix +++ b/pkgs/development/erlang-modules/build-erlang.nix @@ -1,3 +1,6 @@ +# This file is not used not tested at this time, build-hex.nix is the currently +# main vehicle of bringing Erlang packages in. + { stdenv, erlang, rebar, openssl, libyaml }: { name, version diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix index 041a7db48a9..7ba8fab9bd2 100644 --- a/pkgs/development/erlang-modules/build-hex.nix +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -1,5 +1,5 @@ { stdenv, erlang, rebar3, openssl, libyaml, fetchHex, fetchFromGitHub, - rebar3-pc }: + rebar3-pc, buildEnv }: { name, version, sha256 , hexPkg ? name @@ -11,79 +11,99 @@ with stdenv.lib; -stdenv.mkDerivation (attrs // { - name = "${name}-${version}"; +let + plugins = pluginDeps ++ (if compilePorts then [rebar3-pc] else []); + getDeps = drv: [drv] ++ (map getDeps drv.erlangDeps); + recursiveDeps = unique (flatten (map getDeps erlangDeps)); + recursivePluginsDeps = unique (flatten (map getDeps plugins)); - buildInputs = buildInputs ++ [ erlang rebar3 openssl libyaml ]; - - src = fetchHex { - pkg = hexPkg; - inherit version; - inherit sha256; + erlEnv = drv: buildEnv { + name = "erlang-env-${drv.name}"; + paths = [ drv ] ++ recursiveDeps; + ignoreCollisions = false; + meta = drv.meta; }; - postPatch = '' - rm -f rebar rebar3 - if [ -e "src/${name}.app.src" ]; then - sed -i -e 's/{ *vsn *,[^}]*}/{vsn, "${version}"}/' "src/${name}.app.src" - fi - - ${if compilePorts then '' - echo "{plugins, [pc]}." >> rebar.config - '' else ''''} - - ${rebar3.setupRegistry} - - ${postPatch} - ''; - - configurePhase = let - plugins = pluginDeps ++ (if compilePorts then [rebar3-pc] else []); - getDeps = drv: [drv] ++ (map getDeps drv.erlangDeps); - recursiveDeps = unique (flatten (map getDeps erlangDeps)); - recursivePluginsDeps = unique (flatten (map getDeps plugins)); - in '' - runHook preConfigure - ${concatMapStrings (dep: '' - header "linking erlang dependency ${dep}" - ln -s "${dep}" "_build/default/lib/${dep.packageName}" - stopNest - '') recursiveDeps} - ${concatMapStrings (dep: '' - header "linking rebar3 plugins ${dep}" - ln -s "${dep}" "_build/default/plugins/${dep.packageName}" - stopNest - '') recursivePluginsDeps} - runHook postConfigure - ''; - - buildPhase = '' - runHook preBuild - HOME=. rebar3 compile - ${if compilePorts then '' - HOME=. rebar3 pc compile - '' else ''''} - runHook postBuild - ''; - - installPhase = '' - runHook preInstall - mkdir "$out" - for reldir in src ebin priv include; do - fd="_build/default/lib/${name}/$reldir" - [ -d "$fd" ] || continue - cp -Hrt "$out" "$fd" - success=1 - done - runHook postInstall - ''; - - meta = { - inherit (erlang.meta) platforms; - } // meta; - - passthru = { - packageName = name; - inherit erlangDeps; + shell = drv: let + drvEnv = erlEnv drv; + in stdenv.mkDerivation { + name = "interactive-shell-${drv.name}"; + nativeBuildInputs = [ erlang drvEnv ]; + shellHook = '' + export ERL_LIBS="${drvEnv}"; + ''; }; -}) + pkg = self: stdenv.mkDerivation (attrs // { + name = "${name}-${version}"; + + buildInputs = buildInputs ++ [ erlang rebar3 openssl libyaml ]; + + src = fetchHex { + pkg = hexPkg; + inherit version; + inherit sha256; + }; + + postPatch = '' + rm -f rebar rebar3 + if [ -e "src/${name}.app.src" ]; then + sed -i -e 's/{ *vsn *,[^}]*}/{vsn, "${version}"}/' "src/${name}.app.src" + fi + + ${if compilePorts then '' + echo "{plugins, [pc]}." >> rebar.config + '' else ''''} + + ${rebar3.setupRegistry} + + ${postPatch} + ''; + + configurePhase = '' + runHook preConfigure + ${concatMapStrings (dep: '' + header "linking erlang dependency ${dep}" + ln -s "${dep}/${dep.name}" "_build/default/lib/${dep.name}" + stopNest + '') recursiveDeps} + ${concatMapStrings (dep: '' + header "linking rebar3 plugins ${dep}" + ln -s "${dep}/${dep.name}" "_build/default/plugins/${dep.name}" + stopNest + '') recursivePluginsDeps} + runHook postConfigure + ''; + + buildPhase = '' + runHook preBuild + HOME=. rebar3 compile + ${if compilePorts then '' + HOME=. rebar3 pc compile + '' else ''''} + runHook postBuild + ''; + + installPhase = '' + runHook preInstall + mkdir -p "$out/${name}" + for reldir in src ebin priv include; do + fd="_build/default/lib/${name}/$reldir" + [ -d "$fd" ] || continue + cp -Hrt "$out/${name}" "$fd" + success=1 + done + runHook postInstall + ''; + + meta = { + inherit (erlang.meta) platforms; + } // meta; + + passthru = { + packageName = name; + env = shell self; + inherit erlangDeps; + }; + }); +in + fix pkg From 829634620796fc8b40ff35dbd2abba37595bd2b6 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sat, 19 Dec 2015 00:29:32 +0100 Subject: [PATCH 105/289] jhead: 2.87 -> 3.00 Also clean up the package quite a bit and add myself as maintainer. --- pkgs/tools/graphics/jhead/default.nix | 35 ++++++++++++++++++--------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/pkgs/tools/graphics/jhead/default.nix b/pkgs/tools/graphics/jhead/default.nix index ee44ff975bb..470a2efdf6b 100644 --- a/pkgs/tools/graphics/jhead/default.nix +++ b/pkgs/tools/graphics/jhead/default.nix @@ -1,25 +1,38 @@ -{stdenv, fetchurl}: +{ stdenv, fetchurl }: -stdenv.mkDerivation { - name = "jhead-2.87"; +stdenv.mkDerivation rec { + name = "jhead-${version}"; + version = "3.00"; src = fetchurl { - url = http://www.sentex.net/~mwandel/jhead/jhead-2.87.tar.gz; - sha256 = "0vpp5jz49w5qzjzq3vllrbff7fr906jy8a8sq12yq8kw6qwbjjsl"; + url = "http://www.sentex.net/~mwandel/jhead/${name}.tar.gz"; + sha256 = "0pl9s9ssb2a9di82f3ypin2hd098ns8kzdsxw3i2y94f07d03k48"; }; patchPhase = '' - sed -i s@/usr/bin@$out/bin@ makefile + substituteInPlace makefile \ + --replace /usr/local/bin $out/bin + + substituteInPlace jhead.c \ + --replace "\" Compiled: \"__DATE__" "" ''; - preInstall = '' - mkdir -p $out/bin + installPhase = '' + mkdir -p \ + $out/bin \ + $out/man/man1 \ + $out/share/doc/${name} + + cp -v jhead $out/bin + cp -v jhead.1 $out/man/man1 + cp -v *.txt $out/share/doc/${name} ''; - meta = { + meta = with stdenv.lib; { homepage = http://www.sentex.net/~mwandel/jhead/; description = "Exif Jpeg header manipulation tool"; - license = stdenv.lib.licenses.free; - maintainers = with stdenv.lib.maintainers; [viric]; + license = licenses.publicDomain; + maintainers = with maintainers; [ viric rycee ]; + platforms = platforms.all; }; } From 1b3930ca046f533a07cfbc530f578ba0d562270b Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sat, 19 Dec 2015 00:47:42 +0100 Subject: [PATCH 106/289] pdf2svg: 0.2.2 -> 0.2.3 Also minor style changes and upstream source is now on GitHub. --- pkgs/tools/graphics/pdf2svg/default.nix | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/graphics/pdf2svg/default.nix b/pkgs/tools/graphics/pdf2svg/default.nix index 10309d208d8..10758d09bc7 100644 --- a/pkgs/tools/graphics/pdf2svg/default.nix +++ b/pkgs/tools/graphics/pdf2svg/default.nix @@ -1,20 +1,23 @@ -{ stdenv, fetchurl, pkgconfig, cairo, gtk, poppler }: +{ stdenv, fetchFromGitHub, pkgconfig, cairo, gtk, poppler }: -stdenv.mkDerivation { - name = "pdf2svg-0.2.2"; +stdenv.mkDerivation rec { + name = "pdf2svg-${version}"; + version = "0.2.3"; - src = fetchurl { - url = "http://www.cityinthesky.co.uk/wp-content/uploads/2013/10/pdf2svg-0.2.2.tar.gz" ; - sha256 = "1jy6iqwwvd7drcybmdlmnc8m970f82fd7fisa8ha5zh13p49r8n2"; + src = fetchFromGitHub { + owner = "db9052"; + repo = "pdf2svg"; + rev = "v${version}"; + sha256 = "14ffdm4y26imq99wjhkrhy9lp33165xci1l5ndwfia8hz53bl02k"; }; buildInputs = [ cairo pkgconfig poppler gtk ]; - meta = { + meta = with stdenv.lib; { description = "PDF converter to SVG format"; homepage = http://www.cityinthesky.co.uk/opensource/pdf2svg; - license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.ianwookim ]; - platforms = stdenv.lib.platforms.unix; + license = licenses.gpl2; + maintainers = [ maintainers.ianwookim ]; + platforms = platforms.unix; }; } From af6732e5037ef81479f2dfd5e48921b380a80b7a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 18 Dec 2015 11:25:48 +0100 Subject: [PATCH 107/289] nixos autoUpgrade: add a 'dates' option (cherry picked from commit 80917d2473d321d7a990cf991c6353547976638c) Originally merged #11808 to release-15.09 directly. Close #11821. --- nixos/modules/installer/tools/auto-upgrade.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/nixos/modules/installer/tools/auto-upgrade.nix b/nixos/modules/installer/tools/auto-upgrade.nix index e14653dc4eb..4ef5fa8bc1d 100644 --- a/nixos/modules/installer/tools/auto-upgrade.nix +++ b/nixos/modules/installer/tools/auto-upgrade.nix @@ -42,6 +42,17 @@ let cfg = config.system.autoUpgrade; in ''; }; + dates = mkOption { + default = "04:40"; + type = types.str; + description = '' + Specification (in the format described by + systemd.time + 5) of the time at + which the update will occur. + ''; + }; + }; }; @@ -73,7 +84,7 @@ let cfg = config.system.autoUpgrade; in ${config.system.build.nixos-rebuild}/bin/nixos-rebuild switch ${toString cfg.flags} ''; - startAt = mkIf cfg.enable "04:40"; + startAt = optionalString cfg.enable cfg.dates; }; }; From 723e693791d230ade50a2c9acca4c7751825bf8a Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Sat, 19 Dec 2015 09:42:01 +0100 Subject: [PATCH 108/289] djvu2pdf: make work in nix-shell --- pkgs/tools/typesetting/djvu2pdf/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/typesetting/djvu2pdf/default.nix b/pkgs/tools/typesetting/djvu2pdf/default.nix index 5455df5f106..512efe497fa 100644 --- a/pkgs/tools/typesetting/djvu2pdf/default.nix +++ b/pkgs/tools/typesetting/djvu2pdf/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, pkgconfig, djvulibre, ghostscript }: +{ stdenv, makeWrapper, fetchurl, djvulibre, ghostscript, which }: stdenv.mkDerivation rec { version = "0.9.2"; @@ -9,12 +9,13 @@ stdenv.mkDerivation rec { sha256 = "0v2ax30m7j1yi4m02nzn9rc4sn4vzqh5vywdh96r64j4pwvn5s5g"; }; - buildInputs = [ pkgconfig ]; - propagatedUserEnvPkgs = [ djvulibre ghostscript ]; + nativeBuildInputs = [ makeWrapper ]; installPhase = '' mkdir -p $out/bin cp -p djvu2pdf $out/bin + wrapProgram $out/bin/djvu2pdf --prefix PATH : ${ghostscript}/bin:${djvulibre}/bin:${which}/bin + mkdir -p $out/man/man1 cp -p djvu2pdf.1.gz $out/man/man1 ''; @@ -23,6 +24,7 @@ stdenv.mkDerivation rec { description = "Creates djvu files from PDF files"; homepage = http://0x2a.at/s/projects/djvu2pdf; license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.all; inherit version; }; } From cf994dea03011b5010f5bc6f10aa3d7b9b214cd6 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Sat, 19 Dec 2015 01:25:55 -0800 Subject: [PATCH 109/289] docker-compose: 1.5.1 -> 1.5.2 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 72178086c50..a952fb7c76b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7676,14 +7676,14 @@ in modules // { }; docker_compose = buildPythonPackage rec { - version = "1.5.1"; + version = "1.5.2"; name = "docker-compose-${version}"; namePrefix = ""; disabled = isPy3k || isPyPy; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/docker-compose/${name}.tar.gz"; - sha256 = "0mdgpwkpss48zz36sw65crqjry87ba5p3mkl6ncbb8jqsxgqhpnz"; + sha256 = "79aa7e2e6ef9ab1936f8777476ffd4bb329875ec3d3664d239896d2f2a3c4f4f"; }; # lots of networking and other fails From e8aee16550b66d634ee3fb8c864b2e8aa4a03055 Mon Sep 17 00:00:00 2001 From: koral Date: Sat, 19 Dec 2015 11:05:24 +0000 Subject: [PATCH 110/289] ncmpcpp: 0.6.7 -> 0.7 --- pkgs/applications/audio/ncmpcpp/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/ncmpcpp/default.nix b/pkgs/applications/audio/ncmpcpp/default.nix index e316df4a8c1..70cde4b0c70 100644 --- a/pkgs/applications/audio/ncmpcpp/default.nix +++ b/pkgs/applications/audio/ncmpcpp/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, boost, mpd_clientlib, ncurses, pkgconfig, readline -, libiconv +, libiconv, icu , outputsSupport ? false # outputs screen , visualizerSupport ? false, fftw ? null # visualizer screen , clockSupport ? false # clock screen @@ -15,11 +15,11 @@ assert taglibSupport -> (taglib != null); with stdenv.lib; stdenv.mkDerivation rec { name = "ncmpcpp-${version}"; - version = "0.6.7"; + version = "0.7"; src = fetchurl { url = "http://ncmpcpp.rybczak.net/stable/${name}.tar.bz2"; - sha256 = "0yr1ib14qkgbsv839anpzkfbwkm6gg8wv4bf98ar7q5l2p2pv008"; + sha256 = "0xzz0g9whqjcjaaqmsw5ph1zvpi2j5v3i5k73g7916rca3q4z4jh"; }; configureFlags = [ "BOOST_LIB_SUFFIX=" ] @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ boost mpd_clientlib ncurses readline libiconv ] + buildInputs = [ boost mpd_clientlib ncurses readline libiconv icu ] ++ optional curlSupport curl ++ optional visualizerSupport fftw ++ optional taglibSupport taglib; From 819ca0997eaeada449174a47fd2948d8c3a2195a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 19 Dec 2015 11:42:53 +0100 Subject: [PATCH 111/289] exfat: 1.2.2 -> 1.2.3 Fixes: - Fixed clusters loss when file renaming replaces target. --- pkgs/tools/filesystems/exfat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/exfat/default.nix b/pkgs/tools/filesystems/exfat/default.nix index f8a0d09bc52..507c5e7a6c0 100644 --- a/pkgs/tools/filesystems/exfat/default.nix +++ b/pkgs/tools/filesystems/exfat/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }: -let version = "1.2.2"; in +let version = "1.2.3"; in stdenv.mkDerivation rec { name = "exfat-${version}"; src = fetchFromGitHub { - sha256 = "17yyd988l4r5w3q3h3hjlxprbw74wdg4n759lzg325smh96qk7p1"; + sha256 = "147s11sqmn5flbvz2hwpl6kdfqi2gnm1c2nsn5fxygyw7qyhpzda"; rev = "v${version}"; repo = "exfat"; owner = "relan"; From d4b14974e5897eadbdd25ac2104aa5650e3418d7 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 19 Dec 2015 12:00:26 +0100 Subject: [PATCH 112/289] eid-mw: 4.1.9 -> 4.1.11 --- pkgs/tools/security/eid-mw/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/eid-mw/default.nix b/pkgs/tools/security/eid-mw/default.nix index 7823a9e0307..eba1bef1870 100644 --- a/pkgs/tools/security/eid-mw/default.nix +++ b/pkgs/tools/security/eid-mw/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, autoreconfHook, gtk3, nssTools, pcsclite , pkgconfig }: -let version = "4.1.9"; in +let version = "4.1.11"; in stdenv.mkDerivation { name = "eid-mw-${version}"; src = fetchFromGitHub { - sha256 = "03hf3bkawhr4kpjcv71xhja3d947qvxmjf0lkyjmv7i3fw3j8jqs"; + sha256 = "09rp4x1vg0j4rb2dl74f8a7szqx73saacjz09jkih1sz6vwi0j0w"; rev = "v${version}"; repo = "eid-mw"; owner = "Fedict"; From c42f9f5f01e98923e0d8513fb65b8f96b064706f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Sat, 19 Dec 2015 13:35:44 +0100 Subject: [PATCH 113/289] idea.idea-{community,ultimate}: 15.0.1 -> 15.0.2 --- pkgs/applications/editors/idea/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index 5cce2416abe..4c9476d0b9f 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -237,25 +237,25 @@ in idea-community = buildIdea rec { name = "idea-community-${version}"; - version = "15.0.1"; - build = "IC-143.382"; + version = "15.0.2"; + build = "IC-143.1184"; description = "Integrated Development Environment (IDE) by Jetbrains, community edition"; license = stdenv.lib.licenses.asl20; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz"; - sha256 = "1dbwzj12xkv2xw5nrhr779ac24hag0rb96dlagzyxcvc44xigjps"; + sha256 = "0y8rrbsb87avn1dhw5r1xb4axpbm1qvgcd0aysir9bqzhx8qg64c"; }; }; idea-ultimate = buildIdea rec { name = "idea-ultimate-${version}"; - version = "15.0.1"; - build = "IU-143.382"; + version = "15.0.2"; + build = "IU-143.1184"; description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license"; license = stdenv.lib.licenses.unfree; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz"; - sha256 = "0bw6qvsvhw0nabv01bgsbnl78vimnz2kb280jzv0ikmhxranyk0z"; + sha256 = "1r8gw7mv1b0k223k76ib08f4yrrgrw24qmhkbx88rknmls5nsgss"; }; }; From 0ad7b1f44ac9f47de67ec5ba4f0b7ca8b7052a14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 19 Dec 2015 14:34:58 +0100 Subject: [PATCH 114/289] CONTRIBUTING.md: add a notice about licensing This suplements changes from #11557; see the long discussion. --- CONTRIBUTING.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b92308622ee..c20d540a25a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,8 @@ # How to contribute +Note: contributing implies licensing those contributions +under the terms of [COPYING](./COPYING), which is an MIT-like license. + ## Opening issues * Make sure you have a [GitHub account](https://github.com/signup/free) From ef21e5ee60272df6cb3a9e3ffb7982199051d13e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 19 Dec 2015 16:04:36 +0100 Subject: [PATCH 115/289] nixpkgs manual: split languages into separate files There's no change in content except for amending the title of the section to mention "frameworks", as e.g. I don't consider Qt a language, and it's likely there will be more of similar cases in future. To be certain, I checked diff of the generated HTMLs. --- doc/default.nix | 10 +- doc/language-support.xml | 1047 --------------------------- doc/languages-frameworks/coq.xml | 41 ++ doc/languages-frameworks/go.xml | 124 ++++ doc/languages-frameworks/index.xml | 42 ++ doc/languages-frameworks/java.xml | 84 +++ doc/languages-frameworks/lua.xml | 51 ++ doc/languages-frameworks/perl.xml | 181 +++++ doc/languages-frameworks/python.xml | 447 ++++++++++++ doc/languages-frameworks/qt.xml | 70 ++ doc/languages-frameworks/ruby.xml | 46 ++ doc/manual.xml | 2 +- 12 files changed, 1094 insertions(+), 1051 deletions(-) delete mode 100644 doc/language-support.xml create mode 100644 doc/languages-frameworks/coq.xml create mode 100644 doc/languages-frameworks/go.xml create mode 100644 doc/languages-frameworks/index.xml create mode 100644 doc/languages-frameworks/java.xml create mode 100644 doc/languages-frameworks/lua.xml create mode 100644 doc/languages-frameworks/perl.xml create mode 100644 doc/languages-frameworks/python.xml create mode 100644 doc/languages-frameworks/qt.xml create mode 100644 doc/languages-frameworks/ruby.xml diff --git a/doc/default.nix b/doc/default.nix index b8dac00eb65..cca68014b0d 100644 --- a/doc/default.nix +++ b/doc/default.nix @@ -1,10 +1,12 @@ with import ./.. { }; with lib; - +let + sources = sourceFilesBySuffices ./. [".xml"]; + sources-langs = ./languages-frameworks; +in stdenv.mkDerivation { name = "nixpkgs-manual"; - sources = sourceFilesBySuffices ./. [".xml"]; buildInputs = [ pandoc libxml2 libxslt ]; @@ -35,7 +37,9 @@ stdenv.mkDerivation { echo "" } >haskell-users-guide.xml - ln -s "$sources/"*.xml . + ln -s '${sources}/'*.xml . + mkdir ./languages-frameworks + cp -s '${sources-langs}'/* ./languages-frameworks echo ${nixpkgsVersion} > .version diff --git a/doc/language-support.xml b/doc/language-support.xml deleted file mode 100644 index f0d5dbd3e64..00000000000 --- a/doc/language-support.xml +++ /dev/null @@ -1,1047 +0,0 @@ - - -Support for specific programming languages - -The standard build -environment makes it easy to build typical Autotools-based -packages with very little code. Any other kind of package can be -accomodated by overriding the appropriate phases of -stdenv. However, there are specialised functions -in Nixpkgs to easily build packages for other programming languages, -such as Perl or Haskell. These are described in this chapter. - - -
Perl - -Nixpkgs provides a function buildPerlPackage, -a generic package builder function for any Perl package that has a -standard Makefile.PL. It’s implemented in pkgs/development/perl-modules/generic. - -Perl packages from CPAN are defined in pkgs/top-level/perl-packages.nix, -rather than pkgs/all-packages.nix. Most Perl -packages are so straight-forward to build that they are defined here -directly, rather than having a separate function for each package -called from perl-packages.nix. However, more -complicated packages should be put in a separate file, typically in -pkgs/development/perl-modules. Here is an -example of the former: - - -ClassC3 = buildPerlPackage rec { - name = "Class-C3-0.21"; - src = fetchurl { - url = "mirror://cpan/authors/id/F/FL/FLORA/${name}.tar.gz"; - sha256 = "1bl8z095y4js66pwxnm7s853pi9czala4sqc743fdlnk27kq94gz"; - }; -}; - - -Note the use of mirror://cpan/, and the -${name} in the URL definition to ensure that the -name attribute is consistent with the source that we’re actually -downloading. Perl packages are made available in -all-packages.nix through the variable -perlPackages. For instance, if you have a package -that needs ClassC3, you would typically write - - -foo = import ../path/to/foo.nix { - inherit stdenv fetchurl ...; - inherit (perlPackages) ClassC3; -}; - - -in all-packages.nix. You can test building a -Perl package as follows: - - -$ nix-build -A perlPackages.ClassC3 - - -buildPerlPackage adds perl- to -the start of the name attribute, so the package above is actually -called perl-Class-C3-0.21. So to install it, you -can say: - - -$ nix-env -i perl-Class-C3 - - -(Of course you can also install using the attribute name: -nix-env -i -A perlPackages.ClassC3.) - -So what does buildPerlPackage do? It does -the following: - - - - In the configure phase, it calls perl - Makefile.PL to generate a Makefile. You can set the - variable makeMakerFlags to pass flags to - Makefile.PL - - It adds the contents of the PERL5LIB - environment variable to #! .../bin/perl line of - Perl scripts as -Idir - flags. This ensures that a script can find its - dependencies. - - In the fixup phase, it writes the propagated build - inputs (propagatedBuildInputs) to the file - $out/nix-support/propagated-user-env-packages. - nix-env recursively installs all packages listed - in this file when you install a package that has it. This ensures - that a Perl package can find its dependencies. - - - - - -buildPerlPackage is built on top of -stdenv, so everything can be customised in the -usual way. For instance, the BerkeleyDB module has -a preConfigure hook to generate a configuration -file used by Makefile.PL: - - -{ buildPerlPackage, fetchurl, db }: - -buildPerlPackage rec { - name = "BerkeleyDB-0.36"; - - src = fetchurl { - url = "mirror://cpan/authors/id/P/PM/PMQS/${name}.tar.gz"; - sha256 = "07xf50riarb60l1h6m2dqmql8q5dij619712fsgw7ach04d8g3z1"; - }; - - preConfigure = '' - echo "LIB = ${db}/lib" > config.in - echo "INCLUDE = ${db}/include" >> config.in - ''; -} - - - - -Dependencies on other Perl packages can be specified in the -buildInputs and -propagatedBuildInputs attributes. If something is -exclusively a build-time dependency, use -buildInputs; if it’s (also) a runtime dependency, -use propagatedBuildInputs. For instance, this -builds a Perl module that has runtime dependencies on a bunch of other -modules: - - -ClassC3Componentised = buildPerlPackage rec { - name = "Class-C3-Componentised-1.0004"; - src = fetchurl { - url = "mirror://cpan/authors/id/A/AS/ASH/${name}.tar.gz"; - sha256 = "0xql73jkcdbq4q9m0b0rnca6nrlvf5hyzy8is0crdk65bynvs8q1"; - }; - propagatedBuildInputs = [ - ClassC3 ClassInspector TestException MROCompat - ]; -}; - - - - -
Generation from CPAN - -Nix expressions for Perl packages can be generated (almost) -automatically from CPAN. This is done by the program -nix-generate-from-cpan, which can be installed -as follows: - - -$ nix-env -i nix-generate-from-cpan - - -This program takes a Perl module name, looks it up on CPAN, -fetches and unpacks the corresponding package, and prints a Nix -expression on standard output. For example: - - -$ nix-generate-from-cpan XML::Simple - XMLSimple = buildPerlPackage { - name = "XML-Simple-2.20"; - src = fetchurl { - url = mirror://cpan/authors/id/G/GR/GRANTM/XML-Simple-2.20.tar.gz; - sha256 = "5cff13d0802792da1eb45895ce1be461903d98ec97c9c953bc8406af7294434a"; - }; - propagatedBuildInputs = [ XMLNamespaceSupport XMLSAX XMLSAXExpat ]; - meta = { - description = "Easily read/write XML (esp config files)"; - license = "perl"; - }; - }; - - -The output can be pasted into -pkgs/top-level/perl-packages.nix or wherever else -you need it. - -
- -
- - -
Python - - - Currently supported interpreters are python26, python27, - python33, python34, python35 - and pypy. - - - - python is an alias to python27 and python3 is an alias to python34. - - - - python26 and python27 do not include modules that require - external dependencies (to reduce dependency bloat). Following modules need to be added as - buildInput explicitly: - - - - python.modules.bsddb - python.modules.curses - python.modules.curses_panel - python.modules.crypt - python.modules.gdbm - python.modules.sqlite3 - python.modules.tkinter - python.modules.readline - - -For convenience python27Full and python26Full -are provided with all modules included. - - - Python packages that - use setuptools or distutils, - can be built using the buildPythonPackage function as documented below. - - - - All packages depending on any Python interpreter get appended $out/${python.sitePackages} - to $PYTHONPATH if such directory exists. - - - - - Useful attributes on interpreters packages: - - - - libPrefix - - Name of the folder in ${python}/lib/ for corresponding interpreter. - - - - - interpreter - - Alias for ${python}/bin/${executable}. - - - - - buildEnv - - Function to build python interpreter environments with extra packages bundled together. - See for usage and documentation. - - - - - sitePackages - - Alias for lib/${libPrefix}/site-packages. - - - - - executable - - Name of the interpreter executable, ie python3.4. - - - - -
<varname>buildPythonPackage</varname> function - - - The function is implemented in - pkgs/development/python-modules/generic/default.nix. - Example usage: - - -twisted = buildPythonPackage { - name = "twisted-8.1.0"; - - src = pkgs.fetchurl { - url = http://tmrc.mit.edu/mirror/twisted/Twisted/8.1/Twisted-8.1.0.tar.bz2; - sha256 = "0q25zbr4xzknaghha72mq57kh53qw1bf8csgp63pm9sfi72qhirl"; - }; - - propagatedBuildInputs = [ self.ZopeInterface ]; - - meta = { - homepage = http://twistedmatrix.com/; - description = "Twisted, an event-driven networking engine written in Python"; - license = stdenv.lib.licenses.mit; - }; -}; - - - Most of Python packages that use buildPythonPackage are defined - in pkgs/top-level/python-packages.nix - and generated for each python interpreter separately into attribute sets python26Packages, - python27Packages, python35Packages, python33Packages, - python34Packages and pypyPackages. - - - - buildPythonPackage mainly does four things: - - - - In the buildPhase, it calls - ${python.interpreter} setup.py bdist_wheel to build a wheel binary zipfile. - - - - In the installPhase, it installs the wheel file using - pip install *.whl. - - - - In the postFixup phase, wrapPythonPrograms - bash function is called to wrap all programs in $out/bin/* - directory to include $PYTHONPATH and $PATH - environment variables. - - - - In the installCheck phase, ${python.interpreter} setup.py test - is ran. - - - - - By default doCheck = true is set - - - As in Perl, dependencies on other Python packages can be specified in the - buildInputs and - propagatedBuildInputs attributes. If something is - exclusively a build-time dependency, use - buildInputs; if it’s (also) a runtime dependency, - use propagatedBuildInputs. - - - - By default meta.platforms is set to the same value - as the interpreter unless overriden otherwise. - - - - - <varname>buildPythonPackage</varname> parameters - (all parameters from <varname>mkDerivation</varname> function are still supported) - - - - namePrefix - - Prepended text to ${name} parameter. - Defaults to "python3.3-" for Python 3.3, etc. Set it to - "" - if you're packaging an application or a command line tool. - - - - - disabled - - If true, package is not build for - particular python interpreter version. Grep around - pkgs/top-level/python-packages.nix - for examples. - - - - - setupPyBuildFlags - - List of flags passed to setup.py build_ext command. - - - - - pythonPath - - List of packages to be added into $PYTHONPATH. - Packages in pythonPath are not propagated - (contrary to propagatedBuildInputs). - - - - - preShellHook - - Hook to execute commands before shellHook. - - - - - postShellHook - - Hook to execute commands after shellHook. - - - - - makeWrapperArgs - - A list of strings. Arguments to be passed to - makeWrapper, which wraps generated binaries. By - default, the arguments to makeWrapper set - PATH and PYTHONPATH environment - variables before calling the binary. Additional arguments here can - allow a developer to set environment variables which will be - available when the binary is run. For example, - makeWrapperArgs = ["--set FOO BAR" "--set BAZ QUX"]. - - - - - -
- -
<function>python.buildEnv</function> function - - Create Python environments using low-level pkgs.buildEnv function. Example default.nix: - - - {}; - -python.buildEnv.override { - extraLibs = [ pkgs.pythonPackages.pyramid ]; - ignoreCollisions = true; -}]]> - - - Running nix-build will create - /nix/store/cf1xhjwzmdki7fasgr4kz6di72ykicl5-python-2.7.8-env - with wrapped binaries in bin/. - - - - You can also use env attribute to create local - environments with needed packages installed (somewhat comparable to - virtualenv). For example, with the following - shell.nix: - - - {}; - -(python3.buildEnv.override { - extraLibs = with python3Packages; - [ numpy - requests - ]; -}).env]]> - - - Running nix-shell will drop you into a shell where - python will have specified packages in its path. - - - - - <function>python.buildEnv</function> arguments - - - - extraLibs - - List of packages installed inside the environment. - - - - - postBuild - - Shell command executed after the build of environment. - - - - - ignoreCollisions - - Ignore file collisions inside the environment (default is false). - - - -
- -
Tools - -Packages inside nixpkgs are written by hand. However many tools -exist in community to help save time. No tool is preferred at the moment. - - - - - - python2nix - by Vladimir Kirillov - - - - pypi2nix - by Rok Garbas - - - - pypi2nix - by Jaka Hudoklin - - - - -
- -
Development - - - To develop Python packages buildPythonPackage has - additional logic inside shellPhase to run - pip install -e . --prefix $TMPDIR/ for the package. - - - shellPhase is executed only if setup.py - exists. - - - Given a default.nix: - - - {}; - -buildPythonPackage { - name = "myproject"; - - buildInputs = with pkgs.pythonPackages; [ pyramid ]; - - src = ./.; -}]]> - - - Running nix-shell with no arguments should give you - the environment in which the package would be build with - nix-build. - - - - Shortcut to setup environments with C headers/libraries and python packages: - - $ nix-shell -p pythonPackages.pyramid zlib libjpeg git - - - - There is a boolean value lib.inNixShell set to - true if nix-shell is invoked. - - -
- -
FAQ - - - - - How to solve circular dependencies? - - If you have packages A and B that - depend on each other, when packaging B override package - A not to depend on B as input - (and also the other way around). - - - - - install_data / data_files problems resulting into error: could not create '/nix/store/6l1bvljpy8gazlsw2aw9skwwp4pmvyxw-python-2.7.8/etc': Permission denied - - - Known bug in setuptools install_data does not respect --prefix. Example of - such package using the feature is pkgs/tools/X11/xpra/default.nix. As workaround - install it as an extra preInstall step: - - ${python.interpreter} setup.py install_data --install-dir=$out --root=$out -sed -i '/ = data_files/d' setup.py - - - - - Rationale of non-existent global site-packages - - There is no need to have global site-packages in Nix. Each package has isolated - dependency tree and installing any python package will only populate $PATH - inside user environment. See to create self-contained - interpreter with a set of packages. - - - - - -
- - -
Contributing guidelines - - Following rules are desired to be respected: - - - - - - Make sure package builds for all python interpreters. Use disabled argument to - buildPythonPackage to set unsupported interpreters. - - - - If tests need to be disabled for a package, make sure you leave a comment about reasoning. - - - - Packages in pkgs/top-level/python-packages.nix - are sorted quasi-alphabetically to avoid merge conflicts. - - - - -
- -
- - -
Ruby - There currently is support to bundle applications that are packaged as Ruby gems. The utility "bundix" allows you to write a Gemfile, let bundler create a Gemfile.lock, and then convert - this into a nix expression that contains all Gem dependencies automatically. - - For example, to package sensu, we did: - - - Gemfile -source 'https://rubygems.org' -gem 'sensu' -$ bundler package --path /tmp/vendor/bundle -$ $(nix-build '' -A bundix)/bin/bundix -$ cat > default.nix -{ lib, bundlerEnv, ruby }: - -bundlerEnv { - name = "sensu-0.17.1"; - - inherit ruby; - gemfile = ./Gemfile; - lockfile = ./Gemfile.lock; - gemset = ./gemset.nix; - - meta = with lib; { - description = "A monitoring framework that aims to be simple, malleable, -and scalable."; - homepage = http://sensuapp.org/; - license = with licenses; mit; - maintainers = with maintainers; [ theuni ]; - platforms = platforms.unix; - }; -}]]> - - -Please check in the Gemfile, Gemfile.lock and the gemset.nix so future updates can be run easily. - - -
- -
Go - -The function buildGoPackage builds -standard Go packages. - - -buildGoPackage - -net = buildGoPackage rec { - name = "go.net-${rev}"; - goPackagePath = "golang.org/x/net"; - subPackages = [ "ipv4" "ipv6" ]; - rev = "e0403b4e005"; - src = fetchFromGitHub { - inherit rev; - owner = "golang"; - repo = "net"; - sha256 = "1g7cjzw4g4301a3yqpbk8n1d4s97sfby2aysl275x04g0zh8jxqp"; - }; - goPackageAliases = [ "code.google.com/p/go.net" ]; - propagatedBuildInputs = [ goPackages.text ]; - buildFlags = "--tags release"; - disabled = isGo13; -}; - - - - is an example expression using buildGoPackage, -the following arguments are of special significance to the function: - - - - - - goPackagePath specifies the package's canonical Go import path. - - - - - - subPackages limits the builder from building child packages that - have not been listed. If subPackages is not specified, all child - packages will be built. - - - In this example only code.google.com/p/go.net/ipv4 and - code.google.com/p/go.net/ipv6 will be built. - - - - - - goPackageAliases is a list of alternative import paths - that are valid for this library. - Packages that depend on this library will automatically rename - import paths that match any of the aliases to goPackagePath. - - - In this example imports will be renamed from - code.google.com/p/go.net to - golang.org/x/net in every package that depend on the - go.net library. - - - - - - propagatedBuildInputs is where the dependencies of a Go library are - listed. Only libraries should list propagatedBuildInputs. If a standalone - program is being built instead, use buildInputs. If a library's tests require - additional dependencies that are not propagated, they should be listed in buildInputs. - - - - - - buildFlags is a list of flags passed to the go build command. - - - - - - If disabled is true, - nix will refuse to build this package. - - - In this example the package will not be built for go 1.3. The isGo13 - is an utility function that returns true if go used to build the - package has version 1.3.x. - - - - - - - - -Reusable Go libraries may be found in the goPackages set. You can test -build a Go package as follows: - - -$ nix-build -A goPackages.net - - - - - -You may use Go packages installed into the active Nix profiles by adding -the following to your ~/.bashrc: - - -for p in $NIX_PROFILES; do - GOPATH="$p/share/go:$GOPATH" -done - - - - To extract dependency information from a Go package in automated way use go2nix. -
- - -
Java - -Ant-based Java packages are typically built from source as follows: - - -stdenv.mkDerivation { - name = "..."; - src = fetchurl { ... }; - - buildInputs = [ jdk ant ]; - - buildPhase = "ant"; -} - - -Note that jdk is an alias for the OpenJDK. - -JAR files that are intended to be used by other packages should -be installed in $out/share/java. The OpenJDK has -a stdenv setup hook that adds any JARs in the -share/java directories of the build inputs to the -CLASSPATH environment variable. For instance, if the -package libfoo installs a JAR named -foo.jar in its share/java -directory, and another package declares the attribute - - -buildInputs = [ jdk libfoo ]; - - -then CLASSPATH will be set to -/nix/store/...-libfoo/share/java/foo.jar. - -Private JARs -should be installed in a location like -$out/share/package-name. - -If your Java package provides a program, you need to generate a -wrapper script to run it using the OpenJRE. You can use -makeWrapper for this: - - -buildInputs = [ makeWrapper ]; - -installPhase = - '' - mkdir -p $out/bin - makeWrapper ${jre}/bin/java $out/bin/foo \ - --add-flags "-cp $out/share/java/foo.jar org.foo.Main" - ''; - - -Note the use of jre, which is the part of the -OpenJDK package that contains the Java Runtime Environment. By using -${jre}/bin/java instead of -${jdk}/bin/java, you prevent your package from -depending on the JDK at runtime. - -It is possible to use a different Java compiler than -javac from the OpenJDK. For instance, to use the -Eclipse Java Compiler: - - -buildInputs = [ jre ant ecj ]; - - -(Note that here you don’t need the full JDK as an input, but just the -JRE.) The ECJ has a stdenv setup hook that sets some environment -variables to cause Ant to use ECJ, but this doesn’t work with all Ant -files. Similarly, you can use the GNU Java Compiler: - - -buildInputs = [ gcj ant ]; - - -Here, Ant will automatically use gij (the GNU Java -Runtime) instead of the OpenJRE. - -
- - -
Lua - - - Lua packages are built by the buildLuaPackage function. This function is - implemented - in - pkgs/development/lua-modules/generic/default.nix - and works similarly to buildPerlPackage. (See - for details.) - - - - Lua packages are defined - in pkgs/top-level/lua-packages.nix. - Most of them are simple. For example: - - -fileSystem = buildLuaPackage { - name = "filesystem-1.6.2"; - src = fetchurl { - url = "https://github.com/keplerproject/luafilesystem/archive/v1_6_2.tar.gz"; - sha256 = "1n8qdwa20ypbrny99vhkmx8q04zd2jjycdb5196xdhgvqzk10abz"; - }; - meta = { - homepage = "https://github.com/keplerproject/luafilesystem"; - hydraPlatforms = stdenv.lib.platforms.linux; - maintainers = with maintainers; [ flosse ]; - }; -}; - - - - - Though, more complicated package should be placed in a seperate file in - pkgs/development/lua-modules. - - - Lua packages accept additional parameter disabled, which defines - the condition of disabling package from luaPackages. For example, if package has - disabled assigned to lua.luaversion != "5.1", - it will not be included in any luaPackages except lua51Packages, making it - only be built for lua 5.1. - - -
- -
Coq - - Coq libraries should be installed in - $(out)/lib/coq/${coq.coq-version}/user-contrib/. - Such directories are automatically added to the - $COQPATH environment variable by the hook defined - in the Coq derivation. - - - Some libraries require OCaml and sometimes also Camlp5. The exact - versions that were used to build Coq are saved in the - coq.ocaml and coq.camlp5 - attributes. - - - Here is a simple package example. It is a pure Coq library, thus it - only depends on Coq. Its makefile has been - generated using coq_makefile so we only have to - set the $COQLIB variable at install time. - - -{stdenv, fetchurl, coq}: -stdenv.mkDerivation { - src = fetchurl { - url = http://coq.inria.fr/pylons/contribs/files/Karatsuba/v8.4/Karatsuba.tar.gz; - sha256 = "0ymfpv4v49k4fm63nq6gcl1hbnnxrvjjp7yzc4973n49b853c5b1"; - }; - - name = "coq-karatsuba"; - - buildInputs = [ coq ]; - - installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; -} - -
- -
Qt - -The information in this section applies to Qt 5.5 and later. - -Qt is an application development toolkit for C++. Although it is -not a distinct programming language, there are special considerations -for packaging Qt-based programs and libraries. A small set of tools -and conventions has grown out of these considerations. - -
Libraries - -Packages that provide libraries should be listed in -qt5LibsFun so that the library is built with each -Qt version. A set of packages is provided for each version of Qt; for -example, qt5Libs always provides libraries built -with the latest version, qt55Libs provides -libraries built with Qt 5.5, and so on. To avoid version conflicts, no -top-level attributes are created for these packages. - -
- -
Programs - -Application packages do not need to be built with every Qt -version. To ensure consistency between the package's dependencies, -call the package with qt5Libs.callPackage instead -of the usual callPackage. An older version may be -selected in case of incompatibility. For example, to build with Qt -5.5, call the package with -qt55Libs.callPackage. - -Several environment variables must be set at runtime for Qt -applications to function correctly, including: - - - QT_PLUGIN_PATH - QML_IMPORT_PATH - QML2_IMPORT_PATH - XDG_DATA_DIRS - - -To ensure that these are set correctly, the program must be wrapped by -invoking wrapQtProgram program -during installation (for example, during -fixupPhase). wrapQtProgram -accepts the same options as makeWrapper. - - -
- -
KDE - -Many of the considerations above also apply to KDE packages, -especially the need to set the correct environment variables at -runtime. To ensure that this is done, invoke wrapKDEProgram -program during -installation. wrapKDEProgram also generates a -ksycoca database so that required data and services -can be found. Like its Qt counterpart, -wrapKDEProgram accepts the same options as -makeWrapper. - -
- -
- - - - -
diff --git a/doc/languages-frameworks/coq.xml b/doc/languages-frameworks/coq.xml new file mode 100644 index 00000000000..d16c9f3dc87 --- /dev/null +++ b/doc/languages-frameworks/coq.xml @@ -0,0 +1,41 @@ +
+ +Coq + + Coq libraries should be installed in + $(out)/lib/coq/${coq.coq-version}/user-contrib/. + Such directories are automatically added to the + $COQPATH environment variable by the hook defined + in the Coq derivation. + + + Some libraries require OCaml and sometimes also Camlp5. The exact + versions that were used to build Coq are saved in the + coq.ocaml and coq.camlp5 + attributes. + + + Here is a simple package example. It is a pure Coq library, thus it + only depends on Coq. Its makefile has been + generated using coq_makefile so we only have to + set the $COQLIB variable at install time. + + +{stdenv, fetchurl, coq}: +stdenv.mkDerivation { + src = fetchurl { + url = http://coq.inria.fr/pylons/contribs/files/Karatsuba/v8.4/Karatsuba.tar.gz; + sha256 = "0ymfpv4v49k4fm63nq6gcl1hbnnxrvjjp7yzc4973n49b853c5b1"; + }; + + name = "coq-karatsuba"; + + buildInputs = [ coq ]; + + installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; +} + +
+ diff --git a/doc/languages-frameworks/go.xml b/doc/languages-frameworks/go.xml new file mode 100644 index 00000000000..89908b3b8ff --- /dev/null +++ b/doc/languages-frameworks/go.xml @@ -0,0 +1,124 @@ +
+ +Go + +The function buildGoPackage builds +standard Go packages. + + +buildGoPackage + +net = buildGoPackage rec { + name = "go.net-${rev}"; + goPackagePath = "golang.org/x/net"; + subPackages = [ "ipv4" "ipv6" ]; + rev = "e0403b4e005"; + src = fetchFromGitHub { + inherit rev; + owner = "golang"; + repo = "net"; + sha256 = "1g7cjzw4g4301a3yqpbk8n1d4s97sfby2aysl275x04g0zh8jxqp"; + }; + goPackageAliases = [ "code.google.com/p/go.net" ]; + propagatedBuildInputs = [ goPackages.text ]; + buildFlags = "--tags release"; + disabled = isGo13; +}; + + + + is an example expression using buildGoPackage, +the following arguments are of special significance to the function: + + + + + + goPackagePath specifies the package's canonical Go import path. + + + + + + subPackages limits the builder from building child packages that + have not been listed. If subPackages is not specified, all child + packages will be built. + + + In this example only code.google.com/p/go.net/ipv4 and + code.google.com/p/go.net/ipv6 will be built. + + + + + + goPackageAliases is a list of alternative import paths + that are valid for this library. + Packages that depend on this library will automatically rename + import paths that match any of the aliases to goPackagePath. + + + In this example imports will be renamed from + code.google.com/p/go.net to + golang.org/x/net in every package that depend on the + go.net library. + + + + + + propagatedBuildInputs is where the dependencies of a Go library are + listed. Only libraries should list propagatedBuildInputs. If a standalone + program is being built instead, use buildInputs. If a library's tests require + additional dependencies that are not propagated, they should be listed in buildInputs. + + + + + + buildFlags is a list of flags passed to the go build command. + + + + + + If disabled is true, + nix will refuse to build this package. + + + In this example the package will not be built for go 1.3. The isGo13 + is an utility function that returns true if go used to build the + package has version 1.3.x. + + + + + + + + +Reusable Go libraries may be found in the goPackages set. You can test +build a Go package as follows: + + +$ nix-build -A goPackages.net + + + + + +You may use Go packages installed into the active Nix profiles by adding +the following to your ~/.bashrc: + + +for p in $NIX_PROFILES; do + GOPATH="$p/share/go:$GOPATH" +done + + + + To extract dependency information from a Go package in automated way use go2nix. +
+ diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml new file mode 100644 index 00000000000..9fd79877e83 --- /dev/null +++ b/doc/languages-frameworks/index.xml @@ -0,0 +1,42 @@ + + +Support for specific programming languages and frameworks + +The standard build +environment makes it easy to build typical Autotools-based +packages with very little code. Any other kind of package can be +accomodated by overriding the appropriate phases of +stdenv. However, there are specialised functions +in Nixpkgs to easily build packages for other programming languages, +such as Perl or Haskell. These are described in this chapter. + + + + + + + + + + + + + + + + diff --git a/doc/languages-frameworks/java.xml b/doc/languages-frameworks/java.xml new file mode 100644 index 00000000000..2d40a254ced --- /dev/null +++ b/doc/languages-frameworks/java.xml @@ -0,0 +1,84 @@ +
+ +Java + +Ant-based Java packages are typically built from source as follows: + + +stdenv.mkDerivation { + name = "..."; + src = fetchurl { ... }; + + buildInputs = [ jdk ant ]; + + buildPhase = "ant"; +} + + +Note that jdk is an alias for the OpenJDK. + +JAR files that are intended to be used by other packages should +be installed in $out/share/java. The OpenJDK has +a stdenv setup hook that adds any JARs in the +share/java directories of the build inputs to the +CLASSPATH environment variable. For instance, if the +package libfoo installs a JAR named +foo.jar in its share/java +directory, and another package declares the attribute + + +buildInputs = [ jdk libfoo ]; + + +then CLASSPATH will be set to +/nix/store/...-libfoo/share/java/foo.jar. + +Private JARs +should be installed in a location like +$out/share/package-name. + +If your Java package provides a program, you need to generate a +wrapper script to run it using the OpenJRE. You can use +makeWrapper for this: + + +buildInputs = [ makeWrapper ]; + +installPhase = + '' + mkdir -p $out/bin + makeWrapper ${jre}/bin/java $out/bin/foo \ + --add-flags "-cp $out/share/java/foo.jar org.foo.Main" + ''; + + +Note the use of jre, which is the part of the +OpenJDK package that contains the Java Runtime Environment. By using +${jre}/bin/java instead of +${jdk}/bin/java, you prevent your package from +depending on the JDK at runtime. + +It is possible to use a different Java compiler than +javac from the OpenJDK. For instance, to use the +Eclipse Java Compiler: + + +buildInputs = [ jre ant ecj ]; + + +(Note that here you don’t need the full JDK as an input, but just the +JRE.) The ECJ has a stdenv setup hook that sets some environment +variables to cause Ant to use ECJ, but this doesn’t work with all Ant +files. Similarly, you can use the GNU Java Compiler: + + +buildInputs = [ gcj ant ]; + + +Here, Ant will automatically use gij (the GNU Java +Runtime) instead of the OpenJRE. + +
+ diff --git a/doc/languages-frameworks/lua.xml b/doc/languages-frameworks/lua.xml new file mode 100644 index 00000000000..39b086af4cb --- /dev/null +++ b/doc/languages-frameworks/lua.xml @@ -0,0 +1,51 @@ +
+ +Lua + + + Lua packages are built by the buildLuaPackage function. This function is + implemented + in + pkgs/development/lua-modules/generic/default.nix + and works similarly to buildPerlPackage. (See + for details.) + + + + Lua packages are defined + in pkgs/top-level/lua-packages.nix. + Most of them are simple. For example: + + +fileSystem = buildLuaPackage { + name = "filesystem-1.6.2"; + src = fetchurl { + url = "https://github.com/keplerproject/luafilesystem/archive/v1_6_2.tar.gz"; + sha256 = "1n8qdwa20ypbrny99vhkmx8q04zd2jjycdb5196xdhgvqzk10abz"; + }; + meta = { + homepage = "https://github.com/keplerproject/luafilesystem"; + hydraPlatforms = stdenv.lib.platforms.linux; + maintainers = with maintainers; [ flosse ]; + }; +}; + + + + + Though, more complicated package should be placed in a seperate file in + pkgs/development/lua-modules. + + + Lua packages accept additional parameter disabled, which defines + the condition of disabling package from luaPackages. For example, if package has + disabled assigned to lua.luaversion != "5.1", + it will not be included in any luaPackages except lua51Packages, making it + only be built for lua 5.1. + + +
+ diff --git a/doc/languages-frameworks/perl.xml b/doc/languages-frameworks/perl.xml new file mode 100644 index 00000000000..54b82f4a056 --- /dev/null +++ b/doc/languages-frameworks/perl.xml @@ -0,0 +1,181 @@ +
+ +Perl + +Nixpkgs provides a function buildPerlPackage, +a generic package builder function for any Perl package that has a +standard Makefile.PL. It’s implemented in pkgs/development/perl-modules/generic. + +Perl packages from CPAN are defined in pkgs/top-level/perl-packages.nix, +rather than pkgs/all-packages.nix. Most Perl +packages are so straight-forward to build that they are defined here +directly, rather than having a separate function for each package +called from perl-packages.nix. However, more +complicated packages should be put in a separate file, typically in +pkgs/development/perl-modules. Here is an +example of the former: + + +ClassC3 = buildPerlPackage rec { + name = "Class-C3-0.21"; + src = fetchurl { + url = "mirror://cpan/authors/id/F/FL/FLORA/${name}.tar.gz"; + sha256 = "1bl8z095y4js66pwxnm7s853pi9czala4sqc743fdlnk27kq94gz"; + }; +}; + + +Note the use of mirror://cpan/, and the +${name} in the URL definition to ensure that the +name attribute is consistent with the source that we’re actually +downloading. Perl packages are made available in +all-packages.nix through the variable +perlPackages. For instance, if you have a package +that needs ClassC3, you would typically write + + +foo = import ../path/to/foo.nix { + inherit stdenv fetchurl ...; + inherit (perlPackages) ClassC3; +}; + + +in all-packages.nix. You can test building a +Perl package as follows: + + +$ nix-build -A perlPackages.ClassC3 + + +buildPerlPackage adds perl- to +the start of the name attribute, so the package above is actually +called perl-Class-C3-0.21. So to install it, you +can say: + + +$ nix-env -i perl-Class-C3 + + +(Of course you can also install using the attribute name: +nix-env -i -A perlPackages.ClassC3.) + +So what does buildPerlPackage do? It does +the following: + + + + In the configure phase, it calls perl + Makefile.PL to generate a Makefile. You can set the + variable makeMakerFlags to pass flags to + Makefile.PL + + It adds the contents of the PERL5LIB + environment variable to #! .../bin/perl line of + Perl scripts as -Idir + flags. This ensures that a script can find its + dependencies. + + In the fixup phase, it writes the propagated build + inputs (propagatedBuildInputs) to the file + $out/nix-support/propagated-user-env-packages. + nix-env recursively installs all packages listed + in this file when you install a package that has it. This ensures + that a Perl package can find its dependencies. + + + + + +buildPerlPackage is built on top of +stdenv, so everything can be customised in the +usual way. For instance, the BerkeleyDB module has +a preConfigure hook to generate a configuration +file used by Makefile.PL: + + +{ buildPerlPackage, fetchurl, db }: + +buildPerlPackage rec { + name = "BerkeleyDB-0.36"; + + src = fetchurl { + url = "mirror://cpan/authors/id/P/PM/PMQS/${name}.tar.gz"; + sha256 = "07xf50riarb60l1h6m2dqmql8q5dij619712fsgw7ach04d8g3z1"; + }; + + preConfigure = '' + echo "LIB = ${db}/lib" > config.in + echo "INCLUDE = ${db}/include" >> config.in + ''; +} + + + + +Dependencies on other Perl packages can be specified in the +buildInputs and +propagatedBuildInputs attributes. If something is +exclusively a build-time dependency, use +buildInputs; if it’s (also) a runtime dependency, +use propagatedBuildInputs. For instance, this +builds a Perl module that has runtime dependencies on a bunch of other +modules: + + +ClassC3Componentised = buildPerlPackage rec { + name = "Class-C3-Componentised-1.0004"; + src = fetchurl { + url = "mirror://cpan/authors/id/A/AS/ASH/${name}.tar.gz"; + sha256 = "0xql73jkcdbq4q9m0b0rnca6nrlvf5hyzy8is0crdk65bynvs8q1"; + }; + propagatedBuildInputs = [ + ClassC3 ClassInspector TestException MROCompat + ]; +}; + + + + +
Generation from CPAN + +Nix expressions for Perl packages can be generated (almost) +automatically from CPAN. This is done by the program +nix-generate-from-cpan, which can be installed +as follows: + + +$ nix-env -i nix-generate-from-cpan + + +This program takes a Perl module name, looks it up on CPAN, +fetches and unpacks the corresponding package, and prints a Nix +expression on standard output. For example: + + +$ nix-generate-from-cpan XML::Simple + XMLSimple = buildPerlPackage { + name = "XML-Simple-2.20"; + src = fetchurl { + url = mirror://cpan/authors/id/G/GR/GRANTM/XML-Simple-2.20.tar.gz; + sha256 = "5cff13d0802792da1eb45895ce1be461903d98ec97c9c953bc8406af7294434a"; + }; + propagatedBuildInputs = [ XMLNamespaceSupport XMLSAX XMLSAXExpat ]; + meta = { + description = "Easily read/write XML (esp config files)"; + license = "perl"; + }; + }; + + +The output can be pasted into +pkgs/top-level/perl-packages.nix or wherever else +you need it. + +
+ +
+ diff --git a/doc/languages-frameworks/python.xml b/doc/languages-frameworks/python.xml new file mode 100644 index 00000000000..57aceeb4868 --- /dev/null +++ b/doc/languages-frameworks/python.xml @@ -0,0 +1,447 @@ +
+ +Python + + + Currently supported interpreters are python26, python27, + python33, python34, python35 + and pypy. + + + + python is an alias to python27 and python3 is an alias to python34. + + + + python26 and python27 do not include modules that require + external dependencies (to reduce dependency bloat). Following modules need to be added as + buildInput explicitly: + + + + python.modules.bsddb + python.modules.curses + python.modules.curses_panel + python.modules.crypt + python.modules.gdbm + python.modules.sqlite3 + python.modules.tkinter + python.modules.readline + + +For convenience python27Full and python26Full +are provided with all modules included. + + + Python packages that + use setuptools or distutils, + can be built using the buildPythonPackage function as documented below. + + + + All packages depending on any Python interpreter get appended $out/${python.sitePackages} + to $PYTHONPATH if such directory exists. + + + + + Useful attributes on interpreters packages: + + + + libPrefix + + Name of the folder in ${python}/lib/ for corresponding interpreter. + + + + + interpreter + + Alias for ${python}/bin/${executable}. + + + + + buildEnv + + Function to build python interpreter environments with extra packages bundled together. + See for usage and documentation. + + + + + sitePackages + + Alias for lib/${libPrefix}/site-packages. + + + + + executable + + Name of the interpreter executable, ie python3.4. + + + + +
<varname>buildPythonPackage</varname> function + + + The function is implemented in + pkgs/development/python-modules/generic/default.nix. + Example usage: + + +twisted = buildPythonPackage { + name = "twisted-8.1.0"; + + src = pkgs.fetchurl { + url = http://tmrc.mit.edu/mirror/twisted/Twisted/8.1/Twisted-8.1.0.tar.bz2; + sha256 = "0q25zbr4xzknaghha72mq57kh53qw1bf8csgp63pm9sfi72qhirl"; + }; + + propagatedBuildInputs = [ self.ZopeInterface ]; + + meta = { + homepage = http://twistedmatrix.com/; + description = "Twisted, an event-driven networking engine written in Python"; + license = stdenv.lib.licenses.mit; + }; +}; + + + Most of Python packages that use buildPythonPackage are defined + in pkgs/top-level/python-packages.nix + and generated for each python interpreter separately into attribute sets python26Packages, + python27Packages, python35Packages, python33Packages, + python34Packages and pypyPackages. + + + + buildPythonPackage mainly does four things: + + + + In the buildPhase, it calls + ${python.interpreter} setup.py bdist_wheel to build a wheel binary zipfile. + + + + In the installPhase, it installs the wheel file using + pip install *.whl. + + + + In the postFixup phase, wrapPythonPrograms + bash function is called to wrap all programs in $out/bin/* + directory to include $PYTHONPATH and $PATH + environment variables. + + + + In the installCheck phase, ${python.interpreter} setup.py test + is ran. + + + + + By default doCheck = true is set + + + As in Perl, dependencies on other Python packages can be specified in the + buildInputs and + propagatedBuildInputs attributes. If something is + exclusively a build-time dependency, use + buildInputs; if it’s (also) a runtime dependency, + use propagatedBuildInputs. + + + + By default meta.platforms is set to the same value + as the interpreter unless overriden otherwise. + + + + + <varname>buildPythonPackage</varname> parameters + (all parameters from <varname>mkDerivation</varname> function are still supported) + + + + namePrefix + + Prepended text to ${name} parameter. + Defaults to "python3.3-" for Python 3.3, etc. Set it to + "" + if you're packaging an application or a command line tool. + + + + + disabled + + If true, package is not build for + particular python interpreter version. Grep around + pkgs/top-level/python-packages.nix + for examples. + + + + + setupPyBuildFlags + + List of flags passed to setup.py build_ext command. + + + + + pythonPath + + List of packages to be added into $PYTHONPATH. + Packages in pythonPath are not propagated + (contrary to propagatedBuildInputs). + + + + + preShellHook + + Hook to execute commands before shellHook. + + + + + postShellHook + + Hook to execute commands after shellHook. + + + + + makeWrapperArgs + + A list of strings. Arguments to be passed to + makeWrapper, which wraps generated binaries. By + default, the arguments to makeWrapper set + PATH and PYTHONPATH environment + variables before calling the binary. Additional arguments here can + allow a developer to set environment variables which will be + available when the binary is run. For example, + makeWrapperArgs = ["--set FOO BAR" "--set BAZ QUX"]. + + + + + +
+ +
<function>python.buildEnv</function> function + + Create Python environments using low-level pkgs.buildEnv function. Example default.nix: + + + {}; + +python.buildEnv.override { + extraLibs = [ pkgs.pythonPackages.pyramid ]; + ignoreCollisions = true; +}]]> + + + Running nix-build will create + /nix/store/cf1xhjwzmdki7fasgr4kz6di72ykicl5-python-2.7.8-env + with wrapped binaries in bin/. + + + + You can also use env attribute to create local + environments with needed packages installed (somewhat comparable to + virtualenv). For example, with the following + shell.nix: + + + {}; + +(python3.buildEnv.override { + extraLibs = with python3Packages; + [ numpy + requests + ]; +}).env]]> + + + Running nix-shell will drop you into a shell where + python will have specified packages in its path. + + + + + <function>python.buildEnv</function> arguments + + + + extraLibs + + List of packages installed inside the environment. + + + + + postBuild + + Shell command executed after the build of environment. + + + + + ignoreCollisions + + Ignore file collisions inside the environment (default is false). + + + +
+ +
Tools + +Packages inside nixpkgs are written by hand. However many tools +exist in community to help save time. No tool is preferred at the moment. + + + + + + python2nix + by Vladimir Kirillov + + + + pypi2nix + by Rok Garbas + + + + pypi2nix + by Jaka Hudoklin + + + + +
+ +
Development + + + To develop Python packages buildPythonPackage has + additional logic inside shellPhase to run + pip install -e . --prefix $TMPDIR/ for the package. + + + shellPhase is executed only if setup.py + exists. + + + Given a default.nix: + + + {}; + +buildPythonPackage { + name = "myproject"; + + buildInputs = with pkgs.pythonPackages; [ pyramid ]; + + src = ./.; +}]]> + + + Running nix-shell with no arguments should give you + the environment in which the package would be build with + nix-build. + + + + Shortcut to setup environments with C headers/libraries and python packages: + + $ nix-shell -p pythonPackages.pyramid zlib libjpeg git + + + + There is a boolean value lib.inNixShell set to + true if nix-shell is invoked. + + +
+ +
FAQ + + + + + How to solve circular dependencies? + + If you have packages A and B that + depend on each other, when packaging B override package + A not to depend on B as input + (and also the other way around). + + + + + install_data / data_files problems resulting into error: could not create '/nix/store/6l1bvljpy8gazlsw2aw9skwwp4pmvyxw-python-2.7.8/etc': Permission denied + + + Known bug in setuptools install_data does not respect --prefix. Example of + such package using the feature is pkgs/tools/X11/xpra/default.nix. As workaround + install it as an extra preInstall step: + + ${python.interpreter} setup.py install_data --install-dir=$out --root=$out +sed -i '/ = data_files/d' setup.py + + + + + Rationale of non-existent global site-packages + + There is no need to have global site-packages in Nix. Each package has isolated + dependency tree and installing any python package will only populate $PATH + inside user environment. See to create self-contained + interpreter with a set of packages. + + + + + +
+ + +
Contributing guidelines + + Following rules are desired to be respected: + + + + + + Make sure package builds for all python interpreters. Use disabled argument to + buildPythonPackage to set unsupported interpreters. + + + + If tests need to be disabled for a package, make sure you leave a comment about reasoning. + + + + Packages in pkgs/top-level/python-packages.nix + are sorted quasi-alphabetically to avoid merge conflicts. + + + + +
+ +
+ diff --git a/doc/languages-frameworks/qt.xml b/doc/languages-frameworks/qt.xml new file mode 100644 index 00000000000..093c33c25a1 --- /dev/null +++ b/doc/languages-frameworks/qt.xml @@ -0,0 +1,70 @@ +
+ +Qt + +The information in this section applies to Qt 5.5 and later. + +Qt is an application development toolkit for C++. Although it is +not a distinct programming language, there are special considerations +for packaging Qt-based programs and libraries. A small set of tools +and conventions has grown out of these considerations. + +
Libraries + +Packages that provide libraries should be listed in +qt5LibsFun so that the library is built with each +Qt version. A set of packages is provided for each version of Qt; for +example, qt5Libs always provides libraries built +with the latest version, qt55Libs provides +libraries built with Qt 5.5, and so on. To avoid version conflicts, no +top-level attributes are created for these packages. + +
+ +
Programs + +Application packages do not need to be built with every Qt +version. To ensure consistency between the package's dependencies, +call the package with qt5Libs.callPackage instead +of the usual callPackage. An older version may be +selected in case of incompatibility. For example, to build with Qt +5.5, call the package with +qt55Libs.callPackage. + +Several environment variables must be set at runtime for Qt +applications to function correctly, including: + + + QT_PLUGIN_PATH + QML_IMPORT_PATH + QML2_IMPORT_PATH + XDG_DATA_DIRS + + +To ensure that these are set correctly, the program must be wrapped by +invoking wrapQtProgram program +during installation (for example, during +fixupPhase). wrapQtProgram +accepts the same options as makeWrapper. + + +
+ +
KDE + +Many of the considerations above also apply to KDE packages, +especially the need to set the correct environment variables at +runtime. To ensure that this is done, invoke wrapKDEProgram +program during +installation. wrapKDEProgram also generates a +ksycoca database so that required data and services +can be found. Like its Qt counterpart, +wrapKDEProgram accepts the same options as +makeWrapper. + +
+ +
+ diff --git a/doc/languages-frameworks/ruby.xml b/doc/languages-frameworks/ruby.xml new file mode 100644 index 00000000000..a2b4475a4a5 --- /dev/null +++ b/doc/languages-frameworks/ruby.xml @@ -0,0 +1,46 @@ +
+ +Ruby + + There currently is support to bundle applications that are packaged as Ruby gems. The utility "bundix" allows you to write a Gemfile, let bundler create a Gemfile.lock, and then convert + this into a nix expression that contains all Gem dependencies automatically. + + For example, to package sensu, we did: + + + Gemfile +source 'https://rubygems.org' +gem 'sensu' +$ bundler package --path /tmp/vendor/bundle +$ $(nix-build '' -A bundix)/bin/bundix +$ cat > default.nix +{ lib, bundlerEnv, ruby }: + +bundlerEnv { + name = "sensu-0.17.1"; + + inherit ruby; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + + meta = with lib; { + description = "A monitoring framework that aims to be simple, malleable, +and scalable."; + homepage = http://sensuapp.org/; + license = with licenses; mit; + maintainers = with maintainers; [ theuni ]; + platforms = platforms.unix; + }; +}]]> + + +Please check in the Gemfile, Gemfile.lock and the gemset.nix so future updates can be run easily. + + +
+ diff --git a/doc/manual.xml b/doc/manual.xml index 3ffe7fbb068..b4c35d1a379 100644 --- a/doc/manual.xml +++ b/doc/manual.xml @@ -15,7 +15,7 @@ - + From dadfd93811c9ddef93024f164edef636bdd48481 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 16 Dec 2015 20:53:12 -0600 Subject: [PATCH 116/289] emacsWithPackages: know its own package set Fixes #10819. emacsWithPackages will know its own package set. This requires it to be in a package set, rather than at the top level, so it lives in emacsPackagesNg. --- pkgs/build-support/emacs/wrapper.nix | 13 ++++++++++--- pkgs/top-level/all-packages.nix | 6 +++--- pkgs/top-level/emacs-packages.nix | 8 +++++++- 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/pkgs/build-support/emacs/wrapper.nix b/pkgs/build-support/emacs/wrapper.nix index 4020a1aca33..8de13dc0c64 100644 --- a/pkgs/build-support/emacs/wrapper.nix +++ b/pkgs/build-support/emacs/wrapper.nix @@ -1,8 +1,15 @@ -{ stdenv, makeWrapper, emacs }: +{ lib, makeWrapper, stdenv }: self: -with stdenv.lib; +with lib; let inherit (self) emacs; in -explicitRequires: # packages explicitly requested by the user +packagesFun: # packages explicitly requested by the user + +let + explicitRequires = + if builtins.isFunction packagesFun + then packagesFun self + else packagesFun; +in stdenv.mkDerivation { name = (appendToName "with-packages" emacs).name; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5559135e242..19f2331df4c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11629,7 +11629,7 @@ let inherit lib newScope stdenv; inherit fetchFromGitHub fetchgit fetchhg fetchurl; - inherit emacs texinfo; + inherit emacs texinfo makeWrapper; trivialBuild = callPackage ../build-support/emacs/trivial.nix { inherit emacs; @@ -11648,8 +11648,8 @@ let emacs24PackagesNg = recurseIntoAttrs (emacsPackagesNgGen emacs24); - emacsWithPackages = callPackage ../build-support/emacs/wrapper.nix { }; - emacs24WithPackages = emacsWithPackages.override { emacs = emacs24; }; + emacs24WithPackages = emacs24PackagesNg.emacsWithPackages; + emacsWithPackages = emacsPackagesNg.emacsWithPackages; inherit (gnome3) empathy; diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 727ceb24c8a..3a93a32d160 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -35,7 +35,7 @@ , lib, newScope, stdenv, fetchurl, fetchgit, fetchFromGitHub, fetchhg -, emacs, texinfo +, emacs, texinfo, makeWrapper , trivialBuild , melpaBuild @@ -58,10 +58,16 @@ let inherit lib; }; + emacsWithPackages = import ../build-support/emacs/wrapper.nix { + inherit lib makeWrapper stdenv; + }; + packagesFun = self: with self; { inherit emacs melpaBuild trivialBuild; + emacsWithPackages = emacsWithPackages self; + ## START HERE ac-haskell-process = melpaBuild rec { From 9268f0e67610b289c0e7fafd1d354499b9f3465f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 06:56:28 -0600 Subject: [PATCH 117/289] emacsPackagesNg: update user documentation --- pkgs/top-level/emacs-packages.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 3a93a32d160..6728280c3bc 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -2,12 +2,10 @@ ## FOR USERS # -# Recommended way: simply use `emacsWithPackages` from -# `all-packages.nix` with the packages you want. +# Recommended: simply use `emacsWithPackages` with the packages you want. # -# Possible way: use `emacs` from `all-packages.nix`, install -# everything to a system or user profile and then add this at the -# start your `init.el`: +# Alterative: use `emacs`, install everything to a system or user profile +# and then add this at the start your `init.el`: /* (require 'package) From 0bc4af00ee760106b8bd842ed20edb88cf3bdf82 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 07:08:18 -0600 Subject: [PATCH 118/289] emacsWithPackages: add user documentation --- pkgs/build-support/emacs/wrapper.nix | 34 ++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/pkgs/build-support/emacs/wrapper.nix b/pkgs/build-support/emacs/wrapper.nix index 8de13dc0c64..dc4ff03f9e7 100644 --- a/pkgs/build-support/emacs/wrapper.nix +++ b/pkgs/build-support/emacs/wrapper.nix @@ -1,3 +1,37 @@ +/* + +# Usage + +`emacsWithPackages` takes a single argument: a function from a package +set to a list of packages (the packages that will be available in +Emacs). For example, +``` +emacsWithPackages (epkgs: [ epkgs.evil epkgs.magit ]) +``` +All the packages in the list should come from the provided package +set. It is possible to add any package to the list, but the provided +set is guaranteed to have consistent dependencies and be built with +the correct version of Emacs. + +# Overriding + +`emacsWithPackages` inherits the package set which contains it, so the +correct way to override the provided package set is to override the +set which contains `emacsWithPackages`. For example, to override +`emacsPackagesNg.emacsWithPackages`, +``` +let customEmacsPackages = + emacsPackagesNg.override (super: self: { + # use a custom version of emacs + emacs = ...; + # use the unstable MELPA version of magit + magit = self.melpaPackages.magit; + }); +in customEmacsPackages.emacsWithPackages (epkgs: [ epkgs.evil epkgs.magit ]) +``` + +*/ + { lib, makeWrapper, stdenv }: self: with lib; let inherit (self) emacs; in From 8126ae8c7accefc0add072011ff822eeb0f5d7fc Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 07:12:49 -0600 Subject: [PATCH 119/289] elpa-packages: add instructions for updating --- .../editors/emacs-modes/elpa-packages.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 7b8d429f76a..479835dd8b0 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -1,3 +1,16 @@ +/* + +# Updating + +To update the list of packages from ELPA, + +1. Clone https://github.com/ttuegel/emacs2nix +2. Run `./elpa-packages.sh` from emacs2nix +3. Copy the new elpa-packages.json file into Nixpkgs +4. `git commit -m "elpa-packages $(date -Idate)"` + +*/ + { fetchurl, lib, stdenv, texinfo }: let From c6a5ade24b9c2e0d1235e4297d6bdebf68d25a84 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 07:14:10 -0600 Subject: [PATCH 120/289] melpa-packages: add instructions for updating --- .../editors/emacs-modes/melpa-packages.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index e48baa2d6e0..d94a34cd2de 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -1,3 +1,17 @@ +/* + +# Updating + +To update the list of packages from MELPA, + +1. Clone https://github.com/ttuegel/emacs2nix +2. Clone https://github.com/milkypostman/melpa +3. Run `./melpa-packages.sh PATH_TO_MELPA_CLONE` from emacs2nix +4. Copy the new melpa-packages.json file into Nixpkgs +5. `git commit -m "melpa-packages $(date -Idate)"` + +*/ + { lib }: let From e86f93eada0159d80db7b7ac880b6d94325668f3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 07:15:49 -0600 Subject: [PATCH 121/289] melpa-stable-packages: add instructions for updating --- .../emacs-modes/melpa-stable-packages.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index bf8df730a77..d65ce4db80e 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -1,3 +1,19 @@ +/* + +# Updating + +To update the list of packages from MELPA Stable, + +1. Clone https://github.com/ttuegel/emacs2nix +2. Clone https://github.com/milkypostman/melpa +3. Run `./melpa-stable-packages.sh PATH_TO_MELPA_CLONE` from emacs2nix. + Error messages about missing versions are normal; most packages in + MELPA do not have a stable version. +4. Copy the new melpa-stable-packages.json file into Nixpkgs +5. `git commit -m "melpa-stable-packages $(date -Idate)"` + +*/ + { lib }: let From dd89ee1c3b02a638881476df43cddf2976e78c4c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 17 Dec 2015 07:21:53 -0600 Subject: [PATCH 122/289] release-notes: note addition of ELPA and MELPA packages --- nixos/doc/manual/release-notes/rl-unstable.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml index 03eed914e27..1b8efe8770e 100644 --- a/nixos/doc/manual/release-notes/rl-unstable.xml +++ b/nixos/doc/manual/release-notes/rl-unstable.xml @@ -121,6 +121,12 @@ nginx.override { allowing to enable the combination again. + + + emacsPackagesNg now contains all packages + from the ELPA, MELPA, and MELPA Stable repositories. + + From 55544c1e68c79911ca7eafd638a6ac9254c25dc5 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 18 Dec 2015 14:20:58 -0600 Subject: [PATCH 123/289] nix-prefetch-zip: keep downloaded file extension Keep the correct file extension on the downloaded file so that `unpackFile` will know how to unpack it correctly. --- pkgs/build-support/fetchzip/nix-prefetch-zip | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/fetchzip/nix-prefetch-zip b/pkgs/build-support/fetchzip/nix-prefetch-zip index ccc03e087e5..ea55643668d 100755 --- a/pkgs/build-support/fetchzip/nix-prefetch-zip +++ b/pkgs/build-support/fetchzip/nix-prefetch-zip @@ -73,7 +73,7 @@ mkdir -p $unpackDirTmp unpackDir=$tmp/unpacked/$name mkdir -p $unpackDir -downloadedFile=$tmp/$name +downloadedFile=$tmp/$(basename "$url") unpackFile() { local curSrc="$1" From 0b1edac8c06ab84b220d3be365a1ffb108459e09 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 18 Dec 2015 15:48:38 -0600 Subject: [PATCH 124/289] nix-prefetch-bzr: match path name to fetchbzr name fetchbzr always uses the derivation name `bzr-export`. nix-prefetch-bzr should use the same name for its output. This avoids duplicate downloads and problems with forbidden characters in bazaar repository names. --- pkgs/build-support/fetchbzr/nix-prefetch-bzr | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/build-support/fetchbzr/nix-prefetch-bzr b/pkgs/build-support/fetchbzr/nix-prefetch-bzr index 8143fca7025..dbe8a7ef801 100755 --- a/pkgs/build-support/fetchbzr/nix-prefetch-bzr +++ b/pkgs/build-support/fetchbzr/nix-prefetch-bzr @@ -26,8 +26,7 @@ repoName=$(echo $url | sed ' s,.*/\([^/]\+\)/tags/\([^/]\+\)/*$,\1-\2,;t s,.*/\([^/]\+\)/*$,\1,;t ') -dstFile=$repoName-r$rev -test -n "$rev" || dstFile=$repoName +dstFile="bzr-export" # If the hash was given, a file with that hash may already be in the # store. From 8eabd09087ae321679c777ebdf7a634dadf33035 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 18 Dec 2015 16:54:01 -0600 Subject: [PATCH 125/289] melpa-packages 2015-12-18 --- .../editors/emacs-modes/melpa-packages.json | 23744 +++++++++------- 1 file changed, 13200 insertions(+), 10544 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.json b/pkgs/applications/editors/emacs-modes/melpa-packages.json index 8d87c35dfaf..c5d8fe80a2a 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json @@ -1,28 +1,30 @@ { "netherlands-holidays": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/netherlands-holidays.git", - "sha256": "bf700dac77d054e1001c125f21168df880526ca172191ae09fc6668b85a46ece", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "netherlands-holidays", + "sha256": "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z", "rev": "26236178cdd650df9958bf5a086e184096559f00" }, "recipe": { "sha256": "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.1017", "deps": [] }, "qiita": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/qiita-el.git", - "sha256": "45416bcdf7d6404c4a2d4e03ad9cfbb29b94f7716bb82b275c2b272115ddf13d", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "qiita-el", + "sha256": "0ggivlaj29rbbhkjpf3bf7vr96xjzffas0sf5m54qh6nyz6nnha5", "rev": "93c697b97d540fd1601a13a3d9889fb939b19878" }, "recipe": { "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140118.244", "deps": [ @@ -32,14 +34,15 @@ }, "drawille": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sshbio/drawille.git", - "sha256": "cabe02680a026ed6f1e2826b00955254470953c8b79e5576b3c8eae2ed0ac72b", + "tag": "fetchFromGitHub", + "owner": "sshbio", + "repo": "drawille", + "sha256": "0ay71bny5sn8ndv5b7mpr19hjislaaah0sw2wbqxcvh219l05gna", "rev": "d56a71a168b391365c8d6f567391a6892bbd3909" }, "recipe": { "sha256": "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1208", "deps": [ @@ -48,28 +51,30 @@ }, "om-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danielsz/om-mode.git", - "sha256": "eb6f3bd5a595f1edea776dfaedf3008d2edd9ace2d7c864ec176cc2ea2585f0f", + "tag": "fetchFromGitHub", + "owner": "danielsz", + "repo": "om-mode", + "sha256": "03szb2i2xk3nq578cz1drsddsbld03ryvykdfzmfvwcmlpaknvzb", "rev": "cdc0c2912321f8438b0f3449ba8aca50ec150bba" }, "recipe": { "sha256": "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140915.1610", "deps": [] }, "outorg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/outorg.git", - "sha256": "52b9241d44db9495056093c086217511dc73504a875c6f7a32acecc135b18478", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outorg", + "sha256": "0jhqpm31rsmc2r01ra48nbnd9rx9am90qk6i0qrhgfzx9q1svmj9", "rev": "9d6d6f1fb8c68ee044ffba1ae1aed8146bcff1f1" }, "recipe": { "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.1440", "deps": [] @@ -79,25 +84,26 @@ "tag": "fetchsvn", "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs", "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1", - "rev": "11138" + "rev": "11156" }, "recipe": { "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150819.604", "deps": [] }, "helm-ls-hg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-ls-hg.git", - "sha256": "9af53e37e1ff732c1e9a108d63bdabdec5c38c422ab2e2f32b6f9dc923d659d7", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-ls-hg", + "sha256": "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs", "rev": "61b91a22fcfb62d0fc56e361ec01ce96973c7165" }, "recipe": { "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150909.43", "deps": [ @@ -106,14 +112,15 @@ }, "wgrep-ag": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", - "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" }, "recipe": { "sha256": "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141012.511", "deps": [ @@ -122,28 +129,30 @@ }, "color-theme-sanityinc-tomorrow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/color-theme-sanityinc-tomorrow.git", - "sha256": "efcb38614d0773c2d67ba48280956b7d3d2489a8339d6e4b01b1a7b88d310cef", - "rev": "cf47d5fb27eed10fbd4e5c1fa10958d862e5a1bd" + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "color-theme-sanityinc-tomorrow", + "sha256": "1qs6n30amzv47d4d12z6jj506jsm5janp639jg9w65zibbp2dy7a", + "rev": "e309cb5a26228633797209276c5d48c070b90767" }, "recipe": { "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150803.1619", + "version": "20151215.2305", "deps": [] }, "focus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/larstvei/Focus.git", - "sha256": "0cae0122b49cf478025cb3c8df81fc22fa92e35e894777c43fb777477fc7452a", + "tag": "fetchFromGitHub", + "owner": "larstvei", + "repo": "Focus", + "sha256": "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc", "rev": "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9" }, "recipe": { "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.215", "deps": [ @@ -153,56 +162,60 @@ }, "xahk-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xahk-mode.el.git", - "sha256": "a0a0be47cba4a5e6ff21505593a4e143a0b370a649a5b51a8c1782c8f1248735", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xahk-mode.el", + "sha256": "0dc74kqwi0hpihdbb9a9lrqb7823w6j96mah47zyd9d4rd3vx850", "rev": "91301b8eae7fd703b258a4c68066d9d5af943c4b" }, "recipe": { "sha256": "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150504.1811", "deps": [] }, "buffer-move": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lukhas/buffer-move.git", - "sha256": "d1a5372dc0a40ed8394a72eb3a5101341eb320eaf303541f1f8826f95c9af8d6", + "tag": "fetchFromGitHub", + "owner": "lukhas", + "repo": "buffer-move", + "sha256": "0n60373l60fb7w679ld8i1fa6fqj23f8q8ypfddv1zjxjkp4n2k0", "rev": "7034d74abe4df67737d520e994d55dbb34b3b4d5" }, "recipe": { "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.249", "deps": [] }, "slovak-holidays": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/slovak-holidays.git", - "sha256": "4870c79b0ca2223d292a7d68b3ee0f14f81afa8a9878fa403280850483572ff8", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "slovak-holidays", + "sha256": "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28", "rev": "effb16dfcd14797bf7448f5113085479db339c02" }, "recipe": { "sha256": "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150418.355", "deps": [] }, "youdao-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/youdao-dictionary.el.git", - "sha256": "d9baf0a7bc4c45c05de784ed7bff9d9c72a6ff775375e86707cd36789cc32600", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "youdao-dictionary.el", + "sha256": "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr", "rev": "5b4f716ca41fa0cdb18a4949ac5cdcd470182c57" }, "recipe": { "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.144", "deps": [ @@ -214,14 +227,15 @@ }, "ox-nikola": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masayuko/ox-nikola.git", - "sha256": "672eb9bd73d2dbed1952627b55e946226029d65280a999ab938db4c1cc258131", + "tag": "fetchFromGitHub", + "owner": "masayuko", + "repo": "ox-nikola", + "sha256": "0cc14p6c3d4djfmrkac0abb2jq128vlmayv2a8cyvnyjffyvjbk7", "rev": "5bcbc1a38f6619f62294194f13ca0cd4ca14dd48" }, "recipe": { "sha256": "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.516", "deps": [ @@ -232,28 +246,30 @@ }, "io-mode-inf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/slackorama/io-emacs.git", - "sha256": "1a886ac2ab1e736876596e28f4a1e2b965c44500d9cff6933f858dc026422dab", + "tag": "fetchFromGitHub", + "owner": "slackorama", + "repo": "io-emacs", + "sha256": "1ard88kc13c57y9zdkyr012w8rdrwahz8a3fb5v6hwqymg16m20s", "rev": "6dd2bac3fd87484bb7d97e135b06c29d70b444b6" }, "recipe": { "sha256": "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140128.1334", "deps": [] }, "emacsql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad", "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" }, "recipe": { "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151003.2131", "deps": [ @@ -264,14 +280,15 @@ }, "ido-skk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tsukimizake/ido-skk.git", - "sha256": "7e4bba0bc9012e996c49969d9a08e17da222ec24d0deede57c40f2e597fd2c91", + "tag": "fetchFromGitHub", + "owner": "tsukimizake", + "repo": "ido-skk", + "sha256": "149cznbybwj0gkjyvpnh4kn258kxw449m7cn95n9jbh1r45vljvy", "rev": "89a2e62799bff2841ff634517c86084c4ce69246" }, "recipe": { "sha256": "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.350", "deps": [ @@ -287,65 +304,69 @@ }, "recipe": { "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.837", "deps": [] }, "cmake-ide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atilaneves/cmake-ide.git", - "sha256": "c0d7fbb8f64d547872f2be4500b834dec605c0a51708ab574743e8465218c059", - "rev": "503374eb9c353c662bddc87bc886db87a231d9f8" + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "cmake-ide", + "sha256": "1qkcyh26iz7xm9a9ki0k3m1mcq4jfddy6n2ibvxl2g1l1p487cgq", + "rev": "1b4a9cb5c588efd2e0f9fc9bbc2f638e29bbb9f5" }, "recipe": { "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151207.243", + "version": "20151216.1347", "deps": [ "emacs" ] }, "hideshow-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shanecelis/hideshow-org.git", - "sha256": "59d01fd19f386d75e6fe8380bb480f0029d0074f549879d247307e69d33220b7", + "tag": "fetchFromGitHub", + "owner": "shanecelis", + "repo": "hideshow-org", + "sha256": "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r", "rev": "16419e52e6cdd2f46f755144c0ab11ce00d1a626" }, "recipe": { "sha256": "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120223.1650", "deps": [] }, "jammer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/jammer.git", - "sha256": "70957c1467eb108ac2125f2be1ff5dd6130431eab8e58da312ebd899eaf91b74", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "jammer", + "sha256": "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh", "rev": "1ba232b71507b468c60dc53c2bc8888bef36c858" }, "recipe": { "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.814", "deps": [] }, "ghci-completion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/manzyuk/ghci-completion.git", - "sha256": "b89059723986ccffaf11919f3be7b5d7c884eeb8369bbbc65e5b45acc51cd49d", + "tag": "fetchFromGitHub", + "owner": "manzyuk", + "repo": "ghci-completion", + "sha256": "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q", "rev": "c47e23d585d2a3c7b13aac163693fdc4f2bb90e5" }, "recipe": { "sha256": "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.657", "deps": [ @@ -361,7 +382,7 @@ }, "recipe": { "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1640", "deps": [ @@ -370,14 +391,15 @@ }, "tide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ananthakumaran/tide.git", - "sha256": "302f3ca24db4a7494f2cc707804cc7874666372c3549036fae07a2b3e69a2ef8", + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "tide", + "sha256": "045c1fmmig88lc7c85vy8532mx0lhl666m5lrrv4i6r5n6sf68s3", "rev": "0c0f95b9e5abdbe60ccfcefc81f02178bfa940ab" }, "recipe": { "sha256": "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.245", "deps": [ @@ -389,28 +411,30 @@ }, "org-doing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omouse/org-doing.git", - "sha256": "44f1a73184b167680ff7ac32e42d9c3210eeddffe25a8e77d8606b36cdc72097", + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "org-doing", + "sha256": "1wrgqdrfdxc1vrcr6dsa8dcxrwj6zgjr9h1fzilwnxlzfvdilnsm", "rev": "7d0a8ef5dcd18ee375da6298d96e6858508fb919" }, "recipe": { "sha256": "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150824.901", "deps": [] }, "go-eldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-go-eldoc.git", - "sha256": "3f2f9fd6c9fac4d528f86327d3ec456fece9646e35b566d45394131e2f3180f7", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-go-eldoc", + "sha256": "1jwh5rqk7vr6kna6i0p3fl3wjk3mhlr6gxklc3xij4r2zdyfj8na", "rev": "684f1414913c85695eb8ca4a2643cea04ee60527" }, "recipe": { "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151028.210", "deps": [ @@ -426,21 +450,22 @@ }, "recipe": { "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1906", "deps": [] }, "cerbere": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/cerbere.git", - "sha256": "9076f7497220261c3e2adbb911b847bd25aba7a3309ac507e229397b1dcf750c", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "cerbere", + "sha256": "17jg5d5afh9zpnjx8wkys8bjllxq99j0yhz8j3fvkskisvhkz1im", "rev": "ef573b05f4c2a067b8234003aaa4b2a76fffea5c" }, "recipe": { "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140418.915", "deps": [ @@ -451,42 +476,45 @@ }, "key-intercept": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarao/key-intercept-el.git", - "sha256": "448171636b5740ebafff079319275a9b4c7a9dcbd11e2cebf0bec47791767690", + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "key-intercept-el", + "sha256": "143nfs8pgi5yy3mjq7nirffplk4vb8kik4q7zypynh2pddip30a4", "rev": "d9a60edb4ce893f2d3d94f242164fdcc62d43cf2" }, "recipe": { "sha256": "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140211.149", "deps": [] }, "grandshell-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/grandshell-theme.git", - "sha256": "7a1b3d42d1730ac8618324d08254aec9125c7705366c59b4c1e4e4c639770288", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "grandshell-theme", + "sha256": "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs", "rev": "6bf34fb1a3117244629a7fb23daf610f50854bed" }, "recipe": { "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150404.701", "deps": [] }, "warm-night-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/warm-night-theme.git", - "sha256": "2e4eb75f4c0bb262b9830f17f9899c10a78fb4aa2916698fa29b9b8c8b1687f4", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "warm-night-theme", + "sha256": "1x472s5qr6wvla7nj5i9mas8z9qhkj4zj5qghfwn5chb9igvfkif", "rev": "67cc2a1591c0627e6310cdfe8ca7c8d4565b9c16" }, "recipe": { "sha256": "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150607.941", "deps": [ @@ -495,14 +523,15 @@ }, "cbm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/akermu/cbm.el.git", - "sha256": "fd03cad78656599d6b8094e9b39c28421d19cc1a29566d93bdde827fc4926cac", + "tag": "fetchFromGitHub", + "owner": "akermu", + "repo": "cbm.el", + "sha256": "1b3cjb27z0nypn9nsmi93b61j7a252fb7sclh1mrsnanhvbwl0zx", "rev": "40ae4f6ed075889346b4ba7cf991f5ad6dd6d1b7" }, "recipe": { "sha256": "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150715.1404", "deps": [] @@ -515,21 +544,22 @@ }, "recipe": { "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1750", "deps": [] }, "diff-hl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgutov/diff-hl.git", - "sha256": "824fcc32aa45b0060b567590df6bf8c11dfe7d40f6afc2985b1fd8349a672ad8", + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "diff-hl", + "sha256": "1n1acyd39n0zbfcc5bzn81yzw7f1z1mxz43maq5hdc25m8rcqkw2", "rev": "89e08d60c4e8d5d4ddd47e14c0dd769ba965a545" }, "recipe": { "sha256": "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.1915", "deps": [ @@ -538,28 +568,30 @@ }, "outline-magic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/outline-magic.git", - "sha256": "b65b67077ec77998faa2d2fab1e41a5f6d8a201d2198bf23cc87e86321e5cc84", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outline-magic", + "sha256": "116cwlhn7s47rhivz6113lh8lvaz3bjb3ynjlbx9hyf7gq3nfnxn", "rev": "5689436cd67edc86066e51be77fa4e1fe21de507" }, "recipe": { "sha256": "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150209.1626", "deps": [] }, "vim-empty-lines-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jmickelin/vim-empty-lines-mode.git", - "sha256": "4cd668b0c2f0901b316db574011db6a8b21382a6bad5d2b75099224eb2191562", + "tag": "fetchFromGitHub", + "owner": "jmickelin", + "repo": "vim-empty-lines-mode", + "sha256": "09x857vbx35rpyc5x1322ajby613gva090x4vawaczk22idq65h4", "rev": "442a29b0ba1635a3b352c9dd1faf9ce99656d048" }, "recipe": { "sha256": "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150110.2226", "deps": [ @@ -568,14 +600,15 @@ }, "mmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/mmt.git", - "sha256": "6ab354377fbdff7d2b1542bea4e62b613c6543850b8bd373d7b48043bcd67583", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "mmt", + "sha256": "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc", "rev": "e77b809e39b9ab437b662ee759e990163bc89377" }, "recipe": { "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.1159", "deps": [ @@ -585,28 +618,30 @@ }, "fetch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/crshd/fetch.el.git", - "sha256": "c863cfbce6bea622c4c2f0d393b099825bca856d2e0264d0681e013b964b5c5e", + "tag": "fetchFromGitHub", + "owner": "crshd", + "repo": "fetch.el", + "sha256": "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8", "rev": "3f2793afcbbc32f320e572453166f9354ecc6d06" }, "recipe": { "sha256": "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131201.130", "deps": [] }, "vimish-fold": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/vimish-fold.git", - "sha256": "f42a36a96efda1684af8ee99f26ba8502c9b2387dc8656f632f3aba3b0ae5bd2", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "vimish-fold", + "sha256": "1kypjcw9n2amfq3y2g1dgx6zxf0yy4xnmxjg1fgs9j3xshg6y61m", "rev": "843a709a129f3f587fa69a67ec655b2ef301ea8a" }, "recipe": { "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.1009", "deps": [ @@ -617,14 +652,15 @@ }, "stripe-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/stripe-buffer.git", - "sha256": "5d7d0095467659994c2638da006b6ee1825b5d0a95ade6d36a9c352e0e94aa37", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "stripe-buffer", + "sha256": "0dxajh72wdcwdb9ydbcm19fmp0p1drmh1niq4r69jnbn8sah0zax", "rev": "c252080f55cb78c951b19ebab9687f6d00237baf" }, "recipe": { "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141208.908", "deps": [ @@ -633,28 +669,30 @@ }, "web-completion-data": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/web-completion-data.git", - "sha256": "9506f5dfc68369020c3ddc69d996138c29d6fca8d7c6aa29442fd7b413c5488a", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "web-completion-data", + "sha256": "12j8ql9v9mrg8hlsminpm3ydcacc2fbdjsfw7l604sc3qvgza1lm", "rev": "81482f9ff17e13906bdbd9db6bc4e1cbdc0e1870" }, "recipe": { "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150623.533", "deps": [] }, "slime-company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/anwyn/slime-company.git", - "sha256": "5d4ecc72874835fbd67a1c10f647cc9b2313148ac68d6d93bbc171652b4c28fa", + "tag": "fetchFromGitHub", + "owner": "anwyn", + "repo": "slime-company", + "sha256": "1yi89hmnawf1pf9nv3f6i8a168wvri3zc40wgbbgnda8hxrcqkjx", "rev": "cf03a862c3aa2393eb151af9e5bc032aa6b6f154" }, "recipe": { "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.814", "deps": [ @@ -664,14 +702,15 @@ }, "flymake-php": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-php.git", - "sha256": "7b48b5cfaf9f430d21eb3e355f3a7cb613d1bac237c47636975815d4f427465a", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-php", + "sha256": "09mibjdji5mf3qvngspv1zmik1zd9jwp4mb4c1w4256202359sf4", "rev": "93abe12d62b13f1d035a0df01e53e4bacdac2c66" }, "recipe": { "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121104.1302", "deps": [ @@ -680,28 +719,30 @@ }, "jade-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianc/jade-mode.git", - "sha256": "a1ea208906058e467379043b34324400ace1077f69b3bc46d75b2a6698f527d2", + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506", "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" }, "recipe": { "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150801.1144", "deps": [] }, "cheatsheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/darksmile/cheatsheet.git", - "sha256": "b6f72d90c80752b2f05f4df78745b6ddeaea27076b31f49882aedbd5cc3a59ec", + "tag": "fetchFromGitHub", + "owner": "darksmile", + "repo": "cheatsheet", + "sha256": "1v2r7b6dbnxfhacg8cbb0wkymsnxnr2qgxsdbzqb4lh7r282vxxn", "rev": "80e58c1783571e2907dfe25a32ae46ad3da1bcf1" }, "recipe": { "sha256": "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.351", "deps": [ @@ -711,42 +752,45 @@ }, "xquery-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mblakele/xquery-mode.git", - "sha256": "1b15136ee305cad064f7b249171228de45563ef21776a458c54d89554aeed725", + "tag": "fetchFromGitHub", + "owner": "mblakele", + "repo": "xquery-mode", + "sha256": "09fpxr55b2adqmca8xhpy8z5cify5091fjdjyxjd1jh5wdp1658v", "rev": "ac0ca72ccd575952393804330c3efe3b2271c4e2" }, "recipe": { "sha256": "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140121.1143", "deps": [] }, "dakrone-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dakrone/dakrone-theme.git", - "sha256": "3e4ae035aab8370111205b5e45d6cd0988fd27102a4bfd5e80020b520f80a039", + "tag": "fetchFromGitHub", + "owner": "dakrone", + "repo": "dakrone-theme", + "sha256": "0fd0h07m42q2h1ggsjra20kzv209rpb4apjv408h2dxqm8sy0jiy", "rev": "281ac9f9080a94bf9dada2f40cdba58e50f94235" }, "recipe": { "sha256": "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140211.2245", "deps": [] }, "smart-mode-line-powerline-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/smart-mode-line.git", - "sha256": "1ea483bce9c30c99248518c35001f6fa4bb13f9689198b4cd639ab9e2eb6a89e", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "smart-mode-line", + "sha256": "17m8nqp9xarrsr68n6c9jqzv2jzsyq0m1hqqhlj9j363x6y8790y", "rev": "4b3265ec3e442bd8c596b99cfd4ec73424c395ec" }, "recipe": { "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.839", "deps": [ @@ -757,42 +801,45 @@ }, "signature": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/signature.git", - "sha256": "121d9e5fd85cf02ca485764f6224d11b4fe4ebed88ecdb36f123277fe1c999bc", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "signature", + "sha256": "1g4rr7hpy9r3y4vdpv48xpmy8kqvs4j64kvnhnj2rw2wv1grw78j", "rev": "c47df2e1189a84505f9224aa78e87b6c65d13d37" }, "recipe": { "sha256": "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140730.1449", "deps": [] }, "unfill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/unfill.git", - "sha256": "f8ea4ae43bb4568225ee26d52bacdb0cdd517bc6ccc72719299867b800036d78", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "unfill", + "sha256": "0fd9k5m1yw2274m2w9rkrg7vqagzf0rjbybglqi7d200b3hmjin3", "rev": "d5f3dbaaaa871dc26bbc9e4bcd6deacac02a02d4" }, "recipe": { "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131103.413", "deps": [] }, "sonic-pi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/repl-electric/sonic-pi.el.git", - "sha256": "8ff8340b8d0ab651524c0fcb40448530841feb495d391eb0b664c8caa788cbe2", + "tag": "fetchFromGitHub", + "owner": "repl-electric", + "repo": "sonic-pi.el", + "sha256": "1ga35d3rhdf6ffd36q58ay6380gjvkmaiid4vscga3v7ca0dkhl1", "rev": "3d88a784bf7883ec56fbef5923c4e1b50d2b9b09" }, "recipe": { "sha256": "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150919.530", "deps": [ @@ -804,14 +851,15 @@ }, "org-page": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kelvinh/org-page.git", - "sha256": "13f4b384f9e44a5af55e286f7791451457e55cb45dc419d1470c2effeace97ad", + "tag": "fetchFromGitHub", + "owner": "kelvinh", + "repo": "org-page", + "sha256": "05q3dx7sfv51frsa3mk06pbrw3n986adgn08yrjwj0am0p11vpqs", "rev": "75859f2d7e05be5dd9899f765adbf2e2d434ba83" }, "recipe": { "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150913.1933", "deps": [ @@ -825,14 +873,15 @@ }, "auto-complete-c-headers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/auto-complete-c-headers.git", - "sha256": "d3a65d244aa18661dacb2272f5f86ef6af97c759f7083af3640f1d78e928b3b0", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "auto-complete-c-headers", + "sha256": "12mzi6bwg702sp0f0wd1ag555blbpk252rr9rqs03bn8pkw89h4n", "rev": "52fef720c6f274ad8de52bef39a343421006c511" }, "recipe": { "sha256": "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150911.2223", "deps": [ @@ -841,14 +890,15 @@ }, "grails-projectile-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yveszoundi/grails-projectile-mode.git", - "sha256": "24f302db5db0468a743b126d34a8d5e6e6eff374d05ce82a95e34190cb253e87", + "tag": "fetchFromGitHub", + "owner": "yveszoundi", + "repo": "grails-projectile-mode", + "sha256": "11ry4p5r0hg3jlmfhp6hfkryzrp6snl38v8j7ds8limhbpdh5wr4", "rev": "6cb3b7890ce869a911a7b1d5892a6eef7992c199" }, "recipe": { "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141229.1329", "deps": [ @@ -859,28 +909,30 @@ }, "web-beautify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/web-beautify.git", - "sha256": "f4c3cf8429c4820c911d076b2a4d5fbfb964e2838e3dc3f0d676e56ec2cbc24f", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "web-beautify", + "sha256": "0ky2rg16xrbnsvqc6gcfhgi69fdzbx6jlsq73n8hr0n4562czhzl", "rev": "be2b9a7f510e1719396ebeab9135bc64f0785b78" }, "recipe": { "sha256": "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131118.426", "deps": [] }, "inf-clojure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/inf-clojure.git", - "sha256": "ac96038ec0a97ea7f0bc8454af3ff45bf00f4748f9074440222dba04d7f45fee", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "inf-clojure", + "sha256": "1vjzykbh9fid490481zr913hzw2vyhzsym44pkqafzm9q27075mc", "rev": "f7948896f05e4e35a6aba97bd3c7e330f416e548" }, "recipe": { "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.234", "deps": [ @@ -890,14 +942,15 @@ }, "php-boris-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/php-boris-minor-mode.git", - "sha256": "0fb3bfbf7926c6706ea26f0768ea0b86b56958259e5ff05cd7f7a40d10de67f2", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "php-boris-minor-mode", + "sha256": "1wk7vq80v97psxfg0pwy4mc6kdc61gm6h1vgl9p71ii6g6zvzcqg", "rev": "c70e176dd6545f2d42ca3427e87b469635616d8a" }, "recipe": { "sha256": "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140209.1235", "deps": [ @@ -907,14 +960,15 @@ }, "rcirc-alertify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/rcirc-alertify.git", - "sha256": "269aafba76835d0cba1e92314da4724a35e0e310beb5374c42287b16cc4f1b61", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "rcirc-alertify", + "sha256": "1mpk5rzsil298q3ppv5v9jrn274v71jffyz0jihrksh1wbjzwhlx", "rev": "ea5cafc55893f375eccbe013d12dbaa94bf6e259" }, "recipe": { "sha256": "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140406.2019", "deps": [ @@ -923,14 +977,15 @@ }, "git-wip-timemachine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/itsjeyd/git-wip-timemachine.git", - "sha256": "c500243759a5354ae7a2e53ccb91002fec186000d3ca05423556ef794a568fc6", + "tag": "fetchFromGitHub", + "owner": "itsjeyd", + "repo": "git-wip-timemachine", + "sha256": "1ivnf4vsqk6c7iw1cid7q1hxp7047ajd1mpg0fl002d7m7ginhyl", "rev": "ed4c7931a5f5233bf3e358b1e81647d063526460" }, "recipe": { "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150408.506", "deps": [ @@ -939,14 +994,15 @@ }, "shell-pop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyagi/shell-pop-el.git", - "sha256": "85f3f9f2b424025ab6f5af3f36d30c1b65f0a10e760444d96a7beba89ae3fe3b", + "tag": "fetchFromGitHub", + "owner": "kyagi", + "repo": "shell-pop-el", + "sha256": "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5", "rev": "4531d234ca471ed80458252cba0ed005a0720b27" }, "recipe": { "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.830", "deps": [ @@ -955,14 +1011,15 @@ }, "cider-decompile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/cider-decompile.git", - "sha256": "4c5d4a3241b14ab4a25b1f77553f115a1bba2b9b183b1c897a398a3a74319ef0", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider-decompile", + "sha256": "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac", "rev": "5d87035f3c3c14025e8f01c0c53d0ce2c8f56651" }, "recipe": { "sha256": "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.2337", "deps": [ @@ -972,28 +1029,30 @@ }, "j-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zellio/j-mode.git", - "sha256": "710589fed69de40fd735eb9f0cfc1bf40d447cca00b596cdb73864e1e1ba95c4", + "tag": "fetchFromGitHub", + "owner": "zellio", + "repo": "j-mode", + "sha256": "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9", "rev": "caa55dfaae01d1875380929826952c2b3ef8a653" }, "recipe": { "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140702.1009", "deps": [] }, "persistent-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/persistent-scratch.git", - "sha256": "ef823eb46c4790edc8e61afc835a59419cf5196928e9ac21a95722f0464b15f9", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "persistent-scratch", + "sha256": "0vzifam1a3gy27phvhgi081v99pim669xymfwd9f96pnh0pwsqbh", "rev": "52be8e41fe1e23a1f2b912fc119af06cc051bd28" }, "recipe": { "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.1143", "deps": [ @@ -1002,14 +1061,15 @@ }, "map-regexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/map-regexp.git", - "sha256": "2c08cb7762b19d08e6ae7c11ec974cb691e0da44b47e4ef0abab91ccc6d4614e", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "map-regexp", + "sha256": "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c", "rev": "b8e06284ec1c593d7d2bda5f35597a63de46333f" }, "recipe": { "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130522.1603", "deps": [ @@ -1018,28 +1078,30 @@ }, "sauron": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/djcb/sauron.git", - "sha256": "0f4ce48bb57a4e5904ad005211eaccccafa1e86c46f3ea8e367c5fba20b99316", + "tag": "fetchFromGitHub", + "owner": "djcb", + "repo": "sauron", + "sha256": "0hzg05i8x2xgsr99nyikvflsibjsq2nryfsw7y2wyhc43w89l8cb", "rev": "d7704fd9a0623d862f03f40588ac816a8877f308" }, "recipe": { "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150614.246", "deps": [] }, "ob-browser": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/ob-browser.git", - "sha256": "0c305b8c579872c6eb324c881223945231ec79454b2df258b927865ab6c9d4a1", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "ob-browser", + "sha256": "1nzli8wk3nd05j2z2fw511857qbawirhg8mfw21wqclkz8zqn813", "rev": "9271453d28d0912093ab5f91807745ada69ada0c" }, "recipe": { "sha256": "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.910", "deps": [ @@ -1048,14 +1110,15 @@ }, "scratch-palette": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/scratch-palette.git", - "sha256": "a285a388068e644e916846e07257b92eb1d28809e0c58dc24c82758a17ca6401", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "scratch-palette", + "sha256": "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2", "rev": "f6803b448079f4a81cc699cec7442ef543cd5818" }, "recipe": { "sha256": "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150225.242", "deps": [ @@ -1064,14 +1127,15 @@ }, "ariadne": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/manzyuk/ariadne-el.git", - "sha256": "f0085977f1be7e1d00a781b2099fe8a71c67deed99c9e54568fa143398e3096e", + "tag": "fetchFromGitHub", + "owner": "manzyuk", + "repo": "ariadne-el", + "sha256": "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h", "rev": "6fe401c7f996bcbc2f685e7971324c6f5e5eaf15" }, "recipe": { "sha256": "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.1111", "deps": [ @@ -1080,14 +1144,15 @@ }, "company-ansible": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krzysztof-magosa/company-ansible.git", - "sha256": "2da17ef9067495b225c99c5034f0c1420a4d5fcc961727451dcdf64066001f20", + "tag": "fetchFromGitHub", + "owner": "krzysztof-magosa", + "repo": "company-ansible", + "sha256": "06gh33qzglv40r62dsapzhxwparw8ciblv80g7h6y6ilyazwcidn", "rev": "cfe1c915f49d716f30eec654c54db761f662952c" }, "recipe": { "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150901.450", "deps": [ @@ -1097,14 +1162,15 @@ }, "flycheck-ocaml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-ocaml.git", - "sha256": "58709877cd3eed59cc56cd6b265a21194ae4b47a1f3b706eac27e8c0d194adf6", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-ocaml", + "sha256": "0fm8w7126vf04n76qhh33rzybvl1n7va2whbqzafbvmv2nny3v94", "rev": "e4412025f27850918762237fa80b33e285a63e7c" }, "recipe": { "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.412", "deps": [ @@ -1116,14 +1182,15 @@ }, "eshell-z": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/eshell-z.git", - "sha256": "60669592b85874eae37c5d731a2a6de4f4bf5b5b5cb1234eac659db92b17d37e", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "eshell-z", + "sha256": "0znk2wmvk7b5mi727cawbddvzx74dlm1lwsxgkiylx2qp299ark0", "rev": "5a1317a58d9761c200d0ad49dc4793dec9f9490f" }, "recipe": { "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.2246", "deps": [ @@ -1132,14 +1199,15 @@ }, "fix-word": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/fix-word.git", - "sha256": "87cbb4b8b6739d3dc7f06e8fa6bcb08dc4c6595744b5130bf47d768ae86628b2", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "fix-word", + "sha256": "17f11v9sd5fay3i4k6lmpsjicdw9j3zvx3fvhx0a86mp7ay2ywwf", "rev": "3e6aa7e3e2625efdac2c0f7d715959dabf01560f" }, "recipe": { "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150716.802", "deps": [ @@ -1149,14 +1217,15 @@ }, "celery": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/emacs-celery.git", - "sha256": "53cac21e25ff593a64ea9d7b32088ac9b7cd7e8d20c4c16f51dacfd237202842", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-celery", + "sha256": "0974bxy85rcxia6dkfryas2g46nanjdf8fv90adbc7kyj07xsf7c", "rev": "5b5b1968fd258c444dc2372e989aab82830004c3" }, "recipe": { "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150812.347", "deps": [ @@ -1174,35 +1243,37 @@ }, "recipe": { "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1751", "deps": [] }, "charmap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lateau/charmap.git", - "sha256": "86733a013abf430f73ac97dfd583ea55d91c9806b814cf6a91ca6acb88693633", + "tag": "fetchFromGitHub", + "owner": "lateau", + "repo": "charmap", + "sha256": "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6", "rev": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2" }, "recipe": { "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131019.2358", "deps": [] }, "parsebib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/parsebib.git", - "sha256": "b4a61e2678a4055f78d9725ff12f8fab6c5e9f0fc04587575ab0652b3de42159", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "parsebib", + "sha256": "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml", "rev": "9a1f60bed2814dfb5cec2b92efb5951a4b465cce" }, "recipe": { "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.432", "deps": [ @@ -1211,14 +1282,15 @@ }, "hindent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/hindent.git", - "sha256": "1755027326f98d2138a42d1337617be4296f3f08100ebf58ccc49643704d6af3", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "hindent", + "sha256": "1phyaf6fwaxi2plq38m09cfb5ls401ay8jw0yf5rix8nyvm8nrn9", "rev": "575a7a19f9c86b9699a6222072c79fe02da18c4c" }, "recipe": { "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.224", "deps": [ @@ -1227,56 +1299,60 @@ }, "world-time-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-world-time-mode.git", - "sha256": "5102a8ec5d10ac544c58cd40a96db70822f9a432049afac61677599f49ed0044", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-world-time-mode", + "sha256": "0i00xm4rynbp2v3gm6h46ajgj8h8nxnsjh6db1659b0hbpnah0ji", "rev": "ce7a3b45c87eb24cfe61eee453175d64f741d7cc" }, "recipe": { "sha256": "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140627.307", "deps": [] }, "sudden-death": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yewton/sudden-death.el.git", - "sha256": "4b7096f03ed34d11725b62f26f2dd6a7c1e389028ee3b069ecfbf1d0c9ef0780", + "tag": "fetchFromGitHub", + "owner": "yewton", + "repo": "sudden-death.el", + "sha256": "1007xz4x1wgvxilv1qwf0a4y7hd7sqnnzwk2bdr12kfk7vq9cw2b", "rev": "beba6b4fb42b1e27575d3f722d23a0eb19666736" }, "recipe": { "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140829.738", "deps": [] }, "multifiles": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/multifiles.el.git", - "sha256": "b5504ab57618ee9a5b70f3e84389806327052fcdd6c259af5677ee4e742cb0e7", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "multifiles.el", + "sha256": "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai", "rev": "dddfe64b8e1c1cd1f9ccc1f03405477fc0d53897" }, "recipe": { "sha256": "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130615.1633", "deps": [] }, "remark-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/torgeir/remark-mode.el.git", - "sha256": "de9c6f786c0963f4e30ccaba4ab5d2ed331e50b3fc0b3aa79531e5aa2272738e", + "tag": "fetchFromGitHub", + "owner": "torgeir", + "repo": "remark-mode.el", + "sha256": "0w40cx58c0hmc0yzs8maq1389hwha0qwfbz76pc6kpcx14v1gkhh", "rev": "a7e22eaf17673bd5cbf2f80bdfb219c89c1ea74b" }, "recipe": { "sha256": "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151004.1155", "deps": [ @@ -1285,28 +1361,30 @@ }, "flatland-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gchp/flatland-emacs.git", - "sha256": "eefae66bf187442b75d4f4c95b19dc17f6072e84ccc19967fd842b1562a88832", + "tag": "fetchFromGitHub", + "owner": "gchp", + "repo": "flatland-emacs", + "sha256": "0cl8m1i1aaw4zmkrkhfchhp0gxhpvhcmpjglsisjni47y5mydypf", "rev": "b2c2df1fc20a3a23787644f91f8121d9353f9bf9" }, "recipe": { "sha256": "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140805.505", "deps": [] }, "jist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/jist.el.git", - "sha256": "d1aaf371711e217ba2ef48c6c504efeef18d0a2c3bf605d631e295be228535e2", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "jist.el", + "sha256": "0irfqrga1hzi8g1bji5mq01z63sp0dqnd8nf0jkf02vgaagrhdc8", "rev": "9e0f37812eb5a215518d9b2beb089ef9e1c28950" }, "recipe": { "sha256": "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.1318", "deps": [ @@ -1319,14 +1397,15 @@ }, "groovy-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Groovy-Emacs-Modes/groovy-emacs-modes.git", - "sha256": "f06dee27122cb7756a5092497212be7f35e2e4e06d950b0f771b0b2fedff88c5", + "tag": "fetchFromGitHub", + "owner": "Groovy-Emacs-Modes", + "repo": "groovy-emacs-modes", + "sha256": "07xiyf30p6hdd6lxv7c6xqpnvw6ys0halg8di0m3pwqz9qf4rj4i", "rev": "74f360ee1ad25755707a89bec9eeed571b6748d0" }, "recipe": { "sha256": "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.154", "deps": [] @@ -1340,21 +1419,22 @@ }, "recipe": { "sha256": "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120510.1430", "deps": [] }, "simplenote2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alpha22jp/simplenote2.el.git", - "sha256": "fab470ba766a029fff743b1687e8c2ea361c10cf2cb6a2f3edd1dc3aa3ff31ac", + "tag": "fetchFromGitHub", + "owner": "alpha22jp", + "repo": "simplenote2.el", + "sha256": "1a0l0f6by1nmnnq0n52la9g3d357bmwak4qgy6p8g66qb9rx6rzv", "rev": "2a6c539d98968837ec09d2754e9235ff278057a8" }, "recipe": { "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150630.916", "deps": [ @@ -1363,28 +1443,30 @@ }, "pivotal-tracker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jxa/pivotal-tracker.git", - "sha256": "9ad2c6983ab31500ae47bad796cebfff2797b21d78393d4ae538329b66c67ce9", + "tag": "fetchFromGitHub", + "owner": "jxa", + "repo": "pivotal-tracker", + "sha256": "1sbwqrk9nciqwm53sfbq3nr9f9zzpz79dmxs8yp005dk7accdlls", "rev": "93f2b45b373bf6972dcc4b16814ef23e1a6c16f5" }, "recipe": { "sha256": "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1350", "deps": [] }, "cake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-cake.git", - "sha256": "ea8f3ad857b3397a2f70046ea4f35a306ae676b16fad09d7c9cf5593e92df200", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake", + "sha256": "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg", "rev": "a7c9f3bee71eb3865060123d4d98e5397c2f967e" }, "recipe": { "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140603.2331", "deps": [ @@ -1395,14 +1477,15 @@ }, "realgud": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocky/emacs-dbgr.git", - "sha256": "043fafb56d81cabbfaa39a2d0ae4427e1037fb2acbae84f8c8988dca71309051", + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-dbgr", + "sha256": "1qlf9whz912jk7j87zal10b48a9agpfxkyqa7s1xjchs4k662a24", "rev": "4e85910b106e3094d2b27ac34f584df5bf4ab457" }, "recipe": { "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1523", "deps": [ @@ -1414,14 +1497,15 @@ }, "js2-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/js2-refactor.el.git", - "sha256": "75404b9b8a9856510931416c8b93c400979ee257b1e833c4ebb1e11439eecd4c", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "js2-refactor.el", + "sha256": "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly", "rev": "ac3da94a33b714d44d4f0adc670a829fdc522e34" }, "recipe": { "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.707", "deps": [ @@ -1434,56 +1518,60 @@ }, "ecb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alexott/ecb.git", - "sha256": "9b63eb0ed7c19cdbdf415675c0c5ed4658912a74138375d3be2442721ec15b59", + "tag": "fetchFromGitHub", + "owner": "alexott", + "repo": "ecb", + "sha256": "1hs069m4m6vhb37ac2x6hzbp9mfmpd3zhp4m631lx8dlmx11rydz", "rev": "071706b22efcfeb65da8381e317220d7f9d8cb54" }, "recipe": { "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140215.314", "deps": [] }, "meta-presenter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myTerminal/meta-presenter.git", - "sha256": "b4901d059a3eb88d11adf9fef628ea327fd41eb9fefbddefb85e563fa02a82f4", + "tag": "fetchFromGitHub", + "owner": "myTerminal", + "repo": "meta-presenter", + "sha256": "1x425ah3ymjyp3pxvyzyp4gd8zrjx8lgdzprml8qvf1yk82iv45l", "rev": "bfdbe68384466bf3eb991d05c7f371f0b52a382f" }, "recipe": { "sha256": "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150501.610", "deps": [] }, "kroman": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/kroman-el.git", - "sha256": "d9913350eaafe42d6cb8281704c8e789cb8f57711700f1a567f9f1db60ed5d85", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "kroman-el", + "sha256": "11axxmhdpwgrcyjz200pf5bqzjw9wz4085r8p1n2vr5gx98374fr", "rev": "90402b6ae40383e75d8ba97d66eee93eebf40f70" }, "recipe": { "sha256": "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150827.1840", "deps": [] }, "quickrun": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-quickrun.git", - "sha256": "4f4f953b07ee98234d1d931e15b8c3a1b4322aac4c23e506cc78f43ed72c64d2", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-quickrun", + "sha256": "1i7bx81g8xq7659hc1zlvs0afwkr8mg10cki45khxsxwcy5jr7dh", "rev": "fd9d372bcbb9b4ad52dcae782ca007e5aa7087fd" }, "recipe": { "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.2352", "deps": [ @@ -1493,70 +1581,75 @@ }, "enh-ruby-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenspider/enhanced-ruby-mode.git", - "sha256": "f211fb78fb211280d347e538d70425592303c4fb07a2e1800167c240650b6d15", + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "enhanced-ruby-mode", + "sha256": "008wggl6xxk339njrgpj2fndbil7k9f3i2hg1mjwqk033j87nbz7", "rev": "73d949ab1de16a4d3f368cde94dd5403c0402ab4" }, "recipe": { "sha256": "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.341", "deps": [] }, "ukrainian-holidays": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/ukrainian-holidays.git", - "sha256": "9f53576e43ce71634a0daddc01f0b43d30c714652532baf89d90a69326237b0c", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ukrainian-holidays", + "sha256": "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz", "rev": "e52b0c92843e9f4d0415a7ba3b8559785497d23d" }, "recipe": { "sha256": "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130720.849", "deps": [] }, "rsense": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/rsense.git", - "sha256": "8d505fc69958d42de31f86b0be97120087cb54c156c91058d97354872c0e7976", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "rsense", + "sha256": "0xkr1qn8fm3kv5c11janq5acp1q02abvxc463zijvm2qk735yl4d", "rev": "8b5ee58318747ca1dde84ee41d48c4f50175cf35" }, "recipe": { "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100510.2305", "deps": [] }, "capture": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pashinin/capture.el.git", - "sha256": "2791ae00e04bd895c171cd53effe0f675d5a7d025ece013f43e917a8a5bdf1a8", + "tag": "fetchFromGitHub", + "owner": "pashinin", + "repo": "capture.el", + "sha256": "08cp45snhyir5w8gyp6xws1q7c54pz06q099l0m3zmwn9277g68z", "rev": "1bb26060311da76767f70096218313fc93b0c806" }, "recipe": { "sha256": "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130828.1144", "deps": [] }, "ocodo-svg-modelines": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ocodo/ocodo-svg-modelines.git", - "sha256": "8838980eee6f6af0cb93a918073a7d601e6fd2fa3321c928717f7c6634adaf94", + "tag": "fetchFromGitHub", + "owner": "ocodo", + "repo": "ocodo-svg-modelines", + "sha256": "155gmls6cz3zf4lcj89kzb96y7k0glx0f659jg5z0skgxq79hf48", "rev": "c7b0789a177219f117c4de5659ecfa8622958c40" }, "recipe": { "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150516.919", "deps": [ @@ -1565,14 +1658,15 @@ }, "jedi-core": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi", + "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.905", "deps": [ @@ -1584,14 +1678,15 @@ }, "dim-autoload": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/dim-autoload.git", - "sha256": "daaabcff114b24356d94278a78b0a686063a3f7f662865e9137b2de6d57c812f", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "dim-autoload", + "sha256": "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans", "rev": "d68ef0d2f9204ffe0d521e2647e6d8f473588fd3" }, "recipe": { "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150815.1032", "deps": [] @@ -1604,49 +1699,52 @@ }, "recipe": { "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121026.950", "deps": [] }, "pkgbuild-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juergenhoetzel/pkgbuild-mode.git", - "sha256": "a09c6accbdd437ec4b3066723cce656af09046f4d1f0e6515a4776deddb8fb1c", + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "pkgbuild-mode", + "sha256": "077vp3fxwxj7b98ydw6iyi391w3acp73qwk6615yqdylpp66m750", "rev": "7369ab3c6b59cfdf2ecd2b32ad96ce006e766fa0" }, "recipe": { "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151010.936", "deps": [] }, "erc-youtube": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kidd/erc-youtube.el.git", - "sha256": "bcc84f8e0f6d8b185a967fb79a88357af925c3545e6e1f1526410d3a7a55044e", + "tag": "fetchFromGitHub", + "owner": "kidd", + "repo": "erc-youtube.el", + "sha256": "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w", "rev": "97054ba8475b442e2aa81e5a291f668b7f28697f" }, "recipe": { "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150603.1636", "deps": [] }, "roguel-ike": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stevenremot/roguel-ike.git", - "sha256": "87ce21c416a8f589770b8548106aabb48cdd654784f62db6241d23a39a493cc0", + "tag": "fetchFromGitHub", + "owner": "stevenremot", + "repo": "roguel-ike", + "sha256": "108j3106n9anas07mj26xlrvscsl5irshd39czkippla84gwmgyc", "rev": "6d9322ad9d43d0c7465f125c8e08b222866e6923" }, "recipe": { "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140227.929", "deps": [ @@ -1655,42 +1753,45 @@ }, "memoize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacs-memoize.git", - "sha256": "fcf6811b90df7e05974fa72a4ab02966ca087de1596de77066181c515ba65c3a", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacs-memoize", + "sha256": "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw", "rev": "b55eab0cb6ab05d941e07b8c01f1655c0cf1dd75" }, "recipe": { "sha256": "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130421.1434", "deps": [] }, "helm-words": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pronobis/helm-words.git", - "sha256": "f3c6eda1b4b08ff0ea5d3a9f6e5445bab929842ef92b30f4a86e53d5d826e8ee", + "tag": "fetchFromGitHub", + "owner": "pronobis", + "repo": "helm-words", + "sha256": "19l8vysjygscr1nsddjz2yv0fjhbsswfq40rdny8zsmaa6qhpj35", "rev": "637aa3a7e9cfd34e0127472c5b1f993a4da26185" }, "recipe": { "sha256": "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150413.1518", "deps": [] }, "name-this-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knl/name-this-color.el.git", - "sha256": "3d9cb5a99a184fa8081a9dccd5ba3403987925c86d908aaf0287448a56ed7c9b", + "tag": "fetchFromGitHub", + "owner": "knl", + "repo": "name-this-color.el", + "sha256": "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n", "rev": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa" }, "recipe": { "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.1530", "deps": [ @@ -1701,14 +1802,15 @@ }, "git-messenger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-git-messenger.git", - "sha256": "029a1b163e3df3ebd617a196c55ea2f2c232a25e46ab4752687f49d57e319953", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-messenger", + "sha256": "038m4fjva8ynlms6dbh55w8x8wsn9c3z02rh4782ck2zi51q0d8g", "rev": "7b16fdc9f6fd1a3b9c9f212b1633291c4c18fc9b" }, "recipe": { "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150314.802", "deps": [ @@ -1718,14 +1820,15 @@ }, "maven-test-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rranelli/maven-test-mode.git", - "sha256": "54bf2197f2bdca7f207bdf695a1a019625c1c37b90720bbf3a9b489f7aa334a0", + "tag": "fetchFromGitHub", + "owner": "rranelli", + "repo": "maven-test-mode", + "sha256": "1xn2yyr8mr90cynbxgv0h5v180pzf0ydnjr9spg34mrdicqlki6c", "rev": "a19151861df2ad8ae4880a2e7c86ddf848cb569a" }, "recipe": { "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141219.2357", "deps": [ @@ -1735,14 +1838,15 @@ }, "rails-new": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/rails-new.git", - "sha256": "a6f61674734ff8a34e233a0d5d2152a4c290f976b33f3a5df657637b5e3aa5a5", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "rails-new", + "sha256": "0cqp2vns7gq377bm6q9n5q0ra1d5yy2x2aiw9q1hswk82xpibj9l", "rev": "b68055a99cde15f9d02ab36b8ad0ea7ab35b2283" }, "recipe": { "sha256": "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141221.249", "deps": [] @@ -1755,35 +1859,37 @@ }, "recipe": { "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1616", "deps": [] }, "nnir-est": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/nnir-est.git", - "sha256": "a1b7f575fac8784e6f630585dff870d1060cff40c688a6d26f09c5f90066fd3f", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "nnir-est", + "sha256": "0gzxcq0gki89dz9ad26683zhq1nif3wdz185cdplwy68z9szbdx1", "rev": "ba263fbd872fe05cfa6b3d815c0d98cdbe24b687" }, "recipe": { "sha256": "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140301.802", "deps": [] }, "discover-my-major": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/discover-my-major.git", - "sha256": "d5fa5d7c342c305586c9aabd7f840d8bba79f2dd42006e54b16ce138efc92f89", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "discover-my-major", + "sha256": "183dh0laiwnnrjfp9kimg4s9lrzv2lvrc35203igjadj74vpbg1a", "rev": "22130d8f16ef1bf7835d6204216c8c6b1fc8eb95" }, "recipe": { "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151008.212", "deps": [ @@ -1792,30 +1898,32 @@ }, "never-comment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/To1ne/never-comment.git", - "sha256": "7cda3a345f1b3fe5e2b15787cbdae530d3b2595e9a337a5aff6c25fbb784d032", + "tag": "fetchFromGitHub", + "owner": "To1ne", + "repo": "never-comment", + "sha256": "0p00mmid04pfsna4ify3cy0b9lx431q1r5h772hihsg4f1rs2ppy", "rev": "74ded8f1e7f23240f5f6032d0451fb0a51733bc4" }, "recipe": { "sha256": "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140104.1607", "deps": [] }, "helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm.git", - "sha256": "da5c76e602f2f11c68ac027e5a67bed942faeebba337461a5663053fea18387f", - "rev": "b99615090efa622cba280fff0615dc7f269877fd" + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm", + "sha256": "1dsipz9qz3bsmgj49z42vfs3ggdv37jcn852hffwjyzlhalwpi8i", + "rev": "e42e3ed6543b72756e6f2f1a96cbd0d35166cb6e" }, "recipe": { "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151212.1558", + "version": "20151218.1416", "deps": [ "async", "cl-lib", @@ -1825,14 +1933,15 @@ }, "helm-flyspell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pronobis/helm-flyspell.git", - "sha256": "f60197147dff9668b91d0ed8cb78edfc42edc3a80243c2908d05fd1afc329320", + "tag": "fetchFromGitHub", + "owner": "pronobis", + "repo": "helm-flyspell", + "sha256": "1k7invgzqrcm11plyvinqwf98yxibr8i4r9yw3csfsicc8b6if59", "rev": "a9ea896fd932fec15709b88ef8bf101dff261b2d" }, "recipe": { "sha256": "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151026.1112", "deps": [ @@ -1841,28 +1950,30 @@ }, "latex-preview-pane": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jsinglet/latex-preview-pane.git", - "sha256": "35f80f98058a99e90427b39c16173d7ff913186ec7e05df668c1b6b0ba12a71b", + "tag": "fetchFromGitHub", + "owner": "jsinglet", + "repo": "latex-preview-pane", + "sha256": "1bvhrh9xfl7p474b8jcczw255d2pjmrz5b60wis0lmmxdljplrfa", "rev": "1a0539ab70eaf5dd31c2c94773dddd6f437fed41" }, "recipe": { "sha256": "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.1503", "deps": [] }, "pastelmac-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmastenbrook/pastelmac-theme-el.git", - "sha256": "fbaa77eb1c048c220b3a2d4d452704fc820a34c515f53b17a6b19dc0272544f3", + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "pastelmac-theme-el", + "sha256": "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly", "rev": "bead21741e3f46f6506e8aef4469d4240a819389" }, "recipe": { "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.2136", "deps": [ @@ -1871,28 +1982,30 @@ }, "omni-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-scratch.el.git", - "sha256": "a7f3b00a636e83a8c9b483cc565a7f18a923eb03ad04d91667659da155efd250", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-scratch.el", + "sha256": "1icdk19vwihc8mn04yxl2brql2gssn3gxd5bv7ljdd6mn5hkw500", "rev": "7e04d7f20ee383bf72dfdcfd642bf08e4b8ab973" }, "recipe": { "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1059", "deps": [] }, "company-auctex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alexeyr/company-auctex.git", - "sha256": "e54ae9c61cc4e8b3760437d5243ce11f60e1b7d537940c7f8386c21c7c7a7e56", + "tag": "fetchFromGitHub", + "owner": "alexeyr", + "repo": "company-auctex", + "sha256": "0mkyg9y1rhl6hdzhr51psnvy2q0zw4y29m9p0ivb7s643k3fjjp5", "rev": "780ba68b4154ecac4f20dbd4b1ba561ba40f248b" }, "recipe": { "sha256": "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151102.843", "deps": [ @@ -1903,28 +2016,30 @@ }, "newlisp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kosh04/newlisp-mode.git", - "sha256": "b52f7f4c61be54848ff900597142db4a1957ec9a5809259818a69bc85d6acbfe", + "tag": "fetchFromGitHub", + "owner": "kosh04", + "repo": "newlisp-mode", + "sha256": "05jwaj7wlrdpmylawv14ypwpg9qz9pqqqd1nvb94b9gbs79j86z5", "rev": "7f44e7c763bd16481e78bced5ff310b8113883e5" }, "recipe": { "sha256": "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150120.1240", "deps": [] }, "flycheck-hdevtools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-hdevtools.git", - "sha256": "3eb221580d55f199530e3fa89e7886f0279bdc1b4194bfc21816d5821b14f9d3", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-hdevtools", + "sha256": "1lzr2hdq5m8n331bz5213gf9n9zhhrw9xa1z1r9rkwam1mc23ciy", "rev": "6997f8d033811b7a169052fa23c086fd8e904edb" }, "recipe": { "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150329.523", "deps": [ @@ -1934,14 +2049,15 @@ }, "mellow-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-mellow-theme.git", - "sha256": "8d165468c7108d0b20b3ff733d52d91ed0bc338dddc232351966fe7c37e4342e", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-mellow-theme", + "sha256": "0bilwhvprzk634sk5hnxilrvrl0yv593swzznch0p38hqxl585ld", "rev": "ab72898824af6452d0cefea16e49491e42b660d1" }, "recipe": { "sha256": "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.102", "deps": [ @@ -1957,21 +2073,22 @@ }, "recipe": { "sha256": "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090723.1019", "deps": [] }, "el-sprunge": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/el-sprunge.git", - "sha256": "55859133e51dfa43eb89c7a671cd966750a710acc8fcadc61f457f7324ef4e41", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "el-sprunge", + "sha256": "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc", "rev": "37855ec60aeb4d565c49a4d711edc7341e9a22cb" }, "recipe": { "sha256": "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140106.1939", "deps": [ @@ -1982,14 +2099,15 @@ }, "4clojure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joshuarh/4clojure.el.git", - "sha256": "78769fe6a718d1643b363d3d272a2a36f5206d1b4dbcb3b1948539431e8bcbbb", + "tag": "fetchFromGitHub", + "owner": "joshuarh", + "repo": "4clojure.el", + "sha256": "1fybicg46fc5jjqv7g2d3dnj1x9n58m2fg9x6qxn9l8qlzk9yxkq", "rev": "3cdfd356c24cd3518397d29ae833f56a4d20b4ca" }, "recipe": { "sha256": "1w9zxy6jwiln28cmdgkbbdfk3pdscqlfahrqi6lbgpjvkw9z44mb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131014.1707", "deps": [ @@ -1999,14 +2117,15 @@ }, "mustard-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-mustard-theme.git", - "sha256": "ee7158f086403aeab07ac0d643cc0c1fd56263493935f7a5792d6db6d782189c", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-mustard-theme", + "sha256": "170qhbbvcv9dg6jzfd9r95in5m8z1k647mn0gaqflfj0hvq5hwgf", "rev": "33bc6e3a0e2abc5668afdb349bca7e8b5730582c" }, "recipe": { "sha256": "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.102", "deps": [ @@ -2021,21 +2140,22 @@ }, "recipe": { "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.659", "deps": [] }, "sly-company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/sly-company.git", - "sha256": "0c4511c2bfccde800c11fed5aa6c213ca73495ea891326414b3430ba58504cdf", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly-company", + "sha256": "0qpw345ch5b9dbznk916f6h9f9dnf03wfyvpgnzdf30ffvf4q01w", "rev": "21248bd852c9520ec27692f286c5f43b50892b12" }, "recipe": { "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.222", "deps": [ @@ -2046,28 +2166,30 @@ }, "ht": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/ht.el.git", - "sha256": "06df27b8f6bdc2e967224e3296cdf0672deb235e7e239a6bdabfb03cb7af8eb5", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ht.el", + "sha256": "17x5w5kzam8cgaphyasnqzm2yhc0hwm38azvmin7ra4h912vlisd", "rev": "84b5b4404515ed3a3f6a85aacf2723302de851a4" }, "recipe": { "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.1315", "deps": [] }, "quelpa": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/quelpa/quelpa.git", - "sha256": "4991a1efcc94b010bf936fa5ca05d670e7ad4588012f742ff8b972804f983bb2", + "tag": "fetchFromGitHub", + "owner": "quelpa", + "repo": "quelpa", + "sha256": "0v5fcbjf7ndmywjsq9di3cwxsh2csv5pj3mqgqb340i2yp77r9wy", "rev": "e011b4fa916a8b6057225f3e7ee6befc8928d443" }, "recipe": { "sha256": "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.305", "deps": [ @@ -2077,14 +2199,15 @@ }, "erc-yt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yhvh/erc-yt.git", - "sha256": "e9a7bf3aa2f90e9161ad2426542cc6f82c91cda99938a8b2b6db53ad26199cb6", + "tag": "fetchFromGitHub", + "owner": "yhvh", + "repo": "erc-yt", + "sha256": "1dlw34kaslyvnsrahf4rm76r2b7qqqn589i4mmhr23prl8xbz9z9", "rev": "43e7d49325b17a3217a6ffb4a9daf75c5ff4e6f8" }, "recipe": { "sha256": "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150426.749", "deps": [ @@ -2093,14 +2216,15 @@ }, "org-webpage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/org-webpage.git", - "sha256": "119c35c604db42aa7f8791fb8fed233ff70bea63c5097662817192cb54a7ee09", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "org-webpage", + "sha256": "15r6scvg3pynzj0waam9m22s3ym5kri4mwrsjkyxgz5fr929crj7", "rev": "944b46e74d0d753a30bfefbebbe533abe06d25f4" }, "recipe": { "sha256": "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.15", "deps": [ @@ -2115,42 +2239,45 @@ }, "elisp-slime-nav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/elisp-slime-nav.git", - "sha256": "fb29682ed4596c3c86dbd219f19636eaf63958646c558bef0353c4caa96b40a4", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "elisp-slime-nav", + "sha256": "184yxv2qhqc2g5v259kprihppvcwsd52idjay2c01lkmk1i3qnj5", "rev": "f6d241b11abbc4064e17e02dbd0bc6c61db256cc" }, "recipe": { "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150805.1448", "deps": [] }, "vlf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/vlfi.git", - "sha256": "28905e61d18364dad24c84cdb6e16f8b8629f1943246db810c99bd55f2b05450", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "vlfi", + "sha256": "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng", "rev": "4eaf763cadac62d7a74f7b2d2436d7793c8f7b43" }, "recipe": { "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.918", "deps": [] }, "xkcd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vibhavp/emacs-xkcd.git", - "sha256": "579d723ba238b4aafa064319d457698a5be9ed9579ae9c3c9a6e7eccce53a73d", + "tag": "fetchFromGitHub", + "owner": "vibhavp", + "repo": "emacs-xkcd", + "sha256": "0gd7ag7cqzkfk8y9rbkrjpnyjnwad5bx86a30vxamd1ql8xp57ap", "rev": "8f0009f15926f37f2ea02471425ab6dbac00e50d" }, "recipe": { "sha256": "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.2353", "deps": [ @@ -2159,14 +2286,15 @@ }, "github-notifier": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/github-notifier.el.git", - "sha256": "13cfa4c56479d1aaad3f3f12a8e559ad788020a0f428e3edc74f7c4e549f71fc", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "github-notifier.el", + "sha256": "1z3ikxa4wz2gqzny6a7ll0h80y5db7jsh4iz7ynsmlbrck2s9kqk", "rev": "d3d8ee1711972872f660a3129430bcc2c1ec573a" }, "recipe": { "sha256": "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.523", "deps": [ @@ -2175,42 +2303,45 @@ }, "easy-after-load": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pd/easy-after-load.git", - "sha256": "9a90a2db1832ad560d9ce278099636b3c6e7b12e366906cf4fdb789be0d9d8e4", + "tag": "fetchFromGitHub", + "owner": "pd", + "repo": "easy-after-load", + "sha256": "09ikwg5s42b50lfj0796pa2h32larkf5j6cy042dzh8c441vgih4", "rev": "f8e6e10725d80d3b7e8b1ca966de6190089d8f12" }, "recipe": { "sha256": "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121224.2049", "deps": [] }, "recover-buffers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tripleee/recover-buffers.git", - "sha256": "8261f36205282759cc5ce1a53360921ef6c78e025b0d00d9707479a61f49b274", + "tag": "fetchFromGitHub", + "owner": "tripleee", + "repo": "recover-buffers", + "sha256": "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q", "rev": "a1db7f084977697081da3497628e3514e032b966" }, "recipe": { "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150812.205", "deps": [] }, "evil-args": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wcsmith/evil-args.git", - "sha256": "f8ab4dd53906d144dcd7f9b4ea8bff321e5835fef68bd105b1f464eb89e207da", + "tag": "fetchFromGitHub", + "owner": "wcsmith", + "repo": "evil-args", + "sha256": "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq", "rev": "2a88b4d19953a11227cc1e91973b92149116f44c" }, "recipe": { "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140329.1629", "deps": [ @@ -2219,14 +2350,15 @@ }, "smart-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/uk-ar/smart-region.git", - "sha256": "4e49d0263fb9abefe8916d00f980f63ff2137d3628876e5f24ae58ea1b4ba540", + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "smart-region", + "sha256": "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf", "rev": "5a8017fd8e8dc3483865951c4942cab3f96f69f6" }, "recipe": { "sha256": "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150903.903", "deps": [ @@ -2238,14 +2370,15 @@ }, "color-theme-approximate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tungd/color-theme-approximate.git", - "sha256": "b8f31f58cc9ee29a016bfa2c3f608f03a5aaa423fa5cb7188c4c6afc35af1eac", + "tag": "fetchFromGitHub", + "owner": "tungd", + "repo": "color-theme-approximate", + "sha256": "1b0ymwszqsjcihcbfp7s4fjam983ixh3yb7sdc0rmqlyric1zwxq", "rev": "f54301ca39bc5d2ffb000f233f8114184a3e7d71" }, "recipe": { "sha256": "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140227.2236", "deps": [] @@ -2258,35 +2391,37 @@ }, "recipe": { "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130328.633", "deps": [] }, "real-auto-save": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chillaranand/real-auto-save.git", - "sha256": "821626e1340a05b49398b52b6f59096bbbe09f1bfb739c0a2ddae38af485f0cd", + "tag": "fetchFromGitHub", + "owner": "chillaranand", + "repo": "real-auto-save", + "sha256": "1kghhps8mqys5l59qwzv3fgy1fvb15cnyaxmk29v818a6khjc5l2", "rev": "81bf61742ea553ccdee0e22d3abb43fcf07f82cf" }, "recipe": { "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150701.1015", "deps": [] }, "ebib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/ebib.git", - "sha256": "bc7d25e75c5a714dccf98bddba4bddd44b6b67b5f001579769610b2084df47d2", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "ebib", + "sha256": "015dch0f4h9qrjgv3rapxq5afi8g074jfgjjsgvqcm90myx12p1m", "rev": "9ef4cb26f944bf6a9a0fb6054e5fc65f89270130" }, "recipe": { "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.933", "deps": [ @@ -2297,14 +2432,15 @@ }, "db-pg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-db-pg.git", - "sha256": "0a99697dea53d2bdb5890086050e9961cf6579fa7d9629e044770c3a25c72097", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-db-pg", + "sha256": "15r0qwjkl33p8kh2k5kxz9wnbkv1k470b1h0i6svvljkx9ynk68a", "rev": "7d5ab86b74b05fe003b3b434d4835f37f3f3eded" }, "recipe": { "sha256": "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130131.1302", "deps": [ @@ -2314,28 +2450,30 @@ }, "multiple-cursors": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/multiple-cursors.el.git", - "sha256": "0eea70a8598e6eea6073a53a881cfad0cb23cfa9d92f6bd922b72fa71c481226", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "multiple-cursors.el", + "sha256": "0hl9ll7pgqv74dnihyy0gz15wz0swj1cpa208484qd3g0dvin8j6", "rev": "a393384b3508e7d8d721e66d2bfb97fa7153dd4f" }, "recipe": { "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1425", "deps": [] }, "tss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-tss.git", - "sha256": "b1f5fd7e423503d67f2fdf3b21795ca97642051159551c585a20663678d8c090", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-tss", + "sha256": "1bk5v9dffs65qsay0dp336s2ly065nd0cg572zz058ikwxd44zd3", "rev": "81ac6351a2ae258fd0ebf916dae9bd5a179fefd0" }, "recipe": { "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150913.908", "deps": [ @@ -2353,21 +2491,22 @@ }, "recipe": { "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.941", "deps": [] }, "ac-js2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ScottyB/ac-js2.git", - "sha256": "f3f45de22b0f9c55f0a0d203890465ed29ac29bb4a86c9c3fa576899c718c97a", + "tag": "fetchFromGitHub", + "owner": "ScottyB", + "repo": "ac-js2", + "sha256": "0yn9333rjs2pzb1wk1japclsqagdcl28j0yjl3q5b70g5gi5vx7k", "rev": "721c482e1d4a08f4a29a74437257d573e8f69969" }, "recipe": { "sha256": "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140906.642", "deps": [ @@ -2377,14 +2516,15 @@ }, "turnip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kljohann/turnip.el.git", - "sha256": "0447850f0ff7a00029c466c2e5ecc58db4328a2b0fe3d60fb26d9b2e0426144e", + "tag": "fetchFromGitHub", + "owner": "kljohann", + "repo": "turnip.el", + "sha256": "0khl4q22x6vdn87xdqqg5f535d4dqpnfbhk6qhlh187p1w7qaiq4", "rev": "2fd32562fc6fc1cda6d91aa939cfb29f9b16e9de" }, "recipe": { "sha256": "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150309.129", "deps": [ @@ -2394,14 +2534,15 @@ }, "soft-stone-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/soft-stone-theme.git", - "sha256": "5442437ac0759ff73da86bf3c92632e7b1cd1880bfa007f9af35390d1672150c", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "soft-stone-theme", + "sha256": "030mf8b0sf9mmzwhg85zh0ccvcg768kckwvbm0yzg7vmq1x46hjl", "rev": "fb475514cfb02cf30ce358a61c48e46614344d48" }, "recipe": { "sha256": "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140614.335", "deps": [ @@ -2410,28 +2551,30 @@ }, "el2markdown": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/el2markdown.git", - "sha256": "b00e0ac52648cd1dca0568849aedcc393951cf717b3a75724d2d867f4aefb40f", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "el2markdown", + "sha256": "03xlxx57z1id9mr7afkvf77m2f9rrknrm1380p51vka84v2hl3mh", "rev": "875648f9a65ed18fe71fc72872a0db70aab5253d" }, "recipe": { "sha256": "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150516.1538", "deps": [] }, "espuds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ecukes/espuds.git", - "sha256": "4f911064d51a6c3b2e83a9dbf1dee68d3d82c861462b0bd7b0025dac9a303f2b", + "tag": "fetchFromGitHub", + "owner": "ecukes", + "repo": "espuds", + "sha256": "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg", "rev": "1405972873339e056517217136de4ad3202d744a" }, "recipe": { "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.959", "deps": [ @@ -2442,28 +2585,30 @@ }, "nav-flash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/nav-flash.git", - "sha256": "ded55c914045522ee905087d7cf55ff898f865f4b580ad256b40ef6c84d4be87", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "nav-flash", + "sha256": "07wjicbvzg7cz983hv0p2qw1qlln07djigkmbqfpwvg3fk50fdyg", "rev": "53f5bc59e3f32c1192d15637d3979732dacb2c35" }, "recipe": { "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] }, "persp-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/projectile.git", - "sha256": "34999000476e13b4b4a88bbd2f56104836b73e50245a0d82a30e4ac8d8e1d0a3", - "rev": "5773d28036c81f44468da58402a32463b278ee1f" + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "01mwciy9bacx5vkxckp0hsxx0s00qss48kkcc2rhlypdcmmawvn7", + "rev": "05058b1c73799b07003ad0978f5ba9a231783be4" }, "recipe": { "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150405.327", "deps": [ @@ -2474,42 +2619,45 @@ }, "osx-location": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/osx-location.git", - "sha256": "45887a5fb8868effa5ec922e8b6e2e6e1eae8ab8d5a20fc8070cbaa10d0de36d", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "osx-location", + "sha256": "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x", "rev": "110aee945b53ea550e4debe69bf3c077d940ec8c" }, "recipe": { "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150613.417", "deps": [] }, "objc-font-lock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/objc-font-lock.git", - "sha256": "13af9bb5cf13e6b49769de7f3a47e54a6838dd541ae78bdb1979a753aa0d0c8d", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "objc-font-lock", + "sha256": "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk", "rev": "34b457d577f97ca94b8792d025f9a909c7610612" }, "recipe": { "sha256": "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141021.1322", "deps": [] }, "unify-opening": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/unify-opening.git", - "sha256": "a0cc3b3d75245449d11d248393559309a8128b325765c26065df04c6b4a9174b", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "unify-opening", + "sha256": "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p", "rev": "2812e43029cab7183197ce5e3c9577856bfd22c5" }, "recipe": { "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.1848", "deps": [ @@ -2518,14 +2666,15 @@ }, "visual-regexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/benma/visual-regexp.el.git", - "sha256": "e96b29c145ace240436688038906026fb673330af5898210282ac2ef03d08d13", + "tag": "fetchFromGitHub", + "owner": "benma", + "repo": "visual-regexp.el", + "sha256": "04wds01yzhia508852gm18rp7dkg0838j0w8cr1l1qmc8p0jjsz9", "rev": "58566c09e593dda9c3e3a348310a9bdc42dcb3d8" }, "recipe": { "sha256": "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.719", "deps": [ @@ -2534,14 +2683,15 @@ }, "ghc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kazu-yamamoto/ghc-mod.git", - "sha256": "9dea0d94106ee293336ce640d9fa9bbdd3e07202ee6fbb7b5f0ae424414007b6", - "rev": "6de02ea4700a700c1d5950309242ed4d44e357ae" + "tag": "fetchFromGitHub", + "owner": "kazu-yamamoto", + "repo": "ghc-mod", + "sha256": "0s3d2h0fhsli2bq6q6kfaf8gng1wfff6rr1ms6smpg1sxd3k783n", + "rev": "2988749b844136148bdd35f239d3f4747813b821" }, "recipe": { "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1843", "deps": [ @@ -2550,28 +2700,30 @@ }, "orgtbl-show-header": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/orgtbl-show-header.git", - "sha256": "4a7b7c8bf5075a9c9eb0d3f1979ebda51c9c0c9af8ac831d879af1467ed04e86", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "orgtbl-show-header", + "sha256": "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x", "rev": "f0f48ccc0f96d4aa2a676ff609d9dddd71748e6f" }, "recipe": { "sha256": "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141023.337", "deps": [] }, "inf-php": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/taksatou/inf-php.git", - "sha256": "f94b056d69870bed898876cf9b42d5bdf1bf4c579309a6c59e4dc8d749d2b6fc", + "tag": "fetchFromGitHub", + "owner": "taksatou", + "repo": "inf-php", + "sha256": "1z5ns94xgj2dkv2sc2ckax6bzwdxsm19pkvni24ys2w7d5nhajzr", "rev": "4396022d6e169f0cf30cd9f68ca575d8b30c418a" }, "recipe": { "sha256": "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130414.221", "deps": [ @@ -2580,28 +2732,30 @@ }, "omniref": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dotemacs/omniref.el.git", - "sha256": "c8a61f314cb6cff452ae0857324a2da6dec342579c67f1cf34fea282a5bafbc3", + "tag": "fetchFromGitHub", + "owner": "dotemacs", + "repo": "omniref.el", + "sha256": "1hzvpajq58py6k7z2rwwax1c7pm65m534mq8mr9g9kxn9hqiz9n8", "rev": "0026e0472c7071e06cfdc24be91d3f4989ba8115" }, "recipe": { "sha256": "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.221", "deps": [] }, "flycheck-dialyzer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lbolla/emacs-flycheck-dialyzer.git", - "sha256": "b02b34f56785f9f3f85901696c181bfc9b636fbde0272128edf61e02b239ac95", + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-flycheck-dialyzer", + "sha256": "15dc76r047pnxll229z0pmpn76zw3cc6qs81b7wg7yc5czsk8axh", "rev": "3560214658cbdbd454f8b3d4f108cb51537afa36" }, "recipe": { "sha256": "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151024.37", "deps": [ @@ -2610,14 +2764,15 @@ }, "ninja-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/martine/ninja.git", - "sha256": "5968613797683b66c800fd6455d4c4cde42f1868b56952bb573157c218653c46", + "tag": "fetchFromGitHub", + "owner": "martine", + "repo": "ninja", + "sha256": "1yvgamxjqyzpwk59lm3gvcw6f9ab64cnbwwcmmyrk4yxhyva6r3q", "rev": "9a4eb587f3d3dcc6e6edd8d344a93b1c32d27dc7" }, "recipe": { "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141203.2359", "deps": [ @@ -2626,28 +2781,30 @@ }, "el-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/el-x.git", - "sha256": "be3e1fd3fdecf88972e5a39699e0cc32be17d15d63c9be3066ff7335cc13b04b", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "el-x", + "sha256": "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5", "rev": "e96541c1f32e0a3aca4ad0a0eb382bd898250163" }, "recipe": { "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140111.1601", "deps": [] }, "migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/migemo.git", - "sha256": "d99f69932cfe6c2ed5d795a6952d459c7585f8184e1af2807ae943abaaade4ab", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "migemo", + "sha256": "1az4mnmanhz9ga0g46jf33w8axcw8lnrb9lmszajwv7y5j9nk7yr", "rev": "c2240afa9afc0f003bb1d846710505e8e8e38169" }, "recipe": { "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150412.941", "deps": [ @@ -2662,21 +2819,22 @@ }, "recipe": { "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120509.605", "deps": [] }, "easy-repeat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/easy-repeat.el.git", - "sha256": "d83ec91b67193972bc80ec2c5303ac7e726132d4d4ebf47306b8671cb42d75a1", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "easy-repeat.el", + "sha256": "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq", "rev": "060f0e6801c82c40c06961dc0528a00e18947a8c" }, "recipe": { "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150516.348", "deps": [ @@ -2685,14 +2843,15 @@ }, "python3-info": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dvhansen/python3-info.git", - "sha256": "b399f1740e39065c9b2ac2eb3b4605bb3c2a6d0e024d6727fd00473285250053", + "tag": "fetchFromGitHub", + "owner": "dvhansen", + "repo": "python3-info", + "sha256": "1w29l4zyvcchjdywz2py95qq7bszhldpga2ng75g7p07pq7f2w1p", "rev": "4530e180ded2ad64774e51742eece3e5ea00c5f5" }, "recipe": { "sha256": "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.31", "deps": [] @@ -2705,7 +2864,7 @@ }, "recipe": { "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150727.1554", "deps": [ @@ -2715,16 +2874,33 @@ "hexrgb" ] }, + "weblogger": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:weblogger-el", + "sha256": "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv", + "rev": "38" + }, + "recipe": { + "sha256": "17ccj602cp0lrs30rcp45g7fqb7k1l1hr9h8z4gh7rqs0n7z1jad", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20110926.1118", + "deps": [ + "xml-rpc" + ] + }, "helm-ad": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tnoda/helm-ad.git", - "sha256": "a4d37c5ad3ab20c9ca0735b1d414e09528defb86e9a59289c9f830536c7bae43", + "tag": "fetchFromGitHub", + "owner": "tnoda", + "repo": "helm-ad", + "sha256": "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4", "rev": "8ac044705d8620ee354a9cfa8cc1b865e83c0d55" }, "recipe": { "sha256": "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.415", "deps": [ @@ -2734,14 +2910,15 @@ }, "pophint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-pophint.git", - "sha256": "cc7bc891f13ee8a2d21a65a83f36d94ed04665e1a76c4c241be5d76b9e64d41e", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-pophint", + "sha256": "0n1w1adglbavqgrv16rzhym72c3q083mh0c8yl5lj7adn4nr4gr3", "rev": "fc02a155e28ae27466bedabc756e75c936b01266" }, "recipe": { "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150930.1234", "deps": [ @@ -2758,7 +2935,7 @@ }, "recipe": { "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090621.832", "deps": [] @@ -2771,23 +2948,24 @@ }, "recipe": { "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1602", "deps": [] }, "find-file-in-project": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/find-file-in-project.git", - "sha256": "1b5c1d9e171bf90695d63bf53c00b6fa75ff93f8c2dbceae27ed7a48968dd20b", - "rev": "e44a77a0143a02b4eecc0b22aece598eaa8cc5ac" + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "find-file-in-project", + "sha256": "0bf32nhpmjvvgnr6g9xqh8pqnhr3dl24y3g40lsv4pc8ffs70ydm", + "rev": "908cc56c0fd715001da4d97b30cba5eb7af3a609" }, "recipe": { "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151209.41", + "version": "20151216.2050", "deps": [ "emacs", "swiper" @@ -2795,28 +2973,30 @@ }, "paren-face": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/paren-face.git", - "sha256": "4e25aa2a939bc133f52f9511fab07c54b1e6902206c8cf404cbb11de5059f73d", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "paren-face", + "sha256": "0ggpb58dw4dv9i0czj064a8fdcalgjqgl4cm5zsk7hcvjcmal9af", "rev": "09bb594f0c9614fb336fd8b5598215cf7c2d2c7e" }, "recipe": { "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.2106", "deps": [] }, "racket-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/greghendershott/racket-mode.git", - "sha256": "4806141fc2d889ef586f1bfd4ed4163f8b0cbbc369ea7e224cfc7a42298c5b96", + "tag": "fetchFromGitHub", + "owner": "greghendershott", + "repo": "racket-mode", + "sha256": "0yshyfgdvpys38iqi4jqxa40gvwhc79njp0gq25n036kzarwjch8", "rev": "f5f7ffea9b0be0d792b81d1ec1e2c16271a35cdd" }, "recipe": { "sha256": "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.2152", "deps": [ @@ -2827,14 +3007,15 @@ }, "mozc-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d5884/mozc-popup.git", - "sha256": "b6ce050255161afdb66a333e3e17bad872e6052daae4aa5fc5f84c6d989c77d5", + "tag": "fetchFromGitHub", + "owner": "d5884", + "repo": "mozc-popup", + "sha256": "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn", "rev": "f0684b875a7427ec08f8df13939a486e5d5cf420" }, "recipe": { "sha256": "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.1834", "deps": [ @@ -2844,14 +3025,15 @@ }, "writeroom-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/writeroom-mode.git", - "sha256": "c0894df2c685e5e6e1060d664d44941c0498385b3089dff2ff17d9558d849f9f", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "writeroom-mode", + "sha256": "0an36zra25r0l482irxbwrq90fd3rik53yqw3gccjkgdf3lpkc4x", "rev": "57aeef137b04134fe05c7e701e42b05f3edbcc30" }, "recipe": { "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.301", "deps": [ @@ -2861,14 +3043,15 @@ }, "use-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/use-package.git", - "sha256": "608676a52f8ab26b9861e2e796850b351d9a7ca711737bf26a124a61f1e76693", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "use-package", + "sha256": "14v6wzqn2jhjdbr7nwqilxy9l79m1f2rdrz2c6c6pcla5yjpd1k0", "rev": "77a77c8b03044f0279e00cadd6a6d1a7ae97b016" }, "recipe": { "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.1639", "deps": [ @@ -2885,21 +3068,22 @@ }, "recipe": { "sha256": "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141219.120", "deps": [] }, "highlight-defined": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-defined.git", - "sha256": "c2afb40b7c0bb4dea57570697bb6c265baf18f62aa51dad10e7bb1eda5ed20d0", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-defined", + "sha256": "1l10xnjyvcbv1v8xlldaca7z3fk5qav7nsbhfnjxxd0bgh5v9by2", "rev": "243478cc204ab42d29805ed610961cbb260c1dfd" }, "recipe": { "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141225.930", "deps": [ @@ -2908,14 +3092,15 @@ }, "org-present": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rlister/org-present.git", - "sha256": "d5d567cba724fe230ebc06f73a28385a1027bf35d00dd24ce0b69f7cde5335d9", + "tag": "fetchFromGitHub", + "owner": "rlister", + "repo": "org-present", + "sha256": "1n9magg7r7xnw16d43fh6nzjf42s70l3mxq6ph727zi4lz5ngmfm", "rev": "1b519cfd5abf44bed307cac576dc9fd61eb2c35f" }, "recipe": { "sha256": "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141109.1956", "deps": [ @@ -2924,56 +3109,60 @@ }, "vkill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/vkill.git", - "sha256": "6d3e151a06b53587a028e8e41bd03bbd18d8d7824831aa8c9ada0b686f216841", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "vkill", + "sha256": "0hb845pnh2yska6alca8hbbxh65x7g81pr7852h8fddm0qd1agkd", "rev": "8ffe640ed03ddcc23db1c74c76d1acbf25250ad9" }, "recipe": { "sha256": "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091203.1222", "deps": [] }, "spacemacs-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nashamri/spacemacs-theme.git", - "sha256": "76aaf6e9fb5e4330a09aaca786a3a2890993d37eaec6d03d6af9e3c26f79e56d", + "tag": "fetchFromGitHub", + "owner": "nashamri", + "repo": "spacemacs-theme", + "sha256": "0vg5g5pw5qzrd8yx1imfgv9r62c9laiqd9xckah30hsyzglzdakn", "rev": "febe56c3e56757b149eac0536c087259782d2345" }, "recipe": { "sha256": "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.848", "deps": [] }, "historyf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-historyf.git", - "sha256": "055ac1ab1e38aa40aac059b32500e2a55754bf7c639b6962a80f7f41034b84f8", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-historyf", + "sha256": "1y275fchhx0n6dv038hsr44a3bjghqdhc8j1dcpm2rvs8chgm8g0", "rev": "66590519a02816cde8f442032fb144f3c38ebc6e" }, "recipe": { "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.1959", "deps": [] }, "dired-narrow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1141", "deps": [ @@ -2983,28 +3172,30 @@ }, "skype": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-skype.git", - "sha256": "dda5f1947c82c65e9cc84ef76fc80f1f205b9763fd0915981a175a411c3bf23f", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-skype", + "sha256": "0gzj7cf42nhp3ac1a2gxcfbmn80z1z46zxsfr2f5xil2gjag39fx", "rev": "c10f96d1d105acee8a9a9804652bf6a813591da4" }, "recipe": { "sha256": "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131001.2318", "deps": [] }, "flymake-rust": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joaoxsouls/flymake-rust.git", - "sha256": "9b2945f59d584dee5f65b660262d1c808a1b5b8e47d7846a85330e04e11eabe3", + "tag": "fetchFromGitHub", + "owner": "joaoxsouls", + "repo": "flymake-rust", + "sha256": "1qxb3vhh83ikhmm89ms7irdip2l03hnjcq5ncmgywkaqkpslaacv", "rev": "72ec92c261670b7384ee2593d0f1946ea29f429a" }, "recipe": { "sha256": "080cvgl2cg08kyvmgg080zqb6k6bngga3m5lfwb2dpmi1bajywc1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141004.1752", "deps": [ @@ -3013,28 +3204,30 @@ }, "js-doc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/js-doc.git", - "sha256": "0fd507e941bf24942c98db6f39cd54b568daf0c8f5eb9d25a067071ec3f152b4", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "js-doc", + "sha256": "1d2jy71iw1v7l0jrvszmr3qdls5mak6kjvyvk0n9895z87lhgm8g", "rev": "cf9b5292b7fca655bafb87bd55662edcf842d5b6" }, "recipe": { "sha256": "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131215.719", "deps": [] }, "ess-smart-underscore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/ess-smart-underscore.el.git", - "sha256": "6507a3af49e1c0c5851cea381d5ed7f82bdca4bcb44743fd234ee30b304aaa07", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "ess-smart-underscore.el", + "sha256": "01xa98q0pqsf4gyl6ixlpjjdqazqsxg1sf7a3j2wbh7196ps61v5", "rev": "f3bbee01754888452232b337173b57c6c266de49" }, "recipe": { "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131229.2051", "deps": [ @@ -3043,14 +3236,15 @@ }, "edbi-database-url": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/edbi-database-url.git", - "sha256": "653f834e5296bb0edc43c34f8c4d7499326825f31c75847d59aeb5801815b6cf", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "edbi-database-url", + "sha256": "1l5lkdgcy1z6fkjh3zrhf0f4f26bzhpqy33ak1xacvm9fyf54s2x", "rev": "08b833584460ddfd4d0d76e5b159625dde684bcf" }, "recipe": { "sha256": "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150126.603", "deps": [ @@ -3060,14 +3254,15 @@ }, "geeknote": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/avendael/emacs-geeknote.git", - "sha256": "f871883dc71beeac06bc5fda5dbd349a9d0e23c9326e0da9739ab530527d6593", + "tag": "fetchFromGitHub", + "owner": "avendael", + "repo": "emacs-geeknote", + "sha256": "14v5gm931dcsfflhsvijr4ihx7cs6jymvnjzph3arvhvqwyqhwgq", "rev": "e0d25cddc35e9a0f5986a04df2c3d11f78dd3ad9" }, "recipe": { "sha256": "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.1015", "deps": [ @@ -3082,7 +3277,7 @@ }, "recipe": { "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1508", "deps": [ @@ -3091,56 +3286,60 @@ }, "winpoint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/winpoint.git", - "sha256": "9e17a401021a83ae1b1abbca82bf5744911e3e600b89a59597e7bd6a5bdc2be3", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "winpoint", + "sha256": "1qrbvidnmgg7jyasb28bc0z1x4a4ayzq5jmv38dsx0qs080s85wy", "rev": "e6050093c076308184566fa1d1012423d6934773" }, "recipe": { "sha256": "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131023.1213", "deps": [] }, "vala-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/vala-mode.git", - "sha256": "84f0194fe9e4394026fe489d6f86faff17ff59336ee81b64408773cd50237a83", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "vala-mode", + "sha256": "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44", "rev": "fb2871a4492d75d03d72e60474919ab89adb267b" }, "recipe": { "sha256": "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150324.1725", "deps": [] }, "pinot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-pinot-search.git", - "sha256": "107f25fae7826e4eee1cf1798f02fcd2e69fc7dee7ddb589252ab2eb4a0e83f1", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-pinot-search", + "sha256": "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh", "rev": "67fda555a155b22bb2ce44ba618b4bd6fc5f144a" }, "recipe": { "sha256": "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140211.1426", "deps": [] }, "mmm-jinja2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/beardedprojamz/mmm-jinja2.git", - "sha256": "7ba5e9133c4da4a7f63292ed4dae549ae288c1d651a0fea6bf139c8fd3158cd1", + "tag": "fetchFromGitHub", + "owner": "beardedprojamz", + "repo": "mmm-jinja2", + "sha256": "1lcc2p9qz70kpykgx82isv0qiqlsajp4vvcj6bvag92d7h9yk9bv", "rev": "0ecd7fd239fc096495d903b5f1bafac83515acef" }, "recipe": { "sha256": "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150904.1334", "deps": [ @@ -3149,28 +3348,30 @@ }, "tronesque-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aurelienbottazini/tronesque.git", - "sha256": "baffc38962b2d7872b40717693919855c8deedbca78700860671493d3b52668a", + "tag": "fetchFromGitHub", + "owner": "aurelienbottazini", + "repo": "tronesque", + "sha256": "06wm3qwxjhzwjn9nnrqm5wwj1z5gfghg9d2qbg8w3zyqzva5dmvm", "rev": "42093c08a50c860601c364c8a746c803458c10ba" }, "recipe": { "sha256": "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150125.441", "deps": [] }, "sensitive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/timvisher/sensitive.el.git", - "sha256": "c3867e6114a4d9ad757aa94929f64869e39a6ab4bdd6255280de88591873923c", + "tag": "fetchFromGitHub", + "owner": "timvisher", + "repo": "sensitive.el", + "sha256": "0g4jfcc5k26yh192bmmxnim9mqv993v2jjd9g9ssvnd42ihpx1n3", "rev": "7f2c77811e983234e1a93055d78cc4480ae807c3" }, "recipe": { "sha256": "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131015.835", "deps": [ @@ -3180,28 +3381,30 @@ }, "dark-souls": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomjakubowski/dark-souls.el.git", - "sha256": "99285e21815815686ad20b23305bd24e427de34a59cf33573b20d82481141ef0", + "tag": "fetchFromGitHub", + "owner": "tomjakubowski", + "repo": "dark-souls.el", + "sha256": "1w0y2j0j9n107dbk7ksr9bipshjfs9dk08qbs9m6h5aqh4hmwa4r", "rev": "94122b1215423e58dcf18584a2bd022029d54d4b" }, "recipe": { "sha256": "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140314.628", "deps": [] }, "narrowed-page-navigation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/narrowed-page-navigation.git", - "sha256": "2ad758a65a6aefe32afd4d81f085f34819321ab851978986cb513e5bb64ab3d3", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "narrowed-page-navigation", + "sha256": "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax", "rev": "b215adbac4873f56fbab65772062f0f5be8058a1" }, "recipe": { "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.2319", "deps": [ @@ -3211,28 +3414,30 @@ }, "thingopt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/thingopt-el.git", - "sha256": "26f3866b02c312fabdb089b34b73ce09af7cba61ee5a4c6934a35abcc7cabf46", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "thingopt-el", + "sha256": "0imzrb3vqnm36illqnpfc6x7rbq9rrrlpcw9n2yzl4n309mqdwr6", "rev": "6a50f23faa764c5f6200c0253c606b0b4e5226f8" }, "recipe": { "sha256": "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.723", "deps": [] }, "broadcast": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/killdash9/broadcast.el.git", - "sha256": "b23698de17ce14481eb0ac9bac4aeb28cbfcf680ceb8378b19c147d67a4ecb70", + "tag": "fetchFromGitHub", + "owner": "killdash9", + "repo": "broadcast.el", + "sha256": "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj", "rev": "f6f9cd2e0e3f8c31d6b8e7446c27eb0e50b25f16" }, "recipe": { "sha256": "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.2012", "deps": [ @@ -3241,42 +3446,45 @@ }, "lxc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-lxc.git", - "sha256": "38e1c2e21a873af609acb74630a203c9f1465593190bb8e4bfde7b4223980f24", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-lxc", + "sha256": "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q", "rev": "88bed56c954d1edd9ff5ce0ced2c02dcf9f71835" }, "recipe": { "sha256": "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140410.1522", "deps": [] }, "conkeror-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/conkeror-minor-mode.git", - "sha256": "1daa70ef6be34ddadcd1f2d1d952940691b20875dc50a126949c02bb42c7e36b", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "conkeror-minor-mode", + "sha256": "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx", "rev": "476e81c27b056e21c192391fe674a2bf875466b0" }, "recipe": { "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150114.1004", "deps": [] }, "pycarddavel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/pycarddavel.git", - "sha256": "5e0a865e6dda8a314685cc2cdc69a37e4ddc57a144492888bf05ef8ca06a9e91", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "pycarddavel", + "sha256": "09glwrb9q65qdm4yd0mbi5hwdy2434zm8699ywhs6hqpjacadlmi", "rev": "a6d81ee4eb8309cd82f6082aeca68c5a015702a3" }, "recipe": { "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150831.716", "deps": [ @@ -3286,28 +3494,30 @@ }, "org-jira": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/baohaojun/org-jira.git", - "sha256": "b7d3b1278fc796b8d2b2611f8a5d807bc9db481d52ad3d87e492c0ef2746ae2c", + "tag": "fetchFromGitHub", + "owner": "baohaojun", + "repo": "org-jira", + "sha256": "0b5f8qkyzh4jwj3kvbaj3m4dpjbvh1fql7v1nb9bi5n7iwkv3lxp", "rev": "eb4f3012d64bcab0c28491a26eac085ccae5bf78" }, "recipe": { "sha256": "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150911.758", "deps": [] }, "flycheck-mercury": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-mercury.git", - "sha256": "7fd4ceb23507d70aba19e110d62afb2aae60dada358928033dd50a149e15c7f0", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-mercury", + "sha256": "0isqa6ybdd4166h3rdcg0b8pcxn00v8dav58xwfcj92nhzvs0qca", "rev": "fa9e433a0a912f0fae9e4dec9ea616ef99fcf861" }, "recipe": { "sha256": "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.134", "deps": [ @@ -3318,14 +3528,15 @@ }, "chatwork": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ataka/chatwork.git", - "sha256": "b4f0b17b28bcb45df20342edcda008b7306579696170b140e6ef97e0de3b7c8b", + "tag": "fetchFromGitHub", + "owner": "ataka", + "repo": "chatwork", + "sha256": "1r2s3fszblk5wa6v3hnbzsri550gi5qsmp2w1spvmf1726n900cb", "rev": "7a1def04735423d47e058a8137e859391a6aaf7e" }, "recipe": { "sha256": "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.2148", "deps": [] @@ -3338,7 +3549,7 @@ }, "recipe": { "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.1047", "deps": [] @@ -3351,21 +3562,22 @@ }, "recipe": { "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] }, "orgtbl-join": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tbanel/orgtbljoin.git", - "sha256": "7a4ccb997f298a005e626e94181fadfd35d4706d5d85a8e6c0a56343c49df5fc", + "tag": "fetchFromGitHub", + "owner": "tbanel", + "repo": "orgtbljoin", + "sha256": "06nc82wiha11i79izqil53dkd95fl55nb5m739gyyzvx3sksb0dg", "rev": "ccf5e0d96e053dc289da39a048715fcf36835ff2" }, "recipe": { "sha256": "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150121.1646", "deps": [ @@ -3374,14 +3586,15 @@ }, "sclang-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ptrv/sclang-snippets.git", - "sha256": "f0c82d7bd2fda25e1651f5b7cf2b5dd406b5436f9c9f1c4d75155c235ba56b38", + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "sclang-snippets", + "sha256": "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857", "rev": "c840a416b96f83bdd70491e3d1fbe2f1ae8b3f58" }, "recipe": { "sha256": "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130513.251", "deps": [ @@ -3396,35 +3609,37 @@ }, "recipe": { "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120608.1335", "deps": [] }, "disaster": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jart/disaster.git", - "sha256": "8e8b4df8e4588398d775c33f14e6450c4c7c4aa68483bfa8b40708a11f0e1fb8", + "tag": "fetchFromGitHub", + "owner": "jart", + "repo": "disaster", + "sha256": "1srlz63pncxndh1kmb6dl5sxaanspxa444wg998dld3dkdflwavq", "rev": "8d8fc67af5b3d876b0056562ece0478e6e2367f0" }, "recipe": { "sha256": "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130509.1255", "deps": [] }, "emoji-cheat-sheet-plus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/emacs-emoji-cheat-sheet-plus.git", - "sha256": "b37b411b274dae0044b547b6262c69d59c023de5c2a8133d4adbdedd415567e6", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "emacs-emoji-cheat-sheet-plus", + "sha256": "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk", "rev": "96a003127d646a2683d81ca906a17eace0a6413e" }, "recipe": { "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150617.831", "deps": [ @@ -3434,14 +3649,15 @@ }, "helm-proc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/markus1189/helm-proc.git", - "sha256": "469fb2f46f3d509228989689b260f4a0446d6be330e6d62f351884b904bbc168", + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "helm-proc", + "sha256": "076yhcf447fas14k8gg67rc743x049xf66627sd9lgjv7107r8vr", "rev": "76fee002caa1c83809f4d3f7b30fa672dcb36937" }, "recipe": { "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140504.357", "deps": [ @@ -3450,28 +3666,30 @@ }, "minimap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dustinlacewell/emacs-minimap.git", - "sha256": "f3b5cb2954cd488010af775ca96cf5263c9ff841405d81b31c429d46cd5a2569", + "tag": "fetchFromGitHub", + "owner": "dustinlacewell", + "repo": "emacs-minimap", + "sha256": "0s95bb6ld7a23jrq2pa087w9yg16ymnajp3pmw880j6dahlwpdgk", "rev": "be119f9b9c321c0045b01d940e495f16f2ea4f5c" }, "recipe": { "sha256": "1gnvakp71l25r48bx1n2j33dq8q1lc7ff1j4fcnnvblhh3rsra96", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.1815", "deps": [] }, "evil-lisp-state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-lisp-state.git", - "sha256": "e4a91b18f74749aa993f8ee37339a413cd62baee01e7f61b46facaf5d85916c7", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-lisp-state", + "sha256": "0lvjqs40caxj3781cs41qavk10vlz2mjw0r6fmxa2z3c087cxnxw", "rev": "f4da21900563f4ac1abf79f3fe73eaf1edcd633d" }, "recipe": { "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.924", "deps": [ @@ -3482,14 +3700,15 @@ }, "gitolite-clone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/IvanMalison/gitolite-clone.git", - "sha256": "c1eb3c46f41d04570f463ca3e5c3004020472504446b202d1262c8d72470b731", + "tag": "fetchFromGitHub", + "owner": "IvanMalison", + "repo": "gitolite-clone", + "sha256": "1h66wywhl5ipryx0s0w1vxp3ydg57zpizjz61wvf6qd8zn07nhng", "rev": "36e8dbc2906b7bfce382db64211d982c9719ab59" }, "recipe": { "sha256": "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150819.839", "deps": [ @@ -3501,14 +3720,15 @@ }, "helm-spotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/helm-spotify.git", - "sha256": "13df5bdffb8533943bc5d29974c50765e8963cdab19d01e7d3e4a812a5015698", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "helm-spotify", + "sha256": "133dcqk42nq5gh5qlcbcmx3lczisfgymcnypnld318jvjgd2ma8a", "rev": "a1a8275a4769221f7df9a67ed9a028fecbdc29ca" }, "recipe": { "sha256": "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131014.1621", "deps": [ @@ -3518,56 +3738,60 @@ }, "linphone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zabbal/emacs-linphone.git", - "sha256": "9620b6bb636a12db7ad590c0f1a2d8ddef4ea02d2fd5ca99dd10a49f8630db07", + "tag": "fetchFromGitHub", + "owner": "zabbal", + "repo": "emacs-linphone", + "sha256": "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n", "rev": "99af3db941b7f4e5272bb48bff96c1ce4ceac302" }, "recipe": { "sha256": "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130524.609", "deps": [] }, "popwin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/popwin-el.git", - "sha256": "fae0e823054c93634d9c9b066ee34b2527057ba6e329670b4b8c68f8725bd718", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "popwin-el", + "sha256": "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp", "rev": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304" }, "recipe": { "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.800", "deps": [] }, "py-isort": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/py-isort.el.git", - "sha256": "9811dcb72ebdcc395c509b4cf461e43c428bda95839c844198983979c4bd9d3e", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-isort.el", + "sha256": "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr", "rev": "cfbb576784fe4501909c15299607ce2a2d0bf164" }, "recipe": { "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150422.1039", "deps": [] }, "theme-looper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myTerminal/theme-looper.git", - "sha256": "b266e41896ab8836e6ea93184178b90fbc613aab9ae7bd6755bd7896bfaaa4cd", + "tag": "fetchFromGitHub", + "owner": "myTerminal", + "repo": "theme-looper", + "sha256": "1kd4mazrcy5xamkvvrwsmcx63g0gp5w4264kxbk3d25bjqcf8rmj", "rev": "41c15ae98f9406b7932974318a2eada3668a88e7" }, "recipe": { "sha256": "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150723.1304", "deps": [ @@ -3576,14 +3800,15 @@ }, "org-octopress": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshinari-nomura/org-octopress.git", - "sha256": "991bbb3008f40605c38fdf613b626369b480d4b0806a4fd425d78fbb7fd8528c", + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "org-octopress", + "sha256": "132jv1zvp3yp4pa4ysl0n3a81d39cdi3nqfziz1ha1pl10qbn6wr", "rev": "e04d55c3f4bb88e5661ee136cb3a55f998dca931" }, "recipe": { "sha256": "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150826.616", "deps": [ @@ -3594,28 +3819,30 @@ }, "django-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myfreeweb/django-mode.git", - "sha256": "09eae94d0931430a983e187f66c52a3d2e27ba27da36d685532af0ae00349956", + "tag": "fetchFromGitHub", + "owner": "myfreeweb", + "repo": "django-mode", + "sha256": "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va", "rev": "3d82a62a7faeb2c124ac4c109e075f581c175508" }, "recipe": { "sha256": "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150207.717", "deps": [] }, "mobdebug-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/deftsp/mobdebug-mode.git", - "sha256": "224959c8146ef3a4edbabfd2887039fdc1ae99f4cd8799871c76bf7b02d19cd2", + "tag": "fetchFromGitHub", + "owner": "deftsp", + "repo": "mobdebug-mode", + "sha256": "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz", "rev": "e1d483bc4e341c762bc5c0a8c52306a8d01ea0da" }, "recipe": { "sha256": "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140109.2146", "deps": [ @@ -3632,23 +3859,24 @@ }, "recipe": { "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150217.913", "deps": [] }, "gh": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/gh.el.git", - "sha256": "c5bcbab980cd28e0c2b95ccb6602f91f988c52007abeaf29d9a656514c792d1f", - "rev": "644c0d24af430fdbc9fc90e028fca3a054333025" + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "gh.el", + "sha256": "0fkq3yl9jpakfnahymjv28fcal38c210garnq055rgmyhyhhpdwd", + "rev": "3ceef078d9418cf19e1fe6be15cf34794a14880a" }, "recipe": { "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150906.1048", + "version": "20151216.946", "deps": [ "emacs", "logito", @@ -3657,14 +3885,15 @@ }, "cider-profile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thunknyc/nrepl-profile.git", - "sha256": "bcd1427312dc30cfc69c01ab13a6799525f1a38898f144a19e6b1bc040a42bfc", + "tag": "fetchFromGitHub", + "owner": "thunknyc", + "repo": "nrepl-profile", + "sha256": "0lgq4p7rs4prqfqd83v1l36xxacrd65jsfzbp7q62b2pjqikpgk0", "rev": "9aa7e404f53f5136ac8d15301ce8ca2924785cb3" }, "recipe": { "sha256": "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141120.825", "deps": [ @@ -3673,28 +3902,30 @@ }, "simp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/re5et/simp.git", - "sha256": "4e2dfe90d639614de77397b63137f9e8938b3f5838cdc8af81ad774b96ff0ad5", + "tag": "fetchFromGitHub", + "owner": "re5et", + "repo": "simp", + "sha256": "1m8azyb4nxxdh6pwik9qb0zqp4z8z4vk3dlpfgklsq9rss8gwbaf", "rev": "334b20287b3160f77e25c8e0ee2a73dd41fbe0ab" }, "recipe": { "sha256": "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150427.1132", "deps": [] }, "org-grep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/org-grep.git", - "sha256": "2c0186a6fd2f7b33d6b4ab2f1d08a75365b48165b5e113cee7b68641f4c75c82", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "org-grep", + "sha256": "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c", "rev": "5bdd04c0f53b8a3d656f36ea17bba3df7f0cb684" }, "recipe": { "sha256": "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.629", "deps": [ @@ -3703,30 +3934,32 @@ }, "minimal-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ikame/minimal-theme.git", - "sha256": "bf52c0531516d1956fa41d371286e7ab0f0aea275e3f92cb87fd2fcba7f8c1c7", + "tag": "fetchFromGitHub", + "owner": "ikame", + "repo": "minimal-theme", + "sha256": "1iy1z2kwnbzxhz5r4gsy4zm0l3xbwy314dqxliprbl8n2m9w0lmz", "rev": "2cc688c1705eeb77fe1deeea35bfce378081f238" }, "recipe": { "sha256": "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140409.1801", "deps": [] }, "lispy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/lispy.git", - "sha256": "3f0acaad7dded52e12626afede7c7671f79b8a556a598de3e127b3773ae97055", - "rev": "ad1a6e075da26fa20fdd6840bb0d3d41889c42b2" + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "lispy", + "sha256": "134694ngr01nb8qihyclwc2cd93ipkwjbkmwdflsbi99gv9bkyxj", + "rev": "864a4efcc686601855823f0af750fa25f4dc2e8a" }, "recipe": { "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.941", + "version": "20151218.555", "deps": [ "ace-window", "emacs", @@ -3736,14 +3969,15 @@ }, "bpe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/bpe.git", - "sha256": "e80c99d998ece862eb5b143dbe143d4b29eca0f15839bc5ebe94baf0ff08c6c8", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "bpe", + "sha256": "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0", "rev": "7b5b25f83506e6c9f4075d3803fa32404943a189" }, "recipe": { "sha256": "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141228.1605", "deps": [ @@ -3752,28 +3986,30 @@ }, "sphinx-frontend": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kostafey/sphinx-frontend.git", - "sha256": "3c977e2a18ff1af362296077380e6695a6e9ee2fe548fccffbe7dd7bce21d7d5", + "tag": "fetchFromGitHub", + "owner": "kostafey", + "repo": "sphinx-frontend", + "sha256": "1mfp4777ppg7zg7zqj755zpfk9lmcq73hxv055ig66pz30m7x5rw", "rev": "a46e81ce65fd24c03acab9311b162cad21343744" }, "recipe": { "sha256": "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.412", "deps": [] }, "request-deferred": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-request.git", - "sha256": "7ba9a68d6b0a117510a409f8fba2281dc33d6beb5336d92eff0cb462adf31dcc", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-request", + "sha256": "0dja4g43zfjbxqvz2cgivgq5sfm6fz1563qgrp4yxknl7bdggb92", "rev": "adf7de452f9914406bfb693541f1d280093c4efd" }, "recipe": { "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130526.1215", "deps": [ @@ -3783,14 +4019,15 @@ }, "railscasts-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mikenichols/railscasts-theme.git", - "sha256": "b4a367d543fa131c277f1e80a9766e2247bda494149e55ce684cd1ca14cdaeb9", + "tag": "fetchFromGitHub", + "owner": "mikenichols", + "repo": "railscasts-theme", + "sha256": "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205", "rev": "1340c3f6c2717761cab95617cf8dcbd962b1095b" }, "recipe": { "sha256": "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150219.925", "deps": [] @@ -3803,21 +4040,22 @@ }, "recipe": { "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1846", "deps": [] }, "on-parens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/willghatch/emacs-on-parens.git", - "sha256": "de18990058fe6e7bb53f3cf6171057dc08aefaa26a1df930e36a0597775b2698", + "tag": "fetchFromGitHub", + "owner": "willghatch", + "repo": "emacs-on-parens", + "sha256": "1616bdvrf1bawcqgj7balbxaw26waw81gxiw7yspnvpyb009j66y", "rev": "16a145bf73550d5000ffbc2725c541a8458d0d3c" }, "recipe": { "sha256": "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.1706", "deps": [ @@ -3829,14 +4067,15 @@ }, "ace-flyspell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/ace-flyspell.git", - "sha256": "f2e7dbc47fad1f9d6c98c5f37233fce5b243c9aeb9405eba92c02af7570352d7", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-flyspell", + "sha256": "1msj0dbzfan0jax5wh5rmv4l7cp5zhrp5wy5k1n9s7xdgz2dprzj", "rev": "76c255d91c86b57a07cc7660450e37107d73505f" }, "recipe": { "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150523.1315", "deps": [ @@ -3845,14 +4084,15 @@ }, "list-unicode-display": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/list-unicode-display.git", - "sha256": "9cabc1843adc47260f747119a772c0747b1542509ac3ee86ad04228d5623d616", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "list-unicode-display", + "sha256": "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww", "rev": "59770cf3572bd36c3e9ba044846dc420c0dca09b" }, "recipe": { "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150219.301", "deps": [ @@ -3861,14 +4101,15 @@ }, "import-popwin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-import-popwin.git", - "sha256": "3c80d5bde60376a0288f8114b70cde44052255e85112bf5441ef88e5386f9a79", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-import-popwin", + "sha256": "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w", "rev": "34c3b34ffcadafea71600acb8f4e5ba385e6da19" }, "recipe": { "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150716.433", "deps": [ @@ -3878,14 +4119,15 @@ }, "company-tern": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/company-tern.git", - "sha256": "a42f037a7b9c85d4b3078eb7d861b5ff65742c354ab2e2f3e99e49877a414273", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-tern", + "sha256": "1mybg3izz93kf5a6xhalz9rfbjmazgqrhpw9mjdcqh4zd6avw00c", "rev": "bd358af7c1492391ea39d35672ac12f8587ade21" }, "recipe": { "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150525.416", "deps": [ @@ -3899,14 +4141,15 @@ }, "lit-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HectorAE/lit-mode.git", - "sha256": "8d8763461bf259d7b73e787c061d0208b2a49ded5f5fe6db0642b6f26c9c2057", + "tag": "fetchFromGitHub", + "owner": "HectorAE", + "repo": "lit-mode", + "sha256": "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd", "rev": "c61c403afc8333a5649c5421ab1a6341dc1c7d92" }, "recipe": { "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141123.1136", "deps": [] @@ -3919,35 +4162,37 @@ }, "recipe": { "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1905", "deps": [] }, "miniedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/miniedit.git", - "sha256": "7881377b008565aab55a6b080b7256f8e7163e6e511c024ab61278fa4cfaa0a0", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "miniedit", + "sha256": "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq", "rev": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3" }, "recipe": { "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100419.1245", "deps": [] }, "magit-gh-pulls": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/magit-gh-pulls.git", - "sha256": "6575f8dc757543ca5b7a1afa3806e0c1f5e81ecdb14163ffd019556a507ea40e", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "magit-gh-pulls", + "sha256": "03m4gr86lm8rs3zn6hdirlgfixf1w033iyhsg9dwlhvmfpfghxb5", "rev": "728819217c697b4eed996eb14261a8c7c3388df7" }, "recipe": { "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.1243", "deps": [ @@ -3960,14 +4205,15 @@ }, "pcre2el": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joddie/pcre2el.git", - "sha256": "98508dd642149a5a2a6853a204bee1648556f671fae3bcd475b3ffc5f177c364", + "tag": "fetchFromGitHub", + "owner": "joddie", + "repo": "pcre2el", + "sha256": "0ymbximchjfllrglkwv4lwb2sqprvva77vfbjb6n6kzni0ix70s3", "rev": "57ee828d07953329fd85ff85d6a4f27a0ce512a1" }, "recipe": { "sha256": "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.434", "deps": [ @@ -3983,21 +4229,22 @@ }, "recipe": { "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20051013.1256", "deps": [] }, "znc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sshirokov/ZNC.el.git", - "sha256": "5d577dc03c3c4de11cf5ee24936b18855446fcee8f8daac348291a3c172603d5", + "tag": "fetchFromGitHub", + "owner": "sshirokov", + "repo": "ZNC.el", + "sha256": "1xsxmvbh3xm3zh9yc6q28h48nar6pwyd51xw04b1x7amwkp8qdnp", "rev": "94c8e4cdcfb51b75d5f95cb51ce21c6274325e19" }, "recipe": { "sha256": "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140722.1621", "deps": [ @@ -4013,21 +4260,22 @@ }, "recipe": { "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1911", "deps": [] }, "dired-open": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150819.1148", "deps": [ @@ -4037,28 +4285,30 @@ }, "firestarter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/firestarter.git", - "sha256": "a5440aa9844cb4da97f0cae46f74f405c24e1ddee76214afb47bead50bad1969", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "firestarter", + "sha256": "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55", "rev": "4b7428477980e12578ebbbb121115696b352d6b2" }, "recipe": { "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.815", "deps": [] }, "adoc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sensorflo/adoc-mode.git", - "sha256": "dc3d45e913c6a541f6c5424ef9728a295bcf9c7fd186a9c4b0d926415dd967fb", + "tag": "fetchFromGitHub", + "owner": "sensorflo", + "repo": "adoc-mode", + "sha256": "01fn73vyhdcy84s60r2jjy9a0xm3zwagpzi6b4qlankbvswypask", "rev": "168ffa3f8efc3a635cc8f9422b7117a3a99af804" }, "recipe": { "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1114", "deps": [ @@ -4067,14 +4317,15 @@ }, "racer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/racer-rust/emacs-racer.git", - "sha256": "224e9d4be82197d5947a64962d80d14850f7d5b0775aee8b225c00f3d1b231f9", + "tag": "fetchFromGitHub", + "owner": "racer-rust", + "repo": "emacs-racer", + "sha256": "10nj92fm9lmamqyri84lsdv71wbrb2nfi0gfwnq9mg54pyv0r2si", "rev": "637e01ba74c7ffda3c37d3bff13d870a1899fecd" }, "recipe": { "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.1916", "deps": [ @@ -4086,14 +4337,15 @@ }, "hamlet-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lightquake/hamlet-mode.git", - "sha256": "4673ebc8927be06d3d328a4fb44844d76fdf336548acb79c9f3a6da1c3ba59da", + "tag": "fetchFromGitHub", + "owner": "lightquake", + "repo": "hamlet-mode", + "sha256": "1njrpb1s2v9skyfbgb28clrxyvyp8i4b8kwa68ynvq3vjb4fnws6", "rev": "7362b955e556a3d007fa06945a27e5b99349527d" }, "recipe": { "sha256": "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131208.124", "deps": [ @@ -4104,14 +4356,15 @@ }, "simplezen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/simplezen.el.git", - "sha256": "7eeb928c66c04e05be9b03d3709be8013c01d530c7b8f0319c3e2f525970e71d", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "simplezen.el", + "sha256": "0108q2b5h73rjxg9k2kmc8z6la9kgqdnz9z1x7rn61v3vbxlzqvn", "rev": "119fdf2c6890a0c56045ae72cf4fce0071a81481" }, "recipe": { "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130421.500", "deps": [ @@ -4121,42 +4374,45 @@ }, "geiser": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jaor/geiser.git", - "sha256": "64c48eb1c4af3b93e2c134691f7d7f3eadec174f90e02a785c6d5fda9016cf89", + "tag": "fetchFromGitHub", + "owner": "jaor", + "repo": "geiser", + "sha256": "0b5rs1w0gcci0b8047n0s2m02khjhs9qsp0yn0jwrg4i46jn0vll", "rev": "d9f6fa2e7458905aa601805352d7a7d9e1037570" }, "recipe": { "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.2122", "deps": [] }, "tup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/tup-mode.git", - "sha256": "f5db34da14c97f296961f00839fe7369241d1701f2fba803b97bf0c5f74f2b78", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "tup-mode", + "sha256": "0y1b9zvwbw3vp41siyzj04bis939fgz3j27hc5ljjzy92kd39nzm", "rev": "bcc100c6485f1c81fdcd1215dfc6c41a81c215c8" }, "recipe": { "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140410.1114", "deps": [] }, "voca-builder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yitang/voca-builder.git", - "sha256": "e56b26d7fd4a35befe4e1e6ff021e07d46deef9d36646d5e6ee9c535bc87336c", + "tag": "fetchFromGitHub", + "owner": "yitang", + "repo": "voca-builder", + "sha256": "183pvfp5nnqpgdmfxm84qrnid0lijgk79l5lhwzmnznzkrb7bgxw", "rev": "cd74c13e005e33ab125d43233b1267a8819b0abb" }, "recipe": { "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150625.1333", "deps": [] @@ -4169,21 +4425,22 @@ }, "recipe": { "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150723.833", "deps": [] }, "pager-default-keybindings": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/pager-default-keybindings.git", - "sha256": "15af81dd529eabfafab29eb20ef6185c8fd828a02ef05688d4c8f2b491c6ba86", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "pager-default-keybindings", + "sha256": "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm", "rev": "dbbd49c2ac5906d1dabf9e9c832bfebc1ab405b3" }, "recipe": { "sha256": "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130719.1557", "deps": [ @@ -4192,14 +4449,15 @@ }, "zotelo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vitoshka/zotelo.git", - "sha256": "3bd21c9241e540e4e28dbc38c75e60bd897e4573d8b8198f2c78fa14912ed999", + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "zotelo", + "sha256": "16fr5s8i9ykq5j7ikf6qfd2px2dxc1gcff5wipif8h758691rliv", "rev": "91c8309da1f293341ba86f29fa0a28dee5cabd93" }, "recipe": { "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.541", "deps": [ @@ -4208,14 +4466,15 @@ }, "material-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cpaulik/emacs-material-theme.git", - "sha256": "94d38adf5d1cfd3d45a33231ab4405f2da7b01f5220c7b5924ddf886e59af8ee", + "tag": "fetchFromGitHub", + "owner": "cpaulik", + "repo": "emacs-material-theme", + "sha256": "1vpqkbjqdy6x4icpn312yl0ppnpj0m2anc9jld2kvz8wbpgqmlwl", "rev": "68a2e4d9f09dc3a45c765edb271c3460af885de0" }, "recipe": { "sha256": "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.225", "deps": [ @@ -4224,14 +4483,15 @@ }, "helm-dash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/areina/helm-dash.git", - "sha256": "1173196e72b346f6c8ccad84aaf2ae9afa7641e4d2d009124d6aee642e81e1b3", + "tag": "fetchFromGitHub", + "owner": "areina", + "repo": "helm-dash", + "sha256": "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai", "rev": "a0f5d6539da873cd0c51d8ef714930c970a66aa0" }, "recipe": { "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1347", "deps": [ @@ -4241,28 +4501,30 @@ }, "vcomp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/vcomp.git", - "sha256": "347f00aae82976a97c101aab7610f11656208a681f368b4a1c5fb51b9811ff3b", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "vcomp", + "sha256": "0fzz26c1pdaz3i58ndhzd2520mhny487daqs21yajxi9x2m00zrl", "rev": "092ef48a78e950c0576269d889be6caf9f6e61c5" }, "recipe": { "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140906.1708", "deps": [] }, "togetherly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/togetherly.git", - "sha256": "261d05a1f1c81acf56bb4112b4b512c117337d513cf239bf3640885a0d7254b9", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "togetherly", + "sha256": "1falf86mm2206szkkwiwa5yk65y12asv84j1pdbcy6n8y6hha796", "rev": "9d655661984f7d62e9d6e0e9d47ae7ca8c4f43c7" }, "recipe": { "sha256": "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150820.338", "deps": [ @@ -4271,28 +4533,30 @@ }, "jsx-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jsx/jsx-mode.el.git", - "sha256": "085d1c6e2efad81b20653a05b4de34dda7c4a8610b64aee0c49fbaa012c0d190", + "tag": "fetchFromGitHub", + "owner": "jsx", + "repo": "jsx-mode.el", + "sha256": "1g648r0wrd8m5ggl5jrplmj7jmr68bh2ykyii5wv30zfba97r1sh", "rev": "47213429c09259126cddb5742482cfc444c70d50" }, "recipe": { "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130908.1224", "deps": [] }, "literate-starter-kit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/emacs24-starter-kit.git", - "sha256": "6a103abaaf0f541271bea73b451bf8d584b0567a8ed9e32c14f666d0b3893996", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "emacs24-starter-kit", + "sha256": "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b", "rev": "6dce1d01781966c14558aa553cfc85008c06e115" }, "recipe": { "sha256": "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150730.1354", "deps": [ @@ -4301,14 +4565,15 @@ }, "searchq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/boyw165/searchq.git", - "sha256": "047a971070c79396759499fa5f1a87d0bf5961b6b219ec6c237e2c59fb46407f", + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "searchq", + "sha256": "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4", "rev": "dd510d55ad66a82c6ef022cfe7c4a73ad5365f82" }, "recipe": { "sha256": "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150829.711", "deps": [ @@ -4317,14 +4582,15 @@ }, "x-dict": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/x-dict.git", - "sha256": "984ed13093537bff67944c2059504a24b65593d19d7c03659b6d5332e17aeb44", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "x-dict", + "sha256": "0i7bgbhk4lvdkdjh6z4xs69mbdi49985j82cjikzyyskjcqd2klq", "rev": "920b2430bff9fb8c4bb7944aa358622545c00cee" }, "recipe": { "sha256": "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091203.1223", "deps": [] @@ -4337,35 +4603,37 @@ }, "recipe": { "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1902", "deps": [] }, "python-info": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/python-info.git", - "sha256": "57c2ff2640ae9a1068e124c86269ef145e374d37276da1ff4e59aa76ca215511", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "python-info", + "sha256": "079xvdaw06wvjnma6572j3p8c7h206agpi9c1as3iw8r1qf5pv7z", "rev": "39996472d78420986e62ae9d16bf62a4a26aab60" }, "recipe": { "sha256": "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141106.1551", "deps": [] }, "mo-git-blame": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mbunkus/mo-git-blame.git", - "sha256": "d86c884319ad4216ff12ba062036f1c64cd644012787d5d7606c686bc137bbf9", + "tag": "fetchFromGitHub", + "owner": "mbunkus", + "repo": "mo-git-blame", + "sha256": "1ydv6z0nns3cc3bxb1r7052dck66y4v201ms2bzichmd351qhv6q", "rev": "a0b9ca186d96ef02a5c0ab5d1c29b7a71e78af68" }, "recipe": { "sha256": "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.215", "deps": [] @@ -4378,21 +4646,22 @@ }, "recipe": { "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.916", "deps": [] }, "gradle-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jacobono/emacs-gradle-mode.git", - "sha256": "75c6e7dc52730a4fbeccf1095208654e7c8b34597f769b846649d5f7253667fa", + "tag": "fetchFromGitHub", + "owner": "jacobono", + "repo": "emacs-gradle-mode", + "sha256": "0xs2278gamzg0710bm1fkhjh1p75m2l1jcl98ldhyjhvaf9d0ysc", "rev": "e4d665d5784ecda7ddfba015f07c69be3cfc45f2" }, "recipe": { "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150313.1405", "deps": [ @@ -4401,16 +4670,17 @@ }, "code-library": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lujun9972/code-library.git", - "sha256": "78fd611bea8387afe0572344845a34574aac9032a0fe0517381356590feaed2a", - "rev": "af0c971c38bf990415acb2ae8b0b69ecf3faa9fd" + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "code-library", + "sha256": "0mcf0xyh4p6pk2hf1f554vy4amd0qcimspgnncff2a0qc2bsg5sy", + "rev": "6004c12b199f0a78bc6c11adaa5091a90bc6926b" }, "recipe": { "sha256": "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151207.819", + "version": "20151216.1011", "deps": [ "gist" ] @@ -4423,21 +4693,22 @@ }, "recipe": { "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.551", "deps": [] }, "cycle-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/toroidal-code/cycle-themes.el.git", - "sha256": "558d0455a7ed2037b2500b9cd6e12e645d94edb1b6e73da0e9f7a7b5f836ba88", + "tag": "fetchFromGitHub", + "owner": "toroidal-code", + "repo": "cycle-themes.el", + "sha256": "125s6vwbb9zpx6h3vrxnn7nr8pb45vhxd70ba2r3f87dlxah93am", "rev": "6e125d11fdbc6b78fc9f219eb2609a5e29815898" }, "recipe": { "sha256": "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150402.2209", "deps": [ @@ -4446,14 +4717,15 @@ }, "ess-R-data-view": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/ess-R-data-view.el.git", - "sha256": "bd0ca4fdc08c39091bbf7efec921fcf6f5399155ab105e6f182dcf278a5742f9", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ess-R-data-view.el", + "sha256": "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x", "rev": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9" }, "recipe": { "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130509.658", "deps": [ @@ -4464,42 +4736,45 @@ }, "string-inflection": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/akicho8/string-inflection.git", - "sha256": "742f1a8ed45154ab35c1372ecee8edb6fe63a7d94ff70f7a520324b18b932435", + "tag": "fetchFromGitHub", + "owner": "akicho8", + "repo": "string-inflection", + "sha256": "06qs8v2pai3pyg0spmarssmrq06xg9q60wjj46s5xxichlw9pgcf", "rev": "147990de9d07d8e603ade92a23ef27a71e52b850" }, "recipe": { "sha256": "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150805.456", "deps": [] }, "keyfreq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dacap/keyfreq.git", - "sha256": "8075eda3e4b541e0438015cacf7f3c953b4b1e245136b66e9526a2ea4125bf62", + "tag": "fetchFromGitHub", + "owner": "dacap", + "repo": "keyfreq", + "sha256": "18qiw2324gx5w12pqka9njsysxym8dpglk7dzadg0k1wji73nn6l", "rev": "06cb50b2796688cc76eeb86d48c9826abbee6383" }, "recipe": { "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150924.2205", "deps": [] }, "sourcetalk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/malroc/sourcetalk_emacs.git", - "sha256": "db4aedbdd1c170ef5535037faa3f6439514314306cd0f5c32c69c17c7ca89848", + "tag": "fetchFromGitHub", + "owner": "malroc", + "repo": "sourcetalk_emacs", + "sha256": "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv", "rev": "aced89fa8776e6d5e42dad4a863e159959f08de6" }, "recipe": { "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140823.939", "deps": [ @@ -4508,16 +4783,17 @@ }, "darkmine-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pierre-lecocq/darkmine-theme.git", - "sha256": "9ca754a6ee3a6f6bc4c6aa7c3f4da2323f265d67e6ba923950ff700586194fc9", - "rev": "758ce6adfebbebbf0f714119180ec3992c10894b" + "tag": "fetchFromGitHub", + "owner": "pierre-lecocq", + "repo": "darkmine-theme", + "sha256": "0ajxlrnz1228w8ldgraw6a4s605isbr67p8s382jvia2zf821fmp", + "rev": "8cd5ff16bede4c8e1d063bc46fc1089a36a05bd3" }, "recipe": { "sha256": "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151005.315", + "version": "20151216.832", "deps": [] }, "archive-region": { @@ -4528,63 +4804,67 @@ }, "recipe": { "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140201.1745", "deps": [] }, "path-headerline-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/7696122/path-headerline-mode.git", - "sha256": "d0a64a46534630451458ff067a3bd3b53d815a3778a18c06fec4f4d6c6fe1d7d", + "tag": "fetchFromGitHub", + "owner": "7696122", + "repo": "path-headerline-mode", + "sha256": "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830", "rev": "b5b2725c6a8b1cb592fc242b7dbbd54b4dff2e69" }, "recipe": { "sha256": "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140423.832", "deps": [] }, "pointback": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/pointback.git", - "sha256": "5bc1d77d39520386d64071525b4cb8c64d836562585ab0b0640c5b7b8b97cc04", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "pointback", + "sha256": "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav", "rev": "e3a02c1784d81b5a1d2477338d049af581ed19f8" }, "recipe": { "sha256": "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100210.952", "deps": [] }, "vc-osc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aspiers/vc-osc.git", - "sha256": "4462dd775c362f6a8c8403e1681957db2d4b758488d6ae715d7c800ade771f72", + "tag": "fetchFromGitHub", + "owner": "aspiers", + "repo": "vc-osc", + "sha256": "0whzfzg0m03wbmqsxml8hislnbfvawcniq83hj66lbrnbivxsqj4", "rev": "fb01a35107be50ebb126c3573e0374e5e7d78331" }, "recipe": { "sha256": "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120910.411", "deps": [] }, "kaesar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "b9bf421152125c46447ba4f4e8700dd13de079572150558294b4c29b4f3c82bd", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "1maab8iaf2wcjj02ibl21jlfzmi9gmcl167cgdlwj50wkig74s23", "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" }, "recipe": { "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.505", "deps": [ @@ -4593,14 +4873,15 @@ }, "image-dired+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-image-diredx.git", - "sha256": "49545268e75f114af06c9a47f7610ffa8b0f7e034dfa1c913a45340a74525ed8", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-image-diredx", + "sha256": "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29", "rev": "b68094625d963056ad64e0e44af0e2266b2eadc7" }, "recipe": { "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150430.44", "deps": [ @@ -4609,14 +4890,15 @@ }, "anything-sage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/anything-sage.git", - "sha256": "f27c45c01f45f0868d868b9e83ef7dd7a20c9ea3aa05569b8fe7596ba2d34875", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "anything-sage", + "sha256": "08xr6fkk1r4r5jqh349d4dfal9nbs2a8y2fp8zn3zlrj2cd0g80k", "rev": "370b4248935dd4527127954788a028399644f578" }, "recipe": { "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141005.613", "deps": [ @@ -4627,28 +4909,30 @@ }, "ignoramus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/ignoramus.git", - "sha256": "db6c9dce6b9fff5c14efb1514e2d0d8e302e615b47a1e969d2f2a4b7fd4ba749", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ignoramus", + "sha256": "161algqrrjbc1ja08416q5wzz34rrg6shr2sim7vba0j3svyggnf", "rev": "cab192aa621d1087f2d574b65fffd295c5efb919" }, "recipe": { "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150216.1542", "deps": [] }, "stock-ticker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hagleitn/stock-ticker.git", - "sha256": "ddc6499eda448381e4149c0572d24b8dc2e82e0d3111bb6af74fc5f0c5783aa4", + "tag": "fetchFromGitHub", + "owner": "hagleitn", + "repo": "stock-ticker", + "sha256": "191sg32z1iagyxmbn49i1lpfihld9g9741cw2kj830s4vag4kinx", "rev": "f2e564142c9de84232839a5b01979cf95b04d6a9" }, "recipe": { "sha256": "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150204.452", "deps": [ @@ -4658,14 +4942,15 @@ }, "telephone-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dbordak/telephone-line.git", - "sha256": "f2de1318df480845a76314699f32423e87f7ff84db0995e2d6e874b247d7b2c6", + "tag": "fetchFromGitHub", + "owner": "dbordak", + "repo": "telephone-line", + "sha256": "0mg870s60by22ripxhqrgxjx16506n4llj9nnxlqgr4mdsi77cf5", "rev": "0715ee7d156086098b375f3d93de2f50e76f3d75" }, "recipe": { "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.642", "deps": [ @@ -4678,14 +4963,15 @@ }, "ac-php": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xcwen/ac-php.git", - "sha256": "36e719b810b174f15d0f28b4c50869600deca2242f69c90780b7614a82c253dc", + "tag": "fetchFromGitHub", + "owner": "xcwen", + "repo": "ac-php", + "sha256": "1rpp6njgqpi7sq4iyh65glhnbfw414w7srz90whadhkz5pzawr7z", "rev": "1f606698934a7d60d0d60f6f15240a2bf78c8b9f" }, "recipe": { "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.2128", "deps": [ @@ -4703,14 +4989,15 @@ }, "helm-ghq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/emacs-helm-ghq.git", - "sha256": "5f78b84edc5f65d423f4c58205a800d7392832a5009f16a393bd95c724a8ad2a", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-ghq", + "sha256": "0amdm0jcg5dxjfiid7q0llr2hffp02l0b0n5yhix8razvi7bhy2z", "rev": "15621d1b2cd37c2ff0f73666c38acf7aae46bbc4" }, "recipe": { "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.512", "deps": [ @@ -4726,35 +5013,37 @@ }, "recipe": { "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1359", "deps": [] }, "math-symbol-lists": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vspinu/math-symbol-lists.git", - "sha256": "8ad794ba26a6d19e2ffc701130cc70d3c77805986684ca9e146076e22de84fe1", + "tag": "fetchFromGitHub", + "owner": "vspinu", + "repo": "math-symbol-lists", + "sha256": "186gb83y3g1q7d0sdrxqz22nr62qq6fy7m74qwirlsf7vnnm4gpx", "rev": "56319989e7ac6bd625b46e8a28f8005077b5957b" }, "recipe": { "sha256": "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1243", "deps": [] }, "ox-rst": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masayuko/ox-rst.git", - "sha256": "a31bd3a0adefbe7e0f7ea8c967b10f5af7483c5cf03725ae3388d5c823b244cb", + "tag": "fetchFromGitHub", + "owner": "masayuko", + "repo": "ox-rst", + "sha256": "1js4n8iwimc86fp2adzhbhy4ixss1yqngjd8gq7pxgpgmnhd66x3", "rev": "2bd53fa5b3af67afbf45041d7f54b3c5b71b1f10" }, "recipe": { "sha256": "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.143", "deps": [ @@ -4764,42 +5053,45 @@ }, "multicolumn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/multicolumn.git", - "sha256": "2ea37f52d1d8308759d60bed7263a67165c794f74c13e919a8cdcfdb395057c7", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "multicolumn", + "sha256": "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf", "rev": "c7a3afecd470859b2e60aa7c554d6e4d436df7fa" }, "recipe": { "sha256": "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.1651", "deps": [] }, "css-eldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenozeng/css-eldoc.git", - "sha256": "3d134ee93fa0fdd14cba5ecc762f6ada5f2b3b1615491f700b37ff06da32ecd5", + "tag": "fetchFromGitHub", + "owner": "zenozeng", + "repo": "css-eldoc", + "sha256": "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx", "rev": "c558ac4c470742c98a37290e6b409db28183df30" }, "recipe": { "sha256": "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150124.2123", "deps": [] }, "helm-gtags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-gtags.git", - "sha256": "92377d12e8acc34107729331986dcf4d2c1fe635a8a982a446724e1731ebf6ab", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-gtags", + "sha256": "0gd158ymj0rpm3qmz17ky4lfhvw15cnq0xvhg6q1imjjay2md62q", "rev": "9131a1439860198d51a9dfa6955c586da4bb60bd" }, "recipe": { "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.820", "deps": [ @@ -4809,14 +5101,15 @@ }, "chinese-pyim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/chinese-pyim.git", - "sha256": "cb65de45ddfff5a9a0e44dcc464f0c4b9c9d36c6d7915cc98e657b50466368c1", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "chinese-pyim", + "sha256": "0sw9iajxy6lmpr8d2g6409b84psa1xr5pikrb3i5qbbwpvz6q3w4", "rev": "6b80f86305dbd1c09b12017d9189356fb98df2c6" }, "recipe": { "sha256": "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1812", "deps": [ @@ -4826,30 +5119,32 @@ }, "zencoding-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rooney/zencoding.git", - "sha256": "7997dbfce10c2b80822e91dc4042657910fca951abd297049dfa2d374b907cf8", + "tag": "fetchFromGitHub", + "owner": "rooney", + "repo": "zencoding", + "sha256": "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr", "rev": "58e42af182c98cb9941d27cd042d227fbf4e146c" }, "recipe": { "sha256": "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140213.222", "deps": [] }, "company-cabal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/company-cabal.git", - "sha256": "e316a40f89ea7759e5cdfdf7ecc5c0de4992bbb968472da8de54bfbda72a8857", - "rev": "29b18d9e6ad3dd5132d795cadcb23ee06203d3ac" + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-cabal", + "sha256": "0ll9dxzsgrpy4psz3dqhzny990lfccn63swcyfvl8mnqgwbrq8k0", + "rev": "f458de88cad16ed48a605e8347e56433e73dcef8" }, "recipe": { "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151002.629", + "version": "20151216.920", "deps": [ "cl-lib", "company", @@ -4858,14 +5153,15 @@ }, "borland-blue-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fourier/borland-blue-theme.git", - "sha256": "39197537e262bae8001127322d87f438d8c8339c24d3cf27483fa400b4b7f1e8", + "tag": "fetchFromGitHub", + "owner": "fourier", + "repo": "borland-blue-theme", + "sha256": "1s7inys0191z90kwzlr4khrwin1qyj3jsci7240fifk2w8vpa69r", "rev": "4b77caf6f40e2ffb4f37cb6e2c526bddb50c405f" }, "recipe": { "sha256": "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.1238", "deps": [ @@ -4874,44 +5170,47 @@ }, "idle-highlight-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/idle-highlight-mode.git", - "sha256": "3bb28e320531ef6fec9425bd64956fe298c73469c4dd4f1065b11d9ef50c9c74", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "idle-highlight-mode", + "sha256": "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv", "rev": "c466f2a9e291f9da1167dc879577b2e1a7880482" }, "recipe": { "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120920.1148", "deps": [] }, "tc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kozo2/tc.git", - "sha256": "f35bdf5d5d65534a30e4087680498c28f1e9fa1d2e90d9fd4fd782851dcdf3f6", + "tag": "fetchFromGitHub", + "owner": "kozo2", + "repo": "tc", + "sha256": "1xpkrlfqb0np9zyxk41f3pxfkw98ii4q0xh8whq4llv5bmfxynzk", "rev": "6aa9d27c475be8d009adf9cd417f2cdf348a91e8" }, "recipe": { "sha256": "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150113.2126", "deps": [] }, "java-imports": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dakrone/emacs-java-imports.git", - "sha256": "da0dda3aa83801b99446ec7fa4412136a026d4964dcfea9ad8bd89e76ff021aa", - "rev": "42f6a65441b50ae77b82168060baa8d5a8ec9f2e" + "tag": "fetchFromGitHub", + "owner": "dakrone", + "repo": "emacs-java-imports", + "sha256": "0canb3yp29n4bb31852hg8fbmwi1rw8r02ngd5f60mfpdrz2jqm6", + "rev": "90d1b813a88b93bea8733be3babac3ec238b54d1" }, "recipe": { "sha256": "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151211.1034", + "version": "20151217.1821", "deps": [ "pcache", "s" @@ -4919,14 +5218,15 @@ }, "mandoku": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mandoku/mandoku.git", - "sha256": "eebcdce65bbc0848d448aa6d57cf985ffdea6a93643d194e5186b3b56bdcb074", + "tag": "fetchFromGitHub", + "owner": "mandoku", + "repo": "mandoku", + "sha256": "0dbm53ihva3qsrcr1ancc6ky55j3j2i6qgqlipndv29aksxx3mlf", "rev": "d8027f67b4a65f59101ce80a6b6308c01d37a186" }, "recipe": { "sha256": "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.900", "deps": [ @@ -4938,14 +5238,15 @@ }, "bibretrieve": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pzorin/bibretrieve.git", - "sha256": "e352151f8e0ccdbfab061fbb6bbd1c271e2b82dc8fb7581f0ec0386e62742d37", + "tag": "fetchFromGitHub", + "owner": "pzorin", + "repo": "bibretrieve", + "sha256": "0rwy4k06nd9a31hpyqs0fxp45dpddbvbhwcw1gzx4f73qmgawq9b", "rev": "aff34c6e1a074ac4fd574d8e66fd9e0760585419" }, "recipe": { "sha256": "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131013.1332", "deps": [ @@ -4953,16 +5254,34 @@ "emacs" ] }, + "private-diary": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cacology", + "repo": "private-diary", + "sha256": "02l86flh3pyvd8va3dkckf4whr8lab1iybgdb9k6dqsc6j46dcfh", + "rev": "9d2589e46a51ce256ded0542b9826f520ccfcb1a" + }, + "recipe": { + "sha256": "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20151216.1057", + "deps": [ + "emacs" + ] + }, "cryptsy-public-api": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sodaware/cryptsy-public-api.el.git", - "sha256": "8b047ceb3dba42ac5eeafd3d8a5f03d774318d8f491d2d4f1a23aff00e02c067", + "tag": "fetchFromGitHub", + "owner": "sodaware", + "repo": "cryptsy-public-api.el", + "sha256": "0ry0087g1br3397js7a9iy6k2x6p0dgqlggxx9gaqhms7pmpq14b", "rev": "59bdf2425dccc27cc1598868a1a810885508cff5" }, "recipe": { "sha256": "1v78rm44af3vgsml5f6kpwvnb4ks6n49br2fhjgh6nc7g3jmz97n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141008.728", "deps": [ @@ -4971,14 +5290,15 @@ }, "highlight-blocks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-blocks.git", - "sha256": "859b45be7a7870c6eb72c1323ef5cf2259f39287083d11a7eb182109c094c530", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-blocks", + "sha256": "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5", "rev": "9c4240a5d16008db430d1a81c76dad474d3deb0c" }, "recipe": { "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1015", "deps": [ @@ -4987,14 +5307,15 @@ }, "simple-httpd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacs-http-server.git", - "sha256": "731209d7a3892aaafa6a5ccf6e118a25035d483952ff4b2d432f4d86f0067fdc", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacs-http-server", + "sha256": "0jn46fk0ljqs40kz6ngp0sk6hg1334835r2rmagx4qm0mdaqy7p8", "rev": "4b7a6bc6a6df6b932f8c9e9aded9103397c0c18f" }, "recipe": { "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150430.1955", "deps": [ @@ -5003,14 +5324,15 @@ }, "lavender-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-lavender-theme.git", - "sha256": "f3c00e683c1ca192adbd11c51810c882bc3a5c6cc190cc16016136a1f310e9d5", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-lavender-theme", + "sha256": "1mg923rs2dk104bcr461dif3mg42r081ii8ipnnr588w7il0xh7k", "rev": "d9e4d7838167a0e07fb5d04877a7b34c4b4cc1ee" }, "recipe": { "sha256": "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.102", "deps": [ @@ -5019,42 +5341,45 @@ }, "actionscript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/austinhaas/actionscript-mode.git", - "sha256": "24612a82172f4357133694134af1468135f49a8f3abe6fc0d44dfe398f14bde7", + "tag": "fetchFromGitHub", + "owner": "austinhaas", + "repo": "actionscript-mode", + "sha256": "1rxx2j7kkzjdsk06zgisiydg8dc18vqll4wl6q9mfhrg2y12lq94", "rev": "f7dd1d77322b49d259919d58ffcdf64073ba6c09" }, "recipe": { "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140605.1328", "deps": [] }, "electric-spacing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xwl/electric-spacing.git", - "sha256": "d69595a6d89c94778b9a3be0cb4582ce1f2bc5644611109f5c8d230203583760", + "tag": "fetchFromGitHub", + "owner": "xwl", + "repo": "electric-spacing", + "sha256": "0q1pb01h48wdbjgi04a6ck2jn7yfh92wpq1vka5pg54wv2k9b5fn", "rev": "78e4ccbb0a924a3062fa16c9b24823bb79bb1f3e" }, "recipe": { "sha256": "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.936", "deps": [] }, "fakir": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-fakir.git", - "sha256": "3019b93769bcd0cf502ecbdf6a30fbe083d568f2fa67b0064a4d86fcd7bfaaf0", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-fakir", + "sha256": "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h", "rev": "1fca406ad7de80fece6319ff75d4230b648534b0" }, "recipe": { "sha256": "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140729.1152", "deps": [ @@ -5065,14 +5390,15 @@ }, "z3-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zv/z3-mode.git", - "sha256": "5f70200557cd8de87bf8524c0c6ad8cae9f49dc2befceb871679e959661ff5cc", + "tag": "fetchFromGitHub", + "owner": "zv", + "repo": "z3-mode", + "sha256": "1k7m3xk5ksbr2s3ypz5yqafz9sfav1m0qk2jz1xyi3fdaw2j0w2z", "rev": "163dc01d59e9880b4dc188d4e1ad84d6c0c852e1" }, "recipe": { "sha256": "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.1655", "deps": [ @@ -5089,21 +5415,22 @@ }, "recipe": { "sha256": "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.444", "deps": [] }, "sos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omouse/emacs-sos.git", - "sha256": "913edcbe062faf77f0f48aab23480671c854d353da0057bf83f608cc2b14394b", + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "emacs-sos", + "sha256": "16x039imyf4p5d4rn92nlqcsvb5vlvdgq1m5g856b9dzwa89x733", "rev": "96b7d951a5f0a8ae401c0813745fc1aca0cb816c" }, "recipe": { "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141214.2203", "deps": [ @@ -5112,14 +5439,15 @@ }, "nasm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/nasm-mode.git", - "sha256": "39fce880d0fc6663055a3cb678fa825c113982708ba5da7862fdb0f19fe4b944", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "nasm-mode", + "sha256": "19v1qp4rzqvyzrk5zaxdjhki8cjl4fg6lr4ai3vi06yf62ds9mcs", "rev": "d95a12d3caaf1decf4d3bd39ac8559098e7227aa" }, "recipe": { "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.1858", "deps": [ @@ -5128,28 +5456,30 @@ }, "markup-faces": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sensorflo/markup-faces.git", - "sha256": "47640b358d3aee97a1a318688e07a25b849c126565c856ad8c2ce5d64f0dd1f0", + "tag": "fetchFromGitHub", + "owner": "sensorflo", + "repo": "markup-faces", + "sha256": "1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27", "rev": "98a807ed82473eb41c6a201ed7ef816d6bcd67b0" }, "recipe": { "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141110.217", "deps": [] }, "state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisirs/state.git", - "sha256": "31311a2912992f73d5cf2d21d2a0906cd2d70ebebce6be1fbbc43c45209bdfec", + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "state", + "sha256": "1930cfpvik6b7xqpbwf92cnnqcn1icmi0v0b75hxv9jxiibqavap", "rev": "6b7ae04cba5d055c1a143a4fdef9a0429fd38049" }, "recipe": { "sha256": "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.447", "deps": [ @@ -5158,14 +5488,15 @@ }, "angry-police-captain": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolando2424/angry-police-captain-el.git", - "sha256": "eaa45a2d23aa8138532dc186e7a976601c3e17ca91bec70c7acc4775b43d0cd4", + "tag": "fetchFromGitHub", + "owner": "rolando2424", + "repo": "angry-police-captain-el", + "sha256": "1m0c7ns7aiycg86cgglir8bkw730fslyg1n15m9ki0da4cnmm97a", "rev": "d11931c5cb63368dcc4a48797962428cca6d3e9d" }, "recipe": { "sha256": "1cshhd4bkgbkg0n6m8gz53z47z4nq0hcriz2qh3v7m4cqgkw1m9r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120829.752", "deps": [] @@ -5178,63 +5509,67 @@ }, "recipe": { "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140813.319", "deps": [] }, "bison-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/bison-mode.git", - "sha256": "67b241d8b59d8717652f1047c5e465d0a92be73933607c9c3050a5ca95538c45", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "bison-mode", + "sha256": "0iccafawm9ah62f7qq1k77kjpafhcpjcaiqh5xjig1wxnpc43ck7", "rev": "bb48d82f296bbe9f8b4a5651fab6610525fdbfcf" }, "recipe": { "sha256": "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141119.243", "deps": [] }, "wgrep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", - "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" }, "recipe": { "sha256": "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141016.1856", "deps": [] }, "pg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cbbrowne/pg.el.git", - "sha256": "601a81cbc26dc2e3852b0b206d62a77595c915c5d4fa203d8a6bff6b2dd907fe", + "tag": "fetchFromGitHub", + "owner": "cbbrowne", + "repo": "pg.el", + "sha256": "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0", "rev": "4f6516ec3946d95dcef49abb6703cc89ecb5183d" }, "recipe": { "sha256": "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130731.1642", "deps": [] }, "calfw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-calfw.git", - "sha256": "1618583208d86e37c63f378a4e49c7abf6d55f9d54ea6802168a1d3526d566e7", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-calfw", + "sha256": "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n", "rev": "50e0e0261568f84f31fe7f87c9f863e21d30132f" }, "recipe": { "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150923.2149", "deps": [ @@ -5243,14 +5578,15 @@ }, "tabbar-ruler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/tabbar-ruler.el.git", - "sha256": "b858c2149120e982a27e555d772da92e02d40f725f2aa4847b42265af8ff6b6f", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "tabbar-ruler.el", + "sha256": "0vvbzzw5l9j2gf2a8ajzf87x80ifm4npfpamgsi85s90j4ac4n5q", "rev": "5854ef040a1c45e1ce7dfebea6ed7953ce6bd2b9" }, "recipe": { "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.1951", "deps": [ @@ -5259,28 +5595,30 @@ }, "gruber-darker-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rexim/gruber-darker-theme.git", - "sha256": "75caee197b485fa6a399178de88929dfaed9ecd2a3eb35cce8ce5d2b0465748a", + "tag": "fetchFromGitHub", + "owner": "rexim", + "repo": "gruber-darker-theme", + "sha256": "12klcl22npffx363bsx3sbndkbnz564yi38pk6iscps8gccyxjkm", "rev": "25d52be23017f5a79d5eba53e767eab9d751819e" }, "recipe": { "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.126", "deps": [] }, "orgbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuhito/orgbox.git", - "sha256": "6e16b1fc4301f8b2782022a254361d10e79f13994812d863dfb3abf425ad0f89", + "tag": "fetchFromGitHub", + "owner": "yasuhito", + "repo": "orgbox", + "sha256": "0hwmr67nky9xp5xlrkp54nw6b72d29lmna28dnbgqs2i5rccbk55", "rev": "72373b09768cc2200d143af38e25a0c082e8375d" }, "recipe": { "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140528.2026", "deps": [ @@ -5290,42 +5628,45 @@ }, "kolon-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/samvtran/kolon-mode.git", - "sha256": "dca909af2f55fd2688f200db18c0b6d188db67a4583de452bde5f6d779f7247b", + "tag": "fetchFromGitHub", + "owner": "samvtran", + "repo": "kolon-mode", + "sha256": "0yr4yxwxgxp5pm9f8gaqlikxp26inv01inq0ya42dzam5yphkafw", "rev": "5af0955e280ae991862189ebecd3937c5fc8fb9f" }, "recipe": { "sha256": "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140122.534", "deps": [] }, "mew": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kazu-yamamoto/Mew.git", - "sha256": "8de30aa9e87487f999aa2dd9a297b4c93ed8b1ff330ce47ce6f5dc94685f4e3c", + "tag": "fetchFromGitHub", + "owner": "kazu-yamamoto", + "repo": "Mew", + "sha256": "1rkipcv53p7zra3gbjc77ywyxn8d1kx2gniyfqq16d2p2jw0lbzb", "rev": "ff9c41b981fb6050121a3831825d0349bffeb9ce" }, "recipe": { "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150814.154", "deps": [] }, "nand2tetris-assembler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CestDiego/nand2tetris.el.git", - "sha256": "e777f63618e3d84ec2c4be0a52dd8c7f46b736d0535fc3e75c00a7ffef7c7f00", + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "nand2tetris.el", + "sha256": "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7", "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" }, "recipe": { "sha256": "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1636", "deps": [ @@ -5335,14 +5676,15 @@ }, "pytest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ionrock/pytest-el.git", - "sha256": "e502eb19be17d7b743fd88778816f8548cd429998b27590c038c12e3375e9eda", + "tag": "fetchFromGitHub", + "owner": "ionrock", + "repo": "pytest-el", + "sha256": "1nlybqvy64lc0c65j9wbk4lx932lz0b8hxw8zm1vgmqppqcyn0p5", "rev": "71bd43c4eb7254d05104ec1bcca7851d7a203da3" }, "recipe": { "sha256": "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.2325", "deps": [ @@ -5351,14 +5693,15 @@ }, "portage-navi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-portage-navi.git", - "sha256": "71ec3cd146fd69b571465240331f8be915db021039b6947f14f5187ec9e9a4de", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-portage-navi", + "sha256": "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i", "rev": "8016c3e99fe6cef101d479a3d69185796b22ca2f" }, "recipe": { "sha256": "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141208.755", "deps": [ @@ -5368,14 +5711,15 @@ }, "mouse-slider-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/mouse-slider-mode.git", - "sha256": "fffdc519879c543e88c71e7b4734b64ec647810d072db7f2dec9e3a0ccf971cd", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "mouse-slider-mode", + "sha256": "05pzplb3gmlnlvn2azbxdlf4vrkvk8fc9dkgi2nq4shysnh4c9v7", "rev": "a8d6489fe2a3c2769b421f93f3609f402c9b92f7" }, "recipe": { "sha256": "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.1600", "deps": [ @@ -5385,14 +5729,15 @@ }, "helm-circe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lesharris/helm-circe.git", - "sha256": "c015b68f0753bedd6fac4c4973624ec808edb758e177d5e54719977f4b6012c7", + "tag": "fetchFromGitHub", + "owner": "lesharris", + "repo": "helm-circe", + "sha256": "1iqjc15pz5qr8zjxaxz1b2vys2689ri76jacmipxvgjk0y7vc5f0", "rev": "0b7ecf5380971ee7b6291fca6a2805c320638238" }, "recipe": { "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150317.44", "deps": [ @@ -5404,28 +5749,30 @@ }, "ruby-hash-syntax": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ruby-hash-syntax.git", - "sha256": "59e434bf601df60e49d15a846a2ca251c7e6c82d54005a820a6d66d6b783eddc", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ruby-hash-syntax", + "sha256": "0knl8zrd4pplnzk5z19cf9rqdfr3ymzfssrwp6jhndjzjdwvc2bv", "rev": "d73a498143a3a8d6d3a7720104f2f14e70b2e2ae" }, "recipe": { "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141010.1039", "deps": [] }, "skewer-reload-stylesheets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NateEag/skewer-reload-stylesheets.git", - "sha256": "43a72de24748c3a63d8b63bd14c4dd138de780ff067881a16b670ec4246118e0", + "tag": "fetchFromGitHub", + "owner": "NateEag", + "repo": "skewer-reload-stylesheets", + "sha256": "1q0qc4jc83k7dfhq2y06zy0fg38kvp219gb3icysdhs88zi2v9s3", "rev": "a22ed760a5515e43a05aeb82811dc571ba3d6060" }, "recipe": { "sha256": "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150111.623", "deps": [ @@ -5434,28 +5781,30 @@ }, "nodejs-repl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abicky/nodejs-repl.el.git", - "sha256": "6c3c0ab8b9e009eb895de250afec27cd9f0040c5d039420c80351c77164ed504", + "tag": "fetchFromGitHub", + "owner": "abicky", + "repo": "nodejs-repl.el", + "sha256": "1qvs73nimqzhcjgw77vaipqbmnvailc1q6w8rb5vc9c425xsi7an", "rev": "3c51428ccda7b1c4b5cd4a51f9034e6ca3a053f8" }, "recipe": { "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.714", "deps": [] }, "ido-completing-read+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", - "sha256": "702a90c5ce0f80a21f361a3261e2fb8f86b1430bf08d1296b8442587b797f9e9", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-ubiquitous", + "sha256": "1m9wyl4lm2sy6ax7wg4wh9nw5vq8z26z7kb9mq3p01z9v1vzyzil", "rev": "3bf3c707753969b2c3b534bfe3d09dbd297dfaae" }, "recipe": { "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.1726", "deps": [ @@ -5465,28 +5814,30 @@ }, "package-filter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/package-filter.git", - "sha256": "86a17f674dd6f05291da85f833321431b226651893f25e02c61e66b6aa42ee44", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "package-filter", + "sha256": "0i7f8ambcrhyqq15xwlk31jjdcii2hr37y45va8m5w6n9mkpz8c6", "rev": "ba3be37e0ef3972b2d8db7c2f2cb68c460699f12" }, "recipe": { "sha256": "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140105.1626", "deps": [] }, "sekka": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiyoka/sekka.git", - "sha256": "f9f775bedebfd5f8d392e2a4773121058009284de98cfa813711568407955fa3", + "tag": "fetchFromGitHub", + "owner": "kiyoka", + "repo": "sekka", + "sha256": "1as3llcs7jgcw9pafz4mbfml1cqd1fw8yl64bb4467nmhq2p18p7", "rev": "2768b2c16dd15dcd35fcfd123c4d56f2ffd1b362" }, "recipe": { "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150708.659", "deps": [ @@ -5497,14 +5848,15 @@ }, "auto-complete-exuberant-ctags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/auto-complete-exuberant-ctags.git", - "sha256": "20f7e9df1ebceaf947bed6656c166ecd5581fa3a49f1c2d46fe13983d2f30fbb", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "auto-complete-exuberant-ctags", + "sha256": "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0", "rev": "ff6121ff8b71beb5aa606d28fd389c484ed49765" }, "recipe": { "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140320.224", "deps": [ @@ -5513,42 +5865,45 @@ }, "rcirc-notify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/rcirc-notify.git", - "sha256": "fdc55aaac45d3467814b117fea8d8750b3771aeb127b7723bcbac772149d2b7a", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "rcirc-notify", + "sha256": "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3", "rev": "841a7b5a6cdb0c11a812df924d2c6a7d364fd455" }, "recipe": { "sha256": "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150219.1604", "deps": [] }, "full-ack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/full-ack.git", - "sha256": "46448181df74d25c09098f8261426848b40481fda7d2de598053e75880112533", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "full-ack", + "sha256": "0bjny4ryrs788myhiaf3ir99vadf2v4swa5gkz9i36a7j6wzpgk5", "rev": "761d846e105b150f8e6d13d7a8983f0248313a45" }, "recipe": { "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140223.1132", "deps": [] }, "elogcat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/youngker/elogcat.el.git", - "sha256": "25784d00effc275af6c892749203aa409906d3d16f7e533dd0ce6ee7fa4299c9", + "tag": "fetchFromGitHub", + "owner": "youngker", + "repo": "elogcat.el", + "sha256": "1jcr8bxffvnfs0ym6zkgs79hd6a0m81r4x4jr3v5l9zwxw04sy15", "rev": "4f311b7a07565b0d060334bc68edb36f2bff703f" }, "recipe": { "sha256": "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.1841", "deps": [ @@ -5558,14 +5913,15 @@ }, "helm-nixos-options": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/travisbhartwell/nix-emacs.git", - "sha256": "9c44131bb762df62b5476871bed5a5d344a4db448854145bf06dc839c0910147", + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "0iq1j703kj3dy1di8m488kds8i6klpavwwb88ysn5pv2nwdi6i4w", "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" }, "recipe": { "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.1809", "deps": [ @@ -5575,14 +5931,15 @@ }, "magit-annex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-annex.git", - "sha256": "68d0218de9e4da03078d8c65e6202625031749b076a6289d8de0b6f585ad8c1b", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-annex", + "sha256": "1h1i8712w0pn6bhc5lpps7ri7bf6f3vy23i6qld13hdgvimgisd9", "rev": "154345a5192f3581af105022541911398a566cce" }, "recipe": { "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.38", "deps": [ @@ -5599,7 +5956,7 @@ }, "recipe": { "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1443", "deps": [ @@ -5609,28 +5966,30 @@ }, "sync-recentf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ffevotte/sync-recentf.git", - "sha256": "59f7040ac78d34f21737b8a5fc7eb8f605c440b29a71aaa8e64af701d072d765", + "tag": "fetchFromGitHub", + "owner": "ffevotte", + "repo": "sync-recentf", + "sha256": "00lx6081h1nzwga5jg4cik4h667vfkn128yvnhkd0vw7b5g4ji5x", "rev": "530254b1f1b569ce958dadad2620c67c31835d5c" }, "recipe": { "sha256": "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.526", "deps": [] }, "helm-hatena-bookmark": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/emacs-helm-hatena-bookmark.git", - "sha256": "baf5f298936fe6184dbad3f7a002ec23e4efe149badc69e930f52c663c93a408", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-hatena-bookmark", + "sha256": "0254jcy6cb7m63lnkp5s97hyzr13xh1a1xykp96iirkgjfcg5xds", "rev": "497d33632f195354eaa24670db0804c846b7261b" }, "recipe": { "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.826", "deps": [ @@ -5639,14 +5998,15 @@ }, "helm-emms": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-emms.git", - "sha256": "b481309f09dd4be0478e138b65e48ce80ec4fda14dc22e064edc06b20ed0600c", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-emms", + "sha256": "0330s07b41nw9q32xhjdl7yw83p8ikj6b2qkir3y0jyx16gk10dl", "rev": "ed3da37e86ea5dabc15da708335b1e439ae0777d" }, "recipe": { "sha256": "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151001.1528", "deps": [ @@ -5658,42 +6018,45 @@ }, "xquery-tool": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paddymcall/xquery-tool.el.git", - "sha256": "879e87d74e1a34b3fb2e4d07c46a61c8dc39943e7729d1c7868bbbf717d5dd93", - "rev": "1ecc31dd7809a152ac43f262e8839d1405b012be" + "tag": "fetchFromGitHub", + "owner": "paddymcall", + "repo": "xquery-tool.el", + "sha256": "06mcz6ppr1cc5dfbxqbxhzwzmgpi8m3wbncckq5qi9xq5wvbah1d", + "rev": "af60aba324819ff6692f89f1c85aac59b820bf18" }, "recipe": { "sha256": "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.1055", + "version": "20151218.907", "deps": [] }, "gruvbox-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Greduan/emacs-theme-gruvbox.git", - "sha256": "2450e82d4a09040b0056afdade19fa0994230bb637a032d23e9112f462ffa68d", - "rev": "f4035b67ab16f4b2c674dc5c637eeba15690c38a" + "tag": "fetchFromGitHub", + "owner": "Greduan", + "repo": "emacs-theme-gruvbox", + "sha256": "1i9qjv39w6kvk7r829gagp4sbc1w0hp0qgnqxya1jac56h6ylhky", + "rev": "7cc236f7e357d3e53914f46d98a29588d2e7de62" }, "recipe": { "sha256": "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151210.1632", + "version": "20151217.934", "deps": [] }, "java-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nekop/yasnippet-java-mode.git", - "sha256": "5a6f5a6da3314ca8baee0ae06dc2827b24d2f0486a940339e043948cdebb3c1f", + "tag": "fetchFromGitHub", + "owner": "nekop", + "repo": "yasnippet-java-mode", + "sha256": "09pa1hmk0dyh7vw0lb9awyrvdarakgaxn66gag5fzbg5vgdfz32i", "rev": "701e84d91d6e8bf53c0088687ee385c1954792d8" }, "recipe": { "sha256": "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140728.36", "deps": [ @@ -5702,14 +6065,15 @@ }, "emacsql-psql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad", "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" }, "recipe": { "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151004.915", "deps": [ @@ -5721,58 +6085,62 @@ }, "jazz-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/donderom/jazz-theme.git", - "sha256": "604995d0d80c7e943ce9d6d41f47cacff3d8fb087aed912dbd84b06ef4db0a02", + "tag": "fetchFromGitHub", + "owner": "donderom", + "repo": "jazz-theme", + "sha256": "00havgs6xc44plnr3vbs13xxiwygr93izm6nx4y98zhcv389ajb0", "rev": "b9f66600fe33d25a230ed26a69f3abaaca03b453" }, "recipe": { "sha256": "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.1044", "deps": [] }, "yaml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshiki/yaml-mode.git", - "sha256": "c3ae58ee2491ebebcce31418c27c7811a757eb303c739b2ab72c87a407190ca6", - "rev": "dcdcd81c9e875328e5ded06be61a603cc97face9" + "tag": "fetchFromGitHub", + "owner": "yoshiki", + "repo": "yaml-mode", + "sha256": "1yy7f7prg2v17mzj6g0rvdkvrs96cjqzdz8xbs4zl4nbmj3lmay5", + "rev": "6ddd55205224c2f2c306699e021cedbaeecfaaf2" }, "recipe": { "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.1246", + "version": "20151218.554", "deps": [ "emacs" ] }, "point-stack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattharrison/point-stack.git", - "sha256": "8199db22e57b92f509a7b08166965d7c1273d02443d3824f8eff1dc9dd1432dc", + "tag": "fetchFromGitHub", + "owner": "mattharrison", + "repo": "point-stack", + "sha256": "1p1j2kfwj7gzir7q5ls34k8764kwbnb6d0dhlw4zb4kvwlidp6c1", "rev": "2d2a5e90988792cf49ba4c5a839ef6a1400f5a24" }, "recipe": { "sha256": "17z9mc49x4092axs7lq6b6z7yrrhkl8bdx5f8gq6qy5lampgyzch", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140102.1423", "deps": [] }, "ncl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/ncl-mode.git", - "sha256": "8de27cfd2f3d2a0e88bfeb32b0db78ebc1c74a26efaaf3bc4d419debd6ebbb62", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "ncl-mode", + "sha256": "0gbv5fv401z58ycbqlivqamf5kp3x6krhi36q7q0m4gvy448xz0n", "rev": "01559734504d2712606ac30916252d788ea73124" }, "recipe": { "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150525.1129", "deps": [ @@ -5781,14 +6149,15 @@ }, "go-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-go-direx.git", - "sha256": "5a3874ba35615b287b48ec8b9b6cfd8eb8f91f709661f39d8210472ce6547415", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-go-direx", + "sha256": "09rxz40bkr0l75v3lmf8lcwqsgjiv5c8zjmwzy2d4syj4qv69c5y", "rev": "8f2206469328ee932c7f1892f5e1fb02dec98432" }, "recipe": { "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.2043", "deps": [ @@ -5804,7 +6173,7 @@ }, "recipe": { "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1552", "deps": [ @@ -5813,42 +6182,45 @@ }, "shampoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dmatveev/shampoo-emacs.git", - "sha256": "7224c35f1a620438a475e662726d26b831d6dc99ad7d421d8d6cf08d9812cdab", + "tag": "fetchFromGitHub", + "owner": "dmatveev", + "repo": "shampoo-emacs", + "sha256": "15a8gs4lrqxn0jyfw16rc6vm7z1i10pzzlnp30x6nly9a7xra47x", "rev": "bc193c39636c30182159c5c91c37a9a4cb50fedf" }, "recipe": { "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131230.419", "deps": [] }, "dash-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stanaka/dash-at-point.git", - "sha256": "7a4a6ee258d0485d47d0d88e4aeda60e16dd056c004de75917365acd215a3f67", + "tag": "fetchFromGitHub", + "owner": "stanaka", + "repo": "dash-at-point", + "sha256": "0zd50sr51mmvndjb9qfc3sn502nhc939rhd454jbkmlrzqsxvphj", "rev": "ed872b4fcbe02ef1a5bac0337afe19a7a747f34c" }, "recipe": { "sha256": "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140626.235", "deps": [] }, "window-purpose": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmag/emacs-purpose.git", - "sha256": "0b655eb0b7c36b0cdb68b8d77a142e2cb206e8d6c5ca9be0d13ef3a48a1f2b5f", + "tag": "fetchFromGitHub", + "owner": "bmag", + "repo": "emacs-purpose", + "sha256": "1hfn3x08h426kw0m1qyrjy8kp6nm56d1h5zlfiwj22kfc560gb4v", "rev": "d8b9399c8bbdb6e843cd62b7adb658fea6cf7e75" }, "recipe": { "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.440", "deps": [ @@ -5860,14 +6232,15 @@ }, "boxquote": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davep/boxquote.el.git", - "sha256": "0863767f68628f52ebddc7b7abe921b672554c2ec30178d47845b01b2d9dc7e7", + "tag": "fetchFromGitHub", + "owner": "davep", + "repo": "boxquote.el", + "sha256": "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73", "rev": "4c49b2046647ed187920c885e175ed388f4833dc" }, "recipe": { "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20081011.1526", "deps": [] @@ -5880,21 +6253,22 @@ }, "recipe": { "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101129.2052", "deps": [] }, "ein": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/millejoh/emacs-ipython-notebook.git", - "sha256": "abb0443563ccd529f0eb1fdc52addd8c996671c0c60522dd027717662044abb9", + "tag": "fetchFromGitHub", + "owner": "millejoh", + "repo": "emacs-ipython-notebook", + "sha256": "055hyvdcnbbzxs66v06d5flylhsz1qnmff758736f84cyxm76ayy", "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" }, "recipe": { "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.1316", "deps": [ @@ -5904,14 +6278,15 @@ }, "scratches": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/scratches.git", - "sha256": "8c6e1000e5be6538ebc35fe790a316d3630c0d93994c1dfdde3fcf4b2ef01582", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "scratches", + "sha256": "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc", "rev": "9441afe6396ca38f08029123fab5d87429cbf315" }, "recipe": { "sha256": "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.2316", "deps": [ @@ -5921,14 +6296,15 @@ }, "magic-filetype": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/magic-filetype.el.git", - "sha256": "d39ffec1799d1999f6182e44669dce7f01a668f811ca17d51f3c920b644b7ceb", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "magic-filetype.el", + "sha256": "1q5bjk9dzq8my804kd6i185522mxdkwrh2lhc2nvjbj4idx7rgll", "rev": "e9fbed35f389be24198b1a86b5c2440750732a6e" }, "recipe": { "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.1057", "deps": [ @@ -5938,14 +6314,15 @@ }, "helm-j-cheatsheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/helm-j-cheatsheet.git", - "sha256": "c30086e3121354c89c798f5f22fc07d51b561e6cf71a43503861497d3693e5bd", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "helm-j-cheatsheet", + "sha256": "0f2psp7p82sa2fip282w152zc1rjd3l0sna1g7rgwi9x29gcsh0v", "rev": "70560fd2fb880eccba3b1927d0fa5e870e0734e4" }, "recipe": { "sha256": "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.641", "deps": [ @@ -5954,28 +6331,30 @@ }, "py-yapf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/py-yapf.el.git", - "sha256": "cb180d0d36b3b1568a741ea252fc8f942351d2554fd83a9b11fb5f8cf2d6c27e", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-yapf.el", + "sha256": "03hki4v61340x0xp47lckxabz51abcazcahmr6wfn9n4bvfqjr9x", "rev": "766e57448639ff95eeb018f6d8bdf09170094218" }, "recipe": { "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150422.953", "deps": [] }, "paper-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cadadr/paper-theme.git", - "sha256": "9170a2cccc57de956daf1b38cb1bd7233d44c629178c0ce1f0aff9b17d5c6857", + "tag": "fetchFromGitHub", + "owner": "cadadr", + "repo": "paper-theme", + "sha256": "0mv8biyv3ydgy3hhr30p57348g93swdwnf0vmxnrbpjprk6a4w4i", "rev": "5ddb180beac8a1890cafacdd41e8373ca1999182" }, "recipe": { "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.1000", "deps": [ @@ -5985,28 +6364,30 @@ }, "noctilux-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sjrmanning/noctilux-theme.git", - "sha256": "ba1bf8c99c84dd07daee5a4ce8235852cbdb18644e96c53d9c9cbcd2f4b837a8", + "tag": "fetchFromGitHub", + "owner": "sjrmanning", + "repo": "noctilux-theme", + "sha256": "1a1pp3sd5g4wkhywb5jfchcdpjsjb0iyhk2sxvd0gpc4kk4zh6xs", "rev": "5f21c8523ddb99c4e5bc727d59ddf6bf6f50d626" }, "recipe": { "sha256": "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150723.947", "deps": [] }, "emms-mark-ext": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/emms-mark-ext.git", - "sha256": "9418868d1a21c968b10370cfbdb0bc1b452f21e12be79a0bc8f6027a91d5470d", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "emms-mark-ext", + "sha256": "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l", "rev": "ec68129e3e9e469e5bf160c6a1b7030e322f3541" }, "recipe": { "sha256": "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130528.2227", "deps": [ @@ -6021,21 +6402,22 @@ }, "recipe": { "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150708.2036", "deps": [] }, "finalize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elisp-finalize.git", - "sha256": "6ad646d2b59cee68a379c2b54140fba654acf9011d1d8696a741f36ca8954fc2", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elisp-finalize", + "sha256": "0f76cgh97z0rbbg2bp217nqmxfimzkvw85k9mx8bj78i9s2cdmwa", "rev": "9ac589cf487f5d37163dc9e7ca8c52800710805e" }, "recipe": { "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140127.1246", "deps": [ @@ -6046,28 +6428,30 @@ }, "mpg123": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/mpg123.git", - "sha256": "eb1d3da510cac9689c7ae5405f8868ae9d2b7cb7d498310a8b660d51790de324", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "mpg123", + "sha256": "09731mwm23b6ic53366lnxy2p7dfd245yh75gaf6ijfa22jks7gb", "rev": "ed2307843ca54ebf0ca5e5d2e79b41e79527c45c" }, "recipe": { "sha256": "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1350", "deps": [] }, "paredit-everywhere": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/paredit-everywhere.git", - "sha256": "db05f512bf60bdc5e9b6a6a11dbe16046324af2ca834d24a0235c9a299752ff2", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "paredit-everywhere", + "sha256": "1jkpb67h96sm3fnga9hrg3kwhlp3czdv66v49a9szq174zpsnrgv", "rev": "79ecbfc15d2cb338f277f3da50d8e757f07151e9" }, "recipe": { "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150821.2344", "deps": [ @@ -6076,28 +6460,30 @@ }, "jinja2-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paradoxxxzero/jinja2-mode.git", - "sha256": "b38c734e19f062791adb2f446fb0dc361406043bfcd5384876f84f543b86d793", + "tag": "fetchFromGitHub", + "owner": "paradoxxxzero", + "repo": "jinja2-mode", + "sha256": "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381", "rev": "cfaa7bbe7bb290cc500440124ce89686f3e26f86" }, "recipe": { "sha256": "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141128.407", "deps": [] }, "org-caldav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dengste/org-caldav.git", - "sha256": "5f61a7c67d0f4d093097d0da2bc784362e7585ee27150e79f50afcc74dcf0253", + "tag": "fetchFromGitHub", + "owner": "dengste", + "repo": "org-caldav", + "sha256": "0lq2rx6wgz0aymwhw597xs2pabinhk3jpnnhjwq0jk8ggp3afqaz", "rev": "8aff005f431e5f677950b73f710fdf968ff4ac65" }, "recipe": { "sha256": "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150131.352", "deps": [ @@ -6106,14 +6492,15 @@ }, "eval-in-repl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaz-yos/eval-in-repl.git", - "sha256": "65e99be7de095ee6276624197f0640c94a95f1628796b61f553f7a30ac00d161", + "tag": "fetchFromGitHub", + "owner": "kaz-yos", + "repo": "eval-in-repl", + "sha256": "0qfi02n30yizalgvd5l7cbqrajn98037y694cqkycph9vvkrpsb5", "rev": "c2c677d39cfad572fe487661ac9e8a70fb88749f" }, "recipe": { "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.528", "deps": [ @@ -6123,28 +6510,30 @@ }, "gherkin-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/candera/gherkin-mode.git", - "sha256": "163a3f1279cf2f53f72affa6497b367abe6ac5977a0fdb7b95157e011c608128", + "tag": "fetchFromGitHub", + "owner": "candera", + "repo": "gherkin-mode", + "sha256": "0lcbyw6yrl6c8py5v2hqghcbsf9cbiplzil90al4lwqps7rw09a8", "rev": "d84a2977a536f2f8bf4836aebc33a4e86925673d" }, "recipe": { "sha256": "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140107.1004", "deps": [] }, "helm-perldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-perldoc.git", - "sha256": "60b3e77f7df8763dd3bd7322e0526a1298ba9d9dd7c004a87a6d216a60a39d49", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-perldoc", + "sha256": "13wnagmgicl2mi4iksqckrjbaiz05j9ykbmvj26jy8zcbll5imfs", "rev": "a7347e0a4f1a1832060b3a7a1a3f3d2ed4f92f33" }, "recipe": { "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.2227", "deps": [ @@ -6155,14 +6544,15 @@ }, "relative-buffers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/relative-buffers.git", - "sha256": "c97cc94f1e565e727d3c40ee7fcfb14b35b8828f7c6ba8f2d6bad904771b9ef6", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "relative-buffers", + "sha256": "023fwcqyy5gg234m772vpws751pharjwn3b0433i2sszna2z6xrf", "rev": "7e37e118cc231c8581891bef0e4b5bb775920070" }, "recipe": { "sha256": "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150115.1301", "deps": [ @@ -6174,14 +6564,15 @@ }, "helm-grepint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kopoli/helm-grepint.git", - "sha256": "65d21d875ac59f75e9418f205bfac44a695890800ab68c207af900bb3899751d", + "tag": "fetchFromGitHub", + "owner": "kopoli", + "repo": "helm-grepint", + "sha256": "07bmk4wbn07rg8h8rdhah285hsaaqkx5n84g87lpb7y5ba3ivlk5", "rev": "0327f64121751065a85c76527dda2c037c8fb0d8" }, "recipe": { "sha256": "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1137", "deps": [ @@ -6191,14 +6582,15 @@ }, "emms-info-mediainfo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/emms-info-mediainfo.git", - "sha256": "2f4717ba2013c8567f2be6dd1d7f4f93c2277eb4224d335c861e3dccecb4b1dd", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "emms-info-mediainfo", + "sha256": "07qbbs2i05bqndr4dxb84z50wav8ffbc56f6saw6pdx6n0sw6n6n", "rev": "bce16eae9eacd38719fea62a9755225a888da59d" }, "recipe": { "sha256": "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131223.700", "deps": [ @@ -6207,28 +6599,30 @@ }, "javap-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hiredman/javap-mode.git", - "sha256": "8f72f6caee3298a3f1b4ca26f3653cb856bd875dedd72520b167a44d5e25191c", + "tag": "fetchFromGitHub", + "owner": "hiredman", + "repo": "javap-mode", + "sha256": "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg", "rev": "864c1130e204b2072e1d19cd027b6fce8ebe6629" }, "recipe": { "sha256": "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120223.1608", "deps": [] }, "ttrss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pedros/ttrss.el.git", - "sha256": "34ba33fa54b4f8503d6325eecbdd334474d15d1ee3e025aead679a1ac34d0e29", + "tag": "fetchFromGitHub", + "owner": "pedros", + "repo": "ttrss.el", + "sha256": "0a8f9p1im6k7mnp2bq733rfx2x246gfwpvi5ccym1y5lakx37fil", "rev": "e90d8f7ccaf235053057bd91d3a2113582604e24" }, "recipe": { "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130409.1249", "deps": [ @@ -6237,70 +6631,75 @@ }, "term-run": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/10sr/term-run-el.git", - "sha256": "3bac85c7e51d35e1cae2dd5b7f9044cd65533d2bf14423da3cd6083a1a5cf2d7", + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "term-run-el", + "sha256": "0m3h89carkbgr043d0l573igf9qrdhv5nxnxq5j9x4xc0j7sbnzc", "rev": "4e47afc1babb87f2c3ebd1f71c7f456c323a7ffb" }, "recipe": { "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150601.206", "deps": [] }, "anx-api": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rmloveland/emacs-appnexus-api.git", - "sha256": "c155289b6ca5e9314b91acd46a1c0721089fa4db27f3b1bbb31fa78ab2fafd3b", + "tag": "fetchFromGitHub", + "owner": "rmloveland", + "repo": "emacs-appnexus-api", + "sha256": "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1", "rev": "b2411ebc966ac32c3ffc61bc22bf183834df0fa0" }, "recipe": { "sha256": "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140208.914", "deps": [] }, "smooth-scrolling": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aspiers/smooth-scrolling.git", - "sha256": "73eb1acf3991d1ee88c4bb7f3a019117b8e1e84e5f2850f897622c3b161c6e16", + "tag": "fetchFromGitHub", + "owner": "aspiers", + "repo": "smooth-scrolling", + "sha256": "05kf3hb3nb32jzw50a2z9vlf3f0pj40klzxvqj4fxlci777imsvk", "rev": "0d9b228f952c53ad456f98e2c761dda70ed72174" }, "recipe": { "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131219.2239", "deps": [] }, "helm-cmd-t": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/helm-cmd-t.git", - "sha256": "7ae3bfafcb82719a83298bea07efc21c59b1514fb6cd2c3644f7f18d76109781", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "helm-cmd-t", + "sha256": "10cp21v8vwgp8hv2rkdn9x8v2n8wqbphgslb561rlwc2rfpvzqvs", "rev": "8749f0b2b8527423cd146fa2d5c0e7a9e159eefb" }, "recipe": { "sha256": "04fmhravd3ld4n1n820wlnr1jvmk7c7cdazd15gazixrlz6fm4fk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150823.1357", "deps": [] }, "flymake-python-pyflakes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-python-pyflakes.git", - "sha256": "229c799e179084202877e15b5286c9f90821bf95ffc91339406097540e39fa6b", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-python-pyflakes", + "sha256": "1aijapvpw4skfhfmz09v5kpaxay6b0bp77bbjkrvgyizsqdd39vp", "rev": "f09ec573d7580a69f8bd49778c26da9ab6d5ec5a" }, "recipe": { "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131127.206", "deps": [ @@ -6315,21 +6714,22 @@ }, "recipe": { "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150403.1121", "deps": [] }, "flycheck-cask": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-cask.git", - "sha256": "da09cf110b0d23dfc6bc7087611bfd0726bf52ad3f1c2c40a850633eea5825e2", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-cask", + "sha256": "0klnhq0zfn5zbkwl7y9kja7x49n1w6r1qbphk7a7v9svgm3h9s7n", "rev": "f2cebedacaa96ef30262fbb67068d1df489ff238" }, "recipe": { "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150920.653", "deps": [ @@ -6340,14 +6740,15 @@ }, "fzf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/fzf.el.git", - "sha256": "134be086673c38c2c7a9602f0978bc1dd2c628d959433cdd95585573adf82b5f", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "fzf.el", + "sha256": "0prbz2np6maqjpfkqhsrv4lcdlhxpiw0jbv0m73w4f1wcy3f0jqk", "rev": "30bb2f0f82ff413f268bb5e7fb02d3586ba7783f" }, "recipe": { "sha256": "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.833", "deps": [ @@ -6356,28 +6757,30 @@ }, "el-get": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/el-get.git", - "sha256": "89445520430c47659a6e37bdbb9d26934b7830136c45c61bb341c04e9e4bd6bd", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "el-get", + "sha256": "0ppcja9mhjm0ymln72nigilkl0jj9mwxclw3v5djdcfq0xp1mc77", "rev": "56d72507c1af03d1c719dcac62a0c365857cc10e" }, "recipe": { "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.1015", "deps": [] }, "markdown-mode+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/markdown-mode-plus.git", - "sha256": "d9246f2221a8b4f7540e2400e37773d7abd3f47fea3e40b87bd380229d19b4a9", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "markdown-mode-plus", + "sha256": "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r", "rev": "f35e63284c5caed19b29501730e134018a78e441" }, "recipe": { "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120829.710", "deps": [ @@ -6386,14 +6789,15 @@ }, "feature-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/michaelklishin/cucumber.el.git", - "sha256": "ad68454443473eab381c7d3e8456abd4d67de23d7e2ad64edca041a95c3f62a1", + "tag": "fetchFromGitHub", + "owner": "michaelklishin", + "repo": "cucumber.el", + "sha256": "18b27xfajhd0vi7dcaky7pi7vmnlmdb88gkx3hwangj78d24as5d", "rev": "40886bc4cc5b1e855d6bb78505ebc651593d409d" }, "recipe": { "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141121.1230", "deps": [] @@ -6406,7 +6810,7 @@ }, "recipe": { "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1550", "deps": [ @@ -6421,35 +6825,37 @@ }, "recipe": { "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150402.1829", "deps": [] }, "unkillable-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/EricCrosson/unkillable-scratch.git", - "sha256": "4c61e80e71b8aca303168b9ef7f0aed54fc494eaeb2f28ef5fabe09dab8bea76", + "tag": "fetchFromGitHub", + "owner": "EricCrosson", + "repo": "unkillable-scratch", + "sha256": "0xpaifmrvq5bbzpjhbzbxaac8kymmvqgg7lb2q1s7b5qf47fhqac", "rev": "55a196d0c7001bfc8cf9c6cc532a5dc94e95baf8" }, "recipe": { "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150328.118", "deps": [] }, "edit-server-htmlize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/frobtech/edit-server-htmlize.git", - "sha256": "835ec7929f43517cce6cc3bf6fe2ba2641b6083e5c999056fe6218d60bc19d9c", + "tag": "fetchFromGitHub", + "owner": "frobtech", + "repo": "edit-server-htmlize", + "sha256": "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3", "rev": "e7f8dadfabe869c77ca241cd6fbd4c52bd908392" }, "recipe": { "sha256": "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130329.1748", "deps": [ @@ -6458,14 +6864,15 @@ }, "multi-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/IvanMalison/multi-line.git", - "sha256": "e96adce716494008044b875e6e4c042071f61f879bd0b7549c7a9a888c43b899", + "tag": "fetchFromGitHub", + "owner": "IvanMalison", + "repo": "multi-line", + "sha256": "13rp6kbabjy9dy0x4696065yyaxlgmfnwcqq9vcw2jhbb2gl9gs5", "rev": "a46b34340a3dd1cba42ee0f41d6b599500f06233" }, "recipe": { "sha256": "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.1813", "deps": [ @@ -6474,28 +6881,30 @@ }, "crm-custom": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/crm-custom.git", - "sha256": "7273029e19913ed73b54f1d645101f1981d5fc546dd433ec80c82d81292f643d", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "crm-custom", + "sha256": "1fhjz2x9jpz53g9j83kznhy2nhfap3jaf6i69k62243kcw31qyz0", "rev": "fbcf8bf3c87f56cb872d840dd79b6727b886e90d" }, "recipe": { "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140816.1148", "deps": [] }, "soundcloud": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tthieman/soundcloud.el.git", - "sha256": "db14f9ccec3456463e25d208788d2665d609841b2d2f52732ef801e44d651cd5", + "tag": "fetchFromGitHub", + "owner": "tthieman", + "repo": "soundcloud.el", + "sha256": "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v", "rev": "f998d4276ea90258909c698f6a5a51fccb667c08" }, "recipe": { "sha256": "1jl9sk372j4162av9kfcbqp0cc5wpm86nkqg8rskfgmsi4ncp4ph", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150501.2226", "deps": [ @@ -6509,14 +6918,15 @@ }, "ace-link": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/ace-link.git", - "sha256": "880584ac44ffae0c1e6161abc92b9baee5ec6ab7f293dab6a6cdb6ac77b9c773", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ace-link", + "sha256": "0wy7p5vsrdndlsvdm4zjnxmfrrdfkcmwkav1c4g0rbpz8jn881c8", "rev": "b03a91df61f8885c33c8c6812e656a86918572f0" }, "recipe": { "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151019.1035", "deps": [ @@ -6525,14 +6935,15 @@ }, "anaphora": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/anaphora.git", - "sha256": "7f008c227a19feedd9d53ed7c9bcc8620297bb36a7bf83467fb4d8057427ed8d", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "anaphora", + "sha256": "1ym43y0wqifkzpkm7ayf8cq2wz8pc2wgg9zvdyi0cn9lr9mwpbav", "rev": "ed99ad4502e6fccde76050496984c6454676a410" }, "recipe": { "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140728.1736", "deps": [] @@ -6545,7 +6956,7 @@ }, "recipe": { "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150116.2302", "deps": [] @@ -6558,21 +6969,22 @@ }, "recipe": { "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130407.1320", "deps": [] }, "tiny": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/tiny.git", - "sha256": "43b1b69cb2c9d56358c784063b0d05dd7d81928b2e692e055bdeb9efc042bf56", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "tiny", + "sha256": "0mmz8b0fzffybc2jws9fif982zfx0l6kn1l4qxc67mf9nafbdca3", "rev": "d775201a6e14aae03dda032132aa288ca93bddc4" }, "recipe": { "sha256": "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.405", "deps": [] @@ -6586,7 +6998,7 @@ }, "recipe": { "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1120", "deps": [ @@ -6596,14 +7008,15 @@ }, "fish-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wwwjfy/emacs-fish.git", - "sha256": "58bd36b5d693c258bdeb74b62acf8f47f177664b54b3e0648c193635d314083e", + "tag": "fetchFromGitHub", + "owner": "wwwjfy", + "repo": "emacs-fish", + "sha256": "0gh82k9kadhriijf1csl9dk7gwa7iz7jmdklxfymihlkssskdgaq", "rev": "683af1c17c9dfe947166ae4a73fe97a4920d7973" }, "recipe": { "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.334", "deps": [ @@ -6612,42 +7025,45 @@ }, "ercn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/ercn.git", - "sha256": "9b0512b3cd73439bb2a18df24036650abcb7489c84789d7d0db64ef25d6a8377", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "ercn", + "sha256": "0xw3d9fz4kmn1myrsy44ki4bgg0aclv41wldl6r9nhvkrnri41cv", "rev": "79a4df5609046ae2e2e3375998287be6dda80615" }, "recipe": { "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150523.1003", "deps": [] }, "roy-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/folone/roy-mode.git", - "sha256": "e8931710fe57510874f561650c39c614f67f7b5aa915d9376f0be6dedb446dde", + "tag": "fetchFromGitHub", + "owner": "folone", + "repo": "roy-mode", + "sha256": "04jbnm9is2cis75h40znqzjvyjq27ncr2vfank6zglzi4fhxsl0r", "rev": "0416f561edbc6b4a29fced8be84d2527a9613d65" }, "recipe": { "sha256": "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121208.558", "deps": [] }, "clojars": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joshuamiller/clojars.el.git", - "sha256": "6673e1acac09915a900578e13ef9fefd06d96889251c0f6601709bda014b28e4", + "tag": "fetchFromGitHub", + "owner": "joshuamiller", + "repo": "clojars.el", + "sha256": "1r189c0xm6vh05k0y715i5ldj1pxzvwkxqbq0n85m489mjnf2wv6", "rev": "b500b243c92d4311c4041ff3ecbb6a1dbbf8090f" }, "recipe": { "sha256": "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1433", "deps": [ @@ -6657,14 +7073,15 @@ }, "jump": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/jump.el.git", - "sha256": "20e006d93a1db36158963a4441c2b671e49d01e22eaa1790c05ca10d5c9837aa", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "jump.el", + "sha256": "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5", "rev": "56cec33dd98231a95faa26dd4c0612885d923f78" }, "recipe": { "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.329", "deps": [ @@ -6674,14 +7091,15 @@ }, "list-packages-ext": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/list-packages-ext.git", - "sha256": "3a5024de92a3a5e3f6a76157ad6647bfaf55ba5ee4f4149132bf797346c1870a", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "list-packages-ext", + "sha256": "02l7q5376ydz6a8i9x74bsx5bbxz8xkasmv1lzvf79d3jbg28l1s", "rev": "b4dd644e4369c9aa66f5bb8895ea49ebbfd0a27a" }, "recipe": { "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.1116", "deps": [ @@ -6699,7 +7117,7 @@ }, "recipe": { "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140830.1721", "deps": [ @@ -6708,28 +7126,30 @@ }, "railgun": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mbriggs/railgun.el.git", - "sha256": "85ab5f757c8b718994830f37301ebad78487e2c0d3d0827996c39bea799b8ffd", + "tag": "fetchFromGitHub", + "owner": "mbriggs", + "repo": "railgun.el", + "sha256": "00x09vjd3jz5f73qkf5v1y402zn8vl8dsyfwlq9z646p18ba7gyh", "rev": "66aaa1b091baef53a69d0d7425f48d184b865fb8" }, "recipe": { "sha256": "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121017.57", "deps": [] }, "clj-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clj-refactor.el.git", - "sha256": "bf744ac943dd6aad1a5c6eeb255ba601832d626ec89da91ce06d2fbea7a364de", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clj-refactor.el", + "sha256": "1xvhypskaap9rlvza34ad8bry1g3zr53wf8a3zbxj024lbw37ay2", "rev": "3b11a7d8cfa23ec4887ccc093574c239f57900d7" }, "recipe": { "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.400", "deps": [ @@ -6747,28 +7167,30 @@ }, "org-autolist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/calvinwyoung/org-autolist.git", - "sha256": "d12aa1c4b5fe20505b1c8a276cf917da774e00c05df3d7006c7bd7b5ffc3ce48", + "tag": "fetchFromGitHub", + "owner": "calvinwyoung", + "repo": "org-autolist", + "sha256": "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani", "rev": "da332fadcd9be4c5eb21c5e98c392b89743750b2" }, "recipe": { "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150922.905", "deps": [] }, "nameframe-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/john2x/nameframe.git", - "sha256": "855f462993a0e81d7e903a249446b96e373801ac1c424b2f5a7e08adb3e7ef1f", + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "nameframe", + "sha256": "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5", "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" }, "recipe": { "sha256": "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.407", "deps": [ @@ -6778,14 +7200,15 @@ }, "helm-bind-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/helm-bind-key.el.git", - "sha256": "3e1040f9948ac0592777b2aa14aa69a916bc8c3a96d0a23c725a684ff0f1acf2", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "helm-bind-key.el", + "sha256": "1wmcy7q4ys2sf8ya5l4n7a6bq5m9d6m19amjfwkmkh4ajkwl041y", "rev": "9da6ad8b7530e72fb4ac67be8c6a482898dddc25" }, "recipe": { "sha256": "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141108.2315", "deps": [ @@ -6795,14 +7218,15 @@ }, "evil-escape": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-escape.git", - "sha256": "684159f82702dd310c050c6d8197b77b39acb7b43fa358a5f0a07a79a5b67230", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-escape", + "sha256": "1dl201jx7kfmkhd7ism6wlmlnbgfg1qn17faryz7kc5v2mms69b4", "rev": "32a6c6c31eaa5678205ce658baaab7eb5ca9c9e3" }, "recipe": { "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1311", "deps": [ @@ -6813,14 +7237,15 @@ }, "camcorder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/camcorder.el.git", - "sha256": "c8bd8748e38e568c7de0fa1f455ffcffe7576ce316375a1b056df63d7d9ab5bb", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "camcorder.el", + "sha256": "1fxmk9ykvxkd0ldmldqnwdn5grzzzigla7zsw1yqqmlfwd48ggf8", "rev": "bfef46deae617825089fb06591e5c25c82a2d4be" }, "recipe": { "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1012", "deps": [ @@ -6831,28 +7256,30 @@ }, "make-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/make-color.el.git", - "sha256": "5b380e1ab864c63a9ed97a5ba12233d53a304ae551633b6bfedd30c4f9d41879", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "make-color.el", + "sha256": "1ky3scyjb69wi76xg6a8qx4ja6lr6mk530bv5gmhj7fxbq8b3x5c", "rev": "a1b34e95ccd3ebee4fba1489ab613d0b3078026d" }, "recipe": { "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140625.650", "deps": [] }, "nand2tetris": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CestDiego/nand2tetris.el.git", - "sha256": "e777f63618e3d84ec2c4be0a52dd8c7f46b736d0535fc3e75c00a7ffef7c7f00", + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "nand2tetris.el", + "sha256": "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7", "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" }, "recipe": { "sha256": "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1651", "deps": [ @@ -6861,28 +7288,30 @@ }, "german-holidays": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rudolfochrist/german-holidays.git", - "sha256": "019c482e07a935dd513147977c37e43671f921d8c30439027d949bb634e1840c", + "tag": "fetchFromGitHub", + "owner": "rudolfochrist", + "repo": "german-holidays", + "sha256": "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701", "rev": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc" }, "recipe": { "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151102.943", "deps": [] }, "traad": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/traad.git", - "sha256": "c088c0534c81446b4f1632d74f784cbfa2d07d8bd2782121c30323dd401db3bf", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "traad", + "sha256": "06pvsa6m8h9j6mrq10dm6zj5jqibcm1xf3s1wkh7l6sr6hziz8rz", "rev": "022cda646ec9b7102c73899e6305bfdfc0402ba5" }, "recipe": { "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.815", "deps": [ @@ -6895,42 +7324,45 @@ }, "save-sexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/save-sexp.git", - "sha256": "2c310c995f4b2745709269ba9f14eb75fbd18b37c6e320907518639b70b3ba49", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "save-sexp", + "sha256": "0jdsndq9nqqqfn821qy66y5x3yvmxca9zfk9j9q4a9sbbychqc9c", "rev": "31bd739269e14df70f9519417370ba69a53e540d" }, "recipe": { "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150731.1046", "deps": [] }, "fringe-helper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/fringe-helper.el.git", - "sha256": "dce636d4d268c687b14ef4c2804ea02a7875f9e88bf352e7bf5a69434cebc431", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "fringe-helper.el", + "sha256": "0ra9rc53l1gvkqank8apasl3r7wz2yfjrcvmfk3wpxhh24ppxv9d", "rev": "ef4a9c023bae18ec1ddd7265f1f2d6d2e775efdd" }, "recipe": { "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140620.1609", "deps": [] }, "bufshow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pjones/bufshow.git", - "sha256": "4615a76ead605c28cc318591774a883d966ec8a0585faf5e2112f9237e43ce30", + "tag": "fetchFromGitHub", + "owner": "pjones", + "repo": "bufshow", + "sha256": "1plh77xzpbhgmjdagm5rhqx6nkhc0g39ir0b6s5yh003wmx6r1hh", "rev": "afabb87e07da7f035ca0ca85ed95e3936ea64547" }, "recipe": { "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130711.1239", "deps": [ @@ -6939,14 +7371,15 @@ }, "esh-help": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tom-tan/esh-help.git", - "sha256": "baa65aafb646faf9e17a3afcfc2e0d3277e59497524e9385ebb0f7614e6fdbf9", + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "esh-help", + "sha256": "1yfvdx763xxhxf2r6kjjjyafaxrj1lpgrz1sgbhzkyj6nspmm9ms", "rev": "3dc15f2f6086d4e4da977468fda67229a859c927" }, "recipe": { "sha256": "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140107.422", "deps": [ @@ -6961,21 +7394,22 @@ }, "recipe": { "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121115.443", "deps": [] }, "ebal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/ebal.git", - "sha256": "f7a6ff648e81738a010180e1889a741966c487e9f072db9101dd57336f923590", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "ebal", + "sha256": "0l2nhf6m6m01y2gw1fkn3zsjvmm1w02qj9zp4nmhgdl0qkllhdz5", "rev": "ef0a288d9b6e557532d772c146ff02aa82771f13" }, "recipe": { "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.15", "deps": [ @@ -6986,14 +7420,15 @@ }, "coffee-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/defunkt/coffee-mode.git", - "sha256": "e8ab4c5468b7eedbc5953ca77879e830e96187630df33ad0ec9a7079ef0e2b9f", + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "coffee-mode", + "sha256": "1axp9hixp4vgaqjd3ii9xwb32jhb964zclmpg3zpsl4rp8b9bdz5", "rev": "d19075264dc1f662e2282ca42ce70be0eae61b2a" }, "recipe": { "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.828", "deps": [ @@ -7009,21 +7444,22 @@ }, "recipe": { "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110722.1051", "deps": [] }, "smartparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/smartparens.git", - "sha256": "21916a0e68a041d94bcacdfd89fca55bb2bfe0ce4638f925626671585cc7172d", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "smartparens", + "sha256": "1zs6jxl7a9hwap78w81s2h62jicikn1lyj0yxiiz0gll428p3rnj", "rev": "951c2e2b78901232da1feaf8f402a699d6193bf3" }, "recipe": { "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1707", "deps": [ @@ -7033,14 +7469,15 @@ }, "grunt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gempesaw/grunt.el.git", - "sha256": "5b0bd28ab647d681a7700dd11568ab31c18e00eda41b6490fb579dab2762d3da", + "tag": "fetchFromGitHub", + "owner": "gempesaw", + "repo": "grunt.el", + "sha256": "1js849s8b9x0n6ak2qwv90lk6zr71mgkk9f0xccdhikz4c8vxk0r", "rev": "42bcab2990a27e0f8cf22eee87089c95eb9fae29" }, "recipe": { "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.1029", "deps": [ @@ -7051,30 +7488,32 @@ }, "buffer-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/buffer-utils.git", - "sha256": "1083e13f138fbf62796f951b2e58816669b7670cacbb6becd9724cb05d34bf90", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "buffer-utils", + "sha256": "1mnf0dgr6g58k0jyia7985jsinrla04vm5sjl2iajwphbhadjk8p", "rev": "685b13457e3a2085b7584e41365d2aa0779a1b6f" }, "recipe": { "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140512.900", "deps": [] }, "elscreen-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/robario/elscreen-persist.git", - "sha256": "ef941e8dde02a163bd48405d4533e5450b53fc149cd8ec576abfeee923183165", - "rev": "9d8c9a2f0fc39e064c51b703d84160c06629477d" + "tag": "fetchFromGitHub", + "owner": "robario", + "repo": "elscreen-persist", + "sha256": "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf", + "rev": "652b4c738f92c518ead69343ebfcf66bc2a0254c" }, "recipe": { "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20141220.238", + "version": "20151218.126", "deps": [ "elscreen", "revive" @@ -7082,28 +7521,30 @@ }, "scheme-here": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/judevc/scheme-here.git", - "sha256": "396663288624bbbe8795f0fd6aea37969df025d366634ced56482e9be1cd9b25", + "tag": "fetchFromGitHub", + "owner": "judevc", + "repo": "scheme-here", + "sha256": "09cvrphrnbj8avnlqqv6scjz17cn6zm6mzghjn3vxfr4hql66rir", "rev": "430ba017cc530865218de23a8f7985095a58343f" }, "recipe": { "sha256": "137qqfnla3hjm6qcnzpsgrw173px0k5dwq9apns5cdryxx3ahcvv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141028.218", "deps": [] }, "dictcc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cqql/dictcc.el.git", - "sha256": "7716c0814fb39839a2f2e79c7c2fbbd5cbdb49c12a68cbfd088dddd0a96fcc81", + "tag": "fetchFromGitHub", + "owner": "cqql", + "repo": "dictcc.el", + "sha256": "0jv4r9l8n7k2m85f4nnj6igsav4hmaq41gi1mp662mgmgfpaf0wl", "rev": "5cc898de535536380e1031b67421bd2a00cdd689" }, "recipe": { "sha256": "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150731.455", "deps": [ @@ -7116,14 +7557,15 @@ }, "ido-clever-match": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Bogdanp/ido-clever-match.git", - "sha256": "7bd351520b6206497f163b7075e8cb9a79e1af356c30fb0aa00d1c269ce8f455", + "tag": "fetchFromGitHub", + "owner": "Bogdanp", + "repo": "ido-clever-match", + "sha256": "14nmldahr0pj2x4vkzpnpx0bsxafmiihgjylk5j5linqvy8q6wk6", "rev": "f173473e99c8b0756f12e4cc8f67e68fa59eadd3" }, "recipe": { "sha256": "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151011.1226", "deps": [ @@ -7133,14 +7575,15 @@ }, "pyenv-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/pyenv-mode.git", - "sha256": "a9b2dd824e7f96be72c49dc944caa76dc380e6216a8a855ad1b5d1a9350829a5", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "pyenv-mode", + "sha256": "0017xk95293sc37127hg9bbbh5glq34sdc1b6bx6ykzny6g49fd3", "rev": "93ddeb2c0fabc224496cdf5ff688243a208376c4" }, "recipe": { "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.441", "deps": [ @@ -7149,28 +7592,30 @@ }, "iplayer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/csrhodes/iplayer-el.git", - "sha256": "660f0f7dc828a941c7ae9e3db4f3fee797512931fe281d1078be7d4464b46d10", + "tag": "fetchFromGitHub", + "owner": "csrhodes", + "repo": "iplayer-el", + "sha256": "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6", "rev": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a" }, "recipe": { "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.455", "deps": [] }, "ruby-tools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ruby-tools.git", - "sha256": "a344c12bda2fd00215db7e585e92c0f07adb0ab82f852c819108a0cf18403701", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ruby-tools", + "sha256": "0jd9acycpbdd90hallrl0k5055rypp502qv4c6i286p7f9is4kvq", "rev": "6b97066b58a4f82eb2ecea6434a0a7e981aa4c18" }, "recipe": { "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.1015", "deps": [] @@ -7183,35 +7628,37 @@ }, "recipe": { "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.720", "deps": [] }, "hardcore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/hardcore-mode.el.git", - "sha256": "cb3182e9524931ce6d7d8eb799a62b2e99aa3c93c6fb22c67787f57707409388", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "hardcore-mode.el", + "sha256": "124k803pgxc7fz325yy6jcyam69f5fk9kdwfgmnwwca9ablq4cfb", "rev": "b1dda19692b4a7a58a689e81784a9b35be39e70d" }, "recipe": { "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.101", "deps": [] }, "e2wm-R": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/e2wm-R.el.git", - "sha256": "2e86a886f2927ab3e580fec654b90b067f80bbd4ffac6083161fc43ade450a46", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "e2wm-R.el", + "sha256": "0xjgdd6xgxy1rfiah95w7wzjriqqf4hi87lma8v4f59g312zrhwy", "rev": "4bcf8c38d4ec38bb575d553a5d4a247d1777bf7b" }, "recipe": { "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130506.8", "deps": [ @@ -7222,84 +7669,90 @@ }, "bibtex-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/plantarum/bibtex-utils.git", - "sha256": "ed26628ba13c8a66e0e5b02509017e07d95094f67b4c4d9b50708f2e808af368", + "tag": "fetchFromGitHub", + "owner": "plantarum", + "repo": "bibtex-utils", + "sha256": "1qf45s53vcbd90v2d2brynv3xmp8sy9w9jp611cf0dzfl1k7x8p8", "rev": "1695db9f4f9198bb27f219bd4da7d34a9ae58069" }, "recipe": { "sha256": "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150924.847", "deps": [] }, "fold-this": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/fold-this.el.git", - "sha256": "162a940af9e144455901322628779754c14a6094427ae8912cd41a73fd5d6ab1", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "fold-this.el", + "sha256": "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn", "rev": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a" }, "recipe": { "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150601.542", "deps": [] }, "mowedline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/retroj/mowedline.git", - "sha256": "5386a121a36f481db8feded92b798a26a0542e7781afebe60fd3d712e8e53189", + "tag": "fetchFromGitHub", + "owner": "retroj", + "repo": "mowedline", + "sha256": "179mc70x3dvj0cz6yyhs00ndh0xvk71gmiscln9y0f1ngxr5h338", "rev": "058d5fad71c9895ab36cf83b3f0a0b722054cb19" }, "recipe": { "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150601.1209", "deps": [] }, "keychain-environment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/keychain-environment.git", - "sha256": "9125bf86edaa9a10537c4918cd3126a1ebed6e3cca99df41658abe8797dfa776", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "keychain-environment", + "sha256": "0xm7vybqgglacm0xz6fa7ipfvsx14qqws629gi9i16maxn3by9ci", "rev": "c4c87cf3b3f13c1d73efe8fccf5f2c68ebe04abe" }, "recipe": { "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150416.1458", "deps": [] }, "parent-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/parent-mode.git", - "sha256": "d15abdfd5808c0979276b95163f128917f2f4e2f34dd4c31d7a667efe961ab44", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "parent-mode", + "sha256": "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni", "rev": "db692cf08deff2f0e973e6e86e26662b44813d1b" }, "recipe": { "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150824.1800", "deps": [] }, "frame-tag": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/liangzan/frame-tag.el.git", - "sha256": "14a3724395839fede34a2f2d61c3a55c4ea619b316c91a735b419e0bc8348370", + "tag": "fetchFromGitHub", + "owner": "liangzan", + "repo": "frame-tag.el", + "sha256": "1vvkdgj8warl40kqmd0408q46dxy9qp2sclq4q92b6falry9qy30", "rev": "7018490dbc3c39f2c959e38c448001d1864bfa17" }, "recipe": { "sha256": "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.118", "deps": [ @@ -7308,14 +7761,15 @@ }, "midje-test-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bpoweski/midje-test-mode.git", - "sha256": "51b5717bc2e30ec904ec4b28b5fb4655d9b67bc250f85e271c1e6d5bd8ed9537", + "tag": "fetchFromGitHub", + "owner": "bpoweski", + "repo": "midje-test-mode", + "sha256": "0f3iq4ghi4ig2by1smfciavr2f0lx6vhvajykxdfs0afn006w4cs", "rev": "46fc081865d48f30b950f21a597eadd59a802fc9" }, "recipe": { "sha256": "0i5j9bnrncxar8hpy3d0566d0y5s4ywakskf27d3kxfyrwqi4l4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131208.1114", "deps": [ @@ -7325,14 +7779,15 @@ }, "git-gutter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-git-gutter.git", - "sha256": "5106367b34f9cc9f9f11aea7aa209570cdbed4fce1b44baedca0be76c70bccf3", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-gutter", + "sha256": "1721h4i185wj9nxkb19cnbwk5fwsajaqr54qq9xb669mm4pjn3ra", "rev": "febe69d909beb407d07dfc1b273ae7b7719fdd7c" }, "recipe": { "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.203", "deps": [ @@ -7342,16 +7797,17 @@ }, "flycheck-flow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lbolla/emacs-flycheck-flow.git", - "sha256": "45e03e5c12ee5dd2a423e59919bab194439f2c297b0f939d4363b7a22a6d363b", - "rev": "9629a5dc9a0662ea513783105fc884855379b89c" + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-flycheck-flow", + "sha256": "0lk7da7axn9fm0kzlzx10ir014rsdsycffi8jcy4biqllw6yi4dx", + "rev": "6a6307a3998531279feab742321192cfc0c6e90a" }, "recipe": { "sha256": "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151027.1716", + "version": "20151218.604", "deps": [ "flycheck" ] @@ -7364,21 +7820,22 @@ }, "recipe": { "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091012.1230", "deps": [] }, "stylus-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianc/jade-mode.git", - "sha256": "a1ea208906058e467379043b34324400ace1077f69b3bc46d75b2a6698f527d2", + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506", "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" }, "recipe": { "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150313.1012", "deps": [ @@ -7387,28 +7844,30 @@ }, "peg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ellerh/peg.el.git", - "sha256": "7660e0ed59cbe62385b850ecdc0a2b0c5bad7466d8e3f7d32615d845203b5f4e", + "tag": "fetchFromGitHub", + "owner": "ellerh", + "repo": "peg.el", + "sha256": "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n", "rev": "081efeca91d790c7fbc90871ac22c40935f4833b" }, "recipe": { "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150708.141", "deps": [] }, "cask": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cask/cask.git", - "sha256": "f88f09cbeeb57689c519e6a29258db64214035a7bf7b2d023f9d0768d57337f8", + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "cask", + "sha256": "0zky8d9kdrcfh4vh8v6wbzs80nixr1xnnyjgg1zdingyklrxl79y", "rev": "acd19283ff2da1c37c30015bcd83b012b33cf3c5" }, "recipe": { "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.728", "deps": [ @@ -7423,28 +7882,30 @@ }, "pcmpl-homebrew": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaihaosw/pcmpl-homebrew.git", - "sha256": "244aeb55b9b18bcfb9da690426a15ebb87d18e0a5216dd3e7f1fb6024091259e", + "tag": "fetchFromGitHub", + "owner": "kaihaosw", + "repo": "pcmpl-homebrew", + "sha256": "17i5j5005dhzgwzds5jj1a7d31xvbshjc139vawwz2xip5aynji4", "rev": "a2b9026a1b3c8206d0eca90c491c0397fb275f94" }, "recipe": { "sha256": "1gckzcwpg4am1ryjy08aic98mbafb64wkfmnm98d64kiwbpaacly", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150506.2052", "deps": [] }, "ace-jump-helm-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/ace-jump-helm-line.git", - "sha256": "538cd180f81e168cd63803b1a5a64332af2f91a4ae9f8e64a237cf2092b7d079", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-jump-helm-line", + "sha256": "0yfhny921krpl9j8x7xflj8jzbrj8fkabc8373b8q5hyz20d332k", "rev": "8400dbdd93d0442493f74f4030b09bbfac2d5700" }, "recipe": { "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.1300", "deps": [ @@ -7454,56 +7915,60 @@ }, "keyword-search": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/keyword-search/keyword-search.git", - "sha256": "18bf0e5982aa8b4cf888e25dca8c56286cb9c71d4bf994a9f766b9982e9d847f", + "tag": "fetchFromGitHub", + "owner": "keyword-search", + "repo": "keyword-search", + "sha256": "0zw4klp9ifb6yylr9yab3p3vjv18as6clpg2i3w4r2xah9chxgqq", "rev": "1a01e3d5a43e48701cfab0332876284f5d3a1bba" }, "recipe": { "sha256": "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150911.432", "deps": [] }, "puml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skuro/puml-mode.git", - "sha256": "7f6fbbef5db6d7aa9af8133f5b9543415634f35b43f5edcc06e8ceed5cb98295", + "tag": "fetchFromGitHub", + "owner": "skuro", + "repo": "puml-mode", + "sha256": "15c2p5ffvkp80v6fvxa3bgrk8mj18famngqkz2dammxnbppvnvvz", "rev": "9d3b5e326d1e68f87711c2ccb0920e2f5db5550b" }, "recipe": { "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.1023", "deps": [] }, "gnus-summary-ext": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/gnus-summary-ext.git", - "sha256": "cbec3a1111d2fc5e2b6f64c9326655f54e81593a1fd2d08fe7bc6eae0b1cebb7", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "gnus-summary-ext", + "sha256": "1dzb3h5swvmwwy7x1lhz79cq2kpmamk35jb4dwmmxz6j248kmv6b", "rev": "6be01a82819dc73b0650d726e17d0adb44b72c2b" }, "recipe": { "sha256": "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150119.2033", "deps": [] }, "bbdb-ext": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/bbdb-ext.git", - "sha256": "24d3b04f67b706057bde1e0afae6fdc69764c209f7598907b45732ec57e1cd25", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "bbdb-ext", + "sha256": "09fdw5byqcjpnh3qjngp171695y6zpkgl2hyvrxha1mpcx7v1lr4", "rev": "ae5ad8f0de8c1f11739310909d963b8fc6c368dc" }, "recipe": { "sha256": "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130513.1352", "deps": [ @@ -7512,14 +7977,15 @@ }, "ac-html-csswatcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/ac-html-csswatcher.git", - "sha256": "39b3c8008b670ff4c91fe9cc60c05d66d69cf342b7ee3b8e933217f885e18b6b", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "ac-html-csswatcher", + "sha256": "0swbw62zh5rjjf73pvmp8brrrmk6bp061k793z4z83v7ic0cicrr", "rev": "b0f3e7e1a3fe49e88b6eb6432377232fc715f221" }, "recipe": { "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1513", "deps": [ @@ -7534,35 +8000,37 @@ }, "recipe": { "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141021.1338", "deps": [] }, "gmail2bbdb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/gmail2bbdb.git", - "sha256": "7f687cb5d31abe5ab4df19c8229dc51cbe8d11b2dd409e5c2007522ca3551006", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "gmail2bbdb", + "sha256": "01hhanijqlh741f9wh6xn88qvghwqnfj5j0rvys5mghssfspqs3z", "rev": "f0e23a1262bb683285b381b1d142478ba345af1a" }, "recipe": { "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150909.2039", "deps": [] }, "wolfram-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/wolfram-mode.git", - "sha256": "7c446844b6243cb2cde60496d8aa84ed2e7c8cfa0c40a1f93da8a6f82403caf6", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "wolfram-mode", + "sha256": "1xna0cjgi9m87pws2h0cza67qbpdhjmdi5h4wv6v4g14nr26hi3w", "rev": "72cb36975816a9a7b677269e19b9ff431f597ed7" }, "recipe": { "sha256": "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140118.957", "deps": [ @@ -7571,28 +8039,30 @@ }, "flymake-easy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-easy.git", - "sha256": "44dca289ebfead0259c991dbc1b29782441041d771c43885771c9f0f86a48d22", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-easy", + "sha256": "1mylcsklnv3q27q1gvf7wrila39rmxab1ypmvjh5p56d91y6pszc", "rev": "de41ea49503f71f997e5c359a2ad08df696c0147" }, "recipe": { "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140818.255", "deps": [] }, "sane-term": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/adamrt/sane-term.git", - "sha256": "7ce0efe6aa0daa7fd76b954552b5f24b134babdda0b257a393f6cbbf8435cbe4", + "tag": "fetchFromGitHub", + "owner": "adamrt", + "repo": "sane-term", + "sha256": "1r6b6n2bzjznjfimgcm0vnmln4sbyasm4icmdgbpzahdmbkfzq3w", "rev": "1d0c1410050cb50034c9e065dfde3e7ec5bc31b7" }, "recipe": { "sha256": "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150917.1802", "deps": [ @@ -7601,14 +8071,15 @@ }, "org-repo-todo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/org-repo-todo.git", - "sha256": "29df65e0cbc2df34850fac68fd08af6c4cbba79d758093066d25d1cdbf44880d", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "org-repo-todo", + "sha256": "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9", "rev": "904a26089d87db59a40421d6f857b189e70dfbe3" }, "recipe": { "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141204.1541", "deps": [] @@ -7622,35 +8093,37 @@ }, "recipe": { "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.2103", "deps": [] }, "headlong": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/headlong.git", - "sha256": "387b5b253c75956dc08cb34cdc39e89bb6f6b7de05a14ce4caf73ba2cc35181a", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "headlong", + "sha256": "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq", "rev": "f6830f87f236eee88263cb6976125f72422abe72" }, "recipe": { "sha256": "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150417.1026", "deps": [] }, "robe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgutov/robe.git", - "sha256": "e539d39b77031e8ee46a51c4bcf47f64354a55c1909e13b5aa483de91e806ffd", + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "robe", + "sha256": "1fckb18x9ikm6dlwwdfg9q4wyjjwdqy3r1w2ic01xb0dbyls41gw", "rev": "c5a0ae6f68c699ec3cdbb73a3e01e76f62d75f48" }, "recipe": { "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1658", "deps": [ @@ -7659,14 +8132,15 @@ }, "espresso-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgutov/espresso-theme.git", - "sha256": "d85f5b6f962c7a8bb4fcf8e56b76bae34c1ca7281aab1e974fd801ff1a912747", + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "espresso-theme", + "sha256": "0ir7j4dgy0fq9ybixaqs52kiqk73p9v6prgqzjs8nyicjrpmnpyq", "rev": "c3a524e873f33923fe511791197a66dea5156687" }, "recipe": { "sha256": "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130301.148", "deps": [] @@ -7680,7 +8154,7 @@ }, "recipe": { "sha256": "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.1700", "deps": [ @@ -7690,28 +8164,30 @@ }, "git-auto-commit-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ryuslash/git-auto-commit-mode.git", - "sha256": "44c1a10ad5486a133e9a53d6e75367ef4b8075b14b320411e633ef86cce1b016", + "tag": "fetchFromGitHub", + "owner": "ryuslash", + "repo": "git-auto-commit-mode", + "sha256": "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh", "rev": "075e5f9ded66c2035581a7b216896556cc586814" }, "recipe": { "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150404.951", "deps": [] }, "company-go": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nsf/gocode.git", - "sha256": "74ecbb430ff799ee9f47b524b141f582f5fcf810e746687b8b39742f1ade2d6f", + "tag": "fetchFromGitHub", + "owner": "nsf", + "repo": "gocode", + "sha256": "0p3abkqllgy1b5l08wgxjywvvbcjiyjdf00azh1r1nyc81m4krni", "rev": "2b99fc4d372b017483b7596c4577bf5f15479772" }, "recipe": { "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1224", "deps": [ @@ -7721,14 +8197,15 @@ }, "light-soap-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/light-soap-theme.git", - "sha256": "28ea7de39931fb9fb5a381d9b5332b8cac24de34a24d371ac9d8bc2a3e9ab111", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "light-soap-theme", + "sha256": "04dik8z2mg6qr4d3fkd26kg29b4c5crvbnc1lfsrzyrik7ipvsi8", "rev": "76a787bd40c6b567ae68ced7f5d9f9f10725e00d" }, "recipe": { "sha256": "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150607.945", "deps": [ @@ -7737,28 +8214,30 @@ }, "google-translate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atykhonov/google-translate.git", - "sha256": "62a51789cbbd8eb1bc9ce4949a8de7a9cd7c3aba844d84ac64ac9367a3cf5ddd", + "tag": "fetchFromGitHub", + "owner": "atykhonov", + "repo": "google-translate", + "sha256": "0j2x7xvc556bq63c85j4dn8aggz2xfilx4x7hf99p7w6px0pzp29", "rev": "e3f3981895d829a05f6f92d4db065c4b46076ff7" }, "recipe": { "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.1420", "deps": [] }, "kfg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/kfg.git", - "sha256": "acc80331b30d70adfadef315bde21c22a672ee05b17c35c9227a72ff7b190877", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "kfg", + "sha256": "0xq835xzywks4b4kaz5i0pp759i23kibs5gkvvxasw0dncqh7j5c", "rev": "d2c9dd26618fb2f7bf1e7b6eae193b1cceba3c97" }, "recipe": { "sha256": "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140909.38", "deps": [ @@ -7773,21 +8252,22 @@ }, "recipe": { "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140807.1550", "deps": [] }, "puppet-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/puppet-mode.git", - "sha256": "f87858f13c64aa3c525610daea0d017b042ef3f518976f9a0822fb0001eea76f", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "puppet-mode", + "sha256": "11mkf9gvjz63szdvhwlqnd6j2r9ij2fh8l6zkf7hl2zlwyyivcmp", "rev": "268ec790603a4121f62822ca6c26e9038a1b0375" }, "recipe": { "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150730.1408", "deps": [ @@ -7797,42 +8277,45 @@ }, "region-state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/region-state.el.git", - "sha256": "2e3c23e8cd86e52bbcfa9c619f9ac555088e166a4959dfbece7f779c4307503f", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "region-state.el", + "sha256": "0gsh0x1rqxvzrszdyna9d8b8w22mqnd9yqcwzay2prc6rpl26g1f", "rev": "07ffb7d9ada2fcd204f3447f078c265d25f36f60" }, "recipe": { "sha256": "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.438", "deps": [] }, "heroku-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jonathanchu/heroku-theme.git", - "sha256": "4d469acc927b9f5cd6e1ba2ee259c0471dd6a5de09950ce2b402240291598839", + "tag": "fetchFromGitHub", + "owner": "jonathanchu", + "repo": "heroku-theme", + "sha256": "15hk0v6ck076mahsz4spq75jcnv587fx4d3w50c7bdh423fl0xvx", "rev": "8083643fe92ec3a1c3eb82f1b8dc2236c9c9691d" }, "recipe": { "sha256": "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150522.2119", "deps": [] }, "commify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ddoherty03/commify.git", - "sha256": "22e8330f721e34492ed79e83d5bce5a85b3cdef99693753b02250d775af269c4", + "tag": "fetchFromGitHub", + "owner": "ddoherty03", + "repo": "commify", + "sha256": "04bma9sdn7h8fjz62wlcwayzhr7lvzhidh48wc5rk195zlbgagwa", "rev": "921467f666c05ccec9cf3bc0a8168eade20bcb6a" }, "recipe": { "sha256": "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.338", "deps": [ @@ -7841,56 +8324,60 @@ }, "fillcode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/snarfed/fillcode.git", - "sha256": "87f01c76f0572de76081368fdfcdf42f63f7994527d1fc7d7bd8b4ca56af3cf5", + "tag": "fetchFromGitHub", + "owner": "snarfed", + "repo": "fillcode", + "sha256": "1x9wmxbcmd6qgdyzrl978nczfqrgyk6xz3rnh5hffbapy1v1rw47", "rev": "ae5f6c6de81a7681c8f883e7fce36fd0f2b3c1e8" }, "recipe": { "sha256": "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150812.1141", "deps": [] }, "gs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/emacs-grads.git", - "sha256": "cf67b5c75559f52ea0168ad3d6fdcc2be449ea50cd33de0e75f8a8314eb7b64c", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "emacs-grads", + "sha256": "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31", "rev": "1a13051db21b999c7682a015b33a03096ff9d891" }, "recipe": { "sha256": "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.406", "deps": [] }, "mip-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gaudecker/mip-mode.git", - "sha256": "cc4e02c5d93ca9fb3f9ecef74f0a182362423fa13ae2b7fb00b68104488c698a", + "tag": "fetchFromGitHub", + "owner": "gaudecker", + "repo": "mip-mode", + "sha256": "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc", "rev": "7c88c383b4c7ed0a4c1dc397735f365c1fcb461c" }, "recipe": { "sha256": "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.17", "deps": [] }, "marmalade-client": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-marmalade-upload.git", - "sha256": "99ae633075f61392a8c6d893b3ba26997edb2ef2f79022e7afc545671308f304", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-marmalade-upload", + "sha256": "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr", "rev": "f315dea57e4fbebd9ee0668c0bafd4c45c7b754a" }, "recipe": { "sha256": "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141231.1407", "deps": [ @@ -7901,14 +8388,15 @@ }, "live-code-talks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/live-code-talks.git", - "sha256": "a231172de5fa098b4b1fdce86491fee9579ec1a8b5ff7e522fa7b4e3b7165dc9", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "live-code-talks", + "sha256": "1j0qa96vlsqybhp0082a466qb1hd2b0621306brl9pfl5srf5jsj", "rev": "fece58108939a53104f88d348298c9e122f25b75" }, "recipe": { "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150115.1623", "deps": [ @@ -7919,28 +8407,30 @@ }, "smooth-scroll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k-talo/smooth-scroll.el.git", - "sha256": "668ccfdcd9b25ba6ea15b3b4e0c25bb76aad802dd73fb9df6290ddf52ca93887", + "tag": "fetchFromGitHub", + "owner": "k-talo", + "repo": "smooth-scroll.el", + "sha256": "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk", "rev": "02320f28abb5cae28b3a18f6b9ce93129bdbfc45" }, "recipe": { "sha256": "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130321.2314", "deps": [] }, "helm-c-moccur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/helm-c-moccur.el.git", - "sha256": "86b08a004db181457c67ed38b26f770496105dc2c8e063420fe22966d5d234ea", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "helm-c-moccur.el", + "sha256": "1silsbancag21x167q68q9fi15h4fxpv4f7dcxy4b0di9l08mc46", "rev": "a0f70c8bc750b1e0a5f417a70c9ca192eb7a1e83" }, "recipe": { "sha256": "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150213.2142", "deps": [ @@ -7950,14 +8440,15 @@ }, "unicode-fonts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-fonts.git", - "sha256": "bb7c92bbcc216a5c9556adfcfeecd87e43e91eecce2d68d4bf76eefca41da6bc", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-fonts", + "sha256": "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk", "rev": "a36597d83e0248bd0e6b2c1d5fb95bff72add527" }, "recipe": { "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150826.1732", "deps": [ @@ -7970,28 +8461,30 @@ }, "eww-lnum": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/eww-lnum.git", - "sha256": "40e8319d2d40dc4754d452420f2fe5dba0df02fa572f36060369289e4f70dfc4", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "eww-lnum", + "sha256": "1i6zf17rwa390c33cbspz81dz86vwlphyhjjsia4gp205nfk3s20", "rev": "4b0ecec769919ecb05ca4fb15ec51911ba589929" }, "recipe": { "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150102.912", "deps": [] }, "mbe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ijp/mbe.el.git", - "sha256": "665d218cb926450c6b4ccb8c34c34883d0f5f2628042dc1dca5f5cfbdaf3dcff", + "tag": "fetchFromGitHub", + "owner": "ijp", + "repo": "mbe.el", + "sha256": "1zywygdgnp2zr8fxqhl0cbrgbl43931k936b9imhqi96p6622pb6", "rev": "bb10aa8f26bb7e9b1d5746934c94edb00402940c" }, "recipe": { "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.534", "deps": [ @@ -8001,14 +8494,15 @@ }, "relative-line-numbers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/relative-line-numbers.git", - "sha256": "0aa8d25c1e14ce6eb731656e34d8e21aa914d3a94bb058c25e796ed18e860ee5", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "relative-line-numbers", + "sha256": "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a", "rev": "64157db08b0c2f5fada3209fc8d3e4b4c7429978" }, "recipe": { "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.1646", "deps": [ @@ -8017,14 +8511,15 @@ }, "electric-case": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/electric-case.git", - "sha256": "28432f21b871128f02544a9b2ad81d6c8aaefbfff00b6826609d649dc2089e68", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "electric-case", + "sha256": "0s4y1319sr4xc0k6h2zhzzxsx2kc3pc2m6saah18y4kip0hjyhr8", "rev": "bac64e772107e3dc721a9819f63b9ebdc28a81f7" }, "recipe": { "sha256": "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150417.612", "deps": [] @@ -8033,26 +8528,27 @@ "fetch": { "tag": "fetchgit", "url": "https://gitlab.com/python-mode-devs/python-mode.git", - "sha256": "73c91e494d616370b0438c0e060b93ced188919a60f59225a56d10209eff5c60", - "rev": "e8372b87b802ec1771dead1505af9ba71fc04b8d" + "sha256": "2c17d1a6cdff6a910fe868c46924cc37e88d776db28b673d23450c77eeab9316", + "rev": "0740af7b7fff37eb0fe74f9221f8eb3b3f09e5b0" }, "recipe": { "sha256": "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151214.426", + "version": "20151218.630", "deps": [] }, "ob-sml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/swannodette/ob-sml.git", - "sha256": "cf7be992aad98b0eacf7bcd3fb1187506b6aaf20e8557955ee91bd8888b2d53f", + "tag": "fetchFromGitHub", + "owner": "swannodette", + "repo": "ob-sml", + "sha256": "0gymna48igcixrapjmg842pnlsshhw8zplxwyyn0x2yrma9fjyyg", "rev": "958165c92b6cff6cada5c85c8ae5887806b8451b" }, "recipe": { "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130829.1343", "deps": [ @@ -8061,14 +8557,15 @@ }, "mu4e-alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iqbalansari/mu4e-alert.git", - "sha256": "2c858859615c1e26c2b00f639fef086cc41fb610fb9430a8a2ae8e5afcee4d58", + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "mu4e-alert", + "sha256": "0n2dxvy5m3mflal3157v22v1zi3c13pryqqgn312c7jwc5cqi19c", "rev": "7ae95b309f8092ae639aeaba1d89c516f61a56c5" }, "recipe": { "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1227", "deps": [ @@ -8079,42 +8576,45 @@ }, "preseed-generic-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/suntong001/preseed-generic-mode.git", - "sha256": "403aab634dd51ab8626c2ef6e8b75074e51c05e13dfdd80f7272102c984dd1b7", + "tag": "fetchFromGitHub", + "owner": "suntong001", + "repo": "preseed-generic-mode", + "sha256": "1dyi9nc2q43jf87xiz9xw42irrbla2vyixifdiibh6nm9misnfj0", "rev": "19bce980d41607bef8af4b1901343abfca0f0855" }, "recipe": { "sha256": "0c0zs07lspwczbcba56fai0rshjzx9zd3jqxgj9nwjf9xlcr8m3j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150119.1441", "deps": [] }, "erc-colorize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisirs/erc-colorize.git", - "sha256": "f0ded255c2d3c8de408a6c05fb6115cd5e1d6cb436d9642c2f2466e9a1516b62", + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "erc-colorize", + "sha256": "0knr45va4xi5dgv7iyzdv93zrw4rapzahj7ryi3ik32jacx2cpl2", "rev": "0fdc12d222f36f352ee17da0d4fcbf77be5bf865" }, "recipe": { "sha256": "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150725.909", "deps": [] }, "django-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myfreeweb/django-mode.git", - "sha256": "09eae94d0931430a983e187f66c52a3d2e27ba27da36d685532af0ae00349956", + "tag": "fetchFromGitHub", + "owner": "myfreeweb", + "repo": "django-mode", + "sha256": "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va", "rev": "3d82a62a7faeb2c124ac4c109e075f581c175508" }, "recipe": { "sha256": "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131229.1011", "deps": [ @@ -8123,14 +8623,15 @@ }, "ham-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/ham-mode.git", - "sha256": "afec221ea694652de7261f11d786f039b64a813ce2ddf553d0eaa2409faa7d34", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "ham-mode", + "sha256": "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g", "rev": "3a141986a21c2aa6eefb428983352abb8b7907d2" }, "recipe": { "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150811.806", "deps": [ @@ -8140,28 +8641,30 @@ }, "toggle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenspider/elisp.git", - "sha256": "36b9fbc06db84522223509ec5732ec87bf5f62ed24520f42a9ca595fb4a03181", + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "elisp", + "sha256": "109il2s5ynfam510yli4xmi5zgw7xhr5gv096li24idqdp0gpf9n", "rev": "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36" }, "recipe": { "sha256": "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.1727", "deps": [] }, "slime-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-slime-theme.git", - "sha256": "5d5ada753309e3df3020aa2a0ce79ee3a3a1d18839c70b9baf5a3fa8eb4d358f", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-slime-theme", + "sha256": "13rm9pmshgssmydhpirri38s38z3kvkhqama40qdzqq96dsxlnjx", "rev": "441288a5791d24e79ada2698888653ef3cf2ac6f" }, "recipe": { "sha256": "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.102", "deps": [ @@ -8176,21 +8679,22 @@ }, "recipe": { "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150228.1213", "deps": [] }, "e2wm-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-direx.git", - "sha256": "2a4aae973518f82e78efb1437f81ebb74d1ff47ba3c18cedd0a4fdc4b2682726", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-direx", + "sha256": "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia", "rev": "f319625b56c44e601af7c17fc6dbb88e5d70ebae" }, "recipe": { "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140815.1813", "deps": [ @@ -8206,7 +8710,7 @@ }, "recipe": { "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1820", "deps": [] @@ -8216,39 +8720,41 @@ "tag": "fetchsvn", "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", - "rev": "53137" + "rev": "53195" }, "recipe": { "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150424.952", "deps": [] }, "rcirc-alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/csantosb/rcirc-alert.git", - "sha256": "e21339e42a4ab171b3b9eb8b443c88fc797e92ac5251ee2e7d620bfdc1cdbe75", + "tag": "fetchFromGitHub", + "owner": "csantosb", + "repo": "rcirc-alert", + "sha256": "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2", "rev": "0adf8ff9c47023fec578f678424be62b0f49057f" }, "recipe": { "sha256": "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141127.447", "deps": [] }, "multi-web-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/multi-web-mode.git", - "sha256": "a8142f518d71a69619d243c33a55d63d0ee2ee504732bac571966f79fb048f58", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "multi-web-mode", + "sha256": "0mc4kkgwnwfk27wwc21nw5ly7qcsl7y5bd8wf2y8r6pxhvwran4n", "rev": "ad1c8d1c870334052d244c7ae3636cb7b9357b7c" }, "recipe": { "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130823.2254", "deps": [] @@ -8262,21 +8768,22 @@ }, "recipe": { "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110911.504", "deps": [] }, "history": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/boyw165/history.git", - "sha256": "e639225dff486cc78fc052fd1ee394a4e670ea0a19b8ca5c616336f2c187c7b9", + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "history", + "sha256": "1dmrg39g0faqqkgrpcbybjbb91vcpkwawxsplckkj92y59zanq3x", "rev": "4bb475513f98ec07db55212a504b6167dae3a646" }, "recipe": { "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150409.1934", "deps": [ @@ -8285,28 +8792,30 @@ }, "auto-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/auto-dictionary-mode.git", - "sha256": "4b643bc3ac02b1c9dbda36bca373fed676143cc16bb281e4597bb792a80ffeba", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "auto-dictionary-mode", + "sha256": "0rfjx0x2an28821shgb4v5djza4kwn5nnrsl2cvh3px4wrvw3izp", "rev": "b364e08009fe0062cf0927d8a0582fad5a12b8e7" }, "recipe": { "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150410.1110", "deps": [] }, "defproject": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kotfic/defproject.git", - "sha256": "cd8ea23540108ca4f993425e8e62b65e111f459ca2e12152cedde1eb09650d0d", + "tag": "fetchFromGitHub", + "owner": "kotfic", + "repo": "defproject", + "sha256": "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr", "rev": "674d48a5e34cb4bba76faa38ee901322ec649086" }, "recipe": { "sha256": "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1619", "deps": [ @@ -8315,28 +8824,30 @@ }, "project-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/project-persist.git", - "sha256": "b2148a6d7095b7ea4e99a1c51362375aec9589cb5582e48197d68c83f9121113", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "project-persist", + "sha256": "1fvjap0bsyw5q92q50wk8c81yv4g8nqb6jdlnarf80glwk50avrs", "rev": "8da45c80b23b1d7499eac11a258fd7382312a304" }, "recipe": { "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150519.1524", "deps": [] }, "popup-kill-ring": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/popup-kill-ring.git", - "sha256": "d646b03da29f1135b616aa52c0fadd7559aa989578dadc1bc015e43d66a5bcfd", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "popup-kill-ring", + "sha256": "1zdwlmk3vr0mq0dxrnkqjncalnbmvpxc0lma2sv3a4czl8yv0inn", "rev": "5773dfadc104a906c088a3ec62e8cdd3e01e57fa" }, "recipe": { "sha256": "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131020.1354", "deps": [ @@ -8346,14 +8857,15 @@ }, "popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/auto-complete/popup-el.git", - "sha256": "8b57b907e7934ff046c9c5080172e08f925ef4c78aac14d28cec70564272d111", + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "popup-el", + "sha256": "18yhvcnp669xrwgxdjm1vrnv7f6lgg1i42vpkxnmj0fy8bzndqf1", "rev": "68b71de41baa22be9c12b13d1efbf619a29ceadc" }, "recipe": { "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.742", "deps": [ @@ -8362,14 +8874,15 @@ }, "evil-commentary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/linktohack/evil-commentary.git", - "sha256": "aa50444330267f7698e00ccd308a39ff7c8b888ea5f7cc75912828531caa3ee2", + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-commentary", + "sha256": "1qiym8f56a18j5swrxx5is48nz7z76531k8cw2c7czr6611l8l5a", "rev": "122880a6721fcf16479f406c78c6e490a25efab0" }, "recipe": { "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.527", "deps": [ @@ -8378,14 +8891,15 @@ }, "mozc-im": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d5884/mozc-im.git", - "sha256": "591880c0bd0d1f6666f60542adeb7101ce4731e33b9ec80f400408de8577450e", + "tag": "fetchFromGitHub", + "owner": "d5884", + "repo": "mozc-im", + "sha256": "03j5fy2xw204807wi7ivwcqlgkh1f7msshh5yrk6c7qdpp08062r", "rev": "eaba71ee15d0822631e2023e2ee244e98782cb2d" }, "recipe": { "sha256": "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150419.649", "deps": [ @@ -8394,14 +8908,15 @@ }, "shut-up": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cask/shut-up.git", - "sha256": "ef307421c393568142ae6c32ed80c386c07468916525d484c6496a89a71c6a2a", + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "shut-up", + "sha256": "00c11s664hwj1l1hw7qshygy3wb6wbd0hn6qqnyq1xr0r87nnhjs", "rev": "a4fd18f37e20ae991c0dbba821b2c8e6f1679c39" }, "recipe": { "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150423.722", "deps": [ @@ -8411,14 +8926,15 @@ }, "orglink": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/orglink.git", - "sha256": "6dfc9bd424a99acc83c3316d07d5367c88f348de967997d9a2569ad16849c38b", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "orglink", + "sha256": "12y395ld36jnlbcrfycnvr4g723w6vahfv9iqf1wr6m94ka9pz3d", "rev": "8ba8c54395cd1818c4d58d5cd24712405f9810e0" }, "recipe": { "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.1206", "deps": [ @@ -8428,14 +8944,15 @@ }, "flymake-shell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-shell.git", - "sha256": "c99eef92e5f5cf76baf48079cac84d4053ecfbbe9b06413d06c8cf70197a613c", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-shell", + "sha256": "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc", "rev": "ec097bd77db5523a04ceb15a128e01689d36fb90" }, "recipe": { "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121104.1300", "deps": [ @@ -8444,56 +8961,60 @@ }, "uimage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lujun9972/uimage.git", - "sha256": "431e5b91fd9aa07f125d181b54a2b8152783b48d44198baf41b350f577b01ba7", + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "uimage", + "sha256": "19qvn1vzal5k86pqn6a4ins869qmp2i586qqbl97z84szn8mn7j3", "rev": "29ca0f4b9f27a8d1649931cc2ce5a3c0eb655413" }, "recipe": { "sha256": "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151012.804", "deps": [] }, "shakespeare-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CodyReichert/shakespeare-mode.git", - "sha256": "2691fe682314de37209aaf8d46ce435ae7bfdfe30f6ca28366ca134ff8a07d6e", + "tag": "fetchFromGitHub", + "owner": "CodyReichert", + "repo": "shakespeare-mode", + "sha256": "0vkxl3w4y4yacs1s4v0gwggvzrss8g74d3dgk8h3gphl4dlgx496", "rev": "4bff63eeac2b7ec1220f17e8bbcddbea4c11cb02" }, "recipe": { "sha256": "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150708.912", "deps": [] }, "gregorio-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cajetanus/gregorio-mode.el.git", - "sha256": "3f6cfa9b7718deb45c9d47c0668b8cd1580f757ea0531af280d23f258cf8f2a5", + "tag": "fetchFromGitHub", + "owner": "cajetanus", + "repo": "gregorio-mode.el", + "sha256": "1670pxgmqflzw5d02mzsmqjf3gp0c4wf25z0crmaamyfmwdz9pag", "rev": "5b618a8d05cc073bd8e6f1e4e56eceb4de60eab3" }, "recipe": { "sha256": "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151026.920", "deps": [] }, "ponylang-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/ponylang-mode.git", - "sha256": "23d754a3355f362c79abbfd21a48ef6738943d65038423eb2237d451fb842d33", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "ponylang-mode", + "sha256": "14rczhgpkm93cada7hqqf31mxx9f34ih43mjq52zkkcbr7smm09d", "rev": "9ee25b542dda6f1b776d3d9b8f34fbfa2ccb8cbc" }, "recipe": { "sha256": "06fy4aiflsynnybbrahfcmg0swxrfnwn48gr8ly3sqfpc037h2f3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.450", "deps": [ @@ -8502,42 +9023,45 @@ }, "e2ansi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/e2ansi.git", - "sha256": "bca48071c75dc14b526a22d37014ee36d22e886329403c17c1cb7dc26f9b2834", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "e2ansi", + "sha256": "0d18kdpw4zfbq4bkqh19cf42xlinxqa71lr2d994phaxqxqq195w", "rev": "bd047d3d6ad02a0679582d5786afe9aee656da90" }, "recipe": { "sha256": "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.1713", "deps": [] }, "sunny-day-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/sunny-day-theme.git", - "sha256": "ac9600e21e9ab8ff2f0c3a4c4372d257a7fef6bb49fbf979a1fc6b2ee5841e56", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "sunny-day-theme", + "sha256": "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc", "rev": "420e0a6eb33fcc9b75c2c9e88ab60a975d782a00" }, "recipe": { "sha256": "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140413.1625", "deps": [] }, "rdf-prefix": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/simenheg/rdf-prefix.git", - "sha256": "12d75b5284119befdfa31f1d9c59f4382a3c40b9959c924f4721a30ee2772565", + "tag": "fetchFromGitHub", + "owner": "simenheg", + "repo": "rdf-prefix", + "sha256": "0r95fzi0x8r18x7r574mp503qaiqyicrq78zlggyz6qihi95pmqj", "rev": "1ab1464172c7563a7dbf1224572e4ffbfc6608e6" }, "recipe": { "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.816", "deps": [] @@ -8550,49 +9074,52 @@ }, "recipe": { "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.659", "deps": [] }, "edit-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/enoson/edit-at-point.el.git", - "sha256": "dcc839e3adfe6454c36d73ebf63ead27994dc49f781ebc7ef0fa9cf1ec6b3c33", + "tag": "fetchFromGitHub", + "owner": "enoson", + "repo": "edit-at-point.el", + "sha256": "0crwdgng377sy1zbq7kqkz24v697mlzgdsvkdp1m8r7ympikkj6w", "rev": "3b800c11685102e1eab62ec71c5fc1589ebb81a7" }, "recipe": { "sha256": "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150716.824", "deps": [] }, "centered-window-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ikame/centered-window-mode.git", - "sha256": "e7e9b7e154326e3ad5ddfe1929c27180cbc404ec684a75a26b4ccc1698675926", + "tag": "fetchFromGitHub", + "owner": "ikame", + "repo": "centered-window-mode", + "sha256": "09jrcyc1dk2cdfi7ajk8xh2c9jw0f712j6gyvpaklvijakhvgsg7", "rev": "3107c8942d06e9fea180d9340828ee58ad5cb2fd" }, "recipe": { "sha256": "0f5qwv4f8gn5nxsqn57bbb3y0w5whjvhv3pls88d5n68lkd1k4si", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140730.447", "deps": [] }, "helm-migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/helm-migemo.git", - "sha256": "3d6ee1888c454a0f05003a6356d649b244755817511f37ff1e9e68595cbef43f", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-migemo", + "sha256": "0gzlprf5js4y3vzkf7si2xc7ai5j97b5cqrs002hyjj5ij4f2vix", "rev": "66c6a19d07c6a385daefd2090d0709d26b608b4e" }, "recipe": { "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.2256", "deps": [ @@ -8604,56 +9131,60 @@ }, "gather": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-gather.git", - "sha256": "7f4b09a451121f34dcf382b12d19d08ce3d337eebe0faca53d8dd788b3ee85a8", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-gather", + "sha256": "0j0dg7nl9kmanayvw0712x5c5x9h48qmqdsyi0pijvgmv8l5slg5", "rev": "50809fbc22d70a1c724c2dd99ac5a1f818ffeb6b" }, "recipe": { "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141230.738", "deps": [] }, "test-simple": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocky/emacs-test-simple.git", - "sha256": "eb64bcb28aedc1e0ecf15775d47195f15d95438a3153411e9a5cf58865d52781", - "rev": "6fd325beabe3dfe72eb9ec3ceb40ee3f43ae8e92" + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-test-simple", + "sha256": "0h2g02r1spj8vbwgvjn3dddyj89j1qcqzdf2kdggvyyisssj81s3", + "rev": "95e58b52ff36ed7c0c50e84dcf5458cb71c380dc" }, "recipe": { "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.2143", "deps": [] }, "auto-dim-other-buffers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mina86/auto-dim-other-buffers.el.git", - "sha256": "e0a9bcaaa6d63503128ded80df0529b32d0b2b40301643363bb4e1c9ea8c959d", + "tag": "fetchFromGitHub", + "owner": "mina86", + "repo": "auto-dim-other-buffers.el", + "sha256": "1j3ygbask2vsrh6ia6y86348lg6vl68gsraryxn25mr0c2b41811", "rev": "8b909cb210a9e4482bcc43858cf8d15da4ecd1d2" }, "recipe": { "sha256": "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140619.1102", "deps": [] }, "projectile-rails": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/asok/projectile-rails.git", - "sha256": "fcbcedf6867e0f4769b1772087bebf4e4ed0b675b3bbebe3e12a24c471e165e9", + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "projectile-rails", + "sha256": "0hh2hwyhdb1k7ba8vy1ys2i8qvf7sxw8a3v24m3b2cmrg3hz3hcb", "rev": "cc1698f6ba4c54b1d19e73ea7fb3276234a285c5" }, "recipe": { "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1145", "deps": [ @@ -8674,21 +9205,22 @@ }, "recipe": { "sha256": "15njmanpj3qb8ic3k4sbrngqnsg85lvlj32dmii3y9bpgvis3k6f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110112.1907", "deps": [] }, "change-inner": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/change-inner.el.git", - "sha256": "3f29d042fe69e9ed7db61e7fd975aaf417bff492f3534b47a34b2abe46c23ad5", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "change-inner.el", + "sha256": "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z", "rev": "52c543a4b9808c0d15b565fcdf646c9779de33e8" }, "recipe": { "sha256": "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150707.1044", "deps": [ @@ -8697,14 +9229,15 @@ }, "flymake-yaml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/flymake-yaml.git", - "sha256": "95de0aaf47d5bbf126774e91d28da445b4f9874c537190568a9a15a4d2a8aa55", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "flymake-yaml", + "sha256": "0mdam39a85csi9b90wak9j3zkd25lj6x54affwkg3fym8yphmplm", "rev": "24cb5b744a1796e554e6dbfc6eeb237d06a00b10" }, "recipe": { "sha256": "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130423.1048", "deps": [ @@ -8713,70 +9246,75 @@ }, "tabulated-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/tabulated-list.el.git", - "sha256": "ef3cf42c91dcd61c0fcfbaf63c052418d50518957a99193d1b94450f3ad4c120", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "tabulated-list.el", + "sha256": "0861shx0yicl3cyik6bsjlc0bm8q4h2krxmsrw7irmnwj4ng8g7g", "rev": "b547d9b728935102d1c418bc0e978c221c37f6ab" }, "recipe": { "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120406.1551", "deps": [] }, "hippie-expand-slime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/hippie-expand-slime.git", - "sha256": "e3633feb83abc2e85f04bb338f2ba53417b88881516e2b0455ba303eea29dd62", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "hippie-expand-slime", + "sha256": "1l76r8hzhaapx76f6spm5jmjbrrm5zf79cpd5024xw3hpj1jbkjp", "rev": "432de36799fffc920e5bff7a4691f3c67236e59c" }, "recipe": { "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130907.332", "deps": [] }, "pgdevenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/pgdevenv-el.git", - "sha256": "92fdf50b6d218383ea5f4ec0450135cb14b6cf2a7b91e30ff0c7b04804232d31", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "pgdevenv-el", + "sha256": "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj", "rev": "7f1d5bc734750aca98cf67a9491cdbd5615fd132" }, "recipe": { "sha256": "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150105.1636", "deps": [] }, "httpcode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rspivak/httpcode.el.git", - "sha256": "c4e6c0422f3fe7dc4fad5f6375c170a4a36c7f090cd37a37873f19da39465f0a", + "tag": "fetchFromGitHub", + "owner": "rspivak", + "repo": "httpcode.el", + "sha256": "02jz8qwxl69zhwvpmlqc15znr8x4f30paqszmm7xrrrz5x1c1rn4", "rev": "a45e735082b09477cd704a99294d336cdbeb12ba" }, "recipe": { "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121001.2245", "deps": [] }, "keyset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HKey/keyset.git", - "sha256": "de2bb5143ac69279e28c16de3f005d1de441e6a16aee82e1a5c4fb0eb4151285", + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "keyset", + "sha256": "1i17hm00ba7kf23cgb15hmxn0dgwmf00a5awqn5p76kfzf1ashpy", "rev": "727661420ce4b2c67c2dc6188d2822c22761904a" }, "recipe": { "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150219.2330", "deps": [ @@ -8786,14 +9324,15 @@ }, "editorconfig-fnmatch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "e7a0756c60b165c328baedf6376574a79198a2086c46666ea42a02f9e307a2cd", - "rev": "44b93337549fa501b404767852a25b7a8b9af02f" + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "0af6r0qn6gy3ww5cf3cvvbwyqpvx5xv08gxkjsj92z9h2x5rfz7f", + "rev": "301d67b26098d048ff7235c0878252e80becc7e0" }, "recipe": { "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1035", "deps": [ @@ -8802,14 +9341,15 @@ }, "plantuml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wildsoul/plantuml-mode.git", - "sha256": "75ed777d60f443ba636462a62ecf2429967a177a8f4f0ddabf7a4f9e5201f543", + "tag": "fetchFromGitHub", + "owner": "wildsoul", + "repo": "plantuml-mode", + "sha256": "0jvs051ncpv7pwx2kr14fm1wqakabwc031xcv7lba0mx7shxzqdg", "rev": "4bc4cdf7974c8b8956b848ef69f1a2b5767597aa" }, "recipe": { "sha256": "0fg313mx9jz92lf9lr5apvma9ixfz02dvyzw1phsgzawi7hai264", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131031.1832", "deps": [ @@ -8818,14 +9358,15 @@ }, "anything-git-files": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarao/anything-git-files-el.git", - "sha256": "59acbcd7d2704b373cb7fc83559e36c55816d3928cb5695060a57320c8b9403e", + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "anything-git-files-el", + "sha256": "0gj0p7420wx5c186kdccjb9icn656sg5b0zwnwy3fjvhsbbvrb2r", "rev": "efeec4f8001e2a95f36a9c31181bb30f7561015c" }, "recipe": { "sha256": "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130609.443", "deps": [ @@ -8840,21 +9381,22 @@ }, "recipe": { "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150519.1147", "deps": [] }, "git-gutter-fringe+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/git-gutter-fringe-plus.git", - "sha256": "d1119bb18b5dd752e22c870ad29218ab4b2b28a752c249e26c96aefb470a52e7", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "git-gutter-fringe-plus", + "sha256": "1rsj193zpblndki4khjjlwl2njxb329d42l75ki55msxifqrn4fi", "rev": "7a2f49d2455a3a872e90e5f7dd4e6b27f1d96cfc" }, "recipe": { "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140729.603", "deps": [ @@ -8864,14 +9406,15 @@ }, "encourage-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/halbtuerke/encourage-mode.el.git", - "sha256": "089aea9dae8addd52182bd2847419965074ab1499853153fb053dba201d1b64c", + "tag": "fetchFromGitHub", + "owner": "halbtuerke", + "repo": "encourage-mode.el", + "sha256": "0k5ns40s5nskn0zialwq96qll1v5k50lfa5xh8hxbpcamsfym6h8", "rev": "99edacf2d94d168d3da0609860dc7253db7c9815" }, "recipe": { "sha256": "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.305", "deps": [ @@ -8880,14 +9423,15 @@ }, "milkode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/emacs-milkode.git", - "sha256": "5711ac50043143a6d889c838cb9bced63d334fd747d22acae49a89aa7b25e6e1", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "emacs-milkode", + "sha256": "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap", "rev": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513" }, "recipe": { "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140927.29", "deps": [] @@ -8900,7 +9444,7 @@ }, "recipe": { "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150509.1607", "deps": [ @@ -8909,14 +9453,15 @@ }, "egg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/byplayer/egg.git", - "sha256": "c8bafd333056af0f212a12dc838f5e41054bcad7aa2d91997b849e3e83ba1064", + "tag": "fetchFromGitHub", + "owner": "byplayer", + "repo": "egg", + "sha256": "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj", "rev": "499894195528203cfcf309228bf7578dd8cd5698" }, "recipe": { "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150208.2015", "deps": [] @@ -8929,35 +9474,37 @@ }, "recipe": { "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.627", "deps": [] }, "quack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/quack.git", - "sha256": "c2f4a8ec29b474cad20905ead77b5c9c465b203da840c4ac8b40c96682cdf360", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "quack", + "sha256": "0q7krn16dja0ifnc8h587lh5nilwbixxgsh5179clx5l57naix62", "rev": "ce00cb151dde121e156c9543949d088d5ddafdbb" }, "recipe": { "sha256": "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130126.1823", "deps": [] }, "jaword": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/jaword.git", - "sha256": "6a3a42614e122ce44f059f084eefa28bf0d1814a97b6f95fd8b439831aef6090", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "jaword", + "sha256": "1430xwd86fdlv1gzkdlp9a0x3w4blbplw24z0m7y8b0j9rhl4fka", "rev": "a96bc63a08f616cc23dcc43d565e1f22a94aa9f3" }, "recipe": { "sha256": "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150325.918", "deps": [ @@ -8966,14 +9513,15 @@ }, "greymatters-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/greymatters-theme.git", - "sha256": "77497e9ec30076369072e6fdaaa82baae3b3f5274d390c5ccea61473534d8091", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "greymatters-theme", + "sha256": "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp", "rev": "a7220a8c6cf18ccae2b76946b6f01188a7c9d5d1" }, "recipe": { "sha256": "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150621.623", "deps": [ @@ -8982,28 +9530,30 @@ }, "ample-zen-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mjwall/ample-zen.git", - "sha256": "4a0b465fa71d47a725a31d8b654c6705b6b51ce6bb8567a61841a5d00a95e9a3", + "tag": "fetchFromGitHub", + "owner": "mjwall", + "repo": "ample-zen", + "sha256": "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa", "rev": "b277bb7abd4b6624e8d59f02474b79af50a007bd" }, "recipe": { "sha256": "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150119.1554", "deps": [] }, "at": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/at-el.git", - "sha256": "180955917cd8db65f58a42b6deff9e9b9e25f1cc8b3fb5dd0e4fd099de9c0438", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "at-el", + "sha256": "0rnnvr8x1czphbinby2z2dga7ikwgd13d7zhgmp3ggamzyaz6nf1", "rev": "114dfe3761bf0c9dd89f794106c3a6a436ed06cc" }, "recipe": { "sha256": "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140707.720", "deps": [ @@ -9013,28 +9563,30 @@ }, "osx-clipboard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joddie/osx-clipboard-mode.git", - "sha256": "bba42f6aa9ac0c69bda11db78ee369d3e29b6daa68e85f609e9343d1bd0bd6de", + "tag": "fetchFromGitHub", + "owner": "joddie", + "repo": "osx-clipboard-mode", + "sha256": "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4", "rev": "e46dd31327a3f92f77b013b4c9b1e5fdd0e5c73d" }, "recipe": { "sha256": "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141012.217", "deps": [] }, "ac-c-headers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/ac-c-headers.git", - "sha256": "1e483885770f4695df195f6fd7f90d4eb364133a68326bb9045bbe724b90d9fc", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "ac-c-headers", + "sha256": "1z6rj15p5gjv0jwnnck8789n9csf1pwxfvsz37graihgfy2khj0y", "rev": "de13a1d35b311e6601556d8ef163de102057deea" }, "recipe": { "sha256": "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.334", "deps": [ @@ -9043,14 +9595,15 @@ }, "tern": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marijnh/tern.git", - "sha256": "ef89363dc2e2065bed8aa4203cffa25e3f5f6b39fa1bd3c11bb225982fe7e4a8", + "tag": "fetchFromGitHub", + "owner": "marijnh", + "repo": "tern", + "sha256": "07b96yjv8jns8d18mciqchpfbhcd8w0lgy3p4msl24rk4hmv56z7", "rev": "f585fe7d6f4da28770fdd3dc7ddf88a39ad9b105" }, "recipe": { "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.853", "deps": [ @@ -9061,14 +9614,15 @@ }, "helm-swoop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/helm-swoop.git", - "sha256": "de00ac9f6bc4ed0ff3f4ab860fafe27c0918d9431303fc5620bc6206c42f7efc", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "helm-swoop", + "sha256": "1dixg0yik08ad9qwcfis9vkg1h7zwqsisfr1zlgzabpzzm822mmd", "rev": "d953ad605c989c40da5bc0fcb2953104ea7210e6" }, "recipe": { "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151022.1950", "deps": [ @@ -9078,14 +9632,15 @@ }, "skeletor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/skeletor.el.git", - "sha256": "013c5f11804d976a736e90fa72d48e6b3751af36963e5249be0059db6c6230aa", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "skeletor.el", + "sha256": "1f2yrm7kac98gfwbzlszcimnmp9cjv4k0aj8yidh7r0jn1xv45f8", "rev": "253b89e199d0251e3eeb6b268fe60a3337fdf5bb" }, "recipe": { "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.10", "deps": [ @@ -9099,28 +9654,30 @@ }, "css-comb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/channikhabra/css-comb.el.git", - "sha256": "641a187c8c385ee4f162ed346be311223296cb59373c6b4947e82527548e810b", + "tag": "fetchFromGitHub", + "owner": "channikhabra", + "repo": "css-comb.el", + "sha256": "0ljhar80kk7k54jz1xiq4r0w6s1wkacl7qz9wkvvbzhjb0z049hq", "rev": "980251dc5d3ce0e607498f8a793f6d67a77d9cda" }, "recipe": { "sha256": "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150502.1528", "deps": [] }, "counsel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/swiper.git", - "sha256": "db228997b044bf1c4fc778a200e54a03095327b8c6ee7f13d8b84d24e012e2e0", - "rev": "83f89d8c3160b968a422127d14d245f3f4a2c733" + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper", + "sha256": "021rl53d7qmrkg0l3z19khfznj60bf45907dz1ypgbk6blakbk8q", + "rev": "8306be11c84a23e0ab3bcdd36cab1e5c16df8fbe" }, "recipe": { "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.519", "deps": [ @@ -9130,14 +9687,15 @@ }, "visual-fill-column": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/visual-fill-column.git", - "sha256": "42250fca9399ef5db123477ad6723f7677fd0f850d26d0cc8e7172800171f8d3", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "visual-fill-column", + "sha256": "126qm63ik1n1agvcp4mgk1gr7dnnyjif8zbw0l336q74d5cy6h6w", "rev": "043485d16a645c8c6df5d82bc77b8fc155a818aa" }, "recipe": { "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.1751", "deps": [ @@ -9146,42 +9704,45 @@ }, "google-c-style": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/google/styleguide.git", - "sha256": "a6d5f9dcdcf525ca85e5f6f3d449879837f2b97f043f73f98a8a1849e92cb599", + "tag": "fetchFromGitHub", + "owner": "google", + "repo": "styleguide", + "sha256": "16dm5kllj64aibwp6gq4gywz4dwqhx4x9wznwn2wl9gmvkfgkmd6", "rev": "e1333014b5ffec70af81ace136c830856d13683e" }, "recipe": { "sha256": "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140929.1318", "deps": [] }, "android-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remvee/android-mode.git", - "sha256": "399f0199f5a124dc5a12b5f7fd4557e3d32314bf3cbc12bbbb7f6f32deb87f43", + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "android-mode", + "sha256": "1ms338qq17nwivpq8c1xsnld5k532rfhgvfxx1zg3l8wrjh235d2", "rev": "80629ff38e4c2f72ba1dbebd4a0abadb94d8a231" }, "recipe": { "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.744", "deps": [] }, "efire": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/efire.git", - "sha256": "db54758d39a1c52c1c7583ec822b4d9d8e36060c2049a2b52de32a91c6f651b0", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "efire", + "sha256": "1c2iyv392ap35nss4j901h33d3lx9lmq5v43flf2rid1766pam6v", "rev": "91a644662afb352475efad0b377713656f131e5c" }, "recipe": { "sha256": "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.1531", "deps": [ @@ -9190,28 +9751,30 @@ }, "highlight-escape-sequences": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgutov/highlight-escape-sequences.git", - "sha256": "cfe7e33ba2e3c5c9edad64d4a3b09b008945308b510508652d3841c557404e93", + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "highlight-escape-sequences", + "sha256": "14sf81bwah9q5mjhh1aiicq4b280kfqa7m34mpnwkig3l8xy7ryg", "rev": "083954e5c39b2cc10cfc12192099e76e2b84b072" }, "recipe": { "sha256": "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150729.2110", "deps": [] }, "hl-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ikirill/hl-indent.git", - "sha256": "4805bbfecf67d8f37240568f0fa31829051705224f8d07d334340e79bdee89c6", + "tag": "fetchFromGitHub", + "owner": "ikirill", + "repo": "hl-indent", + "sha256": "17apqs7yqd89mv5283kmwp7byaaimj7j0vis0z1d89jlmp8i6zbc", "rev": "e749f726ce589e04bb508160e7b290b61fb64d75" }, "recipe": { "sha256": "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141227.1530", "deps": [ @@ -9221,14 +9784,15 @@ }, "undercover": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sviridov/undercover.el.git", - "sha256": "cc64a61caa1c47ed162f4d8bbd129397348707f4f69911da45966a022f24a316", + "tag": "fetchFromGitHub", + "owner": "sviridov", + "repo": "undercover.el", + "sha256": "1qm6fzgmrdzhkajd60l4l890dlbxll96x41kx36wm97h4gz7aiyw", "rev": "7b38281c21a0ed9f7260d58aca6b4b2471672cfd" }, "recipe": { "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150817.1210", "deps": [ @@ -9239,14 +9803,15 @@ }, "dklrt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidkeegan/dklrt.git", - "sha256": "1a6af879dbad3fa2d42e7bd43e3bb0c77aa656045fe40d527058905a2cb57618", + "tag": "fetchFromGitHub", + "owner": "davidkeegan", + "repo": "dklrt", + "sha256": "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs", "rev": "5d6c99f8018335256ab934b4c1049708ae2d48ba" }, "recipe": { "sha256": "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131110.741", "deps": [ @@ -9257,14 +9822,15 @@ }, "clojure-quick-repls": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/symfrog/clojure-quick-repls.git", - "sha256": "f94f394f1a8f917f5532f4a256035bb392c3645ae5f154f136560b2c6684eaed", + "tag": "fetchFromGitHub", + "owner": "symfrog", + "repo": "clojure-quick-repls", + "sha256": "1vgahik2q2sn6vqm9wg5b9jc74mkbc1md8pl69apz4cg397kjkzr", "rev": "b543c6c35bb1bacb278f92a6e0f4d2128c0c3db9" }, "recipe": { "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150814.236", "deps": [ @@ -9274,28 +9840,30 @@ }, "rase": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/rase.git", - "sha256": "7d0158108df01dcd9fb769f1209379368ea5b8c6fd36c9e0edba5d3a831926c4", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "rase", + "sha256": "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx", "rev": "59b5f7e8102570b65040e8d55781c7ea28de7338" }, "recipe": { "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120928.1545", "deps": [] }, "js2-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/js2-mode.git", - "sha256": "6fad831cc06397a21b928334e065410a8068b9976972d3adc99a2b79df76697c", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "js2-mode", + "sha256": "17bpfi6ppmbx1q23qa89jnwnh465s54gl1vp4djy9arqir76hwsc", "rev": "73c0348bf964c956aa5a9f2aeb0415bb9a65198c" }, "recipe": { "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.605", "deps": [ @@ -9305,28 +9873,30 @@ }, "yabin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d5884/yabin.git", - "sha256": "f5d3619e1f72109d3afead6827db7e8e3e1cb0814478691fe2cc330b3fdfd738", + "tag": "fetchFromGitHub", + "owner": "d5884", + "repo": "yabin", + "sha256": "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm", "rev": "db8c404507560ef9147fcce2b94cd706fbfa03b5" }, "recipe": { "sha256": "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140205.2151", "deps": [] }, "symon-lingr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/symon-lingr.git", - "sha256": "12f5ed02d84294ee73c84ddea56ed786111982450daefc920b6ee66d3b7d0b0c", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "symon-lingr", + "sha256": "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j", "rev": "056d1a473e36992ff5881e5ce6fdc331cead975f" }, "recipe": { "sha256": "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150719.842", "deps": [ @@ -9342,21 +9912,22 @@ }, "recipe": { "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150908.1438", "deps": [] }, "window-end-visible": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/window-end-visible.git", - "sha256": "006542be695efee08e12d7bacfe59c3ab007c153b31ca63ad28c9a48422f33f0", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "window-end-visible", + "sha256": "0g69r64gyz4p3k6n8l0i1837mszycbrp23acnp0iy0y3mg67x3pn", "rev": "525500fb2ebc08f3f9ea493972e5f2e1d79f89ef" }, "recipe": { "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] @@ -9370,7 +9941,7 @@ }, "recipe": { "sha256": "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.1748", "deps": [ @@ -9380,14 +9951,15 @@ }, "spacegray-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bruce/emacs-spacegray-theme.git", - "sha256": "4b53e3aedadca66b92d1d90d5640e795e19163f388a5569ea43bab9feab912a9", + "tag": "fetchFromGitHub", + "owner": "bruce", + "repo": "emacs-spacegray-theme", + "sha256": "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb", "rev": "7f70ee36297e5ccf9bc90b1f81472024f5a7a749" }, "recipe": { "sha256": "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150719.1431", "deps": [ @@ -9396,14 +9968,15 @@ }, "multi-compile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ReanGD/emacs-multi-compile.git", - "sha256": "1d29e61e184217c2014e62560166b36916be391d64d71880de3de7e296238c00", + "tag": "fetchFromGitHub", + "owner": "ReanGD", + "repo": "emacs-multi-compile", + "sha256": "004c4fbf5rrxvs01imv43lwvw5k9ndk02mk29q0w45s230gfca8x", "rev": "61a4a7b35cd78773305150f533f51587367378db" }, "recipe": { "sha256": "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.1640", "deps": [ @@ -9412,56 +9985,60 @@ }, "scratch-log": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mori-dev/scratch-log.git", - "sha256": "7eb3712024c8d53e31dcb66a8d8e7a83c21c0bfdcf4bf98c917118dab74539a6", + "tag": "fetchFromGitHub", + "owner": "mori-dev", + "repo": "scratch-log", + "sha256": "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk", "rev": "1168f7f16d36ca0f4ddf2bb98881f8db62cc5dc0" }, "recipe": { "sha256": "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141115.143", "deps": [] }, "clmemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ataka/clmemo.git", - "sha256": "a1796c71f43d03d6e39f916aa26bd5fffb2c3572e90ba3a9a87257c6ef91487d", + "tag": "fetchFromGitHub", + "owner": "ataka", + "repo": "clmemo", + "sha256": "0za8j7pwcmvjm2ls62z9f8sjryzzsmms4slikzixc0rxyiqnqyd1", "rev": "553d62f80b6c3e0f281e09d377d490795bdcaabf" }, "recipe": { "sha256": "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.747", "deps": [] }, "rbenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senny/rbenv.el.git", - "sha256": "506ce345674da0d5f34ed245944b012819b8a32e7cc77ba2d3d430eb8ccea079", + "tag": "fetchFromGitHub", + "owner": "senny", + "repo": "rbenv.el", + "sha256": "0yd0rs6fnc6lsfi7pivw5sivh698055r8ifj9vrxb82dcx2y6v2h", "rev": "2ea1a5bdc1266caef1dd77700f2c8f42429b03f1" }, "recipe": { "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141120.149", "deps": [] }, "org-agenda-property": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/org-agenda-property.git", - "sha256": "9edd0db344b03254e85f9a2cbcbb2b13fcc5716b301690988d11cb9648c55a87", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "org-agenda-property", + "sha256": "15xgkm5p30qfghyhkjivh5n4770794qf4pza462vb0xl5v6kffbm", "rev": "3b469f3e93de0036547f3631cd0366d53f7584c8" }, "recipe": { "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140626.1616", "deps": [ @@ -9470,42 +10047,45 @@ }, "standoff-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lueck/standoff-mode.git", - "sha256": "1f47d54b64d6d94bd41f890708bef0d6c5a93fc4629f60040628b321dc65d007", + "tag": "fetchFromGitHub", + "owner": "lueck", + "repo": "standoff-mode", + "sha256": "1fn97aw91g02hgz5c9dvnxh4zdd9wrdhs44s0gnj570za1m4cbiv", "rev": "09b4b2dfeadf0b9c2f3e2897be5e9b728c07b9b6" }, "recipe": { "sha256": "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150628.1842", "deps": [] }, "phi-rectangle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/phi-rectangle.git", - "sha256": "6447d0d0d0600c4dbf9669a44c39814c8a31528fea5b926c758da397d3294c34", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-rectangle", + "sha256": "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4", "rev": "0c12716afc71d803d1f39417469521dc465762d9" }, "recipe": { "sha256": "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.54", "deps": [] }, "dart-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/dart-mode.git", - "sha256": "8c36e46be3bb1b3b7295c8b4625046aab259b4a24d6b3841e4d77ffbcd51a7dd", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "dart-mode", + "sha256": "1pd7a76znzypwi0khssdlas5kcma8r865d68jmr3n6xvwdmy8dlc", "rev": "1b7562262c83de94a5118ffc55b495dae8aa7367" }, "recipe": { "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150721.1854", "deps": [ @@ -9516,14 +10096,15 @@ }, "peek-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/erikriverson/peek-mode.git", - "sha256": "2bf7b8d0263e0ee54caa1cba3d4f747a74a3d2d8ea7dfadf6c497e40e935db86", + "tag": "fetchFromGitHub", + "owner": "erikriverson", + "repo": "peek-mode", + "sha256": "11nv6pll0zj9dkgzlzgav39a6x3sfi7kvfhwm96fa3iy4v8bixrb", "rev": "55a7dd011375330c7d57322257a5167516702c71" }, "recipe": { "sha256": "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130620.1446", "deps": [ @@ -9538,21 +10119,22 @@ }, "recipe": { "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20081128.906", "deps": [] }, "refheap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Raynes/refheap.el.git", - "sha256": "280d33c837bdee2adaaeabfcfa12c3681e17037e65aefdb155d462c7a4887f22", + "tag": "fetchFromGitHub", + "owner": "Raynes", + "repo": "refheap.el", + "sha256": "08kzi2jcfqnlanqzvbk5gq1if7k8qc9gmz5bmvd2mvmx6z436398", "rev": "d41f8efb8e913b29035f545914859e3f18287492" }, "recipe": { "sha256": "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140902.1602", "deps": [ @@ -9561,14 +10143,15 @@ }, "navorski": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/navorski.el.git", - "sha256": "b8ea7b60cbeafef04e6b55d18457acdba8bf0f785a962ef022ea9ae0775045c9", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "navorski.el", + "sha256": "0g7rmvfm0ldv0d2x7f8k761mgmi47siyspfi1ns40ijhkpc15x8l", "rev": "698c1c62da70164aebe9a7a5d034778fbc30ea5b" }, "recipe": { "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141203.1224", "deps": [ @@ -9585,21 +10168,22 @@ }, "recipe": { "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.1636", "deps": [] }, "manage-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/manage-minor-mode.git", - "sha256": "07f440ff816fad5a4a122297213565e7c92050678532da6a96d13773d83c9483", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "manage-minor-mode", + "sha256": "10wl7kc76dyijrmdlcl5cx821jg7clsj35r22955mbbgh7zl1x07", "rev": "1bed33b0752380b548b822fe72e6858c5fe70c8e" }, "recipe": { "sha256": "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140310.1100", "deps": [ @@ -9608,70 +10192,75 @@ }, "yasnippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/yasnippet.git", - "sha256": "c47b122d4aeefbb6d6fc061dc1a519ff4432e90672e620798f33e25c4d78a0a3", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "yasnippet", + "sha256": "1pdyrs0cv688s39vqd20dgnvlddd8x1gj7lzzlpwr47fz8zxfm9i", "rev": "71f0142edae6196535bfc27b79f317dc7a12ea1d" }, "recipe": { "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.2333", "deps": [] }, "erc-crypt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atomontage/erc-crypt.git", - "sha256": "d9d1b91963f986a018fd79142aaabf8566a77f1b31005bb2d47c1c67ba20f7c3", + "tag": "fetchFromGitHub", + "owner": "atomontage", + "repo": "erc-crypt", + "sha256": "1hzp42x6f73wsjr5n01i3dzsfrl5pym2l53rzlca11prcccvklfr", "rev": "5d548bab298a27ca5886392c129b14d0e93067be" }, "recipe": { "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1257", "deps": [] }, "log4e": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/log4e.git", - "sha256": "79d89c0be7fecac981473b599748f910759ec45e2105e00dd0c9589e7a18dfef", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "log4e", + "sha256": "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022", "rev": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb" }, "recipe": { "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150105.705", "deps": [] }, "graphviz-dot-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ppareit/graphviz-dot-mode.git", - "sha256": "2e3fdb4bd80015e4a4ebd457e50d00cc8cc0c9254ae54aef6a0cff19e150268b", + "tag": "fetchFromGitHub", + "owner": "ppareit", + "repo": "graphviz-dot-mode", + "sha256": "12r6a3hikzqcdbplmraa4p4w136c006yamylxfjf8580v15xngrf", "rev": "ca0f15158c3bbd516549532be1dd35bc51462c84" }, "recipe": { "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.821", "deps": [] }, "pcomplete-extension": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/pcomplete-extension.git", - "sha256": "a6aec98ea424314d9cb00ac8301df7190d275a80ecbb525eedb8818f00231740", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "pcomplete-extension", + "sha256": "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6", "rev": "839740c90de857e18db2f578d6660951522faab5" }, "recipe": { "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140604.1147", "deps": [ @@ -9681,14 +10270,15 @@ }, "melpa-upstream-visit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/melpa-upstream-visit.git", - "sha256": "edce5f30431cffe2d6722185233ec23834b4b068f074a78a7bedf27aaf299789", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "melpa-upstream-visit", + "sha256": "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd", "rev": "7310c74fdead3c0f86ad6eff76cf989e63f70f66" }, "recipe": { "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130720.533", "deps": [ @@ -9697,14 +10287,15 @@ }, "php+-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/echosa/phpplus-mode.git", - "sha256": "648a2514b287ac585b920f379b830345f4487a36d0a657f969a6fe482249fe60", + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "phpplus-mode", + "sha256": "0f1n0jcla157ngqshq5n8iws216ar63ynjd6743cbdrzj0v030wg", "rev": "e66950502e7c9a9cd39c9a619ad66fc54c12aafa" }, "recipe": { "sha256": "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121129.1452", "deps": [] @@ -9717,7 +10308,7 @@ }, "recipe": { "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1534", "deps": [ @@ -9726,14 +10317,15 @@ }, "paxedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/promethial/paxedit.git", - "sha256": "dc36ce89eac555eb6590ce23d726ca837123e701e625cfa79998c515bc1d5bae", + "tag": "fetchFromGitHub", + "owner": "promethial", + "repo": "paxedit", + "sha256": "1bjv3ny1bicqk6kwy9g607kj6wc3r8kdf8yfj1jynmf5xa4wwdnw", "rev": "7a69ff07d97955fb5412ba1d5259810609e3bca0" }, "recipe": { "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150405.1808", "deps": [ @@ -9743,14 +10335,15 @@ }, "e2wm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-window-manager.git", - "sha256": "6841f88d208f048b9fbb153d43f0ef1c06b2c019d39a89336b062c71da74dde1", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-window-manager", + "sha256": "1lx0c7s810x6prf7x1lnx412gll8nn8gqpmi56n319n406cxhnhw", "rev": "71543ce4502bdb09c888e24b3a80e47786785b88" }, "recipe": { "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150608.1923", "deps": [ @@ -9759,14 +10352,15 @@ }, "helm-emmet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-emmet.git", - "sha256": "6907c887ca9a5f0649fd057e6687355ce4dafb2ed74baadfd91a5e9478b17530", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-emmet", + "sha256": "0c3mn5w98phsv7gsljyp5vxxmr2w6n3nczh5zm4hcpwsra3wh1v9", "rev": "b4e0618773d9fdfbf0ed03d24a53d26285c51b91" }, "recipe": { "sha256": "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131014.129", "deps": [ @@ -9776,42 +10370,45 @@ }, "xmlgen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/philjackson/xmlgen.git", - "sha256": "002ac9c84e7ec4bd53ab1f600032f7648e9f71e33c51a1430ee02bb3780465da", + "tag": "fetchFromGitHub", + "owner": "philjackson", + "repo": "xmlgen", + "sha256": "1nk50iwb6az01r1s2l9wwdqrz3k4ywr00q0zmd9vvi3y9v4cjah0", "rev": "d27294a4174888fe452015cb98dedd2a4bdc1e92" }, "recipe": { "sha256": "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130219.419", "deps": [] }, "drupal-spell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arnested/drupal-spell.git", - "sha256": "3d822e71bc43966200e24b263cf01eae109899ad41772e63ccb97936f77dca7a", + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "drupal-spell", + "sha256": "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd", "rev": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae" }, "recipe": { "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130520.1155", "deps": [] }, "helm-chronos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dxknight/helm-chronos.git", - "sha256": "11997a9e53a931105d769dde6ce800a43a6f5723975eb7f98941c77c9123b2b6", + "tag": "fetchFromGitHub", + "owner": "dxknight", + "repo": "helm-chronos", + "sha256": "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i", "rev": "a14fc3d65dd96ce6616234b3f7b8b08b4c1817ef" }, "recipe": { "sha256": "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150528.1536", "deps": [ @@ -9821,28 +10418,30 @@ }, "expand-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/expand-line.git", - "sha256": "ffb87c442a332ec5aa09ec21750985857eb142b6a2597f110791959c6181e473", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "expand-line", + "sha256": "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z", "rev": "75a5d0241f35dd0748ab8ecb4ff16891535be372" }, "recipe": { "sha256": "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.2107", "deps": [] }, "org-ac": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/org-ac.git", - "sha256": "8a8d8051c563335ce70063186fee43ee1476a3386f2421f29b8068d3848d93f5", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-ac", + "sha256": "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca", "rev": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a" }, "recipe": { "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140302.613", "deps": [ @@ -9853,15 +10452,15 @@ }, "omnisharp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/OmniSharp/omnisharp-emacs.git", - "branchName": "master", - "sha256": "dfe1c23076c449c53a3c47834ce0fa68d5e4c871f9c65defa2ded21bbdfa5d94", + "tag": "fetchFromGitHub", + "owner": "OmniSharp", + "repo": "omnisharp-emacs", + "sha256": "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm", "rev": "725796278fa8a391e244f2e50676dd6d6b67585d" }, "recipe": { "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.1314", "deps": [ @@ -9883,21 +10482,22 @@ }, "recipe": { "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20080502.1152", "deps": [] }, "company-racer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/company-racer.git", - "sha256": "3ecae70e51619aee0360b742223729e73b77ba3a8db8c167fe6ee9a46b31c19c", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "company-racer", + "sha256": "1lk3fqsgbi6mg4hrpc9gy4hbfp9snyj4yvc0zh8iqqw5nx12dab4", "rev": "c31f7cab8c2f9c376ff0bd48e56dbc30a32e4b00" }, "recipe": { "sha256": "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150628.2133", "deps": [ @@ -9909,14 +10509,15 @@ }, "lang-refactor-perl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jplindstrom/emacs-lang-refactor-perl.git", - "sha256": "d2e10cf063a8738a2eeb356cba134ad6cf5c956ad60eaa8e0ce5b73d6d3cb38c", + "tag": "fetchFromGitHub", + "owner": "jplindstrom", + "repo": "emacs-lang-refactor-perl", + "sha256": "135k7inkvdz51j7al3nndaamrkyn989vlv1mxcp8lwx8cgq0rqfj", "rev": "691bd69639de6b7af357e3b7143563ececd9c497" }, "recipe": { "sha256": "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131122.1527", "deps": [] @@ -9929,35 +10530,37 @@ }, "recipe": { "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130605.1239", "deps": [] }, "gnuplot-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkmcc/gnuplot-mode.git", - "sha256": "a12f7adfab804011429039c8c612f3ebe86ce9a9f3ab22908477e63d4ddd1fd7", + "tag": "fetchFromGitHub", + "owner": "mkmcc", + "repo": "gnuplot-mode", + "sha256": "1pss9a60dh6i277pkp8j5g1v5h7qlh11w2fki50qcp0zglyw1kaq", "rev": "296ff8d263513cdfb8e85b06e2441c751565b793" }, "recipe": { "sha256": "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.139", "deps": [] }, "show-css": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/smmcg/showcss-mode.git", - "sha256": "ad9ec20bae02365e56a6ee2e704ad7cf31e870b3cfc2f57bbb340dc0fd6a6858", + "tag": "fetchFromGitHub", + "owner": "smmcg", + "repo": "showcss-mode", + "sha256": "0n38dbyw039lpdxzbhngndqfhcfgsx570bpflrb5wdh2mq5w57md", "rev": "1b8c330644c06e6d99ec5da8a9722c918b2ea039" }, "recipe": { "sha256": "1b3n8h39m85inxsqvzwgb9fqnqn2sgib91hrisn1gpgfyjydzkr7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140816.1208", "deps": [ @@ -9966,28 +10569,30 @@ }, "picolisp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flexibeast/picolisp-mode.git", - "sha256": "2584dbeafc68de7bef5a25fe30cb7a5c1bafa0aee8d0c1ed5679e929bdf6215d", + "tag": "fetchFromGitHub", + "owner": "flexibeast", + "repo": "picolisp-mode", + "sha256": "0p91ysyjksbravnw3l78mshay6swgb5k1zi5bbppppk8zkmdp115", "rev": "1a537b14090813f46cbba54636d40365e1a8067e" }, "recipe": { "sha256": "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150516.355", "deps": [] }, "highlight-numbers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-numbers.git", - "sha256": "51b9f792b46afbc833e3bdc20bf685a482d17d8c1e931e1731800c087461d039", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-numbers", + "sha256": "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai", "rev": "e1245b27a732ec43c1562f825533fe147759d24e" }, "recipe": { "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150531.807", "deps": [ @@ -9997,28 +10602,30 @@ }, "flash-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/flash-region.git", - "sha256": "2ec846275edf6ef7ecd4b4255d9f437da6d74d6759f11b4af9858b2d4da5e77c", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "flash-region", + "sha256": "0z77lm6jv2w5z551pwarcx6xg9kx8fgms9dlskngfvnzbqkldj1f", "rev": "261b3597b23cdd40e5c14262a5687bcc6c1d0901" }, "recipe": { "sha256": "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130923.1317", "deps": [] }, "org-toodledo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-toodledo.git", - "sha256": "1b4c1078be473c088ce5cbb57fd6ba054502fdef7c3b3ede352eef66ad9d3803", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-toodledo", + "sha256": "014337wimvzy0rxh2p2c647ly215zcyhgym2hcljkdriv15cafna", "rev": "2c91a92bd07ae4a546771b018a6faa0e06399968" }, "recipe": { "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150301.513", "deps": [ @@ -10029,56 +10636,60 @@ }, "occur-context-resize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgtized/occur-context-resize.el.git", - "sha256": "8c64ea472a8be03deba65b3bf85b275865dfb4e3b6bc6cac5e5eefa9e55e8f88", + "tag": "fetchFromGitHub", + "owner": "dgtized", + "repo": "occur-context-resize.el", + "sha256": "1y67mfkmzjdwnah6knc1v9rxcvnzi3dxw9f5gaz4layy7ir61b8f", "rev": "e64898124528244134bd125aaa39e396406b01e8" }, "recipe": { "sha256": "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140826.1449", "deps": [] }, "evil-surround": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/timcharper/evil-surround.git", - "sha256": "3b7da258c343456acca4ec284ffc39372039b6f8d6116e2707a57e800d157e97", + "tag": "fetchFromGitHub", + "owner": "timcharper", + "repo": "evil-surround", + "sha256": "15vy2l6q0zm50wknw4fnz2v3j81p77y4ya7clk66lia3qdca4z9v", "rev": "9f1ab3c302d585c3489f0429b904e7e6e3204e94" }, "recipe": { "sha256": "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.1418", "deps": [] }, "dts-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bgamari/dts-mode.git", - "sha256": "34ad4b8272c893d5e852e5ae3d99a0d9e7498c76a71cf1b054a8617717dc4e31", + "tag": "fetchFromGitHub", + "owner": "bgamari", + "repo": "dts-mode", + "sha256": "0cafvhbpfqd8ajqg2757fs64kryrl2ckvbp5abldb4y8fa14pb9l", "rev": "6ec1443ead16105234765f9b48df9b4aca562e61" }, "recipe": { "sha256": "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150403.1804", "deps": [] }, "js2-highlight-vars": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/unhammer/js2-highlight-vars.el.git", - "sha256": "2f79aa5897929d5a29afc7b2bb7d80302e2eee5013484da7854e8e8a822a4dbd", + "tag": "fetchFromGitHub", + "owner": "unhammer", + "repo": "js2-highlight-vars.el", + "sha256": "1gad5a18m3jfhnklsj0ka3p2wbihh1yvpcn7mwlmm7cjjxcaly9g", "rev": "5857999e6a376810816a0bee71f6d235ffe8911d" }, "recipe": { "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.308", "deps": [ @@ -10087,42 +10698,45 @@ }, "processing-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ptrv/processing2-emacs.git", - "sha256": "53b71ce03ab749e83dfafed98590d7418e703833d0c9d7da885b4dd11fb2ee4a", + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "processing2-emacs", + "sha256": "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h", "rev": "a57415e523c9c3faeef02fa62a2b749270c4cc33" }, "recipe": { "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150217.632", "deps": [] }, "csharp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/josteink/csharp-mode.git", - "sha256": "02b7dfe91e0e59d929d1351c0ddd30e49e030fbc52042286a665ad878543b03a", - "rev": "d0d7ec3ca71fe4d89c33b2803dc6bb68b6b8c69e" + "tag": "fetchFromGitHub", + "owner": "josteink", + "repo": "csharp-mode", + "sha256": "1xnfn7ag9xm1980h8hssac9n3ng6rf7ffqb67vjbjw14gb7vxd0l", + "rev": "a553430c3f55b12db3af3da14dd0a1b45e3277fb" }, "recipe": { "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151201.1630", + "version": "20151217.21", "deps": [] }, "evil-avy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/louy2/evil-avy.git", - "sha256": "34c952bcd4b21135478a8588aaf121ef2ce816c529944e5fab854ca8edb2dfe0", + "tag": "fetchFromGitHub", + "owner": "louy2", + "repo": "evil-avy", + "sha256": "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l", "rev": "2dd955cc3ecaa7ddeb67b295298abdc6d16dd3a5" }, "recipe": { "sha256": "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150908.248", "deps": [ @@ -10134,14 +10748,15 @@ }, "evil-mc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gabesoft/evil-mc.git", - "sha256": "487bd0544681be37ad27ae57de4e5d6c02f712728d4e7568e75cf70110d46ee5", + "tag": "fetchFromGitHub", + "owner": "gabesoft", + "repo": "evil-mc", + "sha256": "0w5z644hx5h9rscq13aqgmbr4mlx2dx3p1q7qhc0jkffhmckk09k", "rev": "a56f83460a6a90dc504f5935b0ab105810a41179" }, "recipe": { "sha256": "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.2032", "deps": [ @@ -10159,7 +10774,7 @@ }, "recipe": { "sha256": "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140802.642", "deps": [ @@ -10176,7 +10791,7 @@ }, "recipe": { "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.706", "deps": [ @@ -10185,14 +10800,15 @@ }, "cherry-blossom-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/inlinestyle/emacs-cherry-blossom-theme.git", - "sha256": "7ac6a2afdde616ed5644ba81aab7de0488f3484e385373e995fa67dc8c60376b", + "tag": "fetchFromGitHub", + "owner": "inlinestyle", + "repo": "emacs-cherry-blossom-theme", + "sha256": "0m97xr6lddy2jdmd4bl4kbp2568p4n110yfa9k7fqc20ihq8jkyd", "rev": "eea7653e00f35973857ee23b27bc2fae5e753e50" }, "recipe": { "sha256": "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150621.2242", "deps": [ @@ -10201,14 +10817,15 @@ }, "wanderlust": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wanderlust/wanderlust.git", - "sha256": "a241b1729b95fdaa7f98380490203f0398042e259fe9e980087193a1dce9a66d", + "tag": "fetchFromGitHub", + "owner": "wanderlust", + "repo": "wanderlust", + "sha256": "1181fhazm2r9j9w3yc6cjm0j0lwgv94pz15qsdmg31z43w55l0qk", "rev": "912c443a912e037d898941397b747d3325aa01b3" }, "recipe": { "sha256": "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.1727", "deps": [ @@ -10217,14 +10834,15 @@ }, "private": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/private.git", - "sha256": "56737b7a1eacb81e0ba76b1d5b2c0a1ea826e76efea18ddfe1cb4bf558d309c4", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "private", + "sha256": "0zng64f5vwnpkf9fk59yv1ndc646q608a6awr1y9qk0mhzbfzhqm", "rev": "9266d01c095895cc3ee9de95bc20511e88353755" }, "recipe": { "sha256": "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150121.1957", "deps": [ @@ -10233,56 +10851,60 @@ }, "jquery-doc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ananthakumaran/jquery-doc.el.git", - "sha256": "ecb0c47313989ed8af3b2167bb48bbdfb52f31f1160ee87bb36ea1e682bd2a29", + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "jquery-doc.el", + "sha256": "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9", "rev": "24032284919b942ec27707d929bdd8bf48420062" }, "recipe": { "sha256": "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150812.258", "deps": [] }, "mallard-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jhradilek/emacs-mallard-mode.git", - "sha256": "420d69f4c150ae61f75a3c941fc420e83c783f6c4766471e443320ebb466a3a3", + "tag": "fetchFromGitHub", + "owner": "jhradilek", + "repo": "emacs-mallard-mode", + "sha256": "18x3cssfn81k8hg4frj7dhzphg784321z51wbbvn3bjhq7s6j3a2", "rev": "c48170c1ace4959abcc5fb1df0d4cb149cff44c1" }, "recipe": { "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131203.2225", "deps": [] }, "i2b2-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danlamanna/i2b2-mode.git", - "sha256": "686dbb91bb216de167f9823ea0fa5fe55de9d8c7a44b255e4174bb09def56486", + "tag": "fetchFromGitHub", + "owner": "danlamanna", + "repo": "i2b2-mode", + "sha256": "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm", "rev": "db10efcfc8bed369a516bbf7526ede41f98cb95a" }, "recipe": { "sha256": "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140709.2004", "deps": [] }, "ess-R-object-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/ess-R-object-popup.el.git", - "sha256": "60df192d711bc1315d15fa2f915d885d5f6feb2fcf4e009d89142a6e945a1761", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ess-R-object-popup.el", + "sha256": "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0", "rev": "7e1f601bfba72de0fda44d9c82f96028ecbb9948" }, "recipe": { "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130302.536", "deps": [ @@ -10292,14 +10914,15 @@ }, "solarized-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/solarized-emacs.git", - "sha256": "67a82b93e56d4e61be904255317e5358fcbfc8a23509fd8958585ce750e68935", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "solarized-emacs", + "sha256": "1xws08ppzh5mz7s0j0pv393zk0hr10vdcb5hya5kfscq8wvkf4p1", "rev": "7a43652689de5188198c77715e2dbc111de760bf" }, "recipe": { "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.735", "deps": [ @@ -10309,28 +10932,30 @@ }, "tab-group": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarao/tab-group-el.git", - "sha256": "24430509a76df7e466b310f81240f0ee64cba4b3d04a56cb9ec154bddf7adb51", + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "tab-group-el", + "sha256": "0lfvgbgvsm61kv5mcjnhnfjcnr7fy1015y0hndkf9xvdlw4hahr4", "rev": "5a290ec2608e4100fb188fd60ecb77affcc3465b" }, "recipe": { "sha256": "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140306.850", "deps": [] }, "pig-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/motus/pig-mode.git", - "sha256": "4d313ec06748955df15ca3c3de1090d71e853ab301ed435949c1fbe95d4a308d", + "tag": "fetchFromGitHub", + "owner": "motus", + "repo": "pig-mode", + "sha256": "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx", "rev": "af4200c88a50264b63fa162a02860f3f54c8755b" }, "recipe": { "sha256": "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130913.124", "deps": [ @@ -10339,28 +10964,30 @@ }, "closure-lint-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/r0man/closure-lint-mode.git", - "sha256": "ca8e981668bc3f23a33163b572c684e26235dca371d0761ae8e4cbb2006e1c6c", + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "closure-lint-mode", + "sha256": "0v0wdq0b5jz4x0d7dl3ilgf3aqp2hk375db366ij6gxwd0b9i3na", "rev": "bc3d2fd5c35580bf1b8af43b12484c95a343b4b5" }, "recipe": { "sha256": "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101118.1524", "deps": [] }, "helm-jstack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/raghavgautam/helm-jstack.git", - "sha256": "ef08b3fdd2b7144c08b3696e07882e3d64197f83aa77630f36cac48e36bb186e", + "tag": "fetchFromGitHub", + "owner": "raghavgautam", + "repo": "helm-jstack", + "sha256": "0vhqpcv8xi6a6q7n6xxahdzijr1x5s40fvk9nc44q55psbyv627g", "rev": "2064f7215dcf4ccbd6a7b8784223251507746da4" }, "recipe": { "sha256": "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150602.2322", "deps": [ @@ -10371,14 +10998,15 @@ }, "osx-trash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/osx-trash.el.git", - "sha256": "0eb04d1737d208e3dccd84f623af5346f796bf753705189cbd4bbe895cd302fe", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "osx-trash.el", + "sha256": "1l231168bjqz6lwzs0r9vihxi53d46csrr2gq7g33lg1zm3696ah", "rev": "a8fe326624e27a0e128c68940c7a9efb001ceee6" }, "recipe": { "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150723.935", "deps": [ @@ -10387,14 +11015,15 @@ }, "org-readme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/org-readme.git", - "sha256": "0dcd617c281ef9675ca1fe829defbdc938777657b3a9d16c86f2500ab4087ae0", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-readme", + "sha256": "1q3s12s0ll7jhrnd3adkaxv7ff69ppprv0pyl5f6gy8y51y63k8d", "rev": "4cb9f768d282a2835b4510b6504ff9ede487007d" }, "recipe": { "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.617", "deps": [ @@ -10407,14 +11036,15 @@ }, "org2jekyll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/org2jekyll.git", - "sha256": "70bf8d119ad989dc63073d5fe6f556353e7411a3d766115108c819ef985ddb7e", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "org2jekyll", + "sha256": "064kw64w9snm0lbshxn8d6yd9xvyislhg37fmhq1w7vy8lm61xvf", "rev": "a12173b9507b3ef54dfebb5751503ba1ee93c6aa" }, "recipe": { "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.847", "deps": [ @@ -10432,35 +11062,37 @@ }, "recipe": { "sha256": "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120304.1222", "deps": [] }, "bing-dict": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/bing-dict.el.git", - "sha256": "74480bc2489f145f9c7e207b32252a21ef40dcf250a616628b9b8d3e0ac9cd27", - "rev": "85d94acc9a85f60125f00083af9702bca8bdbd19" + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "bing-dict.el", + "sha256": "0yjywdzrbp821d4krv1jxnpwpb156j020mzvmv4pkkd0l1ivzk7m", + "rev": "4d8713c0134b3b44cb7607802bb06a7be9a9a202" }, "recipe": { "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150621.1311", + "version": "20151216.1954", "deps": [] }, "django-manage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gopar/django-manage.git", - "sha256": "d7121d2c457f451c654a3533ac1b4d640c511ca27d3805eb2f81ebd9a968e1a9", + "tag": "fetchFromGitHub", + "owner": "gopar", + "repo": "django-manage", + "sha256": "15i25zh54b2fqji0qmkg502051ymccih6pgqnzq02c43dpnsqhqv", "rev": "91ce758c830f06b33b7d04cc66dd5ec131bd4398" }, "recipe": { "sha256": "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.130", "deps": [ @@ -10469,56 +11101,60 @@ }, "ctable": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-ctable.git", - "sha256": "c009d0aa7bc81f03d335738600b960c50c7139dda2feb74bf6fa490e97a59e01", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-ctable", + "sha256": "07vasdlai49qs0nsmq2cz1kcq1adqyarv8199imgwwcbh4vn7dqb", "rev": "cd673a09a80ce4e9e102ffe2e3d7e6bfb9d652b0" }, "recipe": { "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140304.1859", "deps": [] }, "elscreen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/elscreen.git", - "sha256": "35b0dffdc054bc780ca660e4744a13e666dbb6be0c8431f80fd192894255b314", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "elscreen", + "sha256": "055kam18k4ni1zw3310cpsvdnrp62d579r30lq67ig2lq3yxzc1m", "rev": "249653a4a4b47c9b6306c2c29fa3753bc7342e61" }, "recipe": { "sha256": "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.2000", "deps": [] }, "highlight-indent-guides": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarthFennec/highlight-indent-guides.git", - "sha256": "b2bbe3f3b530eb94d722150b98a8cd8d410eb86064328a005e5d7f7a4b66a182", + "tag": "fetchFromGitHub", + "owner": "DarthFennec", + "repo": "highlight-indent-guides", + "sha256": "10m1cr5plzsxbq08lck4c2w0whcdrnl9h2qm4bbr9srhnpry7fxj", "rev": "4473af2bbeb80d50681a64b66f5891262cf52346" }, "recipe": { "sha256": "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.1427", "deps": [] }, "ivs-edit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/ivs-edit.git", - "sha256": "6acf5b90ce8f5c9cf1da2e2ae0f4cb24ad06f48a08c7362c3bd2e4a59dbf46a4", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "ivs-edit", + "sha256": "1926pyfsbr6j7cn3diq8ibs0db94rgsf0aifvbqrqp4grs85pkva", "rev": "c496e85f93f6f00e723d9df0ea0703f6c672826b" }, "recipe": { "sha256": "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140720.546", "deps": [ @@ -10535,121 +11171,129 @@ }, "recipe": { "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121026.1618", "deps": [] }, "pcmpl-git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoliu/pcmpl-git-el.git", - "sha256": "b3952a82c4f2b36e181dcf0f430fc66a6e714fe217cbce13acba3a34ee7a930d", + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "pcmpl-git-el", + "sha256": "03ckgbp38fmsmh9wxjqpw97p2vkaqq7l63yg3lc6xczjqj12m5dk", "rev": "2db904452b7367a9bf84a926e886945fc9128fad" }, "recipe": { "sha256": "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140218.2004", "deps": [] }, "leuven-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fniessen/emacs-leuven-theme.git", - "sha256": "b3d8802d2b232f61f5859911661765ac5e8e6eff49068a26361988201b67a1cf", + "tag": "fetchFromGitHub", + "owner": "fniessen", + "repo": "emacs-leuven-theme", + "sha256": "18nyb8bb16br2qpif33gz51sqzl3afh9mavzxrcqi40bgmfzpj0n", "rev": "aeea1054e55a4b9f8318bc95cf97c51b04387fa0" }, "recipe": { "sha256": "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.952", "deps": [] }, "snippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pkazmier/snippet.el.git", - "sha256": "de90c27c4e55e9f1d6045532cd8112f380ea8fcb49080429ce9c9c97e572d9db", + "tag": "fetchFromGitHub", + "owner": "pkazmier", + "repo": "snippet.el", + "sha256": "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y", "rev": "11d00dd803874b93836f2010b08bd2c97b0f3c63" }, "recipe": { "sha256": "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130210.1715", "deps": [] }, "ess": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-ess/ESS.git", - "sha256": "827d7cf4084e297c55bc75523385bbc3358507bc94c3a4ca2e0086403a03871a", - "rev": "680549abaaa3750de090c47049c392adcb25aaaa" + "tag": "fetchFromGitHub", + "owner": "emacs-ess", + "repo": "ESS", + "sha256": "1j2i8n34kn6lkz70fc4c0sk0sxv348a61asc3wbz55a2hvys8z0a", + "rev": "837454b76475a4eb3256e288fe4149a927faefa9" }, "recipe": { "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151210.252", + "version": "20151217.744", "deps": [ "julia-mode" ] }, "ocp-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/OCamlPro/ocp-indent.git", - "sha256": "53043c537e850398c0902ca94e5612e9d495ba9be668c65d381de41dadb11560", + "tag": "fetchFromGitHub", + "owner": "OCamlPro", + "repo": "ocp-indent", + "sha256": "0r44bh9nd2f6r9vz4xzv6mri91lc4276znaj29l974q0f7i3b3ad", "rev": "2d79c735ddff135ba29309af9f9e8a976a94e312" }, "recipe": { "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.332", "deps": [] }, "uuid": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-uuid.git", - "sha256": "f29708e97a9140fae71d4d90757b887c1a3b18f85611b9b330392ff6107fe464", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-uuid", + "sha256": "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj", "rev": "1519bfeb0e31602b840bc8dd35d7c7e732c159fe" }, "recipe": { "sha256": "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120910.351", "deps": [] }, "launch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sfllaw/emacs-launch.git", - "sha256": "96b2c00c63f58666fd4c2570436a445399615f9cbf7d39065eb270d630105470", + "tag": "fetchFromGitHub", + "owner": "sfllaw", + "repo": "emacs-launch", + "sha256": "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1", "rev": "e7c3b573fc05fe4d3d322389079909311542e799" }, "recipe": { "sha256": "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130619.1704", "deps": [] }, "hoa-pp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hoaproject/Contributions-Emacs-Pp.git", - "sha256": "66d48935b1fbe094c4c061842db24a3c053a1ac2da451655a57cc418f9f0076b", + "tag": "fetchFromGitHub", + "owner": "hoaproject", + "repo": "Contributions-Emacs-Pp", + "sha256": "0g2r4d0ivbadqw1k8jsv0jwv8krpfahsg0qmzyi909p2yfddqk1l", "rev": "925b79930a3f4377b0fb2a36b3c6d5566d4b9a8e" }, "recipe": { "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.236", "deps": [ @@ -10665,7 +11309,7 @@ }, "recipe": { "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140306.845", "deps": [] @@ -10679,21 +11323,22 @@ }, "recipe": { "sha256": "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151026.1433", "deps": [] }, "mag-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chumpage/mag-menu.git", - "sha256": "fcd16991c6d0623bfff031e5e4430f4d91556ce99d71fad8c5ffaa7451b6e0cc", + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "mag-menu", + "sha256": "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g", "rev": "9b9277021cd09fb1dba64b1d2a00705d20914bd6" }, "recipe": { "sha256": "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150505.1350", "deps": [ @@ -10702,14 +11347,15 @@ }, "seethru": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Benaiah/seethru.git", - "sha256": "f9dd52ed7951bf827a141b893c8836ae4b1a2133c7b536601fa537bcb030a461", + "tag": "fetchFromGitHub", + "owner": "Benaiah", + "repo": "seethru", + "sha256": "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr", "rev": "d87e231f99313bea75b1e69e48c0f32968c82060" }, "recipe": { "sha256": "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150218.1229", "deps": [ @@ -10718,14 +11364,15 @@ }, "helm-w32-launcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/helm-w32-launcher.git", - "sha256": "3659135cbc03984c199778c15820d7bac46860c67037932bde9b9e9c8fc29ced", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "helm-w32-launcher", + "sha256": "0xlz9rxx7y9pkrzvxmv42vgys5iwx75zv9g50k8ihwc08z80dhcq", "rev": "3e59ad62b89dd21d334af0203d445a83eb25dc5b" }, "recipe": { "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141223.1414", "deps": [ @@ -10736,14 +11383,15 @@ }, "org-iv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kuangdash/org-iv.git", - "sha256": "c618fb5ecf1e89ede26883c7ba8db32e91e8470bfa9973294ea27bf9a51881d7", + "tag": "fetchFromGitHub", + "owner": "kuangdash", + "repo": "org-iv", + "sha256": "1n7l70pl9x6mh7dyyiihg4zi1advzlaq2x7vivhas1i2120884i6", "rev": "c45e5ab30183f7b1934f636758750ee2f8a05346" }, "recipe": { "sha256": "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.914", "deps": [ @@ -10754,14 +11402,15 @@ }, "ac-ispell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-ispell.git", - "sha256": "cbff99f73616031e4d2b46cf63db3919577ca2e847d792a66d97045888c4b256", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-ispell", + "sha256": "1cq73bdv3lkn8v3nx6aznygqaac9s5i7pvirl8wz9ib31hsgwpbk", "rev": "22bace7387e9012002a6a444922f75f9913077b0" }, "recipe": { "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.2126", "deps": [ @@ -10771,28 +11420,30 @@ }, "buffer-buttons": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rpav/buffer-buttons.git", - "sha256": "782ffeaedcbf88aba6767c763e84dad41a20813f399ba58d7e2163795712aadc", + "tag": "fetchFromGitHub", + "owner": "rpav", + "repo": "buffer-buttons", + "sha256": "1p5a29bpjqr1gs6sb6rr7y0j06nlva23wxkwfskap25zvjpgwbvq", "rev": "2feb8494fa7863b98256bc85da670d74a3a8a975" }, "recipe": { "sha256": "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.839", "deps": [] }, "alect-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/alect-themes.git", - "sha256": "ffc2de69d84f008f6da905dbb14352124a5682317729e8a3b9ada9f89a89165a", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "alect-themes", + "sha256": "0hvf7ydd2p3dfk5hqjqcbaajhgihkyvlwvqcr97a8jknznk7hfzp", "rev": "05d7515d936bbf48ad3fa961220f076d2e5d2312" }, "recipe": { "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150920.1324", "deps": [ @@ -10801,14 +11452,15 @@ }, "evil-exchange": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Dewdrops/evil-exchange.git", - "sha256": "1786faf8be44d0fefc2967b313014be47444e69340bc077c5755795d979382e5", + "tag": "fetchFromGitHub", + "owner": "Dewdrops", + "repo": "evil-exchange", + "sha256": "1d9hxyplvjmv3hhgkp5snyssmddmca38r5v58bhba9gvk61lfcg9", "rev": "22d9b6ce1b979c0560b32637d0c2b28bf4082d2b" }, "recipe": { "sha256": "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141128.43", "deps": [ @@ -10818,14 +11470,15 @@ }, "markup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoc/markup.el.git", - "sha256": "115b4df1f26a5305be3c704a997ab4a5852c4f6eda4384a38873ce5d4b5825c5", + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "markup.el", + "sha256": "1i95b15mvkkki2iq8hysdr7jr1d5nix9jjkh7jz0alvaybqlsnqi", "rev": "5ff4874ce897db146f5fd2b3d32147a0d404e1e5" }, "recipe": { "sha256": "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130207.1509", "deps": [] @@ -10838,21 +11491,22 @@ }, "recipe": { "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131210.1222", "deps": [] }, "dired-k": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-dired-k.git", - "sha256": "91d089ac1df104d639b87f9aa04c6e5b45d0654195fe7c6222360c9173022439", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-dired-k", + "sha256": "13xpbbdd190lklz8jmj8nw8qm414kpkij9wrd7a9ws9j1jzj8x6s", "rev": "4c5ae87f0198eaa4789a1fe85e9ef7cf5a8633e7" }, "recipe": { "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.2036", "deps": [ @@ -10862,14 +11516,15 @@ }, "stack-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/commercialhaskell/stack-ide.git", - "sha256": "1ecc97de0c3165a1b201fcef2815e7fb3d36e70a6eb43c004eb3de1b7b70be91", + "tag": "fetchFromGitHub", + "owner": "commercialhaskell", + "repo": "stack-ide", + "sha256": "0m26b44gdxbpz6v0f27rx1x9frph19ykfvnr6716fnrm074d53ah", "rev": "c1e8416b2beb86c7f50109255d28379ca0b17735" }, "recipe": { "sha256": "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150923.1023", "deps": [ @@ -10880,28 +11535,30 @@ }, "pcmpl-args": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/JonWaltman/pcmpl-args.el.git", - "sha256": "7199b97dcbdd803d9397fd1de1da4a2e55831d2221948ed0a572129e8530d755", + "tag": "fetchFromGitHub", + "owner": "JonWaltman", + "repo": "pcmpl-args.el", + "sha256": "0pwx1nbgciy28rivvrgka46zihmag9ljrs40bvscgd9rkragm4zy", "rev": "2ba03b3125ada8037585e545b88bd85b79da5c37" }, "recipe": { "sha256": "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120912.24", "deps": [] }, "eprime-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AndrewHynes/eprime-mode.git", - "sha256": "4952a732abe4ed2913c5d7f37427294751d5da36b93e8942fa76e4bfbcd83ecc", + "tag": "fetchFromGitHub", + "owner": "AndrewHynes", + "repo": "eprime-mode", + "sha256": "1wwg46xdb488wxvglwvsy08vznrnmdmmbcvm9vb60dy3gqjmz7cw", "rev": "17a481af26496be91c07139a9bfc05cfe722506f" }, "recipe": { "sha256": "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140513.1316", "deps": [] @@ -10914,21 +11571,22 @@ }, "recipe": { "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100119.1548", "deps": [] }, "tco": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/tco.el.git", - "sha256": "98508310cff39dab988dd412d486931d1188294d728ea948a64d181e8d573ccf", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "tco.el", + "sha256": "1krway6iw62dlr4ak3kj9llqh48xjf3d84nlincap7gkrw886l4q", "rev": "d2224bd291e25724b06d8589d4d62d74ed32db24" }, "recipe": { "sha256": "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140412.812", "deps": [ @@ -10938,14 +11596,15 @@ }, "autobookmarks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/autobookmarks.git", - "sha256": "67268427f58dc0b4616854016855d5862d702d22701e5032bb47e78d229a0307", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "autobookmarks", + "sha256": "01q3k8i8vrs7pcr507kh48np0bc6smanh0ald1hv9h4dylkq89k7", "rev": "cec3a2ac60a382ee61996c17bd962bc5a2e45c4b" }, "recipe": { "sha256": "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.1645", "deps": [ @@ -10955,14 +11614,15 @@ }, "hayoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/benma/hayoo.el.git", - "sha256": "7478140af14f10b1bea5693fb4d234d46156c345196b99142951008520f45d5e", + "tag": "fetchFromGitHub", + "owner": "benma", + "repo": "hayoo.el", + "sha256": "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l", "rev": "3ca2fb0c4d5f337d0410c21b2702dd147014e984" }, "recipe": { "sha256": "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140831.721", "deps": [ @@ -10972,28 +11632,30 @@ }, "dedukti-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rafoo/dedukti-mode.git", - "sha256": "e27ff030d37e261ac535cf0077c310a688e8cebabe11a3becba064927cec51c1", + "tag": "fetchFromGitHub", + "owner": "rafoo", + "repo": "dedukti-mode", + "sha256": "1haixiy94r50rfza64dypb7fi256231pf06g6p2il9kyscqg0zz2", "rev": "7d9f459c87c84f1067eb87542da4549de5e38650" }, "recipe": { "sha256": "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150820.908", "deps": [] }, "project-persist-drawer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/project-persist-drawer.git", - "sha256": "8c5550403d4e4d2fe12092f2a04c4ce53809b0b8f4cad840593923060c6c8aeb", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "project-persist-drawer", + "sha256": "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8", "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" }, "recipe": { "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.622", "deps": [ @@ -11008,35 +11670,37 @@ }, "recipe": { "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140808.1635", "deps": [] }, "pianobar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/agrif/pianobar.el.git", - "sha256": "2d046e443a2edf1564b3b074ac658a97b58c3b1871a79008b56d5c0de8c77214", + "tag": "fetchFromGitHub", + "owner": "agrif", + "repo": "pianobar.el", + "sha256": "053jqzl0sp3dnl4919vi30xqrdcpi9jsqx5hndj1bprf7926w11d", "rev": "9193e3888a8097dbe7ee58e4658cc6ec2a76b160" }, "recipe": { "sha256": "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120128.1501", "deps": [] }, "image-archive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-image-archive.git", - "sha256": "cb96826e6ffa740e0859f6ecc08b40bef04f4844e430effde9efee440a784c41", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-image-archive", + "sha256": "0hacg0549vpgx7yyyc748i44zw5y825w1v7nb440wx7sdxp855nb", "rev": "ff33f64d09432a8f5bf1714d4cf750c01626fe98" }, "recipe": { "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150219.18", "deps": [ @@ -11046,28 +11710,30 @@ }, "nummm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/agpchil/nummm-mode.git", - "sha256": "bd0b97d2f18ee035c0040b1259e0035056fd6c9a93bf3c1712364ed475f51ec4", + "tag": "fetchFromGitHub", + "owner": "agpchil", + "repo": "nummm-mode", + "sha256": "1i0yymsx8kin28bkrgwkk9ngsmjh0gh5j4hb0k03bq4fy799f2xx", "rev": "81951e12032274543c5f7a585b29bd93961e94e4" }, "recipe": { "sha256": "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.414", "deps": [] }, "el-spice": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vedang/el-spice.git", - "sha256": "85ecdd64a7e601e8575a2181aaca5aadf8bdc67773e80d526904598c276c7780", + "tag": "fetchFromGitHub", + "owner": "vedang", + "repo": "el-spice", + "sha256": "1sba405h1sy5vxg4ki631p4979gyaqv8wnwbgca5jp2pm8l3viri", "rev": "65d9ec84b581a5867eebbc58de93958e992ca80d" }, "recipe": { "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140805.1338", "deps": [ @@ -11076,14 +11742,15 @@ }, "package-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/package-utils.git", - "sha256": "8a93e3ea9776d00042616b08c04059bda9a9896d30b841dc9e8ec85ef101148d", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "package-utils", + "sha256": "138l07qmxj4fkvf43f1hdn4skadxb50c023bc5101l3njzmf74wa", "rev": "4a56f411f98fd455556a3f1d6c16a577a22057a2" }, "recipe": { "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150126.606", "deps": [ @@ -11092,14 +11759,15 @@ }, "julia-shell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dennisog/julia-shell-mode.git", - "sha256": "08df93ffc6ac200df0853c6319c18e8a24ff3dff1bc630500616b1e086958a64", + "tag": "fetchFromGitHub", + "owner": "dennisog", + "repo": "julia-shell-mode", + "sha256": "0r4ajn3f1c8n0r831ihvzwyzy94aiv0ijqrwhpq0s85cqvzr7pq8", "rev": "3e25a6b2e942dc323512f2530f48cbc8794cfd48" }, "recipe": { "sha256": "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.1252", "deps": [ @@ -11108,14 +11776,15 @@ }, "cycbuf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/martinp26/cycbuf.git", - "sha256": "bcdc606bbe67ad97de8feda8fde0b97c5408c8f2ae455fc92657e71eaa46b1b4", + "tag": "fetchFromGitHub", + "owner": "martinp26", + "repo": "cycbuf", + "sha256": "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w", "rev": "1079b41c3eb27d65b66d4399959bb6253f84858e" }, "recipe": { "sha256": "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131203.1437", "deps": [] @@ -11125,11 +11794,11 @@ "tag": "fetchsvn", "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", - "rev": "53137" + "rev": "53195" }, "recipe": { "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150306.1959", "deps": [ @@ -11145,7 +11814,7 @@ }, "recipe": { "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130131.120", "deps": [] @@ -11159,7 +11828,7 @@ }, "recipe": { "sha256": "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.619", "deps": [ @@ -11171,28 +11840,30 @@ }, "seeing-is-believing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jcinnamond/seeing-is-believing.git", - "sha256": "7b89fb8610f3acc23e831ea0baa160122dc2309d6616f6f913331ec9c8fde3a6", + "tag": "fetchFromGitHub", + "owner": "jcinnamond", + "repo": "seeing-is-believing", + "sha256": "19p3zp4cj7ik2gwzc5k6klqc4b8jc2hvm80yhczc5b7k223gp2bv", "rev": "a698443529ea26fba3fd0748fe10439be7721e96" }, "recipe": { "sha256": "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151010.1229", "deps": [] }, "cdnjs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/cdnjs.el.git", - "sha256": "53062daa4ee4ebd92fe7cd35ffc43fa67e271d72809221e8508aa3f74164572b", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "cdnjs.el", + "sha256": "0aspci0zg8waa3l234l0f8fjfzm67z2gydfdwwpxksz49sm2s1jk", "rev": "eac2b4d150907aeb2d568327d04775578c82887f" }, "recipe": { "sha256": "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140217.1512", "deps": [ @@ -11205,28 +11876,30 @@ }, "pdb-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sixpi/pdb-mode.git", - "sha256": "9b5f985a3ddd6191086af42addd3ab6731b6b7f28679627de19b9fb69f515025", + "tag": "fetchFromGitHub", + "owner": "sixpi", + "repo": "pdb-mode", + "sha256": "1xkkyz7y08jr71rzdacb9v7gk95qsxlsshkdsxq8jp70irq51099", "rev": "855fb18ebb73b5df30c8d7677c2bcd0f361b138a" }, "recipe": { "sha256": "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150128.1151", "deps": [] }, "interval-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/interval-list.git", - "sha256": "5f7234a8484283cfc1aa217f1a545fdf9d6ceee7c8c1a1e88649539f89a866ff", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "interval-list", + "sha256": "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz", "rev": "38af7ecf0a493ad8f487074938a2a115f3531177" }, "recipe": { "sha256": "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150327.1218", "deps": [ @@ -11237,14 +11910,15 @@ }, "beginend": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/beginend.git", - "sha256": "0de8996dd32ff4082ccc7d429bde5843c928692f514daff4dc648ed5429c92df", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "beginend", + "sha256": "1hyiz7iwnzbg1616q0w7fndllbnx4m98kakgxn04bsqib5fqk78p", "rev": "c5bfdc3bb77a8c019aa4433cf12d3c45690c27bd" }, "recipe": { "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150607.1201", "deps": [ @@ -11260,21 +11934,22 @@ }, "recipe": { "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150920.1013", "deps": [] }, "recursive-narrow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/recursive-narrow.git", - "sha256": "63386e45611da1eec9686e4b8b2335cf915f70ccea27375ee46bd8df94a747d6", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "recursive-narrow", + "sha256": "1mj7lyadzn3bwig3f9zariq5z4fg6liqnjvfd34yx88xc52nwf33", "rev": "bc0cab88234ca92640d4b8da0d83e132c1897922" }, "recipe": { "sha256": "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140902.1227", "deps": [] @@ -11287,21 +11962,22 @@ }, "recipe": { "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20111222.1156", "deps": [] }, "shift-text": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/shift-text.git", - "sha256": "c49153f8360b05f4e36a75910d36ce6e9782bf46755bf0de91586564d2e255c3", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "shift-text", + "sha256": "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr", "rev": "1be9cbf994000022172ceb746fe1d597f57ea8ba" }, "recipe": { "sha256": "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130831.1155", "deps": [ @@ -11311,42 +11987,45 @@ }, "vimgolf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/timvisher/vimgolf.git", - "sha256": "94b580d1d1e00368e92a36b5bd5b1814b40384302185a13e18e93bfd2683c5e2", + "tag": "fetchFromGitHub", + "owner": "timvisher", + "repo": "vimgolf", + "sha256": "1i407ilhmk2qrk66ygbvizq964bdk502x7lvrzs4wxwfr5y8ciyj", "rev": "289bef87963b660c0cf6ea1f648ac2440c609c88" }, "recipe": { "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140814.1648", "deps": [] }, "palimpsest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danielsz/Palimpsest.git", - "sha256": "dd0cd1212736778e81f455946ce7c18a281a4d58bacf47048df28436e03d78cc", + "tag": "fetchFromGitHub", + "owner": "danielsz", + "repo": "Palimpsest", + "sha256": "1kbja107smdjqv82p84jx13jk1410c9vms89p1iy1jvn7s8g9fiq", "rev": "69fe61494bfd24305bf7e387fa716474918eafa2" }, "recipe": { "sha256": "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130731.1021", "deps": [] }, "ac-geiser": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xiaohanyu/ac-geiser.git", - "sha256": "ac74a897e03d3ab03c2be01a4a88e578a9d7167c6c6456fadc0c66eea9e0e959", + "tag": "fetchFromGitHub", + "owner": "xiaohanyu", + "repo": "ac-geiser", + "sha256": "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn", "rev": "0e2e36532336f27e3dc3b01fff55ad1a4329817d" }, "recipe": { "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130929.147", "deps": [ @@ -11362,21 +12041,22 @@ }, "recipe": { "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130130.1550", "deps": [] }, "hound": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ryoung786/hound.el.git", - "sha256": "d2f418d4cd00346bf91a6342bcb19b9dff629e7352a1b1dcc45dd3823fb3a5be", + "tag": "fetchFromGitHub", + "owner": "ryoung786", + "repo": "hound.el", + "sha256": "1gm5nczq5lsxqkfb38ajffg65zwxkfqvqhk33bwnnd00rpa1ix6j", "rev": "26fb047ff4e4c1fe5b66423cb29a7394b9ace665" }, "recipe": { "sha256": "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150217.1149", "deps": [ @@ -11386,14 +12066,15 @@ }, "tuareg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ocaml/tuareg.git", - "sha256": "5d9e5b483f7fa92387ce9efccf4e9b9f5c9a61b868df80443f24416ac1b51be3", + "tag": "fetchFromGitHub", + "owner": "ocaml", + "repo": "tuareg", + "sha256": "1650j84yvvwci0b8zy40dsdp75ad5f4d9pvkf9kzd47dkafjsyca", "rev": "bc94358eda8b6b1484e9daa83ac884fc0f5427d2" }, "recipe": { "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.851", "deps": [ @@ -11402,42 +12083,45 @@ }, "twilight-anti-bright-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jimeh/twilight-anti-bright-theme.git", - "sha256": "d3f08b4a43f1936bcc659adef65d929e44873cdc847ef71ad03aaf7eda265a7c", + "tag": "fetchFromGitHub", + "owner": "jimeh", + "repo": "twilight-anti-bright-theme", + "sha256": "1bj2mpiklqcangjzbnz5wz7klsfvp0x397lidvf42awn7s2aax0n", "rev": "c3a7b4177416031284da73f53b4dddaa27570bd7" }, "recipe": { "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140810.234", "deps": [] }, "benchmark-init": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dholm/benchmark-init-el.git", - "sha256": "b3c94c4bd6096115f824aef84bb9bdb88ff5d6c8b6406686ae5013b7f5adb418", + "tag": "fetchFromGitHub", + "owner": "dholm", + "repo": "benchmark-init-el", + "sha256": "058mic9jkwiqvmp3k9sfd6gb70ysdphnb1iynlszhixbrz5w7zs2", "rev": "8e4c32f32ec869fe521fb4d3c0a69406830b4178" }, "recipe": { "sha256": "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150905.438", "deps": [] }, "octicons": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-octicons.git", - "sha256": "7ca676d42e451a8ec7b19a7ce11f3e1f4b3c52ca2cd40b654607e0fc2a6ce736", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-octicons", + "sha256": "0dp7dhmgrq078rjhpm1cr993qjqz7qgy2z4sn73qw6j55va7d9kw", "rev": "229286a6166dba8ddabc8c4d338798c6cd3cf67d" }, "recipe": { "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.2240", "deps": [ @@ -11446,56 +12130,60 @@ }, "loc-changes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocky/emacs-loc-changes.git", - "sha256": "79030be31e6cddd1b33d6d04dd24c66085b71bc2d8d15874f819f027c8a289ed", + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-loc-changes", + "sha256": "0i0ainawjvfl3qix329hx01x7rxyfin2xgpjk7y5dgmh4p3xhv94", "rev": "58000738accf2f80ea2bf210f7dea5914adb14ee" }, "recipe": { "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150302.1048", "deps": [] }, "go-stacktracer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/samertm/go-stacktracer.el.git", - "sha256": "1e9c26152183c18a8a1369d7a8326fc537e55de665d0653aa7ed8ace9dd7b658", + "tag": "fetchFromGitHub", + "owner": "samertm", + "repo": "go-stacktracer.el", + "sha256": "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y", "rev": "a2ac6d801b389f80ca4e2fcc1ab44513a9e55976" }, "recipe": { "sha256": "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150430.1642", "deps": [] }, "initsplit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dabrahams/initsplit.git", - "sha256": "268c240e6a42ae807da540ead4f24c78ff6991d82d27036efc514706a303310c", + "tag": "fetchFromGitHub", + "owner": "dabrahams", + "repo": "initsplit", + "sha256": "031i0fihcisizip069rdv28nkzvq9krd9sj0lmyq1bj2d8729316", "rev": "ec1d659a8121e874bcc87a2a5e5c3f68f24e5f68" }, "recipe": { "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141219.1829", "deps": [] }, "downplay-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tobias/downplay-mode.git", - "sha256": "88141dcdd72d8e3b3326d5512f83797c279f95d17756c9860519c1d3dce6fa68", + "tag": "fetchFromGitHub", + "owner": "tobias", + "repo": "downplay-mode", + "sha256": "0s7swvfd7h8r0n3cjmkps6ary9vwg61jylfm4qrkp3idsz6is548", "rev": "4a2c3addc73c8ca3816345c3c11c08af265baedb" }, "recipe": { "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.1409", "deps": [] @@ -11509,21 +12197,22 @@ }, "recipe": { "sha256": "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130816.1554", "deps": [] }, "math-symbols": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/math-symbols.git", - "sha256": "8a225117cd8a4009ea2935a9689fe7c4d6c7f7cc36aff7535c324f9340ec1eb2", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "math-symbols", + "sha256": "1chyxi096krjbi9zgbrnrkvwgmn4wygnia9m57m0jh4arlbm28la", "rev": "666b1f00d9e106cf2a3a7d58c2262fe9a1404764" }, "recipe": { "sha256": "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.1842", "deps": [ @@ -11532,14 +12221,15 @@ }, "ruby-compilation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/rinari.git", - "sha256": "a40dc36b14bdeced68a71c2a7aea318c66c5796ebc5209c2ff592bcf71ff7099", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rinari", + "sha256": "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx", "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" }, "recipe": { "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150709.140", "deps": [ @@ -11548,14 +12238,15 @@ }, "flycheck-google-cpplint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-google-cpplint.git", - "sha256": "f0cf357e97f84afaaba6e41e44d1574ca7601649a78148310955005fa28f112f", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-google-cpplint", + "sha256": "0fykawnq9ch1vj76rsimwbmn2xxdamsnvbj4ahqaqhq7adb2wyrq", "rev": "dc23300757c6762c018d536a5831aef2486f7a17" }, "recipe": { "sha256": "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140806.1125", "deps": [ @@ -11570,7 +12261,7 @@ }, "recipe": { "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150630.1632", "deps": [ @@ -11579,28 +12270,30 @@ }, "rebox2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/rebox2.git", - "sha256": "41f73f7c0ebdad3ba70cddf1fd7adbf4ef9a2a90e0af9fdf3199890a894d48f0", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "rebox2", + "sha256": "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z", "rev": "00634eca420cc48657b81e40e599ff8548083985" }, "recipe": { "sha256": "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121113.700", "deps": [] }, "alchemist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/alchemist.el.git", - "sha256": "864717b68c3ad2c940d34c6a0314c6b1651c4f70df1d140a0ee24bbc2b20f720", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "alchemist.el", + "sha256": "1waspq1apxk4l6m9wshhjp44nj1sci1xvk9pah9gy977j74ng0yl", "rev": "2d9c2079c95a0dea0d564576e64dee2e758eea97" }, "recipe": { "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.49", "deps": [ @@ -11613,14 +12306,15 @@ }, "eopengrok": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/youngker/eopengrok.el.git", - "sha256": "f3d4e725c36c7a4c739576b46904484b8d59aaf7b95c4646fe180a7a013bebfb", + "tag": "fetchFromGitHub", + "owner": "youngker", + "repo": "eopengrok.el", + "sha256": "1yzb7c0pl2hqzr34cp5ryym5k3ab9026kd3njmrlqykcqcjygm7k", "rev": "1e471ee40145e73316ad5a965a44b46edbae68a3" }, "recipe": { "sha256": "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.109", "deps": [ @@ -11632,28 +12326,30 @@ }, "pretty-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/akatov/pretty-mode.git", - "sha256": "e83518274f8199df364f34fdee53a87ed1e99c45ebd8a6c09f0d8e0f25c6d25f", + "tag": "fetchFromGitHub", + "owner": "akatov", + "repo": "pretty-mode", + "sha256": "0ccqym98c6zdyrparj5n97bpp9rspxb3z5lqfcrjypp0kn04z1ss", "rev": "3e0b88d3db20f89fda2cdce3f54371728dcfd05b" }, "recipe": { "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141207.1352", "deps": [] }, "function-args": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/function-args.git", - "sha256": "487907165dd444b9d6a20e840b77ea4f0d7538dce62d55228fd773cd0067ee54", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "function-args", + "sha256": "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8", "rev": "25e447d8a8930a8c515077de57a7693c6a642514" }, "recipe": { "sha256": "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151022.751", "deps": [ @@ -11662,14 +12358,15 @@ }, "dayone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mori-dev/emacs-dayone.git", - "sha256": "25d989f8c68da2bd51a2d3c3987f1b1dc6d543b40ee3ec1d8d01ef292aa78a20", + "tag": "fetchFromGitHub", + "owner": "mori-dev", + "repo": "emacs-dayone", + "sha256": "084alwm2kvq1ilfyrqqfni1xbihx3dzrihykl98vv8ldqvw8kn95", "rev": "046771dcb58f6cd9d21a67b3627075d739d3ed4d" }, "recipe": { "sha256": "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.455", "deps": [ @@ -11680,14 +12377,15 @@ }, "splitjoin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-splitjoin.git", - "sha256": "da5c5c63175c171df6b766634fc68dc8107f64dfa3669d89c15eaea97d7431f0", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-splitjoin", + "sha256": "1qdy9nc2h7mwxh7zg2p1x7yg96hxkwxqimjp6zb1119jx0s8grjc", "rev": "e2945ee269e6e90f0243d6f2a33e067bb0a2873c" }, "recipe": { "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150505.932", "deps": [ @@ -11696,28 +12394,30 @@ }, "url-shortener": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuyang0/url-shortener.git", - "sha256": "a50b0b1ec254ceafffbb27848183e4e3f1eaa69f81530138f257c9154b37ccfd", + "tag": "fetchFromGitHub", + "owner": "yuyang0", + "repo": "url-shortener", + "sha256": "118c23dsfgkhwhv65dx3wbg2dn7qyrd80d78cykl732c68d6wvi0", "rev": "2ce3fedbdc44f778f28a5a08f06958bc5dccae88" }, "recipe": { "sha256": "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150806.113", "deps": [] }, "frame-restore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/frame-restore.el.git", - "sha256": "581e94c8e7c6ed472e28eb0590e532c0495bb58a50fc187a0e40c6805e664e90", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "frame-restore.el", + "sha256": "0n6jhm1198c8slvdymsfjif0dfx3wlf8q4mm0yvpiln46shhwldx", "rev": "6346cf157d5e1b487a16839d998258b7e693cbc8" }, "recipe": { "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140811.1609", "deps": [ @@ -11726,58 +12426,62 @@ }, "fortune-cookie": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andschwa/fortune-cookie.git", - "sha256": "90996f701f96d0691f86681f9a88d03706ffb579b585b92c3b77b4c39ffa854c", + "tag": "fetchFromGitHub", + "owner": "andschwa", + "repo": "fortune-cookie", + "sha256": "1kk04hl2y2svrs07w4pq9f4g7vs9qzy2qpw9prvi1gravmnfrzc4", "rev": "9bf0d29358989e1aee61c472bd5204b9bdf46465" }, "recipe": { "sha256": "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.35", "deps": [] }, "link": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myrkr/dictionary-el.git", - "sha256": "886b331bc9ef9c9ab171a4c370c80c342417fb8fcb9793edf17baa9984c11587", + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm", "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" }, "recipe": { "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140717.2229", "deps": [] }, "bind-map": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/justbur/emacs-bind-map.git", - "sha256": "baf6863618424fc74721504fe9017a049f2478ea682b134fb338195e2ee37fd8", - "rev": "bb7a8b225879fc6a865464e5e63865653ae74427" + "tag": "fetchFromGitHub", + "owner": "justbur", + "repo": "emacs-bind-map", + "sha256": "18i2lq89pay4s58xvybmk7bs9haq5vx217wi25fzxgam6nwnzkhy", + "rev": "d47be94d236c819b5ca47d66551d23a0ee17ac33" }, "recipe": { "sha256": "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151214.1902", + "version": "20151217.1029", "deps": [ "emacs" ] }, "jumplist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ganmacs/jumplist.git", - "sha256": "d4230811c427ed1b509c69d887b17d4666cf2dde277ae70c86ac920190df7f7a", + "tag": "fetchFromGitHub", + "owner": "ganmacs", + "repo": "jumplist", + "sha256": "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl", "rev": "c482d137d95bc5e1bcd790cdbde25b7f729b2502" }, "recipe": { "sha256": "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.2145", "deps": [ @@ -11792,63 +12496,67 @@ }, "recipe": { "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1833", "deps": [] }, "button-lock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/button-lock.git", - "sha256": "0c649aebcf12e0d1c86816154504ebc98670be8baf369f5b9f0fc78cd95c236e", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "button-lock", + "sha256": "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl", "rev": "f9082feb329432fcf2ac49a95e64bed9fda24d58" }, "recipe": { "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.754", "deps": [] }, "readline-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/monsanto/readline-complete.el.git", - "sha256": "a65a12e1947a2656ce5ae317ba93e25465112850fb9d2414829f5377552fabc8", + "tag": "fetchFromGitHub", + "owner": "monsanto", + "repo": "readline-complete.el", + "sha256": "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6", "rev": "30c020c37b2741160cc37e656e13c85d826a0ebf" }, "recipe": { "sha256": "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150708.937", "deps": [] }, "fill-column-indicator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alpaker/Fill-Column-Indicator.git", - "sha256": "38eff1d0565ca7ff30d29cac933f6042e032cd0241208cb913ee7862f1d5783d", + "tag": "fetchFromGitHub", + "owner": "alpaker", + "repo": "Fill-Column-Indicator", + "sha256": "0gbqspqn4y7f2fwqq8210b6k5q22c0zr7b4ws8qgz9swav8g3vrq", "rev": "0e755319451dd9c6c99c2a2ef82c890ba93343b6" }, "recipe": { "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1433", "deps": [] }, "mallard-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jhradilek/emacs-mallard-snippets.git", - "sha256": "c2dba98a425cc148f7963a7c1f8d984ca0d94a0c11747339a5e4fa6a0f896762", + "tag": "fetchFromGitHub", + "owner": "jhradilek", + "repo": "emacs-mallard-snippets", + "sha256": "0qk7i47nmyp4llwp6x0i1i5dk82ck26iyz1sjvvlihaw8a5akny2", "rev": "70c5293f10722f2ace73bdf74d9a18f95b040edc" }, "recipe": { "sha256": "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131023.1351", "deps": [ @@ -11858,14 +12566,15 @@ }, "ido-gnus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/ido-gnus.git", - "sha256": "3716e0d07f51be352ffc48a2ee6bf580d13264bce8db55968f624bbb4be3cd45", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "ido-gnus", + "sha256": "0ifdwd5vnjv2iyb5bnz8pij35lc0ymmyx8j8zhpkbgjigz8f05ip", "rev": "f5fe3f6aa8086f675ba216abace9e3d5f2e3a089" }, "recipe": { "sha256": "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140216.1046", "deps": [ @@ -11874,28 +12583,30 @@ }, "farmhouse-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattly/emacs-farmhouse-theme.git", - "sha256": "7f551514979c5df0ead6abb3854d59df9ca7993f67a5948866170b3285728f22", + "tag": "fetchFromGitHub", + "owner": "mattly", + "repo": "emacs-farmhouse-theme", + "sha256": "08lgfa2k42qpcs4999b77ycsg76zb56qbcxbsvmg0pcwjwa1ambz", "rev": "a09e7cd5b12542d27474aad7e118c8ede3edbea1" }, "recipe": { "sha256": "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150506.2327", "deps": [] }, "serverspec": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-serverspec.git", - "sha256": "141e525f5827ce7841d556ae8fe02c455c124847fd020da39b38012fd2c7b732", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-serverspec", + "sha256": "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2", "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" }, "recipe": { "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150623.655", "deps": [ @@ -11907,28 +12618,30 @@ }, "prognth": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/prognth.git", - "sha256": "955332b8f1f3b46cec6c7d9e558194c4590b93da406470ae1ccf8143e6d2fdeb", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "prognth", + "sha256": "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm", "rev": "2f1ca4d34b1fd581163e1df122c85418137e8e62" }, "recipe": { "sha256": "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130920.1259", "deps": [] }, "butler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AshtonKem/Butler.git", - "sha256": "73642b08f3ed6f0dcfc5e474361c1f64166dd18612de113cab04543861ea3bed", + "tag": "fetchFromGitHub", + "owner": "AshtonKem", + "repo": "Butler", + "sha256": "0pp604r2gzzdpfajw920607pklwflk842difdyl4hy9w87fgc0jg", "rev": "8ceb35737107572455cca9a61ff46b3ff78f1016" }, "recipe": { "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150811.1908", "deps": [ @@ -11939,42 +12652,45 @@ }, "iflipb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jrosdahl/iflipb.git", - "sha256": "714284d5fd269eab2cc13b595959ce6366f531415a00c0805e1ff064b5f434a3", + "tag": "fetchFromGitHub", + "owner": "jrosdahl", + "repo": "iflipb", + "sha256": "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki", "rev": "2e0d1719abeec7982341761ee5dabb01574e6862" }, "recipe": { "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141123.1516", "deps": [] }, "ido-complete-space-or-hyphen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/doitian/ido-complete-space-or-hyphen.git", - "sha256": "c66f9ee98281e0c5a0705368eedc2e611f29a19d45df13c94e476ce3ec13dc4a", + "tag": "fetchFromGitHub", + "owner": "doitian", + "repo": "ido-complete-space-or-hyphen", + "sha256": "1aih8n10lcrw0bdgvlrkxzhkpxpmphw07cvbp6zd27ia25037fzw", "rev": "3fe1fe1e1a743f8deb8f4025977647afecd58f14" }, "recipe": { "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130228.408", "deps": [] }, "bbdb-android": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/bbdb-android.git", - "sha256": "5027710ede91d0f36752a175bebf72b0316bdea313c066dfb512ab51f40b521c", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "bbdb-android", + "sha256": "0m80k87dahzdpfa4snbl4p9zm5d5anc8s91535mwzsnfbr98qmhm", "rev": "60641acf8b90e34b70f783b3d6e7789a4272f2b4" }, "recipe": { "sha256": "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150706.24", "deps": [ @@ -11983,42 +12699,45 @@ }, "sift": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/sift.el.git", - "sha256": "f8c3740afefdbc636ebc27662d8bbbdef6fc0a89ede76d62c00e222f99c559fe", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "sift.el", + "sha256": "0v4glcpxp812554dggimv6srccwg7031iys4j7c0b97cm279jyhi", "rev": "a757745492124e5a021a4cc7e62d5349c21213c6" }, "recipe": { "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.1123", "deps": [] }, "moz": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bard/mozrepl.git", - "sha256": "808970f4ab8cdcf160aec0a3fcdcfc89a12d49bafff31ac117dda8048c6fea5b", + "tag": "fetchFromGitHub", + "owner": "bard", + "repo": "mozrepl", + "sha256": "1g06i3d8xv8ja6nfww4k60l3467xr1s9xsk7i6dbicq0lf8559h9", "rev": "57f278849e4246a992e731e188b221a2574fc81e" }, "recipe": { "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150805.1206", "deps": [] }, "baidu-life": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lujun9972/el-baidu-life.git", - "sha256": "ae94b5acc387e5553d9d05ff895674d1c4e233afc2065235c6767fee55e85303", + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "el-baidu-life", + "sha256": "00skx1aywzvnqqsm41n2mwry5i6ifib8kzq5klymbrc7qfnbb55f", "rev": "4cb251d44e97da54306af9d99444d9b8525f043e" }, "recipe": { "sha256": "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.615", "deps": [ @@ -12027,14 +12746,15 @@ }, "use-package-chords": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/use-package-chords.git", - "sha256": "5fc2ca3cbffb50e5190796767ecdf3e7558bd4e587d18328e0a859103af11780", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "use-package-chords", + "sha256": "100py4x10nd8w0l87lc7wpa8nmg7yg6pwxln0wcyal7vpwycmhjz", "rev": "e5f7a43fd0a63a4a0bf7dabc2c223f615ea71eca" }, "recipe": { "sha256": "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151001.1528", "deps": [ @@ -12045,14 +12765,15 @@ }, "jekyll-modes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fred-o/jekyll-modes.git", - "sha256": "c34ca7de87533176ebc700127ebbec5af27aed24ef3a71d56c077da4856e255e", + "tag": "fetchFromGitHub", + "owner": "fred-o", + "repo": "jekyll-modes", + "sha256": "0rx72rid7922mhw21j85kxmx0fhpkmkv9jvxmj9izy01xnjbk00c", "rev": "7cb10b50fd2883e3f7b10fdfd98f19f2f0b2381c" }, "recipe": { "sha256": "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141117.714", "deps": [ @@ -12061,14 +12782,15 @@ }, "timer-revert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/timer-revert.git", - "sha256": "0acd5c46e41bc0481f5391a570d5daec8b25c29a217c5433943206fae8496c90", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "timer-revert", + "sha256": "1hidvbd1xzz9m0fc55wac1mpv4dpcf8qnw1myh3646bfvivj9c2q", "rev": "615c91dec8b440d2b9b7c725dd733d7432564e45" }, "recipe": { "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150122.1432", "deps": [] @@ -12082,21 +12804,22 @@ }, "recipe": { "sha256": "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141210.627", "deps": [] }, "helm-mt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dfdeshom/helm-mt.git", - "sha256": "f4a96df13dd432ce52a5da88b77f1bf0cacfd49c8b473a7830c65977b0422b27", + "tag": "fetchFromGitHub", + "owner": "dfdeshom", + "repo": "helm-mt", + "sha256": "09rb8aq7fnf661w3liwbkkaczjph3dzvg26slm9cwcnl7pqnvagl", "rev": "39a7d58050942f6afc15b1078f1e397ec4c8cd5c" }, "recipe": { "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.2320", "deps": [ @@ -12108,14 +12831,15 @@ }, "web-server": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/emacs-web-server.git", - "sha256": "e8e64c4cb210079d56771bf659b2fa6a2b0236986b844902cf04f440ae71fa68", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "emacs-web-server", + "sha256": "0mbhyk7sgisx0l0xiz2xgy4jfbgwazlnxjvajsh4nysyig5rys05", "rev": "469cd3bc117bfb8da0c03a2a2fb185e80c81d068" }, "recipe": { "sha256": "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140905.1906", "deps": [ @@ -12124,14 +12848,15 @@ }, "bpr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ilya-babanov/emacs-bpr.git", - "sha256": "292f8d0c8a6f179a2570d4eb2d415dfad8cb62b9eb65b6c7282c9a25219f4729", + "tag": "fetchFromGitHub", + "owner": "ilya-babanov", + "repo": "emacs-bpr", + "sha256": "01bh371c0ln0qw1wixw28gdyjk4v8griw464d671r26wsxjdiwqy", "rev": "1c8ffe083df2bb1e8a9aa44c9ed450f631081ae4" }, "recipe": { "sha256": "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.1415", "deps": [ @@ -12140,56 +12865,60 @@ }, "thumb-through": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/apgwoz/thumb-through.git", - "sha256": "967bb5f560bf63ccf43f1cde24a9c61f89ebccd60f9ed831574d738e7d66d75b", + "tag": "fetchFromGitHub", + "owner": "apgwoz", + "repo": "thumb-through", + "sha256": "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn", "rev": "08d8fb720f93c6172653e035191a8fa9c3305e63" }, "recipe": { "sha256": "1krn7zn2y8p51m8dxai5nbrwbdviz6zrjzz0kykya9cqz4n9dhln", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120118.2334", "deps": [] }, "darcula-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fommil/darcula-theme-emacs.git", - "sha256": "4f1c655b71a7afd131d97a2b92f53692a41301ab1271af2732bc5e4b015ea8c5", + "tag": "fetchFromGitHub", + "owner": "fommil", + "repo": "darcula-theme-emacs", + "sha256": "100aycjy47md09aw0wlp846py93zrvw6wafcmmha1vbc8p5v5nms", "rev": "05dea7041483e2ac9f0839cba01f7bf218a2d87e" }, "recipe": { "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150629.435", "deps": [] }, "cm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/criticmarkup-emacs.git", - "sha256": "cad88a3292200d88276fd7a53af96729c828453cce1a7517d06bb50e7ab223c6", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "criticmarkup-emacs", + "sha256": "1ii3n9x0xdbbs0bpa6nf7i2jij19czwkm9fpdwkqh390j8r8mn6a", "rev": "61b1557bad3cf7dfd0fc4c9eb4a7af0d86d605d0" }, "recipe": { "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141112.1915", "deps": [] }, "dynamic-fonts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/dynamic-fonts.git", - "sha256": "dea6c666560df1ffd7cee22112427b5bb3c2d92643565deab802e0ff10bad83b", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "dynamic-fonts", + "sha256": "150dj1g49q9x9zx9wkymq30l5gc8c4mhsq91fm6q0yj6ip7hlfxh", "rev": "ab0c65accbdb59acaed5b263327e22ec019b3e82" }, "recipe": { "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140731.726", "deps": [ @@ -12200,42 +12929,45 @@ }, "ethan-wspace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/glasserc/ethan-wspace.git", - "sha256": "449b5c11a486897a9c77a4967146b873c0104e33b0cc8b4f0e3b8632fe93b02a", - "rev": "acba9d4a8c25719ef7acfb0edd04e3339eb07312" + "tag": "fetchFromGitHub", + "owner": "glasserc", + "repo": "ethan-wspace", + "sha256": "098mfyw63b23h7jajaik1rfj307sxs82nnwf6b81j550kl2n05y6", + "rev": "477444d95adc2cb86c82e498cbaa5fbb1fc293a8" }, "recipe": { "sha256": "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20140709.743", + "version": "20151217.2010", "deps": [] }, "ssh": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ieure/ssh-el.git", - "sha256": "6da77166f0d18a504978d14144142a596a00a299ddf751643ee22cd8f86cb0e5", + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "ssh-el", + "sha256": "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd", "rev": "c17cf5b43df8ac4662a0580f85898e1f078df0d1" }, "recipe": { "sha256": "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120904.1542", "deps": [] }, "bbdb2erc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/unhammer/bbdb2erc.git", - "sha256": "7ab5d52daf8adb18fffc47e201a9f96591ab91e447d017b7e41c20ad583b70fe", + "tag": "fetchFromGitHub", + "owner": "unhammer", + "repo": "bbdb2erc", + "sha256": "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs", "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd" }, "recipe": { "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130607.129", "deps": [ @@ -12244,28 +12976,30 @@ }, "whitespace-cleanup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/whitespace-cleanup-mode.git", - "sha256": "7988261fc656c624b942a4885e86a45f0b6f5bf3d4531be34f4d4f90bd5fd097", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "whitespace-cleanup-mode", + "sha256": "15yhbyyr0ksd9ziinlylyddny2szlj35x2548awj9ijnqqgjd23r", "rev": "14eaf40e0e67539106d3636af440a167105be296" }, "recipe": { "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150603.647", "deps": [] }, "m-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/m-buffer-el.git", - "sha256": "84223cbaddcce66510e49654ceacdb61343116eac03441418fd79f9820449085", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "m-buffer-el", + "sha256": "07v2mch8qd8s760gxx3c8fdqqsjpqpxacl5nsbiqvpsvccky66b3", "rev": "883e6192e992ae783e51de6cd6b6a7dbaa54dce0" }, "recipe": { "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.1116", "deps": [ @@ -12275,70 +13009,75 @@ }, "yard-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pd/yard-mode.el.git", - "sha256": "62be969f3ce113c605be94a4cf30ce692288a7e80d85c9deffbf7cad3eb80b29", + "tag": "fetchFromGitHub", + "owner": "pd", + "repo": "yard-mode.el", + "sha256": "06mjjxa0blgxd8dbahgyni3b1rscbwjpxby5abrgfbb0fvs2bnfa", "rev": "aa303f6f1c348cbee1dbab3be2ad04b0aaa590cf" }, "recipe": { "sha256": "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140816.1244", "deps": [] }, "lodgeit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ionrock/lodgeit-el.git", - "sha256": "94abb5a54f39cb3e3b5d874d3f0fc414f1b9bce01de87827503dfe098ea8b6b1", + "tag": "fetchFromGitHub", + "owner": "ionrock", + "repo": "lodgeit-el", + "sha256": "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl", "rev": "ec9b8e5cbb17bcf8ac4bdddd1d361cb60e59384c" }, "recipe": { "sha256": "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150312.849", "deps": [] }, "distinguished-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lokaltog/distinguished-theme.git", - "sha256": "3e2e18718c165c5dfaa00be0bb547a6ca1f0dad6225857ea9a3015e4bdc4e4ae", - "rev": "7fe66fbe6f808047a66d3174d1e2152fedb93ec6" + "tag": "fetchFromGitHub", + "owner": "Lokaltog", + "repo": "distinguished-theme", + "sha256": "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm", + "rev": "9b1d25ac59465a5016d187ea84b7614c95a29b3b" }, "recipe": { "sha256": "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151007.448", + "version": "20151216.1415", "deps": [] }, "wavefront-obj-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abend/wavefront-obj-mode.git", - "sha256": "de051d41a7413f516ee2ffc796fece2c72bfcef01f2cf067a4062581b2f8887f", + "tag": "fetchFromGitHub", + "owner": "abend", + "repo": "wavefront-obj-mode", + "sha256": "0zw8z2r82986likz0b0zy37bywicrvz9dizzw9p52gs1lx0is1fy", "rev": "75eedad052848e82cdd94064764956b906e6d6b2" }, "recipe": { "sha256": "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150501.1316", "deps": [] }, "pow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yukihr/emacs-pow.git", - "sha256": "01ce7da470aecabf151927bce9d009c3a205836c08283f89621dd05a6bf39f5d", + "tag": "fetchFromGitHub", + "owner": "yukihr", + "repo": "emacs-pow", + "sha256": "1qizc9vh7lazs66s80avbf4whyrcinav07lpzva27yqb1gkmwap2", "rev": "86f8c1cdea08a875adf9f68995647ffc4fe5b140" }, "recipe": { "sha256": "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140420.306", "deps": [ @@ -12348,14 +13087,15 @@ }, "memolist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mikanfactory/memolist.el.git", - "sha256": "f56adb555e40471ca199d78b8eaa2004c83335faad7b4eee3c3b8a80b6cca4c9", + "tag": "fetchFromGitHub", + "owner": "mikanfactory", + "repo": "memolist.el", + "sha256": "1jd4rjv812iv7kp4wyxdz8sk7j0442m8x2ypk6hiqis0braxnspm", "rev": "60c296e202a71e9dcf1c3936d47b5c4b95c5839f" }, "recipe": { "sha256": "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.1221", "deps": [ @@ -12365,28 +13105,30 @@ }, "iasm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/RAttab/iasm-mode.git", - "sha256": "e5356cfc7d945e38661046a90a0f135ab1b888425c3a4734ddd2e19d220d82be", + "tag": "fetchFromGitHub", + "owner": "RAttab", + "repo": "iasm-mode", + "sha256": "1gl21li9vqfjvls4ffjw8a4bicas2c7hmaa621k3hpllgpy6qdg5", "rev": "6b404ff94bbfe971b3614007c8e5dcd5757c5727" }, "recipe": { "sha256": "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131004.1844", "deps": [] }, "marshal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/marshal.el.git", - "sha256": "37755db345001f7f1acfeb0d9826fc53c832ea8620f15c8b53f76dd3dc87903b", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "marshal.el", + "sha256": "0fwhhzfd6vgpaf5mrw90hvm35j2kzhk9h3gbrwd7y7q08nrmsx9p", "rev": "0ab06a654af0555dc669b5bdf4e0991a78238d6d" }, "recipe": { "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150916.2057", "deps": [ @@ -12396,14 +13138,15 @@ }, "chinese-yasdcv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/chinese-yasdcv.git", - "sha256": "1638878007a282834b6babf599db4bb475fb7ec5d89fafcfe22dfe9b29323a9e", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "chinese-yasdcv", + "sha256": "14yzmyzkf846yjrwnqrbzmvyhfav39qa5fr8jnb7lyz8rm7y9pnq", "rev": "619e4d701ed995ad2c95f35072c638cfb3933afb" }, "recipe": { "sha256": "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.816", "deps": [ @@ -12413,14 +13156,15 @@ }, "company-nand2tetris": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CestDiego/nand2tetris.el.git", - "sha256": "e777f63618e3d84ec2c4be0a52dd8c7f46b736d0535fc3e75c00a7ffef7c7f00", + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "nand2tetris.el", + "sha256": "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7", "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" }, "recipe": { "sha256": "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1636", "deps": [ @@ -12432,14 +13176,15 @@ }, "zygospore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/louiskottmann/zygospore.el.git", - "sha256": "21e2dc02be0155560938f74f85f8c30d640ee66474a129e7dfbb72e3f754ec0a", + "tag": "fetchFromGitHub", + "owner": "louiskottmann", + "repo": "zygospore.el", + "sha256": "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z", "rev": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8" }, "recipe": { "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140703.352", "deps": [] @@ -12452,21 +13197,22 @@ }, "recipe": { "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120426.2023", "deps": [] }, "eproject": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jrockway/eproject.git", - "sha256": "f9117dfb851fe714abb25007b727ff5faf8d8b25cf73a7990959e5fdec29e756", + "tag": "fetchFromGitHub", + "owner": "jrockway", + "repo": "eproject", + "sha256": "13ds5z2nvanx8cvxrzi0da6ixx7kw222z6mrlbs8cldqcmzm7xh2", "rev": "fdff000d601eb8bdb165db3dc4925c6797308b78" }, "recipe": { "sha256": "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.2330", "deps": [ @@ -12475,42 +13221,65 @@ }, "bonjourmadame": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pierre-lecocq/bonjourmadame.git", - "sha256": "c60d8758b446af66cfe9a4caef494f1c4f0448de9b9d1059758f6525926f57e9", + "tag": "fetchFromGitHub", + "owner": "pierre-lecocq", + "repo": "bonjourmadame", + "sha256": "1sapdy92arcgfmci17cvvr408kqw9x4yzjm4x77ndbs6nic8f3f6", "rev": "85b72ddb602434ca7dd171b86acbcfd58baab83b" }, "recipe": { "sha256": "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.508", "deps": [] }, + "vdirel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "vdirel", + "sha256": "034475m2d2vlrlc2l88gdx0ga3krsdh08wkjxwnbb2dfyz3p8r9v", + "rev": "aab19692e2c2084a0d5b554a96a64a2e3e2a3d09" + }, + "recipe": { + "sha256": "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20151216.55", + "deps": [ + "emacs", + "helm", + "org-vcard", + "seq" + ] + }, "scala-mode2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hvesalai/scala-mode2.git", - "sha256": "7887edd7ac95398b59383ef2099aefdced36f555dd4b98b5a753a7d7afb7f7b0", + "tag": "fetchFromGitHub", + "owner": "hvesalai", + "repo": "scala-mode2", + "sha256": "1xyfxwrp2hlj49412ypl1mi5pxx6z4aw1hhzkgcwd3bfyyqdrg1k", "rev": "360b5ba27aeca69e72109515b6c40b2f7972cc8f" }, "recipe": { "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150618.150", "deps": [] }, "show-marks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/show-marks.git", - "sha256": "8709d17f9803f0952fa820548128084d7c7b71a0e1e3cbe3fc8f3b6be9997397", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "show-marks", + "sha256": "15vkk7lnnfwgzkiwpqz1l1qpnz2d10l82m10m0prbw03k1zx22c7", "rev": "97609566582e65eed0d0a854efa5c312f209115d" }, "recipe": { "sha256": "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130805.949", "deps": [ @@ -12519,28 +13288,30 @@ }, "simple-rtm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mbunkus/simple-rtm.git", - "sha256": "921b2dea7b716561aac9405287cee0972441a824a0fcedb7ac1f560f439f564a", + "tag": "fetchFromGitHub", + "owner": "mbunkus", + "repo": "simple-rtm", + "sha256": "0dxfgpqjcdwk1yzxjg9nbw7aa56vp7jxxbpyp8j92wd7lwgpk6a5", "rev": "cff3e87bc2d440aa643c9f43bf99972668147231" }, "recipe": { "sha256": "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140926.639", "deps": [] }, "rigid-tabs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wavexx/rigid-tabs.el.git", - "sha256": "65a9da075c651b3c12533d52133c11846ffe74ac50b7757a712692961e27045c", + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "rigid-tabs.el", + "sha256": "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5", "rev": "c7c6b726806df7e8cb25a41b213a207850c91cb7" }, "recipe": { "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.1056", "deps": [ @@ -12556,7 +13327,7 @@ }, "recipe": { "sha256": "1kbyl69vwhp1wdivr3ijmj7mghdnjaw7adk8az7bwyzjvpq73171", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131010.154", "deps": [ @@ -12565,28 +13336,30 @@ }, "hc-zenburn-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/edran/hc-zenburn-emacs.git", - "sha256": "1322701d2ac920ee92d1a5fc6c51f7993ca24265d72463f8c4c7a8030f91ec65", + "tag": "fetchFromGitHub", + "owner": "edran", + "repo": "hc-zenburn-emacs", + "sha256": "0rgcj47h7a67qkw6696pcm1a4g4ryx8nrz55s69fw86958fp08hk", "rev": "fd0024a5191cdce204d91c8f1db99ba31640f6e9" }, "recipe": { "sha256": "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150928.1133", "deps": [] }, "synonymous": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/toroidal-code/synonymous.el.git", - "sha256": "bccb0ba188b275ea7970f5a7a44b6a37f9adac1344c774eb642cca7deb74b60b", + "tag": "fetchFromGitHub", + "owner": "toroidal-code", + "repo": "synonymous.el", + "sha256": "02xnfkmpvjicckmp9is42fnavy9pd95s99zmf1wylxdji2hhpjxw", "rev": "9abd08c57f4a35902cd6b3eb5aad8dbb352141f4" }, "recipe": { "sha256": "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150909.1034", "deps": [ @@ -12597,56 +13370,60 @@ }, "theme-changer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hadronzoo/theme-changer.git", - "sha256": "a812bee96ee38b689f528ceb8a68b75d1498d3a98153c6eb4c7b9ce35bb1555a", + "tag": "fetchFromGitHub", + "owner": "hadronzoo", + "repo": "theme-changer", + "sha256": "0njmn5dy773v9kmwclw1m79rh52xnxl8mswcaagni2z3dvlvw4m8", "rev": "c28ea477e8277c03e14657f167695e3c4bf3c11f" }, "recipe": { "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130725.2119", "deps": [] }, "uncrustify-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/koko1000ban/emacs-uncrustify-mode.git", - "sha256": "55c5635a9b7be6c0506ee2a385406b180bf7fa273f339e54f38781e82481c60c", + "tag": "fetchFromGitHub", + "owner": "koko1000ban", + "repo": "emacs-uncrustify-mode", + "sha256": "0366h4jfi0c7yda9wcrz4zxgf2qqdd08b8z2dr8c1rkvkdd67iam", "rev": "73893d000361e95784911e5ec268ad0ab2a1473c" }, "recipe": { "sha256": "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130707.859", "deps": [] }, "hl-sentence": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/hl-sentence.git", - "sha256": "babf6681e44a5e2a17669974bb75db2423fbfceca8af72c8ccee1c70515d4e5e", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "hl-sentence", + "sha256": "0pjfbm8p077frk475bx8xkygn8r4vdsvnx4rcqbjlpjawj0ndgxs", "rev": "45e3cc525ba636c0f22baa6d0938d9808622bc89" }, "recipe": { "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140802.1120", "deps": [] }, "mynt-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/crshd/mynt-mode.git", - "sha256": "aac24e44b98ef53114f966fefd6441e8e5b5d8399fef6f064ff5c6383e06b4a2", + "tag": "fetchFromGitHub", + "owner": "crshd", + "repo": "mynt-mode", + "sha256": "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma", "rev": "23d4489167bfa899634548cb41ed32fdeb3600c9" }, "recipe": { "sha256": "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150512.1549", "deps": [ @@ -12655,14 +13432,15 @@ }, "svg-mode-line-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/svg-mode-line-themes.git", - "sha256": "799ccba2e39013872cfee4385c1d3a0e55fc154b9322b67fbfeedcb932c51b53", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "svg-mode-line-themes", + "sha256": "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic", "rev": "80a0e01839cafbd66899202e7764c33231974259" }, "recipe": { "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150425.1506", "deps": [ @@ -12671,28 +13449,30 @@ }, "tdd-status-mode-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/algernon/tdd-status-mode-line.git", - "sha256": "0a895ac24250e090fddd138278babab81da60b29488ae74f81f2128912c17c6b", + "tag": "fetchFromGitHub", + "owner": "algernon", + "repo": "tdd-status-mode-line", + "sha256": "01r34h3srli5bglss0zxnblpfbgzd45cvh3bg16i8dyyph9wgqyn", "rev": "cf51cf2e85f190d27424277697c5e3a344d9ef2b" }, "recipe": { "sha256": "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131123.1116", "deps": [] }, "processing-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ptrv/processing2-emacs.git", - "sha256": "53b71ce03ab749e83dfafed98590d7418e703833d0c9d7da885b4dd11fb2ee4a", + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "processing2-emacs", + "sha256": "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h", "rev": "a57415e523c9c3faeef02fa62a2b749270c4cc33" }, "recipe": { "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140426.928", "deps": [ @@ -12701,14 +13481,15 @@ }, "namespaces": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/elisp-namespaces.git", - "sha256": "313f696729e167457b4646d99c4d3f0182aa533cec9c14876871ae5a294c9a58", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "elisp-namespaces", + "sha256": "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140", "rev": "3d02525d9b9a5ae6e7be3adefd880121436e6270" }, "recipe": { "sha256": "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130326.1750", "deps": [] @@ -12721,35 +13502,37 @@ }, "recipe": { "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150815.938", "deps": [] }, "clevercss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jschaf/CleverCSS-Mode.git", - "sha256": "bda129acd83d11bfa6ba36c2e89b036f787331b9a799121f67e4b944edfa06a7", + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "CleverCSS-Mode", + "sha256": "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx", "rev": "b8a3c0dd674367c62b1a1ffec84d88fe0c0219bc" }, "recipe": { "sha256": "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.1955", "deps": [] }, "grizzl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d11wtq/grizzl.git", - "sha256": "3cc4f6f8257fa4c552df7ff93abbe05ba2317e94c967013546e2c2ad410d9c79", + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "grizzl", + "sha256": "1y2vn7xxzphg1d1isvimygzndybb6z4cfhpbrciswv983lixwcpx", "rev": "93c72e18a0146ee1f43adb28423475094d5e9f4c" }, "recipe": { "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150712.30", "deps": [ @@ -12759,28 +13542,30 @@ }, "hyde": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nibrahim/Hyde.git", - "sha256": "0ab40ee83db247b3b5a085f95e9006156a862204d3365a6d6a168c55742f6f23", + "tag": "fetchFromGitHub", + "owner": "nibrahim", + "repo": "Hyde", + "sha256": "14gxbza26ccah8jl0fm7ksvaag0mv3c348bgqjy88dqq2qlwcrav", "rev": "640959dd6837487dd4545809d6cc9ef54283673d" }, "recipe": { "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150615.1225", "deps": [] }, "on-screen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/michael-heerdegen/on-screen.el.git", - "sha256": "044517ab266c1c8a886841383274a5fe6e16a7383b3f5604c3e403743ce4dccf", + "tag": "fetchFromGitHub", + "owner": "michael-heerdegen", + "repo": "on-screen.el", + "sha256": "1rksk0j9b27w913bzbq7w2ws75yi66m24ic6ljdhhbrq3z2ic7dy", "rev": "80b00ddef6dffad7086174c2c57f29ef28b69d27" }, "recipe": { "sha256": "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.2308", "deps": [ @@ -12789,28 +13574,30 @@ }, "html-script-src": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/html-script-src.git", - "sha256": "d86b250d953d3d9014ae19d05ccc7acd951f24a4cb53da531275d5c5cde62724", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "html-script-src", + "sha256": "0k9ga0qi6h33akip2vrpclfp4zljnbw5ax40lxyxc1813hwkdrmh", "rev": "66460f8ab1b24656e6f3ce5bd50cff6a81be8422" }, "recipe": { "sha256": "1pin1x6g68y75pa3vz2i9h5pmhjamh5rd5ladb1z3flcavsls64j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120403.1315", "deps": [] }, "shoulda": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marcwebbie/shoulda.el.git", - "sha256": "1145f4152a1344d1b38f42a38b79f3ecb84928943001af0a17d0500e893ae4a6", + "tag": "fetchFromGitHub", + "owner": "marcwebbie", + "repo": "shoulda.el", + "sha256": "19p47a4hwl6h2w5ay09hjhl4kf7cydwqp8s2iyrx2i0k58az8i8i", "rev": "fbe8eb8efc6cfcca1713283a290882cfcdc8725e" }, "recipe": { "sha256": "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140616.1333", "deps": [ @@ -12825,35 +13612,37 @@ }, "recipe": { "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1907", "deps": [] }, "pabbrev": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/pabbrev.git", - "sha256": "d0b8442405823eddc5219b12758f7c1a0a410933ec72f139300e5dbe3ba9f881", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "pabbrev", + "sha256": "0cbsl184szbl486454jkn28zj4p7danp92h0zv8yscrlnyl68p0y", "rev": "d28cf8632d2691dc93afbb28500126242d37961c" }, "recipe": { "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150806.645", "deps": [] }, "tumblesocks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gcr/tumblesocks.git", - "sha256": "82c99006a5a14d0ee7912bd84bd31a32ebf928652617c669d1ac1eab3e3bfebc", + "tag": "fetchFromGitHub", + "owner": "gcr", + "repo": "tumblesocks", + "sha256": "1g7y7czan7mcs5lwc5r6cllgksrj3b9lpn1bj7khwkd1ll391jc2", "rev": "85a6cdc2db3390593fd886c474959b675460b310" }, "recipe": { "sha256": "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140215.1447", "deps": [ @@ -12871,35 +13660,37 @@ }, "recipe": { "sha256": "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141207.607", "deps": [] }, "auto-indent-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/auto-indent-mode.el.git", - "sha256": "de2cee23927361d1e43d68a783e26a2496df685ac93f39719d82f4db9b7e9ac2", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "auto-indent-mode.el", + "sha256": "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y", "rev": "1a12448ce3a030ed905226450dfb01bba37f127c" }, "recipe": { "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140505.855", "deps": [] }, "main-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jasonm23/emacs-mainline.git", - "sha256": "058b7ee04639807da7a16e3ee0abbcbe574cedc306fa9aade58898b900e5521b", + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-mainline", + "sha256": "06sjwl0bk648wnnrmyh6qgnlqmxypjmy0gkfl6kpv01r8vh7x2q5", "rev": "0e88f91e49ef27cb77d74f6a8d8140063549d67f" }, "recipe": { "sha256": "0c9c5kmixvhk9il8hsxzf2k14fggb9b9mw59g8q3hgpn5g7kgpkv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.2006", "deps": [ @@ -12911,11 +13702,11 @@ "tag": "fetchsvn", "url": "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el", "sha256": "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz", - "rev": "143628" + "rev": "143722" }, "recipe": { "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150717.239", "deps": [ @@ -12926,56 +13717,60 @@ }, "pig-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/motus/pig-mode.git", - "sha256": "4d313ec06748955df15ca3c3de1090d71e853ab301ed435949c1fbe95d4a308d", + "tag": "fetchFromGitHub", + "owner": "motus", + "repo": "pig-mode", + "sha256": "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx", "rev": "af4200c88a50264b63fa162a02860f3f54c8755b" }, "recipe": { "sha256": "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140617.1258", "deps": [] }, "logstash-conf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/logstash-conf.el.git", - "sha256": "0af7d235a7e65e01307eb0fe15ecc6acf45fa80254d503ab14f3e838d81ffd16", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "logstash-conf.el", + "sha256": "05px3zc3is7k2jmh7mal0al5zx5cqvn1bzmhgqq02pp6lwsx5xqa", "rev": "60a06ad1ceb6699cef849e9f2e8255f7816ca5de" }, "recipe": { "sha256": "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150308.718", "deps": [] }, "volume": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dbrock/volume-el.git", - "sha256": "6749fd85d47162b654ae0e0520d289cbb2521ff9903e17542c4bf168b05cb17a", + "tag": "fetchFromGitHub", + "owner": "dbrock", + "repo": "volume-el", + "sha256": "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7", "rev": "ecc1550b3c8b501d37e0f0116b54b535d15f90f6" }, "recipe": { "sha256": "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150718.1509", "deps": [] }, "evil-leader": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/evil-leader.git", - "sha256": "8a0ec0a9e26e195d8bcbd5f8ad23895dfe82915d647903185541243187af3a96", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-leader", + "sha256": "10xrlimsxk09z9cw6rxdz8qvvn1i0vhc1gdicwxri0j10p0hacl3", "rev": "39f7014bcf8b36463e0c7512c638bda4bac6c2cf" }, "recipe": { "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140606.743", "deps": [ @@ -12984,28 +13779,30 @@ }, "niflheim-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/niflheim-theme/emacs.git", - "sha256": "b5231a609e2787e52fab56c24a7b725fa6dd4ac65f56c9102c9e5e4df1e0fb90", + "tag": "fetchFromGitHub", + "owner": "niflheim-theme", + "repo": "emacs", + "sha256": "147vw3qlsply5h8cjmjzqr5dv9jzf9xlmhjnmcpyb1r7krh1l8xm", "rev": "5265e89164132fbdbc13146a79f0abce78bd0c5e" }, "recipe": { "sha256": "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150630.1021", "deps": [] }, "inf-mongo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tobiassvn/inf-mongo.git", - "sha256": "6832c1ea91247d223500297ae73b76f9ccbbd6b80f9fbd4ceccefaf68b5b19ea", + "tag": "fetchFromGitHub", + "owner": "tobiassvn", + "repo": "inf-mongo", + "sha256": "14kf3zvms1w8cbixhpgw3m2xxc2r87i57gmx00jwh89282i6kgsi", "rev": "2d910f2143610f12de9c573ee202a322cf579e85" }, "recipe": { "sha256": "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131216.428", "deps": [] @@ -13018,35 +13815,37 @@ }, "recipe": { "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.1851", "deps": [] }, "darktooth-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-theme-darktooth.git", - "sha256": "e98f05a9fc745655dc52916eec3d4702d50188eaa6fc2ae4ecd676565d82f1dc", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-theme-darktooth", + "sha256": "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9", "rev": "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3" }, "recipe": { "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.1922", "deps": [] }, "helm-anything": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rubikitch/helm-anything.git", - "sha256": "4bbe4da505be42ff2916f805191cb2f10e161b4e91795e0294300e3d70c07f94", + "tag": "fetchFromGitHub", + "owner": "rubikitch", + "repo": "helm-anything", + "sha256": "153zq1q3s3ihjh15wyci9qdic3pin8f1j1gq2qlzyhmy0njlvgjb", "rev": "0ec578922928b7c75cf034d1b7a956b5f36107ea" }, "recipe": { "sha256": "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141126.431", "deps": [ @@ -13056,84 +13855,90 @@ }, "window-layout": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-window-layout.git", - "sha256": "afcd8897476077497cf52f5327c55c6a828246df5ba9648045e7aa45568a9021", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-window-layout", + "sha256": "08chi9b4bap78n069aavvx3850kabk2jflrgymy4jxv08ybqikdg", "rev": "03ee615fc8fad5be4efec9c3febab8c851271257" }, "recipe": { "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150717.7", "deps": [] }, "draft-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gaudecker/draft-mode.git", - "sha256": "64d1330e69ce634228c14b40ca055b24c8a69e216613a95f2d6c6efb5ccba190", + "tag": "fetchFromGitHub", + "owner": "gaudecker", + "repo": "draft-mode", + "sha256": "1451rdfgnvkc5mgsj4v646gadj14bc2wlh2bq4l44qyfd4737lb4", "rev": "8a59f537d44ef7e8f34a69da1a7d5e0d443d76f7" }, "recipe": { "sha256": "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140609.956", "deps": [] }, "edit-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/edit-list.git", - "sha256": "89c150ab37bbf0f9260c4bcd63d40988567733ee6b1b3007fbd1836283870125", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "edit-list", + "sha256": "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9", "rev": "f460d3f9e208a4e606fe6ded307f1b011916ca71" }, "recipe": { "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100930.943", "deps": [] }, "grapnel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/grapnel.git", - "sha256": "6c6891b916a07414208fbc1812a02267254d4c5c05868175a45175796045745b", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "grapnel", + "sha256": "0nvl8mh7jxailisq31h5bi64s9b74ah1465wiwh18x502swr2s3c", "rev": "fbd0f9a51139973d35e4014855964fa435e8ecaf" }, "recipe": { "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131001.1034", "deps": [] }, "fcopy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ataka/fcopy.git", - "sha256": "3671af137dddbfebd4d327a2407a63652e1a62b37f9653356c7beb11c341471a", + "tag": "fetchFromGitHub", + "owner": "ataka", + "repo": "fcopy", + "sha256": "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr", "rev": "e355f6ec889d8ecbdb096019c2dc660b1cec4941" }, "recipe": { "sha256": "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150304.803", "deps": [] }, "litable": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/litable.git", - "sha256": "29553557c3f334ed0a2ab6969fdd39815120506fa0a6d6479d5bf24653087fd9", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "litable", + "sha256": "1nbz119ldwjvkm3xd9m0dx820lc177frz5mn585fsd7kqdbkam99", "rev": "9065bade1ba42ad04d9839d58082b73da589dca6" }, "recipe": { "sha256": "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150908.909", "deps": [ @@ -13142,14 +13947,15 @@ }, "ducpel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/ducpel.git", - "sha256": "db3e32038784fd6d08b363c25374c14802264f36c2d7e04a9d8dde2f5934a3d9", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "ducpel", + "sha256": "1ixb78dv66lmqlbv4zl5ysvv1xqafvqh1h5cfdv03jdkqlfk34jz", "rev": "4a1671fc45ab92d44dee85a1a223122d5a43cb32" }, "recipe": { "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140419.16", "deps": [ @@ -13158,14 +13964,15 @@ }, "sclang-extensions": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/sclang-extensions.git", - "sha256": "0d6616e2aeb78b5334f86b5a21e44a70facf2b404cd3f5910dbd6d8ebc0859a5", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "sclang-extensions", + "sha256": "0v36zd8lnsbc7jvnhv5pidfxabq2qqmwg1nm2jdxfj6vvcg3vx0x", "rev": "7133494182738cb0ef49f31cc09cfe0d2fab520e" }, "recipe": { "sha256": "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.1639", "deps": [ @@ -13175,16 +13982,34 @@ "s" ] }, + "highlight-leading-spaces": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrBliss", + "repo": "highlight-leading-spaces", + "sha256": "1vy6j63jp83ljdqkrqglpys74yfh7p61sd0lqiwczgr5nqyc60rl", + "rev": "840db19d863dd97993fd9f893f5be501627b6354" + }, + "recipe": { + "sha256": "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20151216.622", + "deps": [ + "emacs" + ] + }, "elfeed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elfeed.git", - "sha256": "17534484c8de20792785b622ce008d1ee2f4b75e31885db83d2ea3c1a7529dc3", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elfeed", + "sha256": "1z0i4cb09xq37y77zdans29lsqwk2asc9ix6cca9bf8rdwiq665b", "rev": "8a38a4c81496d40d3b7c45a6df5e41258a52843c" }, "recipe": { "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1138", "deps": [ @@ -13193,14 +14018,15 @@ }, "org-dropbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/heikkil/org-dropbox.git", - "sha256": "bd45b3bf42a5ddf0f29d31a7169c0e72cfaa5dfb58d9d4365c9c54779ed54d4a", + "tag": "fetchFromGitHub", + "owner": "heikkil", + "repo": "org-dropbox", + "sha256": "0jjdsng7fm4wbhvd9naqzdfsmkvj1sf1d9rikprg1pd58azv6idx", "rev": "75dab6d6f0438a7a8a18ccf3a5d55f50bf531f6e" }, "recipe": { "sha256": "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150113.2309", "deps": [ @@ -13211,14 +14037,15 @@ }, "resize-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dpsutton/resize-window.git", - "sha256": "f0b649ac1b75e962eed8992b11bf437359b583cbceee87c8fb8376bdc9d3390c", + "tag": "fetchFromGitHub", + "owner": "dpsutton", + "repo": "resize-window", + "sha256": "061lc8arwv7wmj98pii8ff6qk0sfhxhdh0f9dak5q8nazcvqgk41", "rev": "0bc23978d1084da5638becf93b66816edc4ece54" }, "recipe": { "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.2229", "deps": [ @@ -13227,14 +14054,15 @@ }, "kite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jscheid/kite.git", - "sha256": "e3a3abad2b99827f5659915caa2b5fe74fa353c85cebd18c27d08b4d41a4eb4c", + "tag": "fetchFromGitHub", + "owner": "jscheid", + "repo": "kite", + "sha256": "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd", "rev": "7ed74d1147a6ddd152d3da65dc30df3517d53144" }, "recipe": { "sha256": "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130201.1338", "deps": [ @@ -13244,14 +14072,15 @@ }, "google-maps": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jd/google-maps.el.git", - "sha256": "a0d528677351b767c20e2192d3f484ad3b6dce7401b07c22661f884b4b7e71a0", + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "google-maps.el", + "sha256": "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0", "rev": "90151ab59e693243ca8da660ce7b9ce361ea5126" }, "recipe": { "sha256": "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130412.430", "deps": [] @@ -13265,21 +14094,22 @@ }, "recipe": { "sha256": "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130207.1402", "deps": [] }, "forecast": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cadadr/forecast.el.git", - "sha256": "412c6f4a92e7c2e1ec58c08ad367b51ddb5c337682329f1a9b29ae8a2d4288cb", + "tag": "fetchFromGitHub", + "owner": "cadadr", + "repo": "forecast.el", + "sha256": "1jw888nqmbi9kcd9ycl2fqrmrnqxnmkx72n0b3nf3hp7j956yb21", "rev": "51526906140700f076bd329753abe7ae31b6da90" }, "recipe": { "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.1635", "deps": [ @@ -13288,14 +14118,15 @@ }, "perl6-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hinrik/perl6-mode.git", - "sha256": "5ddbf7c949f5d2b9258b3c98b0614a2278581027806dbf664436bc41f4e0e418", + "tag": "fetchFromGitHub", + "owner": "hinrik", + "repo": "perl6-mode", + "sha256": "1ibnax9498jwcmkgm0jnl7q8qlwkgkp8nhp6zz7xr0x1d0dibcas", "rev": "6c97f87fd8556cc0dc7a6754ab2237ea815bf5a4" }, "recipe": { "sha256": "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.1718", "deps": [ @@ -13305,56 +14136,60 @@ }, "tox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chmouel/tox.el.git", - "sha256": "6960c88af11f9b0e143099625191ce650bb248d00047b46751ea4199513c4198", + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "tox.el", + "sha256": "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39", "rev": "5c1a7c18cb7f2fd2da2386debf86012e6953e15d" }, "recipe": { "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141004.1603", "deps": [] }, "swap-buffers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ekazakov/swap-buffers.git", - "sha256": "3939adc992ed01a3ab0724d00abd554ede23b4427907ed7a80a09b0c4e01c7ce", + "tag": "fetchFromGitHub", + "owner": "ekazakov", + "repo": "swap-buffers", + "sha256": "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r", "rev": "46ab31359b70d935add6c6e9533443116dc51103" }, "recipe": { "sha256": "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150506.1639", "deps": [] }, "window-jump": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chumpage/chumpy-windows.git", - "sha256": "baaf7d7fb21229883f9782f140c099393a24119c9d9efa1d96b45cf9b1c72a19", + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "chumpy-windows", + "sha256": "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs", "rev": "164be41b588b615864258c502583100d3ccfe13e" }, "recipe": { "sha256": "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150213.1436", "deps": [] }, "org-screenshot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dfeich/org-screenshot.git", - "sha256": "7ec85b7a6e07f114f7fea1722e4753d3fbb4986896afe4b73624e31afe46c62b", + "tag": "fetchFromGitHub", + "owner": "dfeich", + "repo": "org-screenshot", + "sha256": "0ay68vz1mqr46svy9bwnd2cb9yykad3jwwm1zvvi9w87drx5pj3y", "rev": "90c78dce2846bd1d148181ff896afe0f9fa9bdeb" }, "recipe": { "sha256": "012pm38d9v8qmg83vrsp39y6y30il0956rlrcmb5m5nzla84z2c3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.704", "deps": [ @@ -13363,14 +14198,15 @@ }, "init-open-recentf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/init-open-recentf.el.git", - "sha256": "50d645d38b648291e01f55a1f37dd1cbbe2de0c44271ccf482eaddd4a0a76776", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "init-open-recentf.el", + "sha256": "0xk7lyhd9pgahbscqwa2qkh2vgnbs5yz78am3zh930k4ig9lbmjh", "rev": "f7999730ed8b02a9f4b9f884defd40a90772765b" }, "recipe": { "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.2223", "deps": [ @@ -13386,21 +14222,22 @@ }, "recipe": { "sha256": "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100330.543", "deps": [] }, "date-field": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-date-field.git", - "sha256": "7cf4bc78c9958b6aaa52381fb2aedd2175c20e7d4f66727192326eeb84b4bcd2", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-date-field", + "sha256": "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w", "rev": "11c9170d1f7b343233f7716d4c0a62be024c1654" }, "recipe": { "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141128.1905", "deps": [ @@ -13411,84 +14248,90 @@ }, "regex-dsl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alk/elisp-regex-dsl.git", - "sha256": "fdb9021b1b5399ddcc54d72d15151fcf9650439bdf14df9edbe9241d4f9364b4", + "tag": "fetchFromGitHub", + "owner": "alk", + "repo": "elisp-regex-dsl", + "sha256": "1d34jd7is979vfgdy56zkd1m15ng3waiabfpak6dv6ak3cdh5fgx", "rev": "ac89ab8b7691a165ef3007cb84417125cfc0632e" }, "recipe": { "sha256": "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100124.428", "deps": [] }, "lemon-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/lemon-mode.git", - "sha256": "47fe920e81548c46633a6195521b8720d492f5b05dfa03b3fbbc541a4bcdd258", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "lemon-mode", + "sha256": "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7", "rev": "155bfced6c9afc8072a0133d3d1baa54c6d67430" }, "recipe": { "sha256": "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130216.704", "deps": [] }, "atom-one-dark-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jonathanchu/atom-one-dark-theme.git", - "sha256": "deaf9f306eaabaa4ca1771e4fb08153e6178de487dfcc45965a7eeaa0a8b9815", + "tag": "fetchFromGitHub", + "owner": "jonathanchu", + "repo": "atom-one-dark-theme", + "sha256": "05cqic5amvm7cmcw9z3x93g7hq9y2l4gpr3i2z5a9fmadqq9zbyy", "rev": "5fe3c1463daa4736435eb0c4716d4bf29f25f0a6" }, "recipe": { "sha256": "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.2245", "deps": [] }, "toggle-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/deadghost/toggle-window.git", - "sha256": "b978eb5117e936801ff3038345d73f2303ff0321f1ba0ad77dbbd21764540639", + "tag": "fetchFromGitHub", + "owner": "deadghost", + "repo": "toggle-window", + "sha256": "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r", "rev": "e82c60e543933880402ede11e9423e48a17dde53" }, "recipe": { "sha256": "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141207.948", "deps": [] }, "slamhound": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/slamhound.git", - "sha256": "8f20989698ac0b8849e906d20ffc518a67749567960ab2de22f30b5331f7b27f", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "slamhound", + "sha256": "108zcb7hdaaq3sxjfr9nrwzqxx71q6aygzik7l3ab854xknkjfad", "rev": "f43dd49b63b2838081735ea1988f70de05389692" }, "recipe": { "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140506.1818", "deps": [] }, "syslog-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/syslog-mode.git", - "sha256": "c4e9090063061cf72763523f86888371365331cb549c569cb53c3180866ab7eb", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "syslog-mode", + "sha256": "1sxpda380c9wnnf5d72lrcqm6dkihf48cgsjcckzf706cc00ksf4", "rev": "c18661b3058f0ec00e6957c955559a762cb0062c" }, "recipe": { "sha256": "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140217.1818", "deps": [ @@ -13497,56 +14340,60 @@ }, "evil-numbers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/evil-numbers.git", - "sha256": "ccea3c266c22f67896e5b96d9f1d1c56288e52c5cf05bafc8bd8548bbaf2c64a", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-numbers", + "sha256": "1aq95hj8x13py0pwsnc6wvd8cc5yv5qin8ym9js42y5966vwj4np", "rev": "6ea1c8c3a9b37bed63d48f1128e9a4910e68187e" }, "recipe": { "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140606.751", "deps": [] }, "switch-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/switch-window.git", - "sha256": "8844b9369dc1864c3fd7a53135734e6dc872f99277fb3fb0a04032af188deefe", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "switch-window", + "sha256": "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48", "rev": "cd4b06121aa5bac4c4b13b63526a99008def5f2b" }, "recipe": { "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150114.415", "deps": [] }, "zeal-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jinzhu/zeal-at-point.git", - "sha256": "6e1f4c56fe881662b5945ee38f53260f42f2d9b34eec0ac7faa9c46a50f05db3", + "tag": "fetchFromGitHub", + "owner": "jinzhu", + "repo": "zeal-at-point", + "sha256": "1csxy186mi59zb3hmv2fngcz4hhg4r9qzqsyjjsn45l8zrb4q7vf", "rev": "f18afeae0a4e0cd339a386255ac65b35deb787bb" }, "recipe": { "sha256": "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.2107", "deps": [] }, "helm-robe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-robe.git", - "sha256": "015eccef55fb3ed69ff261909ab8b5b5dc4cf3021b497e2ea48f23bb4daa62a6", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-robe", + "sha256": "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg", "rev": "7348d0bc0251b51979554ea678b970fd01c0efe9" }, "recipe": { "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.2155", "deps": [ @@ -13555,14 +14402,15 @@ }, "helm-flx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PythonNut/helm-flx.git", - "sha256": "fa9d207737c3e64b5728b89677dbcd074a59a8e5e606bca39ecacad8ea9fd529", + "tag": "fetchFromGitHub", + "owner": "PythonNut", + "repo": "helm-flx", + "sha256": "02aran1myhm43skv7rjinrjbrayj1ld1s5f604bbqil8swvrq5ba", "rev": "f634e85ee92f6a390da33d1a618a4c353e270762" }, "recipe": { "sha256": "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.1025", "deps": [ @@ -13573,14 +14421,15 @@ }, "ac-capf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-capf.git", - "sha256": "5893816323a627101e6b9f30d49b6343ee1eece266075b16856d98e6ff3789be", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-capf", + "sha256": "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da", "rev": "17571dba0a8f98111f2ab758e9bea285b263781b" }, "recipe": { "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.2117", "deps": [ @@ -13590,56 +14439,60 @@ }, "lice": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/buzztaiki/lice-el.git", - "sha256": "7357fc317b6dc14b906c2ae17fcdc6cf2cea02397998d21692a0c51ead02b53a", + "tag": "fetchFromGitHub", + "owner": "buzztaiki", + "repo": "lice-el", + "sha256": "0df5v401w9n2d64gxxgb34mb4dm2nxc8jx1cj9ir23cx9dqmxjrq", "rev": "4e34674e188afc29e8f9c1efa84ae16e486dd43c" }, "recipe": { "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.2223", "deps": [] }, "mark-tools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stsquad/emacs-mark-tools.git", - "sha256": "7f4792a649629f4a09e03b6df51bed9e259b4bd1286ce7da4679d604f4da9f4c", + "tag": "fetchFromGitHub", + "owner": "stsquad", + "repo": "emacs-mark-tools", + "sha256": "0k4zvbs09mkr8vdffv18s55rn9cyxldzav9vw04lm7v296k94ivz", "rev": "a11b61effa90bd0abc876d12573674d36fc17f0c" }, "recipe": { "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130614.525", "deps": [] }, "xah-get-thing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xah-get-thing-or-selection.git", - "sha256": "e2740e45fc88221dbe3455d7b1f3168addc147c610b05bf007286a71edb77329", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-get-thing-or-selection", + "sha256": "0abknznp2si80zq5pc0hqr3w3pca2vrv3msm6jz1s8l8zi2hwx72", "rev": "d2dadc54417468cc42da72c4e02fd23e3fd0584a" }, "recipe": { "sha256": "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150712.1630", "deps": [] }, "helm-gitignore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jupl/helm-gitignore.git", - "sha256": "0f43ea411395beaf9f53a84d1f11a99870183bc6d0386053a12f6290d4e5963c", + "tag": "fetchFromGitHub", + "owner": "jupl", + "repo": "helm-gitignore", + "sha256": "0pd755s5zcg8y1svxj3g8m0znkp6cyx5y6lsj4lxczrk7lynzc3g", "rev": "03aad6edb0ed4471c093230856f26719754e570b" }, "recipe": { "sha256": "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150517.2256", "deps": [ @@ -13657,21 +14510,22 @@ }, "recipe": { "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151007.2025", "deps": [] }, "dkmisc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidkeegan/dkmisc.git", - "sha256": "89ec8c71084bdebed8e675168009600c0c692c842469b298c42a8575d10be7db", + "tag": "fetchFromGitHub", + "owner": "davidkeegan", + "repo": "dkmisc", + "sha256": "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49", "rev": "fe3d49c6f8322b6f89466361acd97585bdfe0608" }, "recipe": { "sha256": "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131110.515", "deps": [ @@ -13680,42 +14534,45 @@ }, "dedicated": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/dedicated.git", - "sha256": "2410cea419dc4623d070373695d5d18c2895cb34718f7120f65d9f01814e6a5d", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "dedicated", + "sha256": "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414", "rev": "8275fb672f9cc4ba6682ebda0ef91db827e32992" }, "recipe": { "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090428.1431", "deps": [] }, "pixiv-novel-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/pixiv-novel-mode.el.git", - "sha256": "add447df623bedb255dba19117e2f42bc67625ebcf32013f767f74711a16f691", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "pixiv-novel-mode.el", + "sha256": "14gn2qd72x3zfqzh2cngxcjpdiibyki1g4d1vdav5v9vcbglgm5d", "rev": "65809cf31816257d8c6c92868af6c30abf7b2043" }, "recipe": { "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150110.54", "deps": [] }, "edit-indirect": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/edit-indirect.git", - "sha256": "bacde52461c28ace2844c8d6c6b21e797ac81ef56596e3d23fd9d2d094228881", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "edit-indirect", + "sha256": "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds", "rev": "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0" }, "recipe": { "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141213.1205", "deps": [ @@ -13724,14 +14581,15 @@ }, "asn1-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/asn1-mode.git", - "sha256": "923d44b1f11ef3ba37daa3d78f74398b23aaa7fc61952db1b74d94006dea2840", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "asn1-mode", + "sha256": "0h18x9nh152dnyqjv5b1zjksl8wb75s8zmx3v8vvmwqyy6ql8gcj", "rev": "f8acc7e79306ca416f28ff4dc308d8ec47af51a5" }, "recipe": { "sha256": "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.28", "deps": [ @@ -13741,14 +14599,15 @@ }, "soundklaus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/r0man/soundklaus.el.git", - "sha256": "b8c069ea09b04a462368fe8a940ee4caae41778c9cb8aa3851e6b7a86828b6bc", + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "soundklaus.el", + "sha256": "1ipg4vvh6vgf0az8p31br1xkb8ndjmd6fybcx11r3c479sg0y6k7", "rev": "830f2b5f4dd4bd110db23a71494b92bb8fe5b058" }, "recipe": { "sha256": "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150102.1521", "deps": [ @@ -13763,28 +14622,30 @@ }, "morlock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/morlock.git", - "sha256": "5e7e289e4b4df746ba62c8da9f64bdcdbf586751922f61e73501b5940ee1afd9", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "morlock", + "sha256": "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy", "rev": "804131c7cff5dafa762c666fd66458111e4ee36f" }, "recipe": { "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150815.1034", "deps": [] }, "helm-fuzzy-find": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/helm-fuzzy-find.git", - "sha256": "cae06030c8f0be73808724c8622471720a645d2fcce73273e7cfdd6b70afb6fb", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-fuzzy-find", + "sha256": "1yxnmxq6ppfgwxrk5ryc5xfn82kjf4j65j14hy077gphr0q61q6a", "rev": "daf24bc236dafa4f4be45f1621e11dbc9f304b64" }, "recipe": { "sha256": "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150613.549", "deps": [ @@ -13794,14 +14655,15 @@ }, "auto-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/auto-complete/auto-complete.git", - "sha256": "729e6a0ed96b742261775c16a0fac77f5032cbb7231a67af0996dce624bdeac8", + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "auto-complete", + "sha256": "1dp7gmrykln29axs1l180abi5ycnn3fzkg7qrlvsnrlkzl43zrji", "rev": "67df105a4210b114e01ec08368b8b6b07f28de77" }, "recipe": { "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.427", "deps": [ @@ -13811,28 +14673,30 @@ }, "psvn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/psvn.git", - "sha256": "a6013b3b8bd9c2f92b3a06d51fd1f51104e9dc2a401012b2b052dbfb2278e1cb", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "psvn", + "sha256": "1jz1g0igpnsjn2r144205bffj10iyp8izm8678mzkhnricxkn0d6", "rev": "23048d302858fc3a52c118652bd83491a4956410" }, "recipe": { "sha256": "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.1242", "deps": [] }, "go-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/toumorokoshi/go-snippets.git", - "sha256": "1658ee3e9a737dc6fac127a55b2de63fbf867ea40f0181c120205e432fef2636", + "tag": "fetchFromGitHub", + "owner": "toumorokoshi", + "repo": "go-snippets", + "sha256": "0di6xwpl6pi0430q208gliz8dgrzwqnmp997q7xcczbkk8zfwn0n", "rev": "983eb74025030bf6d405f1ed63be3162cc28a528" }, "recipe": { "sha256": "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.57", "deps": [ @@ -13841,14 +14705,15 @@ }, "sparql-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ljos/sparql-mode.git", - "sha256": "79a395765f595f076cbe2154171a18882321d84a93e9b7cbc98e2bb9df318cf7", + "tag": "fetchFromGitHub", + "owner": "ljos", + "repo": "sparql-mode", + "sha256": "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij", "rev": "303858e7f91829ec720141482c777460e66f310b" }, "recipe": { "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.1114", "deps": [ @@ -13857,14 +14722,15 @@ }, "emamux-ruby-test": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emamux-ruby-test.git", - "sha256": "8c67302628f4da87bb02f6369c9867de6c8cba7644c714249d25101618a9ba30", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emamux-ruby-test", + "sha256": "1idsvilsvlxh72waalhl8vrsmh0vfvz56qcv56fc2c0pb1i90icn", "rev": "23b73c650573b340351a919da3da416acfc2ac84" }, "recipe": { "sha256": "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130812.1139", "deps": [ @@ -13874,28 +14740,30 @@ }, "expand-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/expand-region.el.git", - "sha256": "ca4a279f1b537bca9c468bfb74f0f86989c12ebdeae895b02dd5ff95a2b6a6b5", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "expand-region.el", + "sha256": "0qqqv0pp25xg1zh72i6fsb7l9vi14nd96rx0qdj1f3pdwfidqms1", "rev": "59f67115263676de5345581216640019975c4fda" }, "recipe": { "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150902.758", "deps": [] }, "auto-compile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/auto-compile.git", - "sha256": "4f738b9f02c5ff3496f06bd9415e6d179285869e5b066031b39d51f2159a761f", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "auto-compile", + "sha256": "07vnk8az4lcxncqn01jvks38b4hpdmg43nbby2b39zy50agqnwsg", "rev": "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29" }, "recipe": { "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.1608", "deps": [ @@ -13906,14 +14774,15 @@ }, "ruby-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ajvargo/ruby-refactor.git", - "sha256": "ca533e550f4bfe0c7eee9b922770a558840590b86d674e474d6cf83fc0205dc2", + "tag": "fetchFromGitHub", + "owner": "ajvargo", + "repo": "ruby-refactor", + "sha256": "0dk9vkrjncawf4j4y5dky215m0hgl266d9w6mr7g0rgy6m7wfcyq", "rev": "8be821e89dac15fa402dba211a27b843147e4d17" }, "recipe": { "sha256": "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1207", "deps": [ @@ -13922,14 +14791,15 @@ }, "redpen-paragraph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/karronoli/redpen-paragraph.el.git", - "sha256": "5d4d555bb2b081a2fe8ad298b67759338fd113de1dd1d1e077a9b6c053ac6868", + "tag": "fetchFromGitHub", + "owner": "karronoli", + "repo": "redpen-paragraph.el", + "sha256": "0s38mi9w1dm9fzhd3l8xvq9x33rkb5vvd66jibza50dhn9dmakax", "rev": "dcba4dc48593fedd48e398af50f6cdc60f453a07" }, "recipe": { "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.941", "deps": [ @@ -13939,28 +14809,30 @@ }, "tomatinho": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/konr/tomatinho.git", - "sha256": "d6dc78ec93ecd1ae11aaaf70b5529498fce53f3dac414be6474877393cdc7f28", + "tag": "fetchFromGitHub", + "owner": "konr", + "repo": "tomatinho", + "sha256": "0a3zvhy3jxs88zk4nhdc7lzybz4qji9baw5gm88sxlgcjgn7ip6n", "rev": "7468bbfca79e6ed70ad8fb9517bc05f02fe602c7" }, "recipe": { "sha256": "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140120.1740", "deps": [] }, "r-autoyas": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/r-autoyas.el.git", - "sha256": "727cee1460e64061594912a689dee553de69ff46371f9db818e892475b951436", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "r-autoyas.el", + "sha256": "0dhljmdlg4p832w9s7rp8vznkpjkwpg8k9hj95cn2h76c0afwz3j", "rev": "b4020ee7f5f895e0065b8b26da8a49c51432d530" }, "recipe": { "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140101.910", "deps": [ @@ -13976,7 +14848,7 @@ }, "recipe": { "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101223.420", "deps": [] @@ -13989,63 +14861,67 @@ }, "recipe": { "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1608", "deps": [] }, "scad-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/openscad/openscad.git", - "sha256": "bf0270c3ac0da3802549da5d86fad78ffef0b990c2c86173ab55e282a32c026e", + "tag": "fetchFromGitHub", + "owner": "openscad", + "repo": "openscad", + "sha256": "0z1nf0hdm5q3b65y5jsg5f7qmzk2ilw24i3yg4r8dyygk5c40mr6", "rev": "f0a935d8c6b9994da05986313e3c4b7ab05b44be" }, "recipe": { "sha256": "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.2229", "deps": [] }, "ccc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skk-dev/ddskk.git", - "sha256": "003be81094d22aa34b472dab82673037a34ca2b9a928c9d2fa865a990b360630", + "tag": "fetchFromGitHub", + "owner": "skk-dev", + "repo": "ddskk", + "sha256": "11qr5ami93rwgvc3pf9370rsxbnawdllsrizm1v53xsi98yfp812", "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" }, "recipe": { "sha256": "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.743", "deps": [] }, "search-web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomoya/search-web.el.git", - "sha256": "11d8de35caac0a45a51ba3852852ec1ac7cf74e40014f88146ff4449d431cc23", + "tag": "fetchFromGitHub", + "owner": "tomoya", + "repo": "search-web.el", + "sha256": "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i", "rev": "c4ae86ac1acfc572b81f3d78764bd9a54034c331" }, "recipe": { "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150312.603", "deps": [] }, "helm-growthforecast": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/daic-h/helm-growthforecast.git", - "sha256": "1862be9a0748d3975bce0933703b7f866846ae0c7223b57b7306251de39ee339", + "tag": "fetchFromGitHub", + "owner": "daic-h", + "repo": "helm-growthforecast", + "sha256": "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk", "rev": "0f94ac090d6c354058ad89a86e5c18385c136d9b" }, "recipe": { "sha256": "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140119.2144", "deps": [ @@ -14054,56 +14930,60 @@ }, "id-manager": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-id-manager.git", - "sha256": "80e829eee86d6e1b5c224d1ae774940cc46b67ed992d48470d6d7ffb36b8eb2f", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-id-manager", + "sha256": "0bzbp0vgnzvd1m3lhbcrxmknpi0cjisff6jd49f1nvkdx3p2ks40", "rev": "0d968929bbaff813dd7e098c7f69e0b54434ce09" }, "recipe": { "sha256": "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150605.2239", "deps": [] }, "clips-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/grettke/clips-mode.git", - "sha256": "4debfaa48232426ba3e957f70603080b03044ac8dcd084b1423b2da27391da44", + "tag": "fetchFromGitHub", + "owner": "grettke", + "repo": "clips-mode", + "sha256": "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd", "rev": "a3ab4a3e958d54a16544ec38fe6338f27df20817" }, "recipe": { "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131012.1601", "deps": [] }, "kivy-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kivy/kivy.git", - "sha256": "ba696df188fc1f0fe4143544dffdce918e6d48cacc77d8a727c6892eace897d4", - "rev": "a87d082710a24c23038f69374cc1423d073ae505" + "tag": "fetchFromGitHub", + "owner": "kivy", + "repo": "kivy", + "sha256": "0mk5z0kxacjdcd64vq8ryg0bdb2230141kfxka7dphjl4q7wdfhi", + "rev": "2d1b4664d2e733a46db3cfeb1f2c052fa86e7cf5" }, "recipe": { "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140524.757", "deps": [] }, "mpv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kljohann/mpv.el.git", - "sha256": "ac7b75fdc868976b2a3c84f00a2ad0c714c91bdf35249b273f57dbe08efa248b", + "tag": "fetchFromGitHub", + "owner": "kljohann", + "repo": "mpv.el", + "sha256": "193j90sgn1zgl00mji86wll4djj57vk5arhwbmhhf5b1qx3wpbhm", "rev": "3021c55fa5723a806dde5fb2a630b115e2c53d06" }, "recipe": { "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150218.318", "deps": [ @@ -14116,14 +14996,15 @@ }, "go-dlv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/benma/go-dlv.el.git", - "sha256": "5be34ee2bf4d16af3d8a572d142c13f285b9736e0117a7a2b6035a5b0b0c0a72", + "tag": "fetchFromGitHub", + "owner": "benma", + "repo": "go-dlv.el", + "sha256": "0wha1h5mnnh3nsiaf5q1drrvk1gj2cn18bapi8ysy5jdpzi4xqsv", "rev": "8d5a0076b3d43e7af61149370e583c0d15cb2dd1" }, "recipe": { "sha256": "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.259", "deps": [ @@ -14132,56 +15013,60 @@ }, "column-enforce-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jordonbiondo/column-enforce-mode.git", - "sha256": "f05c31b1ec7a28aea413169160761fc73a91558d2196416a5a1aee013a7d23fd", + "tag": "fetchFromGitHub", + "owner": "jordonbiondo", + "repo": "column-enforce-mode", + "sha256": "0ay4wrnyrdp4v3vjxr99hy8fpq6zsyh246c0gbp7bh63l5fx8nwr", "rev": "f43263e50ae83db099d83ea445f93e248a3207a0" }, "recipe": { "sha256": "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140902.1149", "deps": [] }, "busybee-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/busybee-theme.git", - "sha256": "9da5f28e779b4d53512954501b8bfdc1d3c679d2808e87aad796eb9fdd41e987", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "busybee-theme", + "sha256": "11z987frzswnsym8g3l0s9wwdly1zn5inl2l558m6kcvfy7g59cx", "rev": "70850d1781ff91c4ce125a31ed451d080f8da643" }, "recipe": { "sha256": "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130920.1142", "deps": [] }, "erlang": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/erlang/otp.git", - "sha256": "30f8dc5e1cbe811f93ed832609243934c69acbbe7df460fd9ee2c32bc12a17fd", - "rev": "a16b7d63cc665dca90305b146c15de04487808db" + "tag": "fetchFromGitHub", + "owner": "erlang", + "repo": "otp", + "sha256": "1dl2sxd77miaqbl9plrg6kgql5jg5vz42lj9f85i771g95h2c6nk", + "rev": "21d6192389a04024f7a41ced9d0911a9cce6f4e8" }, "recipe": { "sha256": "1na5vk01q8bmglwmb37676313mmc5n28c4sip23kpxypkp6wvn3g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.357", "deps": [] }, "cssh": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/cssh.git", - "sha256": "2aa8a1eec42d3ad39710662dbd48fe5db27b31a08085e430fa2ebb738087c2f5", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "cssh", + "sha256": "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a", "rev": "2fe2754235225a59b63f08b130cfd4352e2e1c3f" }, "recipe": { "sha256": "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150810.1209", "deps": [] @@ -14194,21 +15079,22 @@ }, "recipe": { "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150425.1301", "deps": [] }, "concurrent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-deferred.git", - "sha256": "3fe9f37148e79bdac8cdd2d436d7f2a38149bb924db87898cc73d1e2fd65e6e8", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-deferred", + "sha256": "0m7y41hqv8mjwyy3v8pmgffqw11gcbyvhmydj1ph0jwxkc68hy14", "rev": "01710a52a1206a0da1374335e6b89ad5aed92160" }, "recipe": { "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150309.2252", "deps": [ @@ -14217,28 +15103,30 @@ }, "yari": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hron/yari.el.git", - "sha256": "ee6ec58601e34035642878a6408de0fdaf8765d99b9cf4c257dcdd6681342a71", + "tag": "fetchFromGitHub", + "owner": "hron", + "repo": "yari.el", + "sha256": "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf", "rev": "a2cb9656ee5dfe1fc2ee3854f3079a1c8e85dbe9" }, "recipe": { "sha256": "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.139", "deps": [] }, "cobra-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Nekroze/cobra-mode.git", - "sha256": "0ffdd6be72df3109acfcf329b69c2810ecd258e41f1075ccfd80cee156731baf", + "tag": "fetchFromGitHub", + "owner": "Nekroze", + "repo": "cobra-mode", + "sha256": "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp", "rev": "acd6e53f6286af5176471d01f25257e5ddb6dd01" }, "recipe": { "sha256": "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140116.1516", "deps": [] @@ -14251,49 +15139,52 @@ }, "recipe": { "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1610", "deps": [] }, "textile-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juba/textile-mode.git", - "sha256": "8b08d37cd4dd99b5124a67ffd0c7131c3bb698d23831def8b27a9823295a3d49", + "tag": "fetchFromGitHub", + "owner": "juba", + "repo": "textile-mode", + "sha256": "1qcd7vdg63q80zwz8ziaznllq1x7micmljm72s6sh3720rb5aiz2", "rev": "db33dc5f994c008ef9f1556801bf8ac62d451f31" }, "recipe": { "sha256": "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.253", "deps": [] }, "xterm-title": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/xterm-title.git", - "sha256": "d4c5d4452ccadd7ee41d87764b614fbd39d2aa79a768bf2c45f25c3efcc98b19", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "xterm-title", + "sha256": "06cbr7y3wp7j8lnbys57g6md4fdx9xhlnxl73pj7xpfa5i2x9ifl", "rev": "b6ea73d297d191d48bba7dd1e2adc23bbdfa1c3c" }, "recipe": { "sha256": "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091203.1223", "deps": [] }, "helm-zhihu-daily": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/helm-zhihu-daily.git", - "sha256": "00a507245d2865fc6337835a5fd41eb7bd081341f9a6c553891f2ac0dfff8f6c", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-zhihu-daily", + "sha256": "11fznbfcv4rac4h50mkax1g66wd2f91f5dw2v4jxjq2f5y4h4w0g", "rev": "c084d2505621dbb71d83ec10550fa0801623cafc" }, "recipe": { "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.319", "deps": [ @@ -14304,42 +15195,45 @@ }, "vector-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/vector-utils.git", - "sha256": "96f4ed12f6dadbd5774b26a6fabcedcdd47f03d376b4e6c7ac44fe15376242c2", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "vector-utils", + "sha256": "1wa03gb98x650q798aqshm43kh6gfxaz1rlyrmvka5dxgf48whmf", "rev": "c38ca1c6a23b2b51a6ac36c2c64e50e21cbe9d21" }, "recipe": { "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] }, "darkburn-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gorauskas/darkburn-theme.git", - "sha256": "6e63585a54ebbc230a70105ac1c3952217d304f8a5cb9fdd71588308bfeb79a7", + "tag": "fetchFromGitHub", + "owner": "gorauskas", + "repo": "darkburn-theme", + "sha256": "19vrxfzhi0sqf7frzjx5z02d65r2jp1w2nhhf0527g7baid5hqvf", "rev": "a0151684ae4fa7c364115188422f6c3425d1594c" }, "recipe": { "sha256": "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151003.300", "deps": [] }, "bongo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dbrock/bongo.git", - "sha256": "0adef70763f6c47447f90c0b8b26a4d2bb37c57385613b5ecf0444c17876123e", + "tag": "fetchFromGitHub", + "owner": "dbrock", + "repo": "bongo", + "sha256": "0ghjfrwc2i04rxg3nqc5fg2kgfyjlhk8n2qcz53p9i7ncc3zgpha", "rev": "4cdacc10a530d4edbfdf6c95891f3cf229518e9d" }, "recipe": { "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1009", "deps": [ @@ -14354,21 +15248,22 @@ }, "recipe": { "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130906.18", "deps": [] }, "caskxy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/caskxy.git", - "sha256": "f5aafdcbb74293ecb5464653586a1953a12c3e140d59cb53a48d4e246fff8a22", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "caskxy", + "sha256": "15sq5vrkhb7c5j6ny6wy4bkyl5pggch4l7zw46an29rzni3pffr3", "rev": "dc18dcab7ed526070ab76de071c9c5272e6ac40e" }, "recipe": { "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140513.1039", "deps": [ @@ -14378,42 +15273,45 @@ }, "aurora-config-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bdd/aurora-config.el.git", - "sha256": "48a86805e9bc533dc5997293526123e8a6a442d8cd90b4e7908bab302fec415b", + "tag": "fetchFromGitHub", + "owner": "bdd", + "repo": "aurora-config.el", + "sha256": "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28", "rev": "0a7ca7987c3a0824e25470389c7d25c337a81593" }, "recipe": { "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140520.403", "deps": [] }, "twittering-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hayamiz/twittering-mode.git", - "sha256": "eff9151fbc33a09030cd2899be09c08a2396a158c46fafc346e7a5512b1df503", + "tag": "fetchFromGitHub", + "owner": "hayamiz", + "repo": "twittering-mode", + "sha256": "02c9z229ayqnmlvja5a2fz3vk8914v9v8akin57q8a0gyzn2bli5", "rev": "97197cdd3cc005000dc2599f67c754d74fab5972" }, "recipe": { "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.1203", "deps": [] }, "rtags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Andersbakken/rtags.git", - "sha256": "351389ddd31ad78a5055be8c6ed7b0143a346a048ff1c8e788d5d0ef0bc9ba69", - "rev": "71f5031cdd1faae9a5b3ec0de9053f9da2e63cd8" + "tag": "fetchFromGitHub", + "owner": "Andersbakken", + "repo": "rtags", + "sha256": "0pdjbjg81xy41ybrmc2aznb2gv3pic5a0l0gn2yg2hzdbrgfyswn", + "rev": "c68e490fea320c62da44a06fe216fb073f1ebf89" }, "recipe": { "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.147", "deps": [] @@ -14427,7 +15325,7 @@ }, "recipe": { "sha256": "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150519.940", "deps": [ @@ -14437,14 +15335,15 @@ }, "skewer-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/skewer-mode.git", - "sha256": "91df5c6b9e18bcb5f711446e703c5ae6116afd9d5a7d4af765e2430a1a844d8d", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "skewer-mode", + "sha256": "0yj7r5f751lra9jj7lg90qp66sgnb7fcjw5v9hfna7r13qdn9f20", "rev": "5c76ab1786f2f365eff33fd5f52ce4ec3f9b42a2" }, "recipe": { "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.1504", "deps": [ @@ -14455,14 +15354,15 @@ }, "yesql-ghosts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/yesql-ghosts.git", - "sha256": "353d3830d34591c54dee2e69418e5e85fdc629f3047a96325b81a86bfadcdbbb", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "yesql-ghosts", + "sha256": "1fyvvkx6pa41bcr9cyh4yclwdzc5bs742s9fxr6wb4a5scq3hg9m", "rev": "8f1faf0137b85a5072d13e1240a463d9a35ce2bb" }, "recipe": { "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.637", "deps": [ @@ -14473,14 +15373,15 @@ }, "latex-extra": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/latex-extra.git", - "sha256": "e7280e43a887e5630c9e4246f1db982b616cb4dcda0a7d8076ad4232c6e8611a", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "latex-extra", + "sha256": "06k1x3334hmdfs07s2nsvjs6qq9bk3dz2ij2kq667rc7m11hwa77", "rev": "b4ca0185b7046b1d4e2ef90082f23e9e774d626d" }, "recipe": { "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.322", "deps": [ @@ -14490,14 +15391,15 @@ }, "minizinc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00nlight/minizinc-mode.git", - "sha256": "306aa28188753c985dc9bfe8cf0baea5bf0d169261cfe3bbd81e0e39e06f7901", + "tag": "fetchFromGitHub", + "owner": "m00nlight", + "repo": "minizinc-mode", + "sha256": "0808cl5ixvmhd8pa6fc8rn7wbxzvqjgz43mz1pambj89vbkzmw1c", "rev": "98064f098e6871382614fcf3c99520f7a526af0a" }, "recipe": { "sha256": "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.758", "deps": [ @@ -14512,21 +15414,22 @@ }, "recipe": { "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.826", "deps": [] }, "travis": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/emacs-travis.git", - "sha256": "26bf68efccaea65eb21fc67596369a02724de30b30b3c33e5685cfb8542c7e43", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-travis", + "sha256": "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz", "rev": "c8769d3db10ed4604969049e3bd276afa0a0138e" }, "recipe": { "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150825.638", "deps": [ @@ -14538,14 +15441,15 @@ }, "mocha-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cowboyd/mocha-snippets.el.git", - "sha256": "3587f6340948e402accdf473a86fea45468c1b6c84684c922e2df467cd8832ae", + "tag": "fetchFromGitHub", + "owner": "cowboyd", + "repo": "mocha-snippets.el", + "sha256": "06c92q1wrj6b8d8k7i10d4gcy5liag3x4f4chh510c4d3wi0f6sp", "rev": "b8d321eda797e8382f0033901694860fe52f19a9" }, "recipe": { "sha256": "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150116.1000", "deps": [ @@ -14554,28 +15458,30 @@ }, "calfw-gcal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/calfw-gcal.el.git", - "sha256": "b18f1c0d7022fdc77064bf0729da7e54daee5e326dee7e063874cd4522cbc592", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "calfw-gcal.el", + "sha256": "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi", "rev": "14aab20687d6cc9e6c5ddb9e11984c4e14c3d870" }, "recipe": { "sha256": "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120111.400", "deps": [] }, "project-explorer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/project-explorer.git", - "sha256": "a90012bae8d319d0b14e6cc6539b44a50a03403cb87e67d95fa586cf2ed1a025", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "project-explorer", + "sha256": "04l4m3kxbwvyw9xy6cwakrdxxdswrrs7sya8zn6m738aawbr1mcd", "rev": "589a09008706f5f4ef91393dc4306eede0d15ca9" }, "recipe": { "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150503.1914", "deps": [ @@ -14593,35 +15499,37 @@ }, "recipe": { "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.1603", "deps": [] }, "ant": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/apgwoz/ant-el.git", - "sha256": "072a4894a3f9bec68560ab85cffe1bc7be380b8d466b903bfb7b67cc23808abc", + "tag": "fetchFromGitHub", + "owner": "apgwoz", + "repo": "ant-el", + "sha256": "1g4ah0iwqrvvzcxr0ss6il5kign73gzcz1dbc22wdgprlfa4hah7", "rev": "8afe6cd0ee4674911ce6b9381b551ab22c567c49" }, "recipe": { "sha256": "03rxn2dh0xj89kl24jd19q7kmrn1hnr2cdl3519bpng298kxwni6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.107", "deps": [] }, "ac-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/ac-helm.git", - "sha256": "d06d3ed72e0d8962f3888c7323265040c21e3ebf4f2fb0056cb081f0696ded6f", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "ac-helm", + "sha256": "1ycchpiiavxw8n08gra0bsp9pxp6ln8cgjrkz9jjq7i6ixi8f9d6", "rev": "0cde22dac4726d08c27801c926cf40b1165c8a07" }, "recipe": { "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140919.1117", "deps": [ @@ -14633,14 +15541,15 @@ }, "node-resolver": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/meandavejustice/node-resolver.el.git", - "sha256": "a70ad08ca75a91a907168afd5c72049f23e0d15ac2024828e34b4da600c0f5b1", + "tag": "fetchFromGitHub", + "owner": "meandavejustice", + "repo": "node-resolver.el", + "sha256": "1cgmq00ackabwcl4h0n2bb8y08wz0ir5rzca2q3sk4asly6d02m7", "rev": "ef9d0486907a746a80b02ffc6208a09c168a9f7c" }, "recipe": { "sha256": "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140930.1223", "deps": [ @@ -14649,14 +15558,15 @@ }, "rainbow-delimiters": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/rainbow-delimiters.git", - "sha256": "965e575a21c16265ef2e8d59ee9b8206c305b1e6daca49671aec847fa00e28a9", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "rainbow-delimiters", + "sha256": "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd", "rev": "0823d0c67f935a4c36a1c945e93051102963c7fb" }, "recipe": { "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150320.217", "deps": [] @@ -14669,21 +15579,22 @@ }, "recipe": { "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150418.1028", "deps": [] }, "evil-annoying-arrows": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/endrebak/evil-annoying-arrows.git", - "sha256": "ee78ab554f0e45041651c89e45fd255772763eef1511dac51388f6ed4150cb15", + "tag": "fetchFromGitHub", + "owner": "endrebak", + "repo": "evil-annoying-arrows", + "sha256": "05fba10yvxl82g2xl48mxwz7cwjp4pylb7n8a4b08i8f9xasny7f", "rev": "1ec60cea0e67d782e5b8d093d19da6d0d4fd1e7f" }, "recipe": { "sha256": "024zz9l43y1kk2hm8l96h1ahril23cj35f0x72jrcfjysid7wpry", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150509.1618", "deps": [ @@ -14692,14 +15603,15 @@ }, "dired-hacks-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150819.1148", "deps": [ @@ -14708,28 +15620,30 @@ }, "twig-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/moljac024/twig-mode.git", - "sha256": "4aa3b7cc35886992f27b77c7b2d673d6fdaa19e2c18bdeb562c7c3e1058c7573", + "tag": "fetchFromGitHub", + "owner": "moljac024", + "repo": "twig-mode", + "sha256": "0wvmih2y3hy7casxx2y1w8csmzfnfgbb5ivpggr94sc86p6bg8sa", "rev": "2849f273a4855d3314a9c0cc84134f5b28ad5ea6" }, "recipe": { "sha256": "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130220.1250", "deps": [] }, "genrnc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-genrnc.git", - "sha256": "d6022dca2a25cecd8deb23c9e6244c118dbf40b29785ab055e70cd22940b9c21", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-genrnc", + "sha256": "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn", "rev": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a" }, "recipe": { "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140612.737", "deps": [ @@ -14741,14 +15655,15 @@ }, "unicode-progress-reporter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-progress-reporter.git", - "sha256": "b8528151d1697c4e9ec511527aadd758d502481ef84ec58d71c2d46080abd922", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-progress-reporter", + "sha256": "16jgm70ldsngxldiagjkw3ragypalpiidnf82g5hss9ciybkd3j4", "rev": "5e66724fd7d15743213b082474d798117b194494" }, "recipe": { "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -14761,42 +15676,45 @@ }, "faff-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/WJCFerguson/emacs-faff-theme.git", - "sha256": "db88dcaa1cf45a9bdc224d89448f10f38a152c6e9ee1d49eb0201e780c7285e9", + "tag": "fetchFromGitHub", + "owner": "WJCFerguson", + "repo": "emacs-faff-theme", + "sha256": "1sc5f867h7i0n2gd9qcydqn1b2pk227l92ad4bf9nnpl3jmdr26v", "rev": "8ec2bee09b386c711b0753ab12ace926d06fca7e" }, "recipe": { "sha256": "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.717", "deps": [] }, "fm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/fm.git", - "sha256": "7ae3ebd7b5780ffc89dfb51950584d87dc201fbeab7cac41f83c524996fe64ba", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "fm", + "sha256": "1fk4zsb4jliwz10sqz5bpqgj1p479mc506dmvy4zq3vqnpbypqvs", "rev": "555bcebdf47ea3b1d9d1e152af7237b9daa62d59" }, "recipe": { "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130126.1818", "deps": [] }, "company-anaconda": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/company-anaconda.git", - "sha256": "d82eeacf709b6d86f9dc9007a72b02e0c40ff4f2d4f33be611d2bda2be88fc8b", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-anaconda", + "sha256": "1369k2wcf5mgbnxsp6dn9vrml8dzq7lgv3a1918jhgmlxicn4dm1", "rev": "f796fea142cb164a08f9b0968f565e279bd23dd7" }, "recipe": { "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.523", "deps": [ @@ -14809,28 +15727,30 @@ }, "inlineR": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/inlineR.el.git", - "sha256": "2dde319ab1cf78ec1e64ecb69e49119417538b586abe98aae3c087db1318383e", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "inlineR.el", + "sha256": "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q", "rev": "29357186beca825e3d0451b700ec09b9ed65e37b" }, "recipe": { "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120520.932", "deps": [] }, "evil-tutor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-tutor.git", - "sha256": "bab3fdd9f65c8d6f62dd787ab67437ffd3e7331ab5b700470facad29ab95c396", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-tutor", + "sha256": "00yfq8aflxvp2nnz7smgq0c5wlb7cips5irj8qs6193ixlkpffvx", "rev": "4e124cd3911dc0d1b6817ad2c9e59b4753638f28" }, "recipe": { "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150103.50", "deps": [ @@ -14839,14 +15759,15 @@ }, "flycheck-dmd-dub": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atilaneves/flycheck-dmd-dub.git", - "sha256": "d5865e86098fd1e5f429ee068fd4ba97d65cf0a5c34d875a4c7783dbdc0698ad", + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "flycheck-dmd-dub", + "sha256": "0dqkd9h54qmr9cv2gmic010j2h03i80psajrv4wq3c4pvxyqyn2j", "rev": "1acd7e3683ed55ac11f013e325c1cbf19be8ad66" }, "recipe": { "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151019.822", "deps": [ @@ -14855,14 +15776,15 @@ }, "evil-visualstar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/evil-visualstar.git", - "sha256": "a035ef65b14bff6b936ba76cd3d6e25ab944b4dec3a61dbdbd91e8187e9ba49e", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "evil-visualstar", + "sha256": "17m4kdz1is4ipnyiv9n3vss49faswbbd6v57df9npzsbn5jyydd0", "rev": "bd9e1b50c03b37c57355d387f291c2ec8ce51eec" }, "recipe": { "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150514.1610", "deps": [ @@ -14871,14 +15793,15 @@ }, "hlinum": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tom-tan/hlinum-mode.git", - "sha256": "04d757d07653dd788bca7e0fa10d4a81ba377bb94bd381574e7194bffb4c887b", + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "hlinum-mode", + "sha256": "0yw89kxvz53i9rbq3lsbp5xkgfl1986s23vyra5pipakfv85gmq4", "rev": "22218c9883a2de6468bf6ad13864b50b44c93592" }, "recipe": { "sha256": "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150621.2133", "deps": [ @@ -14887,14 +15810,15 @@ }, "rainbow-identifiers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/rainbow-identifiers.git", - "sha256": "30fb159bbc2d473f6614eaab59e6a167fc91f6b04e3144a4a642eadfeb952016", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "rainbow-identifiers", + "sha256": "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh", "rev": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e" }, "recipe": { "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141102.926", "deps": [ @@ -14903,14 +15827,15 @@ }, "demangle-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/liblit/demangle-mode.git", - "sha256": "753c6f92e038e0246e18c2889733718da6e91ae853f782b33d69832f7a87b643", + "tag": "fetchFromGitHub", + "owner": "liblit", + "repo": "demangle-mode", + "sha256": "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl", "rev": "07e62a7f976f6c7366b4b0475bbb5cff881452b8" }, "recipe": { "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.1453", "deps": [ @@ -14920,16 +15845,17 @@ }, "github-clone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgtized/github-clone.el.git", - "sha256": "ac21881cb359e8614869527e3e182b6768f8c70121369233e3097c643e8b03e6", - "rev": "93e6604c2137b308adeb5cf1653c25b445ee143a" + "tag": "fetchFromGitHub", + "owner": "dgtized", + "repo": "github-clone.el", + "sha256": "1w1w3rmfj7bj721v0f3bg8hjadipa1z8yf62xpn3ypfr0wa6hnhy", + "rev": "36202b802f6d0e4a9da63e5d93d99b6171407e4a" }, "recipe": { "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150705.1905", + "version": "20151217.230", "deps": [ "emacs", "gh", @@ -14938,28 +15864,30 @@ }, "shrink-whitespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jcpetkovich/shrink-whitespace.el.git", - "sha256": "9397acde96bd985a3781f57ffdd8486e42324bb37e2692be27982bca720839be", + "tag": "fetchFromGitHub", + "owner": "jcpetkovich", + "repo": "shrink-whitespace.el", + "sha256": "07zzyfibs2c7w4gpvdh9003frznbg7zdnrx0nv8bvn0b68d3yz0m", "rev": "8d4263d974fbe66417c0bb9edc155ecc2f48e4b7" }, "recipe": { "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150916.1415", "deps": [] }, "helm-git-files": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kenbeese/helm-git-files.git", - "sha256": "2039fe70e88744a4459e74792a0f8a4c592f4b98bf71d8e8669730406644a4f7", + "tag": "fetchFromGitHub", + "owner": "kenbeese", + "repo": "helm-git-files", + "sha256": "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw", "rev": "43193960774069369ac6964bbf7c026900206fa8" }, "recipe": { "sha256": "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141212.717", "deps": [ @@ -14968,42 +15896,45 @@ }, "hi2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nilcons/hi2.git", - "sha256": "8ed6b5dd7aaa8cf6865e6a623c6bf9c737a3996e41833635a6a9ec02d7d308e8", + "tag": "fetchFromGitHub", + "owner": "nilcons", + "repo": "hi2", + "sha256": "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf", "rev": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8" }, "recipe": { "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141005.1431", "deps": [] }, "deferred": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-deferred.git", - "sha256": "3fe9f37148e79bdac8cdd2d436d7f2a38149bb924db87898cc73d1e2fd65e6e8", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-deferred", + "sha256": "0m7y41hqv8mjwyy3v8pmgffqw11gcbyvhmydj1ph0jwxkc68hy14", "rev": "01710a52a1206a0da1374335e6b89ad5aed92160" }, "recipe": { "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151007.1857", "deps": [] }, "eshell-did-you-mean": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/eshell-did-you-mean.git", - "sha256": "6f6d49ab37747e8e58039d9a70257b317653ad7861feb0d9d590d83219d41c6c", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "eshell-did-you-mean", + "sha256": "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg", "rev": "7cb6ef8e2274d0a50a9e114d412307a6543533d5" }, "recipe": { "sha256": "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150915.1452", "deps": [ @@ -15013,42 +15944,45 @@ }, "bind-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/use-package.git", - "sha256": "608676a52f8ab26b9861e2e796850b351d9a7ca711737bf26a124a61f1e76693", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "use-package", + "sha256": "14v6wzqn2jhjdbr7nwqilxy9l79m1f2rdrz2c6c6pcla5yjpd1k0", "rev": "77a77c8b03044f0279e00cadd6a6d1a7ae97b016" }, "recipe": { "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150321.413", "deps": [] }, "urlenc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/buzztaiki/urlenc-el.git", - "sha256": "845bf1ecb99a1e148040e525e2177203222b7dc9e4c5464b84a711e3c8069977", + "tag": "fetchFromGitHub", + "owner": "buzztaiki", + "repo": "urlenc-el", + "sha256": "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4", "rev": "835a6dcb783bbe84714bae87a3464aa0b128bfac" }, "recipe": { "sha256": "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140116.856", "deps": [] }, "bbdb-": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/bbdb-.git", - "sha256": "d75213f2dd7a00de66f41161dd38d3dd6c880d8569d6237242d7d80fdeb4cb9e", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "bbdb-", + "sha256": "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp", "rev": "2839e84c894de2513af41053e80a277a1b483d22" }, "recipe": { "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140221.1754", "deps": [ @@ -15059,14 +15993,15 @@ }, "ace-pinyin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/ace-pinyin.git", - "sha256": "fd4fef31d0c3085ccd2a087dbd3bb4a45d046dcaf8657fd73fee886f856bec02", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-pinyin", + "sha256": "00pcdf2nz27f7zbpyrgqr9nh8pd4nhxvsz885b6mq263s0qyykzx", "rev": "d7c8fed8ab6f6fbbbcb95bcd74516c30d05dcdfa" }, "recipe": { "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1517", "deps": [ @@ -15076,28 +16011,30 @@ }, "vc-auto-commit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisirs/vc-auto-commit.git", - "sha256": "e74826b55567f9fdf62c1b89606a218349b2a917ccbf47c81ab995b5c9158a14", + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "vc-auto-commit", + "sha256": "081cyicwyx1jdjkk5xp9pgy4xqnawwznkxz2pc570xxf06yx46cs", "rev": "b23ee2727495b89d0a979a7420ce3a313434fdfe" }, "recipe": { "sha256": "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.303", "deps": [] }, "etable": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/ETable.git", - "sha256": "beaf4cf590093a0eb301b7ad04f37ebb45a64f0fab7ae6293ee1a7c6d70a66cc", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "ETable", + "sha256": "1k361bbwd9z17qlycymb1x7scidvgvrh9bdp06rhwfh9j3slrbxy", "rev": "8c9a32a92e7f808874c150c851f1605b2dd83d6e" }, "recipe": { "sha256": "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150327.1216", "deps": [ @@ -15108,28 +16045,30 @@ }, "gplusify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/gplusify.git", - "sha256": "01e3eebcfaf7a68b069e37d4ad7ca9472ae49b18758a4599e2c61e8a008083d0", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "gplusify", + "sha256": "1l43h008l7n6waclb2km32dy8aj7m5yavm1pkq38p9ppzayfxqq1", "rev": "bd6237ae671db2fbf406dcc6225839dcbd2475b2" }, "recipe": { "sha256": "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150312.1444", "deps": [] }, "prop-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/prop-menu-el.git", - "sha256": "7b7f28aa1d412cfec0d5f2adbfe27176fd28d45d8507f9ed2256eb66611d8774", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "prop-menu-el", + "sha256": "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc", "rev": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3" }, "recipe": { "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150728.618", "deps": [ @@ -15139,14 +16078,15 @@ }, "esqlite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-esqlite.git", - "sha256": "306f8a4781dceca65dccdeb1370598b8db5b2ee10e371ee1d80c52741abe6241", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-esqlite", + "sha256": "0ag444hfrpdrf3lnaz7l2plj392xgh7a2080421z3g0alc74m8h3", "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" }, "recipe": { "sha256": "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.606", "deps": [ @@ -15155,56 +16095,60 @@ }, "green-phosphor-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aalpern/emacs-color-theme-green-phosphor.git", - "sha256": "b0ad76b2a8a4be8c0f85c10338ee911a643d121f319dae514a2bfefa34a170bb", + "tag": "fetchFromGitHub", + "owner": "aalpern", + "repo": "emacs-color-theme-green-phosphor", + "sha256": "0rgv96caigcjffg1983274p4ff1icx1xh5bj7rcd53hai5ag16mp", "rev": "fa42f598626adfdc5450e5c380fa2d5df6110f28" }, "recipe": { "sha256": "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150515.947", "deps": [] }, "cypher-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fxbois/cypher-mode.git", - "sha256": "141572679e97cb1e8140c2170f7aaa85129f2a0c7a30e96b4049cbb48750faa0", + "tag": "fetchFromGitHub", + "owner": "fxbois", + "repo": "cypher-mode", + "sha256": "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf", "rev": "ce8543d7877c736c574a17b49874c9dcdc7a06d6" }, "recipe": { "sha256": "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.542", "deps": [] }, "bbcode-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/bbcode-mode.git", - "sha256": "c7fae8b84a35c5428b55a112442ac45621a52cc91a0bdbe84f528d301d11379e", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "bbcode-mode", + "sha256": "17ip24fk13aj9zldn2qsr4naa8anqhm484m1an5l5i9m9awfiyn7", "rev": "b6ff1bfb8041b1435ebfc0a7d8e5e34eeb1b6aae" }, "recipe": { "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141103.1541", "deps": [] }, "ob-kotlin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/ob-kotlin.git", - "sha256": "c7bb65703bab660f8b1fea0714770747ccbd112f1b50ce67b338827ac4e39205", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-kotlin", + "sha256": "01cjwg27m0iqndkwwl0v5w8vvk270xvi81za3y5hyrmb7dq6bfy7", "rev": "c494f50184d25e196c009bf5cc105c4931b9464d" }, "recipe": { "sha256": "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150312.814", "deps": [ @@ -15213,28 +16157,30 @@ }, "fold-dwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/fold-dwim.git", - "sha256": "219a7922278b25f9b836ac1d686d17008bc942f391aa5a54375cab3074e4e1fb", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "fold-dwim", + "sha256": "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1", "rev": "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b" }, "recipe": { "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140208.1037", "deps": [] }, "cake-inflector": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-cake-inflector.git", - "sha256": "14749dfef78173160d9e6d5e53c8db2dd7a23dada8afac24a1af573924b0ed8d", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake-inflector", + "sha256": "0xq10jkbk3crdhbh4lab39xhfw6vvcqz3if5q3yy4gzhx7zp94i4", "rev": "a91cecd533930bacf1dc30f5209831f79847abda" }, "recipe": { "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140415.358", "deps": [ @@ -15243,28 +16189,30 @@ }, "kwin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/reactormonk/kwin-minor-mode.git", - "sha256": "9e6984bcb2ef61f5d7496cdb021ccadcbd1a293bcbea5a08f4702472e3732b47", + "tag": "fetchFromGitHub", + "owner": "reactormonk", + "repo": "kwin-minor-mode", + "sha256": "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy", "rev": "d4f8f3593598b71ee596e0a87b2c1d6a912a9566" }, "recipe": { "sha256": "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150308.1312", "deps": [] }, "purescript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dysinger/purescript-mode.git", - "sha256": "271ed4bc574cc9f4803b54003b19d5086f2d61772ca58082e1e5d315b44c29aa", + "tag": "fetchFromGitHub", + "owner": "dysinger", + "repo": "purescript-mode", + "sha256": "0k2plyvd6842yryzrfadbf4h7a9hrjvkcvixclbca2bkvfik3864", "rev": "1390bf6a2ddd0764a5ee7f5cac4e88980cf44eaf" }, "recipe": { "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150316.2028", "deps": [] @@ -15277,21 +16225,22 @@ }, "recipe": { "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151001.834", "deps": [] }, "rectangle-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/rectangle-utils.git", - "sha256": "0913a861ebcc2a946eae67882e4118a936d8a5b383c13f2461acea669b5cda93", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "rectangle-utils", + "sha256": "14ysbjdndsmcc4j3zhc3nfjxhdm9310jx237mrp98ancxdhsh4q9", "rev": "81071e62862c0062b8559eb217e6658878c34a1e" }, "recipe": { "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150528.1428", "deps": [ @@ -15301,14 +16250,15 @@ }, "helm-R": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/helm-R.el.git", - "sha256": "9991a8fe5147c327955a0c29613322499d0ab2cf8535d181e784245bf307375a", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "helm-R.el", + "sha256": "0nip0zrmn944wy0x2dc5ryr0m7a948rn2a8cbaajghs7a7zai4cr", "rev": "b0eb9d5f6a483a9dbe6eb6cf1f2024d4f5938bc2" }, "recipe": { "sha256": "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120819.1914", "deps": [ @@ -15318,14 +16268,15 @@ }, "mingus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pft/mingus.git", - "sha256": "9de9b14e5313990554578139297e4add32c515d51891658871a205c8fae2fdb4", + "tag": "fetchFromGitHub", + "owner": "pft", + "repo": "mingus", + "sha256": "0r4jh58pls859fljb6qm49l4imfxxif9mxsmjgwan0czfhq33xqh", "rev": "151f2225f9af3c4cc7ca89e94dc6a19077baf6a4" }, "recipe": { "sha256": "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.1317", "deps": [ @@ -15334,28 +16285,30 @@ }, "hippie-namespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/hippie-namespace.git", - "sha256": "d9552498eb4b8af1018ae734fcf0e242754e569b0d71fb3b48e001c898e742c7", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "hippie-namespace", + "sha256": "0b5wrid428s11afc48d6mdifmd31gmzyrj9zcpd3jwk63ydiihdc", "rev": "d0d0f15c67ab8bef5e9d1e29a89ecd3613a60b49" }, "recipe": { "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] }, "sbt-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hvesalai/sbt-mode.git", - "sha256": "d2d940ba293683c78712c46484fff8c54221b128d5912d34cfc342c699f32a63", + "tag": "fetchFromGitHub", + "owner": "hvesalai", + "repo": "sbt-mode", + "sha256": "1l6l90lhqk56l20dhy19snn0fz4di03j714d2v07yl19q64gfk6c", "rev": "209a396babd0a302cbb5a32f16525aabb409528b" }, "recipe": { "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.242", "deps": [ @@ -15364,14 +16317,15 @@ }, "evil-easymotion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PythonNut/evil-easymotion.git", - "sha256": "a65a10e383c9703db833e38dcd71e2027deaf25fdf5a1b99497c156f2c0cc7b1", + "tag": "fetchFromGitHub", + "owner": "PythonNut", + "repo": "evil-easymotion", + "sha256": "17qb3qnnn2f8jj2mi8735ymnw8rhpj6w3l61lhqfrkc0m6vq1vhy", "rev": "ba7f1e08a5dca4c0540b347f55547828421d6c79" }, "recipe": { "sha256": "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.2259", "deps": [ @@ -15381,14 +16335,15 @@ }, "org-dashboard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bard/org-dashboard.git", - "sha256": "4536ff0b128a4aa2abb28f561051dc277905538119cdce11a5e3299646880edb", + "tag": "fetchFromGitHub", + "owner": "bard", + "repo": "org-dashboard", + "sha256": "1nqfi139cag3ll8wxk8rh59hay97vi8i0mlgnams4jla285zydj5", "rev": "b523aefb5822c1f09a70bc429579c2959929782b" }, "recipe": { "sha256": "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150812.502", "deps": [ @@ -15397,28 +16352,30 @@ }, "shpec-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shpec/shpec-mode.git", - "sha256": "390093d68134f1a008a724a5dd0493b88b17dcd1dee4e4aaf57c12de0e278a93", + "tag": "fetchFromGitHub", + "owner": "shpec", + "repo": "shpec-mode", + "sha256": "1mizhbwvnsxxjz6m94qziibvhghhp8v8db3wxrq3z9gsaqqkcndn", "rev": "146adc8281d0f115df39a3a3f982ac59ab61b754" }, "recipe": { "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150530.422", "deps": [] }, "jonprl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/jonprl-mode.git", - "sha256": "5a2e21fbe4d4146e2566d5152f087ea56c9e13c31afe154a9b9be6c6d4fc3b68", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "jonprl-mode", + "sha256": "1a0091r1xs3fpvg1wynh53xibdsiaf2khz1gp6s8dc45z8r0bclx", "rev": "a7c7525ee19682c700f4d1d432b5be5707e94f10" }, "recipe": { "sha256": "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.342", "deps": [ @@ -15429,14 +16386,15 @@ }, "anything-replace-string": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/anything-replace-string.git", - "sha256": "93108f9a50fa2e0d244c382e44928b7e508a7844ec5eeb9a568de8b785f464a0", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "anything-replace-string", + "sha256": "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k", "rev": "1962f24243d6013bcef7e8d23136277d42e13130" }, "recipe": { "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140317.536", "deps": [ @@ -15451,21 +16409,22 @@ }, "recipe": { "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1834", "deps": [] }, "discover": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mickeynp/discover.el.git", - "sha256": "6ad242aa6a06d4878d7f707054cbe6ca056d22152848cabad1999e016116f038", + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "discover.el", + "sha256": "0f7h2rhh37lrs6xclj182li6s1fawv5m8w3hgy6qgm06dam45lka", "rev": "7b0044bbb3b3bd5d811fdfb0f5ac6ec8de1239df" }, "recipe": { "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140103.1539", "deps": [ @@ -15474,14 +16433,15 @@ }, "ob-elixir": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/ob-elixir.git", - "sha256": "79ac6816302e9fcdd0bcebf5cf3bb5a1afcf5e04c59e5748478f1615958d6c98", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-elixir", + "sha256": "0qknm1h2ijnzs1km51hqwpnv5083m9ngi3nbxd90r7d6vva5fhhk", "rev": "d0e8007efa0b99ab7a6e4cb7160a87d6cb60d210" }, "recipe": { "sha256": "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.647", "deps": [ @@ -15490,43 +16450,45 @@ }, "ledger-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ledger/ledger.git", - "branchName": "next", - "sha256": "0155b2e2244ed392b2d25847b7cae7226f94f18d9f3776555d27eb8d1ab187ea", + "tag": "fetchFromGitHub", + "owner": "ledger", + "repo": "ledger", + "sha256": "110yvfj01cfl40pf8c1ad8hy07kb6ibjiwvc8svfxrlhw5lca465", "rev": "7eacf5130849b4d53948d4750e11bd08f8a97a27" }, "recipe": { "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151026.1742", "deps": [] }, "eshell-autojump": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/eshell-autojump.git", - "sha256": "82411271983f24f39a271bbc68b754b51cf4be90d03ced6ca80ad2d0e7fb998d", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "eshell-autojump", + "sha256": "13crzgkx1lham1nfsg6hj2zg875majvnig0v4ydg691zk1qi4hc2", "rev": "c6a8b81a16576df9875e721fbbfe6690d04e7e43" }, "recipe": { "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.224", "deps": [] }, "company-restclient": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/company-restclient.git", - "sha256": "a5e7b4babbd51bc77b0d478d051818db7bfeed760ae19b3897fd83508e4f0211", + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-restclient", + "sha256": "04829y7510zxjww9pq8afvnzwyyv30c0b3a71mxwf6ympfxb9rx5", "rev": "752f39490178832f6a09abd82e10d9356636350a" }, "recipe": { "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.601", "deps": [ @@ -15539,14 +16501,15 @@ }, "ac-cake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-ac-cake.git", - "sha256": "ae7cd5dc6833cd780bfbac478b2fea7850f66dcfe64412c4d32218bfd3b297d2", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ac-cake", + "sha256": "1llpnb9vy612sg214i76rxnzcl3qx8pqnixczc5pik9kd3fdaz5f", "rev": "f34c9e3ba8cb962e4708c8f53b623e1922500176" }, "recipe": { "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140315.1129", "deps": [ @@ -15556,14 +16519,15 @@ }, "ddskk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skk-dev/ddskk.git", - "sha256": "003be81094d22aa34b472dab82673037a34ca2b9a928c9d2fa865a990b360630", + "tag": "fetchFromGitHub", + "owner": "skk-dev", + "repo": "ddskk", + "sha256": "11qr5ami93rwgvc3pf9370rsxbnawdllsrizm1v53xsi98yfp812", "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" }, "recipe": { "sha256": "1wj3z6ldlkaj99xqh7a497in1syn7shf2w1ffcn6aiskxjrzmpiq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.552", "deps": [ @@ -15579,35 +16543,37 @@ }, "recipe": { "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.657", "deps": [] }, "org-tree-slide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/takaxp/org-tree-slide.git", - "sha256": "85cca95c04cce82c87613e546b75e199615a54a600939c1cf0eb4b0e79ef4c29", + "tag": "fetchFromGitHub", + "owner": "takaxp", + "repo": "org-tree-slide", + "sha256": "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45", "rev": "dccd80418a4444df5e8301695ff0d0dfe86a3c21" }, "recipe": { "sha256": "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151017.253", "deps": [] }, "org-transform-tree-table": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jplindstrom/emacs-org-transform-tree-table.git", - "sha256": "23c4d1b765be0a4558d16c4ef032d3cf617ebb2714c8da2e5abaafbcf1f3e990", + "tag": "fetchFromGitHub", + "owner": "jplindstrom", + "repo": "emacs-org-transform-tree-table", + "sha256": "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3", "rev": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52" }, "recipe": { "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150110.833", "deps": [ @@ -15617,14 +16583,15 @@ }, "asilea": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/asilea.git", - "sha256": "be5357d5a5d92dbaae94492e741b403b5e772ecc90532842aa16573a9075fc85", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "asilea", + "sha256": "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597", "rev": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f" }, "recipe": { "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150105.925", "deps": [ @@ -15640,22 +16607,22 @@ }, "recipe": { "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150619.1003", "deps": [] }, "ox-reveal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yjwen/org-reveal.git", - "branchName": "stable", - "sha256": "9b6270464def71e1ee275a83442d420de5177eb1e44cbc1a3c447f0b1e312eb7", + "tag": "fetchFromGitHub", + "owner": "yjwen", + "repo": "org-reveal", + "sha256": "196bjiij0nj19qsz95y9l44sr63673mxxj0cv6aa3ijpm48vmj9p", "rev": "b92d0e843f2526788caa08bda5284f23e15e09cd" }, "recipe": { "sha256": "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.106", "deps": [ @@ -15664,28 +16631,30 @@ }, "demo-it": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/howardabrams/demo-it.git", - "sha256": "229e1314efdc452738fbd1e82ee626150de8ef03a0a24f2c136dd9c6f47244ea", + "tag": "fetchFromGitHub", + "owner": "howardabrams", + "repo": "demo-it", + "sha256": "0ws46aq5nl6ayhfrg9lm12i53v99a7pbfwb65rn9xsy4176k7zqb", "rev": "3953fab63b4ef4eb18272596ccb66dcace60528c" }, "recipe": { "sha256": "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151020.1429", "deps": [] }, "helm-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-package.git", - "sha256": "2a66ecae3428577456ba6ccbb4b927b7bb6acb1690eef464565bfe2408cb921f", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-package", + "sha256": "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw", "rev": "117f5f26c96c0854aadaf9c52aaec961195d5798" }, "recipe": { "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.248", "deps": [ @@ -15695,14 +16664,15 @@ }, "dired-filter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150909.1336", "deps": [ @@ -15712,84 +16682,90 @@ }, "mmm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/mmm-mode.git", - "sha256": "884a10fa62940123c4181c04d7d82e5e4349bf75417bd04724154167d62ece79", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "mmm-mode", + "sha256": "04rapmqblfjvmdccm9kqi8gn0him1x2q7hjwsyb8mg4lwxcd7qp9", "rev": "c9a857a638701482931ffaaee262b61ce53489f3" }, "recipe": { "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.1916", "deps": [] }, "revive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/revive.git", - "sha256": "2107ab8d3a44ca8fe508e0fbbffc91f02727c99c1e39fadf17d4fced0a53fa0c", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "revive", + "sha256": "037sac5fvz6l2zgzlf8ykk4jf9zhj7ybzyz013jqzjj47a6sn1r1", "rev": "16e1ac7cfa2fdccddf60d4a0e15731fc7448d818" }, "recipe": { "sha256": "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150417.1755", "deps": [] }, "smart-tab": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/genehack/smart-tab.git", - "sha256": "84564063ecdce590bf6509b4b3b79f4cd33ff91aa3d46396a4194ee4d7852f2a", + "tag": "fetchFromGitHub", + "owner": "genehack", + "repo": "smart-tab", + "sha256": "0aighpby8khrljb67m533bwkzlsckyvv7d09cnzr1rfwxiil0ml4", "rev": "28918a72045811294ecb33f666ba23fe66c169af" }, "recipe": { "sha256": "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150703.1117", "deps": [] }, "man-commands": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/man-commands.git", - "sha256": "db9577297237bbd0eecb1f5d427d1e513700a31e26f91ffe1c8f324370006d70", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "man-commands", + "sha256": "0w3d01q46clg3kz1zy963sih0dsi3ryl4p8zrgpd1frpf8lpg5fv", "rev": "0a5091bf1d27eb2c220c90b8e20cffd0784a2211" }, "recipe": { "sha256": "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130627.1853", "deps": [] }, "helm-git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/maio/helm-git.git", - "sha256": "2e2d1635a583a173d9422383af038b1baacdfacd32f4bd4080dc8e6b94777bd4", + "tag": "fetchFromGitHub", + "owner": "maio", + "repo": "helm-git", + "sha256": "1yfy4a52hx44r32i0b75bka8gfcn5lp61jl86lzrsi2cr9wg10pn", "rev": "cb96a52b5aecadd3c27aba7749d14e43ab128d55" }, "recipe": { "sha256": "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120630.1603", "deps": [] }, "git-lens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/git-lens.git", - "sha256": "50c7f45624361835b1047cf1e9c1103e61897ec975b985fa3e04ab17f56b2a68", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "git-lens", + "sha256": "0s1adgsigaq47vx8bfbmr5z8jq9y230ykwbw0jqka61n4ibg9ish", "rev": "1feacc217c58fd4a41f9378eb09658f664036509" }, "recipe": { "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150817.214", "deps": [ @@ -15798,28 +16774,30 @@ }, "emacs-setup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/echosa/emacs-setup.git", - "sha256": "c8dfb9cc7e8025d1af11965cf66a4373205538fe059a3657c4bfb21dc2528396", + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacs-setup", + "sha256": "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8", "rev": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2" }, "recipe": { "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120727.926", "deps": [] }, "interaction-log": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/michael-heerdegen/interaction-log.el.git", - "sha256": "546385d25e675d526c68dc82b04d35d441d36a69100a8b74c9add0fb6527b549", + "tag": "fetchFromGitHub", + "owner": "michael-heerdegen", + "repo": "interaction-log.el", + "sha256": "0jdm4xjzpl5dr5s8n2hhd5md6hfl6m6v10nwd1n54pb7bv98aqsl", "rev": "977a3d276b73a4e239addc6c30214bc55ac6fd1f" }, "recipe": { "sha256": "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150603.1210", "deps": [ @@ -15828,14 +16806,15 @@ }, "ac-emmet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/ac-emmet.git", - "sha256": "4f080ce79ee28bfa173bc56a1baba9c9f93bba92f5d49049c4473d395dc570d2", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "ac-emmet", + "sha256": "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g", "rev": "88f24876ee3b759978d4614a758280b5d512d543" }, "recipe": { "sha256": "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131015.1058", "deps": [ @@ -15851,21 +16830,22 @@ }, "recipe": { "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140816.733", "deps": [] }, "highlight-quoted": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-quoted.git", - "sha256": "0a492d3a6ad5d80e90519dd29264f82456080dba276b4f168e9d7efd6153136f", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-quoted", + "sha256": "0vqkadhzszlxiqb4ysr7p86hhmi4z1j95llxa680xn6md8x2sj8a", "rev": "ec9108486cf7f21f9a0b13f81369849b3b525f1f" }, "recipe": { "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140916.1322", "deps": [ @@ -15874,14 +16854,15 @@ }, "org-wc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dato/org-wc.git", - "sha256": "28e129c8edea383d8a01b015b434ab6c9e1faee4b80b610bf27af40ec2832a56", + "tag": "fetchFromGitHub", + "owner": "dato", + "repo": "org-wc", + "sha256": "0miahg10xx3sy85n22xqwjp1z7kcmcsb85dh0653sf7axp42kq98", "rev": "f1765fc913f288432ee2cc330c8a7af3af7715c8" }, "recipe": { "sha256": "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141101.120", "deps": [] @@ -15895,35 +16876,37 @@ }, "recipe": { "sha256": "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140509.722", "deps": [] }, "wordsmith-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/wordsmith-mode.git", - "sha256": "d000091c7e22e7301cdbe57d0a7c2621e4d4d8d3b71b180bfc208ba807f54b34", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "wordsmith-mode", + "sha256": "0d2byl3si2r0zh5ih6xpsgcd9r114ry0lzg5vcf31rr2gqf0j06h", "rev": "597e1e7c7ef89b06ed8280251ecd8f40ce55e1bf" }, "recipe": { "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.436", "deps": [] }, "makey": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mickeynp/makey.git", - "sha256": "59c5f9db97357c8a6e46918546c4874e284409d5c83beb0a10914d0ac6df5f2b", + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "makey", + "sha256": "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy", "rev": "a61781e69d3b451551e269446e1c5f624ab81137" }, "recipe": { "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131231.830", "deps": [ @@ -15939,21 +16922,22 @@ }, "recipe": { "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140130.2016", "deps": [] }, "magit-gitflow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jtatarik/magit-gitflow.git", - "sha256": "00524486775639f7de4a082bf10946e1c97b0e682eff6d616536c15535373d52", + "tag": "fetchFromGitHub", + "owner": "jtatarik", + "repo": "magit-gitflow", + "sha256": "10c1qd1l92h0z7mz7j004bx3fc9p6ij3m732lwmni9vlfbishbb4", "rev": "dd1d88888957f0fd8b950037e0e58dba2d3221d9" }, "recipe": { "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150905.239", "deps": [ @@ -15963,28 +16947,30 @@ }, "wsd-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/josteink/wsd-mode.git", - "sha256": "eb751ef9994b0df2d67a87a1d48f5fd0f816c2a5aebf68651184d3aa3aa53503", + "tag": "fetchFromGitHub", + "owner": "josteink", + "repo": "wsd-mode", + "sha256": "1jqm4ysakdnb8lp3kj1d4cr0krnwvm7b5i70sfkx8ps0f9k7dhjb", "rev": "a5b012607793a5edc9d54b30e04f4a324144e930" }, "recipe": { "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150913.1230", "deps": [] }, "rubocop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/rubocop-emacs.git", - "sha256": "7329265be66994d2a214a67395ff95823773d7ba308309b777a4714cf204bff8", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "rubocop-emacs", + "sha256": "1y5z0kr4qwd4fyvhk0rhpbbp6dw2jpzrawx62jid5539wrdjcabk", "rev": "c54905256410ce2aed6725d5b5f7ed61d4ddc956" }, "recipe": { "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.2337", "deps": [ @@ -15994,14 +16980,15 @@ }, "planet-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cmack/emacs-planet-theme.git", - "sha256": "f8cfdca190055945f87d29f0d57c304ec5b3018694800e73ba982b8f0a6f9f60", + "tag": "fetchFromGitHub", + "owner": "cmack", + "repo": "emacs-planet-theme", + "sha256": "0q4zdw58yawqp9rhx04lhq0v7iaf61ydbw19gpw4an85j2hxrkzq", "rev": "e2bd6645535a3044fceafb1ce5d296cc111d5f2a" }, "recipe": { "sha256": "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150627.951", "deps": [ @@ -16010,14 +16997,15 @@ }, "ert-runner": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ert-runner.el.git", - "sha256": "6fef3cc63cb122657a82b99fc36ed9870d408f782442299f011bd526b85f4304", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ert-runner.el", + "sha256": "0ivnfc42pw9pc9glx2m4klzx4csy4m60hj1x12js7492bd0ri933", "rev": "0a88a6cc9d970660c9f1205a623bc80d9bd5a05b" }, "recipe": { "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.313", "deps": [ @@ -16031,14 +17019,15 @@ }, "coffee-fof": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/coffee-fof.git", - "sha256": "77b8af71bb821eb017e7c7bf2886d029c0372ba846f2ce315c2b83a90c421b04", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "coffee-fof", + "sha256": "010v886ak0rbbhqwxwj6m0mkgh19s232igy7wwbv07l2pdqszf3p", "rev": "211529594bc074721c6cbc4edb73a63cc05f89ac" }, "recipe": { "sha256": "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131012.730", "deps": [ @@ -16047,42 +17036,45 @@ }, "zenburn-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/zenburn-emacs.git", - "sha256": "a7b05262fd0177e09e3a3a0cfd5bdbda7267818039f8b283d160b640a4a614e6", - "rev": "ded76bfc1d9a5ff9e0deb3b695922c02c17c7d61" + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "zenburn-emacs", + "sha256": "14m4azwy6h8d9gw764ikddnis13armxagpfvj6v97773v56ankgg", + "rev": "fc77c5382f2074f8defe39541b4bfc568cd67ca7" }, "recipe": { "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151101.1358", + "version": "20151218.1441", "deps": [] }, "web-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fxbois/web-mode.git", - "sha256": "776a4dae7b7234e80d5083feebb6a1e63a12ebde5a1c15b9e0eae0d16ae907b2", - "rev": "79b921e13444c8f4da9ec89a45a1bfa0eb85aaa6" + "tag": "fetchFromGitHub", + "owner": "fxbois", + "repo": "web-mode", + "sha256": "1k3kwcr4q6j0ljxj8hqfy466nw12v5j7yrszg2brmgfxz2285k63", + "rev": "71aebc9f003dccce021be917deb58e9c0dd5c704" }, "recipe": { "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151213.757", + "version": "20151218.1600", "deps": [] }, "helm-filesets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gcla/helm-filesets.git", - "sha256": "5ec466ca01d9ff1eaf97621289cc56afd49c8f605b91eccb64ad600228553ff1", + "tag": "fetchFromGitHub", + "owner": "gcla", + "repo": "helm-filesets", + "sha256": "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9", "rev": "b352910af4c3099267a8aa0169c7f743b35bb1fa" }, "recipe": { "sha256": "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140929.1335", "deps": [ @@ -16092,28 +17084,30 @@ }, "gitconfig-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/git-modes.git", - "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" }, "recipe": { "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.1248", "deps": [] }, "helm-sheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-sheet.git", - "sha256": "fd379699a597dc3c58994879de475ace5da049fe31ff22b16d1812771fc39603", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-sheet", + "sha256": "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx", "rev": "d360b68d0ddb09aa1854e7b2f3cb39caeee26463" }, "recipe": { "sha256": "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130630.739", "deps": [ @@ -16122,42 +17116,44 @@ }, "tao-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/11111000000/tao-theme-emacs.git", - "sha256": "f581fe13092ad7aac9ac3ae750a037a14ff73b15934e80fe002d17fc28fd767b", - "rev": "48df99623bd183d17961eef73293c62a1045c708" + "tag": "fetchFromGitHub", + "owner": "11111000000", + "repo": "tao-theme-emacs", + "sha256": "1zhr6vrzf511mxrj4fkc9k8wfr1hixn733f5g28j4qzykr4zl2mh", + "rev": "48a69f5568b2d16496960aa92b312cd02be80ecc" }, "recipe": { "sha256": "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151126.758", + "version": "20151217.1040", "deps": [] }, "ahg": { "fetch": { "tag": "fetchhg", "url": "https://bitbucket.com/agriggio/ahg", - "sha256": "1kh7a9hyw24qrlp4ngvy2548a95l5k89k7nb3h75sk9pabw078cf", - "rev": "c3d9a903e3a3" + "sha256": "04ngls59336lyjbwcxz6qdddpaijh51zds8m666vgwjihniv7skg", + "rev": "bc4ab0720d4a" }, "recipe": { "sha256": "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151030.937", + "version": "20151218.213", "deps": [] }, "isearch-dabbrev": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Dewdrops/isearch-dabbrev.git", - "sha256": "2b7beb8d53ba7b757d9a1a26a9faabb21c95a3b9201f8603d7bb29ae4c40a09d", + "tag": "fetchFromGitHub", + "owner": "Dewdrops", + "repo": "isearch-dabbrev", + "sha256": "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb", "rev": "1efe7abba4923015cbc2462395deaec5446a9cc8" }, "recipe": { "sha256": "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141224.22", "deps": [ @@ -16166,14 +17162,15 @@ }, "helm-bm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-bm.git", - "sha256": "df2df8040202cd8d1371ce5abd838b2dd35a2fed482114607daebf846b3c9dbd", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-bm", + "sha256": "1gcx7imq9gxfgmh188a8xlpmmlrdif1vsnnff49qvk82082ghbfz", "rev": "1764c0139cb2f04b9fd520c7aca0b6d0152913bd" }, "recipe": { "sha256": "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131224.905", "deps": [ @@ -16185,42 +17182,45 @@ }, "tornado-template-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paradoxxxzero/tornado-template-mode.git", - "sha256": "62e85fe5668e775c11621c3db19289689eb5a82b7ba59801f7c8428c18237c83", + "tag": "fetchFromGitHub", + "owner": "paradoxxxzero", + "repo": "tornado-template-mode", + "sha256": "0wv49gn1daylnjmnallpqsqy7630ynrp45agpiwi6kwyyqk1kdvv", "rev": "667c0663dbbd279b6c345446b9f2bc50eb52b747" }, "recipe": { "sha256": "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141128.408", "deps": [] }, "mwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/mwim.el.git", - "sha256": "c125bee0e8eeaa276424342972b04d3ff15b628c10e40885d65b0b3c02cc24ac", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "mwim.el", + "sha256": "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4", "rev": "dc1b5c358e0bfe607527f1b7c082188105fe6c75" }, "recipe": { "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150822.1436", "deps": [] }, "launchctl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pekingduck/launchctl-el.git", - "sha256": "d2aaebcb95d00fdd0f79f4c9380c121f32f25ad7343fda06dd4fe1b3e03a9f94", + "tag": "fetchFromGitHub", + "owner": "pekingduck", + "repo": "launchctl-el", + "sha256": "154z7bhb7qagvl3dlgrlsxdg4chz2863ijglg47xs3yhjp5ypanj", "rev": "73f8f52a5aa9a0be9bdcf68c29ad0fa2b4a115a4" }, "recipe": { "sha256": "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150518.809", "deps": [ @@ -16229,14 +17229,15 @@ }, "transmission": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/holomorph/transmission.git", - "sha256": "760f34f89c8b4b056a00019395d4c6c4a5331804566941d158e34c4c0328de4c", + "tag": "fetchFromGitHub", + "owner": "holomorph", + "repo": "transmission", + "sha256": "0k6y501lqk73b38l2san0hc379f4qva9b4q101m0ajwbkkw383vn", "rev": "883d41ca3648838f66ca9dd7b9709be2b50b2ede" }, "recipe": { "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.343", "deps": [ @@ -16246,28 +17247,30 @@ }, "ghq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rcoedo/emacs-ghq.git", - "sha256": "846a64613fb39c70beb645a4770560018be97cb4c2c29b19820515d33c30efb5", + "tag": "fetchFromGitHub", + "owner": "rcoedo", + "repo": "emacs-ghq", + "sha256": "1aj5j0y244r1fbbbl0lzb53wnyhljw91kb4n3hi2gagm7zwp8jcf", "rev": "bfbf9245075f710ffc7dc2c6bf584dd2ca7bde24" }, "recipe": { "sha256": "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.318", "deps": [] }, "soft-charcoal-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/soft-charcoal-theme.git", - "sha256": "9533f4b9473250f1ff562b5ffa178e264526cfc5e69c639801fce927ed35051c", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "soft-charcoal-theme", + "sha256": "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm", "rev": "5607ab977fae6638e78b1495e02da8955c9ba19f" }, "recipe": { "sha256": "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140420.1143", "deps": [] @@ -16281,7 +17284,7 @@ }, "recipe": { "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.854", "deps": [ @@ -16290,14 +17293,15 @@ }, "xah-lookup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/lookup-word-on-internet.git", - "sha256": "7a547753b93de4a8116401a972c452b63619dfd0efa53f6eb26ccb2513e7bea9", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "lookup-word-on-internet", + "sha256": "1adyww9jbjvcn9p3z9ggs3gijdmnab275a81ch8sir1xp59pfm3s", "rev": "75590c52af87e635b2f19640095b805fdb3e5d8b" }, "recipe": { "sha256": "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150602.1346", "deps": [] @@ -16310,7 +17314,7 @@ }, "recipe": { "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.924", "deps": [] @@ -16324,21 +17328,22 @@ }, "recipe": { "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.640", "deps": [] }, "nixos-options": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/travisbhartwell/nix-emacs.git", - "sha256": "9c44131bb762df62b5476871bed5a5d344a4db448854145bf06dc839c0910147", + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "0iq1j703kj3dy1di8m488kds8i6klpavwwb88ysn5pv2nwdi6i4w", "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" }, "recipe": { "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.1809", "deps": [ @@ -16347,28 +17352,30 @@ }, "monky": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ananthakumaran/monky.git", - "sha256": "3d8bc1962ee4f30e5fa7d029b02ec07018a56675d39b90ecb077528b565efb48", + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "monky", + "sha256": "0ddkcb5rzpcqpsrwkhvm9kzpx2mlrrsp7psljkz5q5qfvy3wdagh", "rev": "48c0200910739b6521f26f6423b2bfb8c38b4482" }, "recipe": { "sha256": "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150404.218", "deps": [] }, "pythonic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/pythonic.git", - "sha256": "d2d72d2b2591fafb4a9fb7686407a3ec9d93a0a38be77adf89026de2570c2ae4", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "pythonic", + "sha256": "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c", "rev": "959b3f5d5607eb41ef26ad61d7ec15ceecb8e37a" }, "recipe": { "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150730.416", "deps": [ @@ -16387,21 +17394,22 @@ }, "recipe": { "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131014.5", "deps": [] }, "emms-mode-line-cycle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/emms-mode-line-cycle.git", - "sha256": "6824d92b2ca19f38d0bc2b28cd1949d9f25b49c8cb76a39122cf7d58f6eee2df", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "emms-mode-line-cycle", + "sha256": "1pz2xvv5hzfg4a8s6xnbr14mpwnr94cwsa1bpk83i7x15hmxj938", "rev": "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295" }, "recipe": { "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.946", "deps": [ @@ -16411,14 +17419,15 @@ }, "ember-yasnippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ronco/ember-yasnippets.el.git", - "sha256": "64c434b6aa5192681614503b98873c114295125759f6856ff949543c1e043618", + "tag": "fetchFromGitHub", + "owner": "ronco", + "repo": "ember-yasnippets.el", + "sha256": "14049ldvyxn6w06aw6slvxdb68idars3ynka90lm0piyjpn0fy16", "rev": "650a6d31748175aa7df074bcfffd433a0b072ab5" }, "recipe": { "sha256": "1alqrv9yhc1f8dhvh2kjcv8qbn1hdgza5iasmchr1wggxds3s50i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150501.1126", "deps": [ @@ -16427,56 +17436,60 @@ }, "go-errcheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dominikh/go-errcheck.el.git", - "sha256": "63a254c6c720ef40fbc483df2baba4e1574dbbbbb2b51601c41545bd47eba6ba", + "tag": "fetchFromGitHub", + "owner": "dominikh", + "repo": "go-errcheck.el", + "sha256": "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3", "rev": "1b0cd6af048a8b2074ace14ab51fb6c987beb430" }, "recipe": { "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.1335", "deps": [] }, "lexbind-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/spacebat/lexbind-mode.git", - "sha256": "3675f14da51b1711dfd3f9d3ff819d6b9309326de28a956e719a2b9d219614d7", + "tag": "fetchFromGitHub", + "owner": "spacebat", + "repo": "lexbind-mode", + "sha256": "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932", "rev": "fa0a6848c1cfd3fbf45db43dc2deef16377d887d" }, "recipe": { "sha256": "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141027.929", "deps": [] }, "minimal-session-saver": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/minimal-session-saver.git", - "sha256": "48a001446daeac6423488aaee4452017afa1f7fba92c2ff2eaf0d456a5bdd8cc", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "minimal-session-saver", + "sha256": "1sj5sq932w079y3vy55q5b6wybwrzz30y092iq1mpfg5xvl42sbm", "rev": "cf654ac549850746dc21091746e4bcc1aef7668e" }, "recipe": { "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] }, "flymake-vala": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/daniellawrence/flymake-vala.git", - "sha256": "fd0b64747c75ee9eb50a99e689556620dbe8465eccbe86b27142edee87380441", + "tag": "fetchFromGitHub", + "owner": "daniellawrence", + "repo": "flymake-vala", + "sha256": "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf", "rev": "c3674f461fc84fb0300cd3a562fb903a59782745" }, "recipe": { "sha256": "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150326.31", "deps": [ @@ -16485,14 +17498,15 @@ }, "popup-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-popup-complete.git", - "sha256": "b11301df4c14431a70ed1c62f5c9f473e8e3febfd46bdd979d4d1b1badd4ef4f", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-popup-complete", + "sha256": "1q9zajv6g7mi6k98kzq3498nhmdkp1z9d2b8vgzbk7745d39gm9b", "rev": "caa655a6d8472e9a4bfa1311126d90d7d1b07fca" }, "recipe": { "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141108.2108", "deps": [ @@ -16501,14 +17515,15 @@ }, "cake2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-cake2.git", - "sha256": "7177a82eff2163dfd461e4e3dfe445ce82c580078f558fd68b4f142b9fb81bd1", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake2", + "sha256": "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb", "rev": "0a9d0b3a1c49ba1730088416f50507f53221c70b" }, "recipe": { "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140626.742", "deps": [ @@ -16524,14 +17539,15 @@ }, "helm-rhythmbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrBliss/helm-rhythmbox.git", - "sha256": "333341c7797a4e4f79da40b0593102d77737697c0c09af7dfd2443190400ae16", + "tag": "fetchFromGitHub", + "owner": "mrBliss", + "repo": "helm-rhythmbox", + "sha256": "05mf0021jhr4zmysy28cgilkfxyp08qmkc20v9wlykksg73l2crk", "rev": "3bdff00fd9d7b39f8b1dfb35e6843da307ef4d98" }, "recipe": { "sha256": "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150813.808", "deps": [ @@ -16541,14 +17557,15 @@ }, "async": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/emacs-async.git", - "sha256": "b7cddb682702a034dd416e26afd9318f0574b7f55f717b4f1e522ae23e55217d", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "emacs-async", + "sha256": "0z91alzf4ajj3r7pnwazynvp81cg67csy9kf87fk98024xldpkdp", "rev": "c25bf17b34a1608da45e8a1ca02e1c89a34acd34" }, "recipe": { "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.456", "deps": [ @@ -16558,16 +17575,17 @@ }, "gotest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/gotest.el.git", - "sha256": "1dc860bf805572ba4821e661690b851d48f5609f05e59da3883f3fea2e46b415", - "rev": "46bd21634430808a6eb29776a2898f28b09bddac" + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "gotest.el", + "sha256": "1b6zn1fmqvfb7bcpmhzkgcy5003dl22w3f293arlsd1xkbjgkxa2", + "rev": "ab0da939aad5cec301126c59b7718cd3158b3233" }, "recipe": { "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151130.950", + "version": "20151218.249", "deps": [ "emacs", "f", @@ -16577,14 +17595,15 @@ }, "ede-compdb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/randomphrase/ede-compdb.git", - "sha256": "0a785f8f8a976d894ed9d542f7122ea691283486c0bace9d16adc2888b65c27b", + "tag": "fetchFromGitHub", + "owner": "randomphrase", + "repo": "ede-compdb", + "sha256": "1cfjw9b1lm29s5cbh0qqmkchbq2382s71w4rpb0gyf603s0yg13m", "rev": "d6d8466cd62876fc90adeff5875a1a584fd846cd" }, "recipe": { "sha256": "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150920.1533", "deps": [ @@ -16595,14 +17614,15 @@ }, "floobits": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Floobits/floobits-emacs.git", - "sha256": "7d1791e9315d81ad4fb19108bb3316d1d1a436cb9c0db53401a77248bc35cc56", + "tag": "fetchFromGitHub", + "owner": "Floobits", + "repo": "floobits-emacs", + "sha256": "11zfpwfpv8lrib9629h9jyn9svqg30kf4jbnaj0s2sxcyn2sxfga", "rev": "08b3b5a3c3a178b8f21f1baf5e1f0eb0cf1fb855" }, "recipe": { "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.1836", "deps": [ @@ -16612,56 +17632,60 @@ }, "md-readme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thomas11/md-readme.git", - "sha256": "836d88feb65f49fdb9dc01a356c6a6dcb397d1401b12a611aec159e5d7b80fc9", + "tag": "fetchFromGitHub", + "owner": "thomas11", + "repo": "md-readme", + "sha256": "1j8gp3byanf1mq8sc4hv838rgcywlv35d8q1vjwzsjaznvz8hvc3", "rev": "9f3630d3ad2b83ec20968cf02c6613c53e8e32ec" }, "recipe": { "sha256": "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150506.159", "deps": [] }, "annoying-arrows-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/annoying-arrows-mode.el.git", - "sha256": "02fc94d96b4dddc3ad65040d5f7d41422fa4e52aa6485e4f7e4ec8fff51cf8de", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "annoying-arrows-mode.el", + "sha256": "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02", "rev": "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3" }, "recipe": { "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.1102", "deps": [] }, "foreign-regexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k-talo/foreign-regexp.el.git", - "sha256": "fca3272a37d16bbfd6f48e9e20b80aecae9033636576ddb4acd2ae49e1523332", + "tag": "fetchFromGitHub", + "owner": "k-talo", + "repo": "foreign-regexp.el", + "sha256": "1fczg710a0rjs932yv6vv9rwr9g5ii6cwva82nqfzyhlkf0b1sn5", "rev": "c7251fce89c8585f2595e687d8d7bc65cf465b5e" }, "recipe": { "sha256": "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140823.1942", "deps": [] }, "wilt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sixty-north/emacs-wilt.git", - "sha256": "a51e30d46f4466172d371b544f4019eb052777f1b54cc3c33533caea69973ffb", + "tag": "fetchFromGitHub", + "owner": "sixty-north", + "repo": "emacs-wilt", + "sha256": "1n45m8xn65a2lg8ff7m6hbqnp2j49n9sfyr924laljvhjbi37knd", "rev": "5febe367c6c3729848654358af4d17ee2987da8d" }, "recipe": { "sha256": "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.718", "deps": [ @@ -16672,14 +17696,15 @@ }, "airplay": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/airplay-el.git", - "sha256": "8499df3a59b1cf947ebb23d30890f43048383a06df8b7a6bf4f170b284390c98", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "airplay-el", + "sha256": "1lxpfswp1bjrz192px79f155dycf2kazpr7dfrcr1gyshlgxkpf7", "rev": "bd690aafcae3a887946e1bba8327597932d964ad" }, "recipe": { "sha256": "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130212.626", "deps": [ @@ -16697,21 +17722,22 @@ }, "recipe": { "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130602.748", "deps": [] }, "weibo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/austin-----/weibo.emacs.git", - "sha256": "f0ed5faab006636b836bee87f680adcd328d04cd5311a4ad49694676a58f8541", + "tag": "fetchFromGitHub", + "owner": "austin-----", + "repo": "weibo.emacs", + "sha256": "0hc5iyjpcik996ns84akrl28scndmn0gd1zfdf1nnqq6n2m5zvgh", "rev": "a8abb50b7602fe15fe2bc6400ac29780e956b390" }, "recipe": { "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150307.1642", "deps": [ @@ -16720,28 +17746,30 @@ }, "volatile-highlights": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k-talo/volatile-highlights.el.git", - "sha256": "ab3d1dc60b3f087b2a2b6a7c56fb660098e710167959ba7ec522bfa65272d30a", + "tag": "fetchFromGitHub", + "owner": "k-talo", + "repo": "volatile-highlights.el", + "sha256": "1v0chqj5jir4685jd8ahw86g9zdmi6xd05wmzhyw20rbk924fcqf", "rev": "fb2abc2d4d4051a9a6b7c8de2fe7564161f01f24" }, "recipe": { "sha256": "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141005.40", "deps": [] }, "bbdb-china": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/bbdb-china.git", - "sha256": "101284a21d1b33c5b0292047f70e0913a26eaccb463b318c0adeec876541f59c", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "bbdb-china", + "sha256": "07plwm5nh58qya03l8z0iaqh8bmyhywx7qiffkf803n8wwjb3kdn", "rev": "a64725ca6dbb5ec1825f3a9112df9aa54bb14f6c" }, "recipe": { "sha256": "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150615.2056", "deps": [ @@ -16751,56 +17779,60 @@ }, "grep-a-lot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ZungBang/emacs-grep-a-lot.git", - "sha256": "9c1a5212b15ae93316f19708f5ffae818d0a835c30914aac7ddf469aab3002b9", + "tag": "fetchFromGitHub", + "owner": "ZungBang", + "repo": "emacs-grep-a-lot", + "sha256": "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw", "rev": "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad" }, "recipe": { "sha256": "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131006.847", "deps": [] }, "stan-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stan-dev/stan-mode.git", - "sha256": "71e11b48e374c1868b6aee957858ceff5598ba3c55b21c6cd654a0eaaa3ababd", + "tag": "fetchFromGitHub", + "owner": "stan-dev", + "repo": "stan-mode", + "sha256": "09xgwrgb4a348fchcn24k51lh8cq1sj6lzfx8v76gkkhp7sn3l1r", "rev": "58826c65f3351eb69bf999f3364afe50dc31645e" }, "recipe": { "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150829.2215", "deps": [] }, "parse-csv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrc/el-csv.git", - "sha256": "5a2071adad5edd42db44a46765a2205d060d24b3bbf74875c4adf6d958b80cfd", + "tag": "fetchFromGitHub", + "owner": "mrc", + "repo": "el-csv", + "sha256": "1z8cp1cdkxmdqislixxvncj0s1jx42i6arx48kdl5paymnnp282s", "rev": "dc31201af8868aa98f055de055ee7aa5fae266dd" }, "recipe": { "sha256": "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140203.316", "deps": [] }, "edts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tjarvstrand/edts.git", - "sha256": "1278403c6e98af9b9907c85eb46e935bacff34abeba3ae40f80455cc1abd2831", + "tag": "fetchFromGitHub", + "owner": "tjarvstrand", + "repo": "edts", + "sha256": "0vsrcvrd02nx647gxp65r548qlxg50w73dy0rs1lxwy6mdgp0npv", "rev": "70dfcfd8cc448c854fb67d65e005ba00e77384c5" }, "recipe": { "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.710", "deps": [ @@ -16816,28 +17848,30 @@ }, "unison-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/impaktor/unison-mode.git", - "sha256": "d11e3845374bb491d898e3a3826639212d485eedf098b7b6e85baed909021051", + "tag": "fetchFromGitHub", + "owner": "impaktor", + "repo": "unison-mode", + "sha256": "0l8h084xkbjvx2vbg67hxmg4hb9175k858z3k3c93d2b6x2kh7ni", "rev": "7e1bfee1a6796cc749a583605a9c948eccbc8cc5" }, "recipe": { "sha256": "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.614", "deps": [] }, "avy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/avy.git", - "sha256": "ef7382ab4751b7989f269f1931632244ba3afdf0157c27091907627b6788a6ed", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "avy", + "sha256": "1vd6i1kpnqh7344jfz0my3ykmfj449ik26cz4sgridsi8ymq4wzg", "rev": "b1a1953e1c20578b0d866d538b6045b42f4de4ef" }, "recipe": { "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.756", "deps": [ @@ -16847,14 +17881,15 @@ }, "marmalade": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/marmalade.git", - "sha256": "78617a9d2005e419aab6e38fb59ec8bbfc4e897407a638d3923cd7fc1d52e3ea", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "marmalade", + "sha256": "1ygznmqb3fqy94p8qi71i223m7cpw3f596pkls2ybjlbpb4psjcl", "rev": "2a4f07fbd4c17e08556c1a80c1753c37b3626d39" }, "recipe": { "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110602.1822", "deps": [ @@ -16870,7 +17905,7 @@ }, "recipe": { "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.1212", "deps": [ @@ -16879,42 +17914,45 @@ }, "aurora-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xzerocode/aurora-theme.git", - "sha256": "26e201d8002ae5d45a0ecfac9fe9e711ccecea0bcfd8422417f2d561da3356fc", + "tag": "fetchFromGitHub", + "owner": "xzerocode", + "repo": "aurora-theme", + "sha256": "1z2n6gd63mgj2wj45n6g1gmfrk0iwzlrzb6g1rdd9r9a03c03qi6", "rev": "3cd8c3359b7b15148e5cea503f3d071e1ed7fc79" }, "recipe": { "sha256": "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151015.1302", "deps": [] }, "systemtap-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ruediger/systemtap-mode.git", - "sha256": "f9ddb0fb74bfd4593251e023bd120229331e53257273f3d647abeba2cb02009d", + "tag": "fetchFromGitHub", + "owner": "ruediger", + "repo": "systemtap-mode", + "sha256": "0343ss3y9i40y3i9rr7p7bb4k9dj950zyvdv44q1abw2xrfd2xwd", "rev": "1a968c2b1f3a054bebf91ac49739d3a81ce050a9" }, "recipe": { "sha256": "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.1340", "deps": [] }, "evil-dvorak": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jbranso/evil-dvorak.git", - "sha256": "058408c00be4116f82b23dc9c66125622382587e0fa1c03dce835c522c056b49", + "tag": "fetchFromGitHub", + "owner": "jbranso", + "repo": "evil-dvorak", + "sha256": "0jbb0ln54p43rqyw188ggrc848v24mhwdj9xna16y4g41g00i105", "rev": "c193913839e153b0f2c973fae5e6b1fe51809d2b" }, "recipe": { "sha256": "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.726", "deps": [ @@ -16927,28 +17965,30 @@ }, "shadow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/shadow.el.git", - "sha256": "bcebe1a23988ac97ba7d888983001dcc1d3e168cec8cdad1eeaec69cb5042ac4", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "shadow.el", + "sha256": "1i1a0jsrrimfxv8xm37cihb3w7fc3l0872c8gnx9gb4876if3sxw", "rev": "eafc93b090895102ac299220a84ec99244f633af" }, "recipe": { "sha256": "0zhy94jpk29k51r7m1gd24jx7h6b68l38vhw27j3wz0ag1h5352k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110507.224", "deps": [] }, "zop-to-char": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/zop-to-char.git", - "sha256": "efb045f400fff42dc9685088c22394dad6269cc3409f29ede6701d1837ef14bf", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "zop-to-char", + "sha256": "1gqlxwvih7bhwvnjk7s0qff2dmnsjhiw522hd34jvx7z03s4bc7g", "rev": "e1b4080286d7c905119eac745b8b7aaca2784844" }, "recipe": { "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150901.247", "deps": [ @@ -16957,42 +17997,45 @@ }, "phoenix-dark-mono-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/j0ni/phoenix-dark-mono.git", - "sha256": "318b15eb1520c8d9ba8e5981007a77742f922f58acd1e13428b7a6cac21be6b9", + "tag": "fetchFromGitHub", + "owner": "j0ni", + "repo": "phoenix-dark-mono", + "sha256": "1fg63g1cm9mp50sf3ldcb0pr4bvlfxx010arisxdkj102pmib2ri", "rev": "dafb65c542605145d6b1702aae5b195b70f98285" }, "recipe": { "sha256": "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130306.1415", "deps": [] }, "connection": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myrkr/dictionary-el.git", - "sha256": "886b331bc9ef9c9ab171a4c370c80c342417fb8fcb9793edf17baa9984c11587", + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm", "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" }, "recipe": { "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140717.2229", "deps": [] }, "gmail-message-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/gmail-mode.git", - "sha256": "8fc111674fe229115a7d4b30663ccf5b2d888c2cfe8d82d8b58d87f686577748", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "gmail-mode", + "sha256": "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg", "rev": "2e0286e4a3c80889692f8da63a3b15d7a96abdea" }, "recipe": { "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140815.1016", "deps": [ @@ -17001,42 +18044,45 @@ }, "rust-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rust-lang/rust-mode.git", - "sha256": "125b671fa783b3c5bd2bbb4a1fee2ffece51383475e195d45ebc68eed4cb7afb", - "rev": "b874bbe927e460695bd0bb7caf53b5dd8fe57a85" + "tag": "fetchFromGitHub", + "owner": "rust-lang", + "repo": "rust-mode", + "sha256": "0vnf3y92s5rwwqifn1gfvhi609a5ir32dhyzgs9d2gacri7z75lw", + "rev": "061e6d8a3a9104570144f1eacb729e3211cb03cd" }, "recipe": { "sha256": "0h4gblg6ls8a2wa43r990lanl6ykx8j7c8yg5i3n151imzic2n33", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.1303", + "version": "20151215.2134", "deps": [] }, "bug-reference-github": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arnested/bug-reference-github.git", - "sha256": "8b20d2efc2e13e6c154cfaf6d2f1c98c61d6d2f989c0d7306e81e8c8ab81d474", + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "bug-reference-github", + "sha256": "0zr1raf0q5wi3vr66kglxcfxswlm8g2l501adm8c27clvqizpnrr", "rev": "6f693e1f659d9a75abea3f23e95946c7f67138cd" }, "recipe": { "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131202.1503", "deps": [] }, "clojure-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clojure-mode.git", - "sha256": "e0c41c3eea190a76c23e91687151e81becdf025e19838aa69999832318170abe", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-mode", + "sha256": "0mc5g44vfb8w0mhj518yxik6dg55w17vrldcw86ajhw05fww3h3n", "rev": "802c1dbf3529da5a09f97cb21833e0a27ccf41d7" }, "recipe": { "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1238", "deps": [ @@ -17045,14 +18091,15 @@ }, "utop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/diml/utop.git", - "sha256": "3f85dd7eac8dd50482ed9cb410b2b929cc8d6da599745f842089eac2c4a6e1c2", + "tag": "fetchFromGitHub", + "owner": "diml", + "repo": "utop", + "sha256": "034hn9rf6jh8kk07jdhvk03dlxm9v0asypjdhkkslgwfj3hp7yz2", "rev": "e608977856005c7a3503afff7a2f6c3ca8a423c5" }, "recipe": { "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.447", "deps": [ @@ -17061,14 +18108,15 @@ }, "with-editor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v", "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.705", "deps": [ @@ -17079,14 +18127,15 @@ }, "evil-jumper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/evil-jumper.git", - "sha256": "08d774fc23eecd49fe8e2ea8662061a620408d248c5301ff36a3aa0a00aa92f8", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "evil-jumper", + "sha256": "1y4jm800mam36vzh2lwc4j6l0856c4h6da1fivz4kkgf4gy79mq8", "rev": "f1a4952c0e1cee793275d75e297351eaaf6bb1b2" }, "recipe": { "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.1002", "deps": [ @@ -17096,28 +18145,30 @@ }, "lingr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lugecy/lingr-el.git", - "sha256": "8038b25560e872e5e4a8104ebc7a1d48e6f0607f9b0f8d25e4391d3f26047d66", + "tag": "fetchFromGitHub", + "owner": "lugecy", + "repo": "lingr-el", + "sha256": "0rkx0hk3y79rwhjqs3wvgxhg1rj83mxbqkhhm3jfawp8c1av4f40", "rev": "4215a8704492d3c860097cbe2649936c22c196df" }, "recipe": { "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100807.1231", "deps": [] }, "auto-complete-sage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/auto-complete-sage.git", - "sha256": "9caddef2218b3d2405da369b7c9c945372b947674469181285e2c23cfc50d4d3", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "auto-complete-sage", + "sha256": "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3", "rev": "a61a4e58b14134712e0737280281c0b10e56da93" }, "recipe": { "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1257", "deps": [ @@ -17127,14 +18178,15 @@ }, "rich-minority": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/rich-minority.git", - "sha256": "a3d72cfbffc5896821fa40fb68ae3af61e5bef8855679e0d3f4074557c721c86", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "rich-minority", + "sha256": "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3", "rev": "311ac8ee54078f95b7279e532da6cf5a2afb4125" }, "recipe": { "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.600", "deps": [ @@ -17143,28 +18195,30 @@ }, "el-spy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/uk-ar/el-spy.git", - "sha256": "f6866b464ca98c3f9d9078774de9339357bfaf9052595438f0ab9df56d1cd404", + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "el-spy", + "sha256": "016l3inzb7dby0w58najj2pvymwk6gllsxvqj2fkz3599i36p1pn", "rev": "b1dead9d1877660856ada22d906ac4e54695aec7" }, "recipe": { "sha256": "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131226.1408", "deps": [] }, "marcopolo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/marcopolo.git", - "sha256": "ec14182129292c0f2c61ba3614953b59cf2440e7038cdca3109397062d138fa6", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "marcopolo", + "sha256": "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh", "rev": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e" }, "recipe": { "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150326.1118", "deps": [ @@ -17183,63 +18237,67 @@ }, "recipe": { "sha256": "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120531.1636", "deps": [] }, "el-mock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/el-mock.el.git", - "sha256": "a9ae84c5bc965ea4a8cb3d1fb68655d48777ceb31c2adfd3dc8e6ef053209601", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "el-mock.el", + "sha256": "1jiq2hpym3wpk80zsl4lffpv4kgkykc2zp08sb01wa7pl8d1knmm", "rev": "5cb160b9bd2c9b909a2b64adcc9ec947da643c39" }, "recipe": { "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.521", "deps": [] }, "smart-newline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ainame/smart-newline.el.git", - "sha256": "467f958f35ef88eac38c02dbab506e629e6b104a176227891c9b4dea39c3ec75", + "tag": "fetchFromGitHub", + "owner": "ainame", + "repo": "smart-newline.el", + "sha256": "1q74b0mbhly84g252a0arbyxc720rgs9a3yqf8b8s2fpfkzb95sg", "rev": "f5f5ff033645aea0652aa375b034746754a38b1e" }, "recipe": { "sha256": "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131207.2140", "deps": [] }, "fringe-current-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyanagi/fringe-current-line.git", - "sha256": "6108e2f95042f2834c6dfa9acb59103a88c8fb4d3ac927c377138614d7b7947f", + "tag": "fetchFromGitHub", + "owner": "kyanagi", + "repo": "fringe-current-line", + "sha256": "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231", "rev": "0ef000bac76abae30601222e6f06c7d133ab4942" }, "recipe": { "sha256": "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140110.2211", "deps": [] }, "vertica": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/r0man/vertica-el.git", - "sha256": "325c546cb1a96c56ddaddcc7beb07841996c77a38efb07296fb9eda1bb0ae7d6", + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "vertica-el", + "sha256": "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j", "rev": "3c9647b425c5c13c30bf0cba483646af18196588" }, "recipe": { "sha256": "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131217.911", "deps": [ @@ -17248,14 +18306,15 @@ }, "hydra": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/hydra.git", - "sha256": "d28da7ce564a639003d29433d7265defa28a3b9fb613210a1e55c0e8e952e136", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "hydra", + "sha256": "0dp1ablyih2m3q5224xnkwxqm8pgblkdfcwls81r0qsaav7ag3fj", "rev": "7f022f7f1a7833618c1bf4d38a4854d2bae06199" }, "recipe": { "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.617", "deps": [ @@ -17264,56 +18323,60 @@ }, "xmlunicode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ndw/xmlunicode.git", - "sha256": "6f853574d262d1a16819b61d68da8a98d6b2061edcd914aac86a1bf06b2f3678", + "tag": "fetchFromGitHub", + "owner": "ndw", + "repo": "xmlunicode", + "sha256": "0y1n5xmz06var2m19nfw3q3b5mlqibd6h7dn35la3lb2s9s3b1bg", "rev": "aecbdb50fcc4eee8a84fb37107bf3a69fb7a1e21" }, "recipe": { "sha256": "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1113", "deps": [] }, "pony-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidmiller/pony-mode.git", - "sha256": "d28ed9149832838a4c6000a897aa0b942a47b2d90b94fe89c15c607d94eb2512", + "tag": "fetchFromGitHub", + "owner": "davidmiller", + "repo": "pony-mode", + "sha256": "1g1yw0ykwswl9dnicyi7kxskqqry40wjykshgrqhs4k09j3jnacr", "rev": "d319b0317bfbdac12d28cfd83abe31cc35f3cdd7" }, "recipe": { "sha256": "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151028.502", "deps": [] }, "browse-kill-ring": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/browse-kill-ring/browse-kill-ring.git", - "sha256": "d3302bcb998575191ffa0ee1d86ea01e9a82befe008e3660cacd2ea0434f33ac", + "tag": "fetchFromGitHub", + "owner": "browse-kill-ring", + "repo": "browse-kill-ring", + "sha256": "06mdrjc4jq7pj8vmg91dair138kmhvaa9gi5icc56120jmfb6kn2", "rev": "66b5a0872b4278b49a815fc759c3eb48aebe10bf" }, "recipe": { "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150829.832", "deps": [] }, "auto-shell-command": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/auto-shell-command.git", - "sha256": "aae68a4687f79a0b073bf5d6f8f7a4912d0a99b178d299fcd490eb8a2a6b21a3", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "auto-shell-command", + "sha256": "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6", "rev": "59d4abce779a3ce3e920592bf5696b54b2e192c7" }, "recipe": { "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150416.1257", "deps": [ @@ -17323,14 +18386,15 @@ }, "gerrit-download": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chmouel/gerrit-download.el.git", - "sha256": "a4c77027e6d9e78b8f4ef5569643734748aced9c7b256f2fe8a7cc57c1f508b2", + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "gerrit-download.el", + "sha256": "1ch8yp0mgk57x0pny9bvkknsqj27fd1rcmpm9s7qpryrwqkp1ix4", "rev": "d568acc7c5935188c9bc19ba72719a6092d9f6fd" }, "recipe": { "sha256": "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150714.908", "deps": [ @@ -17340,14 +18404,15 @@ }, "emms-player-mpv-jp-radios": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/emms-player-mpv-jp-radios.git", - "sha256": "115f86d16945f4801b2c901a52e7c47485112818584a35650dbc127c677fb01b", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "emms-player-mpv-jp-radios", + "sha256": "06xhgxkpq4mw1mjkajjq30l131blqkkm46lh5hdq1x25d78qcpqi", "rev": "325d78e161cacbd8279d53a0e786fdb5914f85d1" }, "recipe": { "sha256": "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.617", "deps": [ @@ -17359,14 +18424,15 @@ }, "paren-completer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/MatthewBregg/paren-completer.git", - "sha256": "0d47deec35c632ab6d1f1d0d0165e459d2a1cfd28bb942f54e5eb32628ab4fa7", + "tag": "fetchFromGitHub", + "owner": "MatthewBregg", + "repo": "paren-completer", + "sha256": "0fds9s16c0dgq6ah98x4pv5bgwbikqwiikcxjzmk9g1m3s232fl8", "rev": "afb6d596ffac85b3457178cfdb384cd2a382b120" }, "recipe": { "sha256": "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150711.1723", "deps": [ @@ -17375,14 +18441,15 @@ }, "shelldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-shelldoc.git", - "sha256": "d91cb51799e19d15a5bfeb97510b6ed4102919e47babf08b529e7f01c88dfe18", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-shelldoc", + "sha256": "0i6xp6g3ggs4fkr410blxa4mkb1y05pcygkdbvb7y3gh878q5b5k", "rev": "20eb889f3d3d9bd01aafdc699e712a75db42d8f3" }, "recipe": { "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.2125", "deps": [ @@ -17392,14 +18459,15 @@ }, "malabar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m0smith/malabar-mode.git", - "sha256": "8c09e75bfeb8e8fc81b24a9f5ce953f37b121386168c7c0ace562cc9b3e9a57a", + "tag": "fetchFromGitHub", + "owner": "m0smith", + "repo": "malabar-mode", + "sha256": "0hlxs9gi2vml2id9q0r1r0xdm0zshjzc1w3phjf2ab0aa3hl5k6l", "rev": "830f38efae813db4388da6b4abd386eb0a4e861c" }, "recipe": { "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150720.1255", "deps": [ @@ -17409,14 +18477,15 @@ }, "fullframe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomterl/fullframe.git", - "sha256": "14a20c3f48833c183aeb9ac4984fdb8b1ca32d2233f8166a080305c5ca8fac87", + "tag": "fetchFromGitHub", + "owner": "tomterl", + "repo": "fullframe", + "sha256": "09jqaq81vbch93qwrmg0rm6a26pchqdraw374j13hgkhs849gx90", "rev": "b9c3e54c8928c5ba994c55de7794b5f739b43ced" }, "recipe": { "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140619.505", "deps": [ @@ -17425,42 +18494,45 @@ }, "cperl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jrockway/cperl-mode.git", - "sha256": "2c28d3f8d34a0ff157ee0ea0daad76f7dcfcc4065dbc3a7d924cdbc333107172", + "tag": "fetchFromGitHub", + "owner": "jrockway", + "repo": "cperl-mode", + "sha256": "02fl9y72prykh6qmxlnyn7fl27rqsk5kgcm4vdhj3i6fvl1iqdm6", "rev": "06f5668653a114991836139344dbe8f0674577af" }, "recipe": { "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140309.422", "deps": [] }, "handlebars-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danielevans/handlebars-mode.git", - "sha256": "776070c6abb6ec9bfdb9711205a85ed0d37b422bd1b274aaa8724f73ed1c8470", + "tag": "fetchFromGitHub", + "owner": "danielevans", + "repo": "handlebars-mode", + "sha256": "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p", "rev": "81f6b73fea8f397807781a1b51568397af21a6ef" }, "recipe": { "sha256": "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150211.1149", "deps": [] }, "helm-git-grep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-git-grep.git", - "sha256": "d93b88b594f63d7448432c629808266623b196374aed9c425f5f07a4da7ae5d6", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-git-grep", + "sha256": "1mp5gbda81szbx19rvaa6ybb28v64q49hqic8d478ggnjjsqhfyr", "rev": "9e602f79ea58fe12c6a48ce3c2f749b817ef8c86" }, "recipe": { "sha256": "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140222.2022", "deps": [ @@ -17469,14 +18541,15 @@ }, "ido-select-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pjones/ido-select-window.git", - "sha256": "d0bbcac666d1e5dd9ba13e2eb3b898d2ae1c919ceede1e9272062121c835d350", + "tag": "fetchFromGitHub", + "owner": "pjones", + "repo": "ido-select-window", + "sha256": "0qvf3h2ljlbf3z36dhywzza62mfi6mqbrfc0sqfsbyia9bn1df4f", "rev": "946db3db7a3fec582cc1a0097877f1250303b53a" }, "recipe": { "sha256": "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131220.1447", "deps": [ @@ -17491,21 +18564,22 @@ }, "recipe": { "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150630.1635", "deps": [] }, "wgrep-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", - "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" }, "recipe": { "sha256": "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140528.1627", "deps": [ @@ -17520,63 +18594,67 @@ }, "recipe": { "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130822.532", "deps": [] }, "tabbar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dholm/tabbar.git", - "sha256": "7d487fbb6189b8eb520c25ddb985bcef407a95b82129fd7355f2d1f0a2b54358", + "tag": "fetchFromGitHub", + "owner": "dholm", + "repo": "tabbar", + "sha256": "0n23nnig1lgjamrzsa91p2aplh7gpj2vkp951i9fpf49c6xpyj3x", "rev": "ad4c9c20cf9090a5ebf77a5150f2bf98bdb4bded" }, "recipe": { "sha256": "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141109.343", "deps": [] }, "pretty-symbols": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/drothlis/pretty-symbols.git", - "sha256": "60208b979981fbb6fa213f3e442f93a49e7101af4918073d823558655ca200b8", + "tag": "fetchFromGitHub", + "owner": "drothlis", + "repo": "pretty-symbols", + "sha256": "1f00l9f6an1mh8yhf629mw0p37m4jcpl8giz47xbdyw1k6bqn830", "rev": "582cbe51ecfe1cc0a5b185bc06113c8a661e3956" }, "recipe": { "sha256": "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140814.459", "deps": [] }, "comment-dwim-2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remyferre/comment-dwim-2.git", - "sha256": "fa8ab7fc1415fc111cddd5463496f456ac6ac5a8348b38ed688731e0abd8f44f", + "tag": "fetchFromGitHub", + "owner": "remyferre", + "repo": "comment-dwim-2", + "sha256": "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps", "rev": "8cedecde018b5872195bfead6511af822776a430" }, "recipe": { "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150825.1749", "deps": [] }, "dom": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/toroidal-code/dom.el.git", - "sha256": "a2d6b6f1a40e9d829a71560b27d2a7531d5b72480958baf447adb739b110ad98", + "tag": "fetchFromGitHub", + "owner": "toroidal-code", + "repo": "dom.el", + "sha256": "165d22qkkdxd8zsbln0991r5n7aklz92f2snf6d8578flkqvdmm2", "rev": "19a3cadd02ef2cafc258b7ddb1f1609eec894ed6" }, "recipe": { "sha256": "0cpd12vhshlk2v3w42n769gc0b3rsqc8wb7g84846v9r05ypinj2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150414.1810", "deps": [ @@ -17585,14 +18663,15 @@ }, "s-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-s-buffer.git", - "sha256": "0565383db76e415e7f00f07ec9b5060ba25e58c4c0660816b73b0ae98049cf1a", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-s-buffer", + "sha256": "06ng960fj2ivnwb0hrn0qic5x8hb0sswjzph01zmwhbfnwykhr85", "rev": "f95d234282377f00a2c3a9846681080cb95bb1df" }, "recipe": { "sha256": "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130605.1624", "deps": [ @@ -17602,42 +18681,45 @@ }, "ctags-update": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jixiuf/helm-etags-plus.git", - "sha256": "a29adec5d4893d563888fa4c7cabe2967d0d31871f991fd929465811e9980c80", + "tag": "fetchFromGitHub", + "owner": "jixiuf", + "repo": "helm-etags-plus", + "sha256": "1va394nls4yi77rgm0kz5r00xiidj6lwcabhqxisz08m3h8gfkh2", "rev": "eeed834b25a1c084b2c672bf15e4f96ee3df6a4e" }, "recipe": { "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150427.2214", "deps": [] }, "pcsv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-pcsv.git", - "sha256": "4e212f945e58a53810a3c0ef0aa9b51da8f2ad76815fcf76a16a38f999cc5729", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-pcsv", + "sha256": "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af", "rev": "798e0933f8d0818beb17aebf3b1056bbf74e03d0" }, "recipe": { "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.531", "deps": [] }, "projectile-speedbar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/anshulverma/projectile-speedbar.git", - "sha256": "94472999394b672ec75c8cdbefffedd2fff6187c4c779e5bc625beb7962f6854", + "tag": "fetchFromGitHub", + "owner": "anshulverma", + "repo": "projectile-speedbar", + "sha256": "0lr3vx1byf0i9jdzbyrvvzyzi1nfddvw5r9f9wm7gpfp5l8772la", "rev": "59a91ea6b7e4ed4e25ba1acc37d6f90e14c3fa16" }, "recipe": { "sha256": "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150629.1353", "deps": [ @@ -17646,14 +18728,15 @@ }, "helm-unicode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shosti/helm-unicode.git", - "sha256": "6fdaef3f969894c5789050944ba446c37f29909d2bf777001eef0d61fad2f6fa", + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "helm-unicode", + "sha256": "1ypnsbx623gg3q07gxrbkn82jzy38sj4p52hj1wcb54qjqzyznkg", "rev": "cf08fea1235fdc9f900efc0742b021ca33ef65aa" }, "recipe": { "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150428.1354", "deps": [ @@ -17663,28 +18746,30 @@ }, "base16-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkaito/base16-emacs.git", - "sha256": "59d316cc71bd647f4c90e7688ef508a2aff99ae4e3a4a495a4b36f0864034498", + "tag": "fetchFromGitHub", + "owner": "mkaito", + "repo": "base16-emacs", + "sha256": "16240dj0hvxkljas9973wjdgkbx213sqws77j167yr5xf761dlsr", "rev": "18693adea42ec2667534651c28c32934bc1bcec0" }, "recipe": { "sha256": "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151019.911", "deps": [] }, "xah-fly-keys": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xah-fly-keys.git", - "sha256": "36708da17c4d9114a47003d857002e706d1a12b7ea9137d9e28b5aa589481431", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-fly-keys", + "sha256": "0c8l924sanlbwbckg4ganw91lvbh5q05gn03f2j194adgjhqsw1n", "rev": "83d0da590640dda6d175cf88e83062717e39ed50" }, "recipe": { "sha256": "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.348", "deps": [] @@ -17697,21 +18782,22 @@ }, "recipe": { "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110616.1219", "deps": [] }, "company-quickhelp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/expez/company-quickhelp.git", - "sha256": "bbbbf56ef56ecf2dfd8fb6131174a7f44cb9a56f03ad2577e7af1a76c7ec9a66", + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "company-quickhelp", + "sha256": "0hg3wrfhz3qlfb6zv6j5a4xzmm4jk25pkv8h3ryg7sl7h602idgl", "rev": "05e0ee9b854f90ff2b007b3e19446a02513f43dc" }, "recipe": { "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.519", "deps": [ @@ -17722,14 +18808,15 @@ }, "fxrd-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/msherry/fxrd-mode.git", - "sha256": "2b4939ad9cc32b7a3fcc3c29a71486e7372525f001246cec6ea024f7f9c77100", + "tag": "fetchFromGitHub", + "owner": "msherry", + "repo": "fxrd-mode", + "sha256": "003iqzwzf950dvn6q901y0jjadz7hqaafa9wrhzplay3kjnkjj9b", "rev": "122afe6b7edeff117edf92dab1ba011ae71a5910" }, "recipe": { "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1328", "deps": [ @@ -17738,14 +18825,15 @@ }, "gnus-desktop-notify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wavexx/gnus-desktop-notify.git", - "sha256": "992aea09c651de17ecb102ed7d9d0084e2637f2c74b6afe2446753e22cbc8c7a", + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "gnus-desktop-notify", + "sha256": "0ylcphnf4lv78kiazdkl5izn7ql402fpvv82n7n1gpjiqq4ylalr", "rev": "cbd5352d7cb5209a410db7f0faa60b4585f8647b" }, "recipe": { "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150703.854", "deps": [ @@ -17754,14 +18842,15 @@ }, "abyss-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mgrbyte/emacs-abyss-theme.git", - "sha256": "1a72a705e58f709505dfca8d12b6e59f0b7bd013fe063404f03b8e1900938f89", + "tag": "fetchFromGitHub", + "owner": "mgrbyte", + "repo": "emacs-abyss-theme", + "sha256": "12cgjc01k3ivy02381py2g87n2wzwnv153favw2raw4gwl2sfwhs", "rev": "7971da041f5fb608e32cdac9259b53c87013c04f" }, "recipe": { "sha256": "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151007.608", "deps": [ @@ -17770,14 +18859,15 @@ }, "js-comint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/js-comint.git", - "sha256": "3b313ca577447321f5245fe7cffb507eb038275ba7da30eefc87db67894c0442", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "js-comint", + "sha256": "0hh49j4ngnw7zkp31nm7bckkic3ya3xwzrsz4ksj2ws4fyjkqc9v", "rev": "6eb9b2be4fc1c43d600ae9d4cfeacee40fba5c73" }, "recipe": { "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.2038", "deps": [ @@ -17786,14 +18876,15 @@ }, "orglue": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshinari-nomura/orglue.git", - "sha256": "e60b8642c9e3685864e4573a77ee240e1325f51931d1ee93b09275aa6f5310f0", + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "orglue", + "sha256": "1w0hadpslxcjn29yxl9i37sja4qf4kp7ffjpwij5hs73r518c2z6", "rev": "4732f8bfd6866e20230b36e5971f2492827c6944" }, "recipe": { "sha256": "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150430.713", "deps": [ @@ -17804,56 +18895,60 @@ }, "qml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/qml-mode.git", - "sha256": "4e0e8f6395d42f50c081f6acda37f6eb3951ee75e5130fe09310f7a688775e9c", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "qml-mode", + "sha256": "172yfy4adxqhjgh0y4z5fpp52fgbyqvxmb7nh7050byljmiqy3jf", "rev": "5e8fb8819e2d7f6fdbb5609a19570db6eaa6a83a" }, "recipe": { "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130427.1008", "deps": [] }, "org-journal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bastibe/emacs-journal.git", - "sha256": "33b199ff09579b4c58a17df0b0d707d7ef8cdcaea8b9f4a8f48a1f7eb6ff94f8", + "tag": "fetchFromGitHub", + "owner": "bastibe", + "repo": "emacs-journal", + "sha256": "0j6c2ykcm0yscfx5fjnbx53x4jvjc7c0lsgidlnn3a2mwynrc234", "rev": "f67e147d864ec05f08f757725c8a97cb8d8a3fd1" }, "recipe": { "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.949", "deps": [] }, "selectric-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rbanffy/selectric-mode.git", - "sha256": "ec37be24ed230b32e0c5e96b470510237bd49229954a0d36e06d37dd682fff30", + "tag": "fetchFromGitHub", + "owner": "rbanffy", + "repo": "selectric-mode", + "sha256": "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79", "rev": "0dd7ef28a9d9d6fbb95fdeeab6b576ad8762ad16" }, "recipe": { "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.918", "deps": [] }, "circe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/circe.git", - "sha256": "d72cca8e58ec8b961a6926e4966469444d13c9298c45ec2d53805fe9869f837e", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "circe", + "sha256": "1l6lm3i02r0b8ng0n3rckgk0q38wjng41dqbx148bjxfq44cpghz", "rev": "c9862e432d2dad7cd568d79dbe49849245333fb1" }, "recipe": { "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.344", "deps": [ @@ -17862,14 +18957,15 @@ }, "blgrep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ataka/blgrep.git", - "sha256": "a0f62ec8ec32d092c0c2383761b44e649978841d300aafdcf9a1a18095e754df", + "tag": "fetchFromGitHub", + "owner": "ataka", + "repo": "blgrep", + "sha256": "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0", "rev": "605beda210610a5829750a987f5fcebea97af546" }, "recipe": { "sha256": "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150401.916", "deps": [ @@ -17878,28 +18974,30 @@ }, "sublime-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/owainlewis/emacs-color-themes.git", - "sha256": "a9ec93ea3c10d4f5807f7cdaaaece2a40456f17b754b0bb0d2fd61df5f15bbf3", + "tag": "fetchFromGitHub", + "owner": "owainlewis", + "repo": "emacs-color-themes", + "sha256": "0gnxc9i544g6202s205jkjsfyzbybiqsdaxmfxcwj8la7ga6h2bf", "rev": "88315505322f285ff56272a6cd5f20af8eff2ef0" }, "recipe": { "sha256": "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150915.203", "deps": [] }, "evm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/evm.el.git", - "sha256": "9ef30d1f034f47c4f68a89e2a9c9204586c684ef0eabb4709d5e97084dda7c3f", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "evm.el", + "sha256": "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb", "rev": "d0623b2355436a5fd9f7238b419782080c79196b" }, "recipe": { "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141007.656", "deps": [ @@ -17909,14 +19007,15 @@ }, "snakemake-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyleam/snakemake-mode.git", - "sha256": "2724143dd987c019a4ba0b6eec316004a1bab422115a3b47ac51522c15689f5c", + "tag": "fetchFromGitHub", + "owner": "kyleam", + "repo": "snakemake-mode", + "sha256": "0ymgiqfz33b0iyc6y9m8mb76q3jrccxlh7sbpqn8hj31iwlqyr48", "rev": "801662d8c1bf0905afbd7ca5071d6bf637947f0a" }, "recipe": { "sha256": "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.2203", "deps": [ @@ -17925,14 +19024,15 @@ }, "nameless": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/Nameless.git", - "sha256": "7a8e061545c3bb84dfeb3309f82f3579496f28bef5577e22075cb0bc41da608f", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "Nameless", + "sha256": "13v0v90vrc2w0wi7wmzmpql6yjbr6lpzh29kxggq9fy38lahd3ks", "rev": "a3dfd7ecf9c58898241c8d1145eb8e0c875f5448" }, "recipe": { "sha256": "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.639", "deps": [ @@ -17941,28 +19041,30 @@ }, "epresent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/epresent.git", - "sha256": "415e6ec2f5f72dc2967022e009e326e6cc514b23848d8497fda2d599e5172702", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "epresent", + "sha256": "1a8gzf7abda0zgcllyl351m47avnf995i9lvwjf05nyx2jb31dnw", "rev": "c185826a464f780467dff240fd63ec385bd1d9c2" }, "recipe": { "sha256": "1x16wqfjfrh7kaqar5px61bf3lnlibvcbr5xaf3mcgph37sgi6la", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150324.810", "deps": [] }, "truthy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/truthy.git", - "sha256": "639642c72c810ab8a35be74928c07f454895d0273755dc7edd8342ce61368e1e", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "truthy", + "sha256": "1mm6rrprsmx4hc622qmllm7c81yhwbqmdr0n6020krq92zmilmlm", "rev": "8ed8d07772aa8457554547eb17e264b5df2b4a69" }, "recipe": { "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -17971,28 +19073,30 @@ }, "php-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/php-mode.git", - "sha256": "29f5668158a753d55e31c82a8f25ee06d429d7b9b52ee266415003c42b7696ca", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "php-mode", + "sha256": "0206jv7rz9gm016lpfdwh2l0z6da25szc6hfxgcz2qvkzjpvrlr6", "rev": "9b1e7736ce014f26f40635af3c781127a5e32dfa" }, "recipe": { "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151002.2230", "deps": [] }, "helm-bibtexkey": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kenbeese/helm-bibtexkey.git", - "sha256": "5eb06aac13c91e9f70c80b64642dc93de3c5e9bdad3db1f0de152b9acc08c0be", + "tag": "fetchFromGitHub", + "owner": "kenbeese", + "repo": "helm-bibtexkey", + "sha256": "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9", "rev": "aa1637ea5c8c5f1817e480fc2a3750cafab3d99f" }, "recipe": { "sha256": "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140214.904", "deps": [ @@ -18001,14 +19105,15 @@ }, "sotlisp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/speed-of-thought-lisp.git", - "sha256": "38bd7fd3ebd26fdaeeb4c3c291db72d7495791529bb37f721ec996632dd208af", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "speed-of-thought-lisp", + "sha256": "027jmqx4240hym2is9q1iyjdws9ijyyck8dnsbm9xc5lhpsdrl69", "rev": "d5d5ae44e6a31e231024cc7ad9861aa451165413" }, "recipe": { "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.934", "deps": [ @@ -18017,14 +19122,15 @@ }, "helm-spaces": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-spaces.git", - "sha256": "6b28370ffce75428111e7256c59f75984c4d4fc292f77c2fc34e06cd7e78876b", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-spaces", + "sha256": "0sw7g1zcs1jfqcpprxwjq97lsk4qfngwamkj3q8jhm77zh7kfa3b", "rev": "7545fed3880effe079bb27bfbf22e902ac0bc828" }, "recipe": { "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130605.1100", "deps": [ @@ -18034,14 +19140,15 @@ }, "logito": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/logito.git", - "sha256": "b9a7433417eafc5bc158f63dddf559b2044368eb3061f0264169de319c68fe4a", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "logito", + "sha256": "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr", "rev": "824acb89d2cc18cb47281a4fbddd81ad244a2052" }, "recipe": { "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120225.1455", "deps": [ @@ -18050,16 +19157,17 @@ }, "slack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuya373/emacs-slack.git", - "sha256": "6bbcaf113fe2e1e346379c24e2e792a5bf9a0e9caed427915945d93c9ff24750", - "rev": "0876db049fcb8b4f901ee40fc382c01c5477f024" + "tag": "fetchFromGitHub", + "owner": "yuya373", + "repo": "emacs-slack", + "sha256": "1xpkcabi0cnk895fkg8ssaz7m3bc9x5i77v6a9mwdyjjxikcmgi2", + "rev": "861b250458606039301480bcf8c166b1a2ce174b" }, "recipe": { "sha256": "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151214.2102", + "version": "20151218.347", "deps": [ "alert", "circe", @@ -18071,42 +19179,45 @@ }, "auto-save-buffers-enhanced": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kentaro/auto-save-buffers-enhanced.git", - "sha256": "229ebe2f1318ce7ba11fec13ddef9f75747e0ac07fe78568907872b5ef1a5c81", + "tag": "fetchFromGitHub", + "owner": "kentaro", + "repo": "auto-save-buffers-enhanced", + "sha256": "10aw3bpvawkqj1l8brvzq057wx3mkzpxs4zc3yhppkhq2cpvx7i2", "rev": "caf594120781a323ac37eab82bcf87f1ed4c9c42" }, "recipe": { "sha256": "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130607.2149", "deps": [] }, "programmer-dvorak": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yangchenyun/programmer-dvorak.git", - "sha256": "006cb6558f3fde69f8a78504a17bade48b84aa590ac31a3571fe5ed006a974fa", + "tag": "fetchFromGitHub", + "owner": "yangchenyun", + "repo": "programmer-dvorak", + "sha256": "1yklm43d0ppyf4simhqab6m892z4mmxs2145lzw6kpizixavcv00", "rev": "3288a8f058eca4cab390a564babbbcb17cfa0350" }, "recipe": { "sha256": "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150426.2037", "deps": [] }, "gold-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/gold-mode-el.git", - "sha256": "3b2f67e79919a00b6073e66a819127205f26be495ef184c85085baeb334e3651", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "gold-mode-el", + "sha256": "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q", "rev": "6d3aa59602b1b835495271c8c9741ac344c2eab1" }, "recipe": { "sha256": "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140606.2106", "deps": [ @@ -18115,14 +19226,15 @@ }, "org-tracktable": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tty-tourist/org-tracktable.git", - "sha256": "1d4fe6a82d3e5a6d471e97abed1235d2aa4f468b54ec7cf0f7f1264ccd707c14", + "tag": "fetchFromGitHub", + "owner": "tty-tourist", + "repo": "org-tracktable", + "sha256": "053wf36lq9piyzq7rv2lid34zanj6l9fvawp3r3nsniy5nlfckqx", "rev": "28ef6772cdcf436cf38095f15c6bb681473180ce" }, "recipe": { "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.1441", "deps": [ @@ -18138,21 +19250,22 @@ }, "recipe": { "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20080329.2159", "deps": [] }, "electric-operator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidshepherd7/electric-operator.git", - "sha256": "dcb7a08d971d02b7291c6fa4564981f36d5067dcd118f06f9f4a98583fff8a17", + "tag": "fetchFromGitHub", + "owner": "davidshepherd7", + "repo": "electric-operator", + "sha256": "15k9jc8c7d1wq8lrmdpdk52a7krla0irb2anbllz7kmdj1cp6311", "rev": "42be5a7e1e98ce879e93d87472de7b37434a5868" }, "recipe": { "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1536", "deps": [ @@ -18163,28 +19276,30 @@ }, "duplicate-thing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/duplicate-thing.git", - "sha256": "91ba8f93a573b66c89db57947cbd967329e2df8e48b61bd833c5105751e551e1", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "duplicate-thing", + "sha256": "1qaiwm8mf4656gc1pdj8ivgy4abkjsypr52pvf4nrdkkln9qzfli", "rev": "f6ed0232fd0653621afe450d53775a32a9d0e328" }, "recipe": { "sha256": "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120515.1148", "deps": [] }, "owdriver": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/owdriver.git", - "sha256": "e8bdef48d90b5325063f39038e1f6dac1db59f3002273b6b97a225b056e60194", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "owdriver", + "sha256": "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk", "rev": "0479389d9df9e70ff9ce69dff06252d3aa40fc86" }, "recipe": { "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141011.938", "deps": [ @@ -18195,14 +19310,15 @@ }, "color-identifiers-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ankurdave/color-identifiers-mode.git", - "sha256": "1b1a981fb25f652d1b5887a4bcb95bced2715a3349253ef5fced8f50388a2855", + "tag": "fetchFromGitHub", + "owner": "ankurdave", + "repo": "color-identifiers-mode", + "sha256": "0m98i8w513zdzkskw9a96dd73lnfbfwvr947b0djsrazn8grh6hv", "rev": "e35ee05588d84517193db07d94ce7f29ace10ef6" }, "recipe": { "sha256": "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150602.2004", "deps": [ @@ -18219,7 +19335,7 @@ }, "recipe": { "sha256": "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150623.2350", "deps": [] @@ -18232,35 +19348,37 @@ }, "recipe": { "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.918", "deps": [] }, "spotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remvee/spotify-el.git", - "sha256": "fccf20d35c389ddac87a13d4a5b9105a519de3a381c4b84ae6575ff5cdeec817", + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "spotify-el", + "sha256": "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw", "rev": "07a44ecdbdaa93977e97f2a2e5d280ef0b2e8545" }, "recipe": { "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.1003", "deps": [] }, "vi-tilde-fringe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/vi-tilde-fringe.git", - "sha256": "0baa23af0ddd92ecb98f9ce288e4d9a818c779d46d117546435ed2d5572fc252", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "vi-tilde-fringe", + "sha256": "0wdm8k49zl6i6wnh7vjkswdh5m9lix56jv37xvc90inipwgs402z", "rev": "f1597a8d54535bb1d84b442577b2024e6f910308" }, "recipe": { "sha256": "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141027.2142", "deps": [ @@ -18269,14 +19387,15 @@ }, "babel-repl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hung-phan/babel-repl.git", - "sha256": "a1aa0eb08410d25cd835abfea5c4244eaadafd11bc0af7545d61fb89f81c52a7", + "tag": "fetchFromGitHub", + "owner": "hung-phan", + "repo": "babel-repl", + "sha256": "19sj3kw8kyv1bmagf2mw27yxmajf4k2abzmb6pc5rlhhhjq0xam1", "rev": "be3ec68b36f4dea88aa5705d9ac230b74afcd77e" }, "recipe": { "sha256": "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150712.1000", "deps": [ @@ -18285,14 +19404,15 @@ }, "spotlight": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/benmaughan/spotlight.el.git", - "sha256": "08f3c6fdfe534af7e7f3ec144cc09202ce42dd21ac214ed3c5feee2614a37616", + "tag": "fetchFromGitHub", + "owner": "benmaughan", + "repo": "spotlight.el", + "sha256": "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8", "rev": "ab902900f22e7d1ea2dd8169441d2da7155aaa68" }, "recipe": { "sha256": "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150929.255", "deps": [ @@ -18309,49 +19429,52 @@ }, "recipe": { "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131010.2258", "deps": [] }, "shadchen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/VincentToups/shadchen-el.git", - "sha256": "eda47fd25aed9ac3a58b5840e76aec3028ab0a8907e2b9cf88a7c9b5f02b97fc", + "tag": "fetchFromGitHub", + "owner": "VincentToups", + "repo": "shadchen-el", + "sha256": "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8", "rev": "35f2b9c304eec990c16efbd557198289dc7cbb1f" }, "recipe": { "sha256": "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141102.1239", "deps": [] }, "mustache-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mustache/emacs.git", - "sha256": "13c61a2d3c8d76e65e035f37219b9ae092484112ed4324357db9840b4123fc95", + "tag": "fetchFromGitHub", + "owner": "mustache", + "repo": "emacs", + "sha256": "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk", "rev": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f" }, "recipe": { "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.932", "deps": [] }, "persistent-soft": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/persistent-soft.git", - "sha256": "4ac0d4b17b39ae3e6fe681a55cbc35da9793f862e386aafd210b11b891939232", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "persistent-soft", + "sha256": "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc", "rev": "a1e0ddf2a12a6f18cab565dee250f070384cbe02" }, "recipe": { "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.1253", "deps": [ @@ -18361,14 +19484,15 @@ }, "prosjekt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/prosjekt.git", - "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "prosjekt", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3", "rev": "a864a8be5842223043702395f311e3350c28e9db" }, "recipe": { "sha256": "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.816", "deps": [ @@ -18377,56 +19501,60 @@ }, "chef-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mpasternacki/chef-mode.git", - "sha256": "4a954cda3f4a54ac4983c7af43bd1cc10060ab3a1d98a7d8ff9e865c629edad6", + "tag": "fetchFromGitHub", + "owner": "mpasternacki", + "repo": "chef-mode", + "sha256": "1mnskri5r1lyzzcag60x7amn00613jyl7by7hd4sqm2a7zd4r5aa", "rev": "c333dd3f9229c4f35fe8c4495b21049ba730cc42" }, "recipe": { "sha256": "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20111121.900", "deps": [] }, "simplenote": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dotemacs/simplenote.el.git", - "sha256": "2926ccf7a5614d9e1f8aafb985ea657f9036499ac228351af351b6f786df0477", + "tag": "fetchFromGitHub", + "owner": "dotemacs", + "repo": "simplenote.el", + "sha256": "0xq4vy3ggdjiycd3aa62k94kd43zcpm8bfdgi8grwkb1lpvwq9i9", "rev": "e836fcdb5a6497a9ffd6bceddd19b4bc52189078" }, "recipe": { "sha256": "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141118.840", "deps": [] }, "key-combo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/uk-ar/key-combo.git", - "sha256": "4e5234cdeb340efb4945a11502d0730d4bd3b95771aac77ba7e7d84741d147c7", + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "key-combo", + "sha256": "1is7s50lgn77lxxwgakiaywx6jqdfg8045d18m4zn3ilxg6k8ljf", "rev": "2e220fe3a91c944ce30c4c0297f99d0053b95754" }, "recipe": { "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150324.939", "deps": [] }, "white-sand-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/white-sand-theme.git", - "sha256": "b627cba32c8e31e5f460b7a541124851127ee5c4926e3a01722894b6cb13096a", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "white-sand-theme", + "sha256": "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn", "rev": "97621edd69267dd143760d94393db2c2558c9ea4" }, "recipe": { "sha256": "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.1048", "deps": [ @@ -18435,14 +19563,15 @@ }, "company-irony-c-headers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hotpxl/company-irony-c-headers.git", - "sha256": "5c6466bc183691e2eac3076c08acf0032ce606887b13b7b4a37b22a7720ef2e8", + "tag": "fetchFromGitHub", + "owner": "hotpxl", + "repo": "company-irony-c-headers", + "sha256": "1x2dfjmy86icyv2g1y5bjlr87w8rixqdcndkwm1sba6ha277wp9i", "rev": "ba304fe7eebdff90bbc7dea063b45b82638427fa" }, "recipe": { "sha256": "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.409", "deps": [ @@ -18453,28 +19582,30 @@ }, "eshell-prompt-extras": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaihaosw/eshell-prompt-extras.git", - "sha256": "c9ca24798143e3dd85fd598e14d14e6fc1d67c3e05c5c592b7bb8cf4cb5f4e64", + "tag": "fetchFromGitHub", + "owner": "kaihaosw", + "repo": "eshell-prompt-extras", + "sha256": "0r2fbz5z935vny9cbi857ryddhbg9v8i93jrzn2xvqs3h5wj9jn9", "rev": "0b7670972b6b424b4a15a88b1733b99324dcf387" }, "recipe": { "sha256": "1plvc8azpmb3phlrxhw3y18dv5y0xljsr5fqym4w84m66lq5csfj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150726.159", "deps": [] }, "magit-filenotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-filenotify.git", - "sha256": "26c77a487e3f174374d65f80c67a3532ddaf6e5b9cc01932de7c4ea985042785", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-filenotify", + "sha256": "0nkxxhxkhy314jv1l3hza84vigl8q7fc8hjjvrx58gfgsfgifx6r", "rev": "c0865b3c41af20b6cd89de23d3b0beb54c8401a4" }, "recipe": { "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.1740", "deps": [ @@ -18484,56 +19615,60 @@ }, "xterm-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atomontage/xterm-color.git", - "sha256": "de02f00f1d46e0310a3ca5b3ee4a73195ce0df37bc19107aa9e8ea2099bc8e18", + "tag": "fetchFromGitHub", + "owner": "atomontage", + "repo": "xterm-color", + "sha256": "064fpjcj1sp8m5x106dw6zgy0p0rfd5fxcx57h533q263l7z00ny", "rev": "1bc4ddb0e1bf7562cbf4b6b3bdd2ce3f9b596b39" }, "recipe": { "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150823.846", "deps": [] }, "cp5022x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/awasira/cp5022x.el.git", - "sha256": "1fdebde08a8756defd8752c60cb8a1ad5145ce1c838b68706a2c660514e9c7fc", + "tag": "fetchFromGitHub", + "owner": "awasira", + "repo": "cp5022x.el", + "sha256": "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz", "rev": "ea7327dd75e54539576916f592ae1be98179ae35" }, "recipe": { "sha256": "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120323.1835", "deps": [] }, "sqlite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cnngimenez/sqlite.el.git", - "sha256": "b18c04fa7a3bac3d82ebc968af65bdd76c4959ac5954c68cd31d5bc1aa25ae57", + "tag": "fetchFromGitHub", + "owner": "cnngimenez", + "repo": "sqlite.el", + "sha256": "0zlrx8sk7gwwr6a23mc22d7iinwf8p9ff16r9krqp86fyzbhnq1d", "rev": "9a7fb5836a19bc0ea8b4c5a50177112524380986" }, "recipe": { "sha256": "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150417.15", "deps": [] }, "phpunit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/phpunit.el.git", - "sha256": "5b0643e019e0660ff6931e137ad131215f686f0936a7a6ad06c7df9ae14fe205", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "phpunit.el", + "sha256": "1zghw5nfm4a9j98vsaw4fc8r4f98s5fhgvgbnbyyxapl851fa9i6", "rev": "1ea2aa7901b5d0b1878d6e104ca92de2bbd7313f" }, "recipe": { "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.454", "deps": [ @@ -18550,21 +19685,22 @@ }, "recipe": { "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101125.1355", "deps": [] }, "org-gcal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-gcal.el.git", - "sha256": "1f8bf9693fb5e8675a001c5bbf3a5a352b55d56721adccad4cc325c27df54348", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-gcal.el", + "sha256": "1fg5qd1jswbdykx2aghpv79y5fccxcrwhwm81cnfh8s4fsq5nyfi", "rev": "d9e04635ad692a02073947cc290c3c36a56c89f0" }, "recipe": { "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150922.2148", "deps": [ @@ -18577,14 +19713,15 @@ }, "evil-rails": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antono/evil-rails.git", - "sha256": "911ff8bb72de512a90fbb70949c7023ee40c80e0777a860098ec962b7fe92d8b", + "tag": "fetchFromGitHub", + "owner": "antono", + "repo": "evil-rails", + "sha256": "12rdx5zjp5pck008cykpw200rr1y0b3lj2dpzf82llfyfaxzh7wi", "rev": "6a9375bf7f5823c8138e679249c4e2ce58f2e93a" }, "recipe": { "sha256": "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150803.646", "deps": [ @@ -18594,28 +19731,30 @@ }, "pcmpl-pip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaihaosw/pcmpl-pip.git", - "sha256": "a8d857482e1fcc6347f0c32e9e90f265645641826937b60e18e0bee45709ff92", + "tag": "fetchFromGitHub", + "owner": "kaihaosw", + "repo": "pcmpl-pip", + "sha256": "14pz15by9gp0307bcdv9h90mcr35ya89wbn3y13n7k0z5r45gn58", "rev": "b775bef9fa3ae9fb8015409554ecdd165c4bc325" }, "recipe": { "sha256": "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.348", "deps": [] }, "helm-rubygems-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/neomantic/helm-rubygems-org.git", - "sha256": "2096b3ee03c19844e452e6e029f2a69ab47340a05118905c67bc42ffd444cee9", + "tag": "fetchFromGitHub", + "owner": "neomantic", + "repo": "helm-rubygems-org", + "sha256": "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0", "rev": "6aaed984f698cbdf9f9aceb0221404563e28764d" }, "recipe": { "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140826.656", "deps": [ @@ -18626,14 +19765,15 @@ }, "ag": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/ag.el.git", - "sha256": "04f01565d6b032fda4c7d4a8d557d3dcfc3ce802ca7c802520a9fd804aa66393", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ag.el", + "sha256": "04rvj7arjmg12vimf55yzj2md1blncksl8q15jrdbzddhrbdjvg4", "rev": "421202ff9cbe717157ff4baeea891e9f2ec9dfe0" }, "recipe": { "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.1750", "deps": [ @@ -18644,28 +19784,30 @@ }, "smartscan": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mickeynp/smart-scan.git", - "sha256": "b79030438356b3ff3794b6b6ec5c3d7260bfb57ec9dd8884e17e1801adeb6ca4", + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "smart-scan", + "sha256": "193cxfnh263yw628ipf9gssvyq3j7mffrdmnjhvzzcsnhd1k145p", "rev": "5fd584d29ff8e5cd7a9e689369756868ab2922d3" }, "recipe": { "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131230.939", "deps": [] }, "propfont-mixed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ikirill/propfont-mixed.git", - "sha256": "fcef75491a5270479c4649e40ca6dfc7007873f10c04a421c574f9f20ff047b2", + "tag": "fetchFromGitHub", + "owner": "ikirill", + "repo": "propfont-mixed", + "sha256": "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v", "rev": "0b461ef4754a469610dba71874a34b6da42176bf" }, "recipe": { "sha256": "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150113.1611", "deps": [ @@ -18675,14 +19817,15 @@ }, "jenkins": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rmuslimov/jenkins.el.git", - "sha256": "e44b893caaeeca57a2bb2568737b8d76e1050aa878da6afa89e4a9a02fa99c5f", + "tag": "fetchFromGitHub", + "owner": "rmuslimov", + "repo": "jenkins.el", + "sha256": "08ywfmsjv3vjqy95hx095kasy8knh3asl7mrlkgmv9wjwnxw45zs", "rev": "5ae8759d4799789337df0fd5e0e7d6f732f59b79" }, "recipe": { "sha256": "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.2108", "deps": [ @@ -18693,14 +19836,15 @@ }, "el-init": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HKey/el-init.git", - "sha256": "f63e820fa9e7949044ff74b2f3e89786d97a4f3398a53816d815a7a3c9fc77bb", + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "el-init", + "sha256": "01yxv5kladg04rqglrzrh3vdf435g3m0hnv8ay9zkwgggcnqiknw", "rev": "e9717f7f051b9685cb436e6f87b27c745bf17072" }, "recipe": { "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150728.420", "deps": [ @@ -18711,28 +19855,30 @@ }, "todotxt-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/avillafiorita/todotxt-mode.git", - "sha256": "7cf723972f71cd857ed129f11f67d49a88813453f2d47688d7fcfbe56d4eb134", + "tag": "fetchFromGitHub", + "owner": "avillafiorita", + "repo": "todotxt-mode", + "sha256": "1k9ywi7cdgb6i600wr04r2l00423l6vr7k93qa7i7svv856nbbc7", "rev": "dc6ae151edee88f329ba7abc5d39b7440002232f" }, "recipe": { "sha256": "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150424.904", "deps": [] }, "alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/alert.git", - "sha256": "5ff43b167c4b20d60c6a0c8176def479f7d86a50214e9dea6df62f129e74fe7c", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "alert", + "sha256": "0z7yfjg14bzndpm9ski1a1mdixvrykg7d08cd86dc82bghb3px2z", "rev": "dfb003476aeb26d08782c17257f3a81934bcf6ce" }, "recipe": { "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.959", "deps": [ @@ -18742,28 +19888,30 @@ }, "slime-ritz": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pallet/ritz.git", - "sha256": "7ff352d5040cab189a14147f50634097f6c2cd451c5d32110660416b45e7b411", + "tag": "fetchFromGitHub", + "owner": "pallet", + "repo": "ritz", + "sha256": "0rsh0bbhyx74yz1gjfqyi0bkqq5n3scpyh5mmc3d6dkpv8wa7bwz", "rev": "4003fdaa5657d4ed1eeb0e244c46658cbb981667" }, "recipe": { "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130218.1737", "deps": [] }, "buffer-flip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/killdash9/buffer-flip.el.git", - "sha256": "7f06d63187d569d0342007ea2de3513485fa32a2bdf295b918cc27897e686632", + "tag": "fetchFromGitHub", + "owner": "killdash9", + "repo": "buffer-flip.el", + "sha256": "0ck6d1z8j9yc32wrbwmxl8rgm19la7ijvsh740sd0sfmhwqxc1kz", "rev": "2bbf74fac037ace991d03336c515c499a8e69c95" }, "recipe": { "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1050", "deps": [ @@ -18778,7 +19926,7 @@ }, "recipe": { "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100504.329", "deps": [] @@ -18791,7 +19939,7 @@ }, "recipe": { "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150814.952", "deps": [ @@ -18806,21 +19954,22 @@ }, "recipe": { "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150712.621", "deps": [] }, "company-dcd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tsukimizake/company-dcd.git", - "sha256": "34237a92c5549f866da486f767486946fa5375773e45e45838f2658665d27161", + "tag": "fetchFromGitHub", + "owner": "tsukimizake", + "repo": "company-dcd", + "sha256": "0qbis9jqcrgj71cf8i9yfxsm7yj6d546gxw6linqd7slqn97l8rl", "rev": "1d121dc42906fc58fa3a7febff8dabd29fba34f2" }, "recipe": { "sha256": "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150901.604", "deps": [ @@ -18834,14 +19983,15 @@ }, "focus-autosave-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vifon/focus-autosave-mode.el.git", - "sha256": "cba9ac81a4c923dba9d17914665789d6e4310ca156b8691242dc4d19b285bdcc", + "tag": "fetchFromGitHub", + "owner": "vifon", + "repo": "focus-autosave-mode.el", + "sha256": "1k5xhnr1jkfw8896kf2nl4633r6ni5bnc53rs6lxn8y9lj0srafb", "rev": "592e2c0642ee86b2000b728ea346de084447dda8" }, "recipe": { "sha256": "1zwp99mk360mqk4mjnnjr6islavginc9732p0jn9g5yz62xypxpc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151012.442", "deps": [ @@ -18850,28 +20000,30 @@ }, "bert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/manzyuk/bert-el.git", - "sha256": "4e17f0aa6193b05a22c32a75d94b4ffd811d82842e46a91f810f7a3d015b3f1a", + "tag": "fetchFromGitHub", + "owner": "manzyuk", + "repo": "bert-el", + "sha256": "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf", "rev": "a3eec6980a725aa4abd2019e4c00246450260490" }, "recipe": { "sha256": "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.414", "deps": [] }, "tern-django": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/tern-django.git", - "sha256": "9beb4691af7e824d45de5ccd50f43e9decd3a27287e81d42d181991c9872004c", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "tern-django", + "sha256": "1yb416py93sxnkfnfnbwrlfg68gkp97wpfsrdpc83sai888p44wc", "rev": "455326a1732daa58d4d963b0b11bb1a9fd2f2b86" }, "recipe": { "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150121.1327", "deps": [ @@ -18888,35 +20040,37 @@ }, "recipe": { "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100504.350", "deps": [] }, "pager": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/pager.git", - "sha256": "a1202cdca6c8c4ba9748d8afe853a9f9751d18f957e09fea3b2af57cfe8a05b7", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "pager", + "sha256": "1dq5ibz7rx9a7gm9zq2pz4c1sxgrm59yibyq92bvmi68lvf2q851", "rev": "347e48d150d5e9a1ce2ca33ec12924d5fa89264d" }, "recipe": { "sha256": "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100330.1331", "deps": [] }, "ido-ubiquitous": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", - "sha256": "702a90c5ce0f80a21f361a3261e2fb8f86b1430bf08d1296b8442587b797f9e9", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-ubiquitous", + "sha256": "1m9wyl4lm2sy6ax7wg4wh9nw5vq8z26z7kb9mq3p01z9v1vzyzil", "rev": "3bf3c707753969b2c3b534bfe3d09dbd297dfaae" }, "recipe": { "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.1816", "deps": [ @@ -18928,28 +20082,30 @@ }, "merlin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/the-lambda-church/merlin.git", - "sha256": "e4068a7297579b9d4f86b8f67b43cdc96656a8120cafa197c5d92551143aafb3", + "tag": "fetchFromGitHub", + "owner": "the-lambda-church", + "repo": "merlin", + "sha256": "00rmhvj2a7vxmqlr47f0x2nzkyy0ppx0h7ql4hp9iyxqpan7rrha", "rev": "f8f26df0ceee91a6825362029dfae03bc7bde679" }, "recipe": { "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.525", "deps": [] }, "org-multiple-keymap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-multiple-keymap.el.git", - "sha256": "cc6422cd2e7d14a5797edf35e35f42bdedcd024dad83668e8de20d054006e976", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-multiple-keymap.el", + "sha256": "0zbpzm9lni6z180s7n52x8s5by5zkq2nlhx82l2h9i7in9y4r6c3", "rev": "8ebc532df7f0dd6e6c3aa7c380a51d4166c668e8" }, "recipe": { "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150328.2006", "deps": [ @@ -18960,14 +20116,15 @@ }, "bbdb-handy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/bbdb-handy.git", - "sha256": "81e1e452762a24095b2ba14d94deab576b52410d07c432d4778a889dd8a9f7c3", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "bbdb-handy", + "sha256": "04yxky7qxh0s4y4addry85qd1074l97frhp0hw77xd1bc7n5zzg0", "rev": "67936204488b539fac9b4a7bfbf11546f3b13de2" }, "recipe": { "sha256": "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150707.1952", "deps": [ @@ -18976,56 +20133,60 @@ }, "preproc-font-lock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/preproc-font-lock.git", - "sha256": "ed06ad6d9fd8c7014539058732cd9e0f1b5122c3a94a2f37c3d684af706a2e7b", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "preproc-font-lock", + "sha256": "0yrfd9qaz16nqcvjyjm9qci526qgkv6k51q5752h3iyqkxnss1pd", "rev": "565fda9f5fdeb0598986174a07e9fb09f7604397" }, "recipe": { "sha256": "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.1418", "deps": [] }, "vagrant": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ottbot/vagrant.el.git", - "sha256": "e3a1a6696187c6b9d6935978313ae4c509987b9c7d64407444a9e9513f4fea94", + "tag": "fetchFromGitHub", + "owner": "ottbot", + "repo": "vagrant.el", + "sha256": "04r73s3fhvdcryv0l57awkpg1hi3kg6zcqxbxb03jc89h0f9vdlh", "rev": "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c" }, "recipe": { "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141125.2159", "deps": [] }, "tramp-term": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/randymorris/tramp-term.el.git", - "sha256": "37aa886d912b5163af049d7480c02cd287088150daeab74c3f1227a21234fd31", + "tag": "fetchFromGitHub", + "owner": "randymorris", + "repo": "tramp-term.el", + "sha256": "0cgx6h9a49qj7x6bgsnsa20hi1yj5k080x4x0jpn6l9bj5nqiaip", "rev": "983ed67ee65d26a51c641f306fa6b921ec83eeaf" }, "recipe": { "sha256": "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141104.1545", "deps": [] }, "windsize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/grammati/windsize.git", - "sha256": "4184e5352c74edf14664a5255b40230c91d44c92360d7bac8d852da84c713242", + "tag": "fetchFromGitHub", + "owner": "grammati", + "repo": "windsize", + "sha256": "0hijf56ahbc5inn7n39nj96d948c4d05n9d5ci3g3vbl5hsyb121", "rev": "beb6376fdf52afa6f220c89032448460faf76e7f" }, "recipe": { "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.740", "deps": [] @@ -19038,63 +20199,67 @@ }, "recipe": { "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140307.328", "deps": [] }, "uuidgen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kanru/uuidgen-el.git", - "sha256": "7c1da219c0fe7fb318bf562b4ae3a2616eea9c49515a25a774302dc1ee366ea5", + "tag": "fetchFromGitHub", + "owner": "kanru", + "repo": "uuidgen-el", + "sha256": "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw", "rev": "7eb96415484c3854a3f383d1a3e10b87ae674e22" }, "recipe": { "sha256": "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140918.1801", "deps": [] }, "anti-zenburn-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/anti-zenburn-theme.git", - "sha256": "d5fe8723188344c68f86953d1333e0d0c9ef8486ba14c95294b66548e6ff0fb3", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "anti-zenburn-theme", + "sha256": "1cqgzzk4hrdnji9cj55shs2fzjfhw0ri6gcmhs7wci4330iqgznm", "rev": "0153e87f9ee3c2e8a1a41a4066aeafa99dcfde59" }, "recipe": { "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.1846", "deps": [] }, "sws-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianc/jade-mode.git", - "sha256": "a1ea208906058e467379043b34324400ace1077f69b3bc46d75b2a6698f527d2", + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506", "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" }, "recipe": { "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150317.1445", "deps": [] }, "impatient-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/netguy204/imp.el.git", - "sha256": "b1171f36a5a2350d1e13c1e2fd41bd22c7ab75e8c0a906c01c9a54f2c35be06e", + "tag": "fetchFromGitHub", + "owner": "netguy204", + "repo": "imp.el", + "sha256": "0vr4i3ayp1n8zg3v9rfv81qnr0vrdbkzphwd5kyadjgy4sbfjykj", "rev": "eba1efce3dd20b5f5017ab64bae0cfb3b181c2b0" }, "recipe": { "sha256": "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150501.447", "deps": [ @@ -19105,14 +20270,15 @@ }, "ibuffer-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ibuffer-projectile.git", - "sha256": "6cffceb631a956b1dbbe84c34c6acfe280e9224c89eca1ed9ee2b2c482b996fd", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ibuffer-projectile", + "sha256": "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc", "rev": "8b225dc779088ce65b81d8d86dc5d394baa53e2e" }, "recipe": { "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150121.1037", "deps": [ @@ -19121,16 +20287,17 @@ }, "lentic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/lentic.git", - "sha256": "728e6eac3089a694b29061bd31d7b74b07094d651306341f391f73c1eed98a8e", - "rev": "e27c3f3b2a44777157da02b8ab6f87391ce25913" + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lentic", + "sha256": "1lb7sxnnz1hi4xlf1q0ldvzig48dfmf6ki2p8b0mxk3lm4i3m1js", + "rev": "37f9fedb44c5feaeb14279ab3e8113f69cdf19a7" }, "recipe": { "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151102.239", + "version": "20151218.1029", "deps": [ "dash", "emacs", @@ -19141,42 +20308,45 @@ }, "hgignore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omajid/hgignore-mode.git", - "sha256": "601f2d0dc3da7847c82bff7980c472681e41b8441f2fb1a00b891e84154a151a", + "tag": "fetchFromGitHub", + "owner": "omajid", + "repo": "hgignore-mode", + "sha256": "06hm98aq87l91fhb2bqz8jw427k8fb280ygz5g44fy6sqc6js7v0", "rev": "054c370c6df1b789f0d9907b30b54ef2287aafbe" }, "recipe": { "sha256": "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150412.1300", "deps": [] }, "ubuntu-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocher/ubuntu-theme.git", - "sha256": "2c0fb1f7928a5e3042e9d250cfde70292c2cee2ebce47cc1e787c90dd80d0ded", + "tag": "fetchFromGitHub", + "owner": "rocher", + "repo": "ubuntu-theme", + "sha256": "1v8d1pc0vjc7wz0prr5w5vp2qb19f3gcyl6jx5130plajbvv23rc", "rev": "88b0eefc75d4cbcde103057e1c5968d4c3052f69" }, "recipe": { "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150805.1006", "deps": [] }, "lfe-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rvirding/lfe.git", - "sha256": "939e5fc7a773120a9dd4789d7d757336b42c8b1a8d0c3d3d31fd6ebb65b5b74c", + "tag": "fetchFromGitHub", + "owner": "rvirding", + "repo": "lfe", + "sha256": "1i0nw7b19c26v6lnv8zjmcvirjbh7hfb1magr49ric3gpwlblnv7", "rev": "b0921aacf954e68689c181ec1c4651b02dc51855" }, "recipe": { "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.1835", "deps": [] @@ -19190,21 +20360,22 @@ }, "recipe": { "sha256": "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20080305.234", "deps": [] }, "mo-vi-ment-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AjayMT/mo-vi-ment.git", - "sha256": "d66eb7686aabd7ac827201852a6e28a1af9b5d584dd43e23e9a895f113651a4c", + "tag": "fetchFromGitHub", + "owner": "AjayMT", + "repo": "mo-vi-ment", + "sha256": "0k0scl9z35d8x4ikxm2db1frpbx151p2m181fa1armxbd9lbfvnn", "rev": "f45b014261f8fab19254920bd1d92f3a83263411" }, "recipe": { "sha256": "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131029.133", "deps": [] @@ -19217,21 +20388,22 @@ }, "recipe": { "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] }, "flycheck-d-unittest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-d-unittest.git", - "sha256": "4d91af5279adfbb8523ce995ebd5a61e40de1670e7e592876b99f1be3a55e1e4", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-d-unittest", + "sha256": "1r71alxbxwcrdf3r5rg7f0bdwh0ylvayp5g97i9biyxdg59az4ad", "rev": "f2255abf6a5cd9268b1576d9b46356f8151a7311" }, "recipe": { "sha256": "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150709.109", "deps": [ @@ -19241,28 +20413,30 @@ }, "crontab-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/crontab-mode.git", - "sha256": "2db95b55c0a3168d4566d5a083c2ebd20bf28947514908e246015304d1842de5", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "crontab-mode", + "sha256": "1r9dhk8h8lq18vi0hjai8y4z42yjxg18786mcr2qs5m3q1ampf9d", "rev": "68341c82b26462a6af4a5e2b624b1c2165243b8e" }, "recipe": { "sha256": "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090510.1555", "deps": [] }, "term+key-intercept": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarao/term-plus-ki-el.git", - "sha256": "44be77010ea236afdf904a06f8a2e420cc08f138d358ba8132bc8c6736238726", + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "term-plus-ki-el", + "sha256": "1dql2w8xkdw52zlrc2p9x391zn8wv4dj8a6293p4s08if7gg260w", "rev": "fd0771fd66b8c7a909aaac972194485c79ba48c4" }, "recipe": { "sha256": "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140211.150", "deps": [ @@ -19272,28 +20446,30 @@ }, "nyan-prompt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PuercoPop/nyan-prompt.git", - "sha256": "777ae6ed685c2611742f0f910f5cbb030522e113cd4aa745d8a70d88bcbcfa2d", + "tag": "fetchFromGitHub", + "owner": "PuercoPop", + "repo": "nyan-prompt", + "sha256": "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp", "rev": "b5137f2ee9afe640f59786eed17b308df6356c73" }, "recipe": { "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140810.8", "deps": [] }, "keymap-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/keymap-utils.git", - "sha256": "87917c9ab29e61a95d5651385e74310a3cc25ea6df0d83b8b4c9f3451f226ca2", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "keymap-utils", + "sha256": "18kc48glbwy9njw863fzlrgc4g0a65s5wf2iarfsjqcynad7r4c7", "rev": "f9164e23dbc58c4fdce635138ed59fe2eb285313" }, "recipe": { "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.526", "deps": [ @@ -19309,7 +20485,7 @@ }, "recipe": { "sha256": "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141107.1717", "deps": [ @@ -19318,42 +20494,45 @@ }, "spray": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ian-kelling/spray.git", - "sha256": "4975f769e9ad020fb21cbea52f4fd077391eb5ba9d9945bc37a07d6039e37e3b", + "tag": "fetchFromGitHub", + "owner": "ian-kelling", + "repo": "spray", + "sha256": "0fvywcwn0zd06yy4b6cxpasiwfbps17jz9dy3jr0y0mdx5lzfxa9", "rev": "11623f45955a18115459a2c18dc95bc967980a53" }, "recipe": { "sha256": "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150626.145", "deps": [] }, "xcscope": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dkogan/xcscope.el.git", - "sha256": "aa08ae44578b6a8f4f1d0db8e52efebec03ffc476d4486b39e8c63a764f4c6f1", + "tag": "fetchFromGitHub", + "owner": "dkogan", + "repo": "xcscope.el", + "sha256": "1wf6yijafqwcksrqci3d8zy3zh5yzqpfbf0d3m7qyslbax2aw25a", "rev": "d845a033058ccb83e32dd9648885e8f608bb6258" }, "recipe": { "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140510.1637", "deps": [] }, "helm-mu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-mu.git", - "sha256": "53c2ed40653c1fa2c281cab124dfcad5706ffcf6715171e98d80c405581ca274", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-mu", + "sha256": "0x523ic0bi40iplp2lbiyvy6yw6mrbgj9cfah71a47rwcm0fvhjk", "rev": "2ae4b26817f13760e6d9e739477e2512292d90d5" }, "recipe": { "sha256": "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151019.1144", "deps": [ @@ -19362,28 +20541,30 @@ }, "org-cliplink": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rexim/org-cliplink.git", - "sha256": "b37e9b8e493f38e6f149d0b393296f0ebfe8d79a6810575b6e24d936aa29d438", + "tag": "fetchFromGitHub", + "owner": "rexim", + "repo": "org-cliplink", + "sha256": "1hc8yrfnla66p9lqvcnql51xa5pdmaqpka60nvfnyc5h40jyjsfd", "rev": "0e97eb716d66de4e13704f8aa3ac6f99ee0189e2" }, "recipe": { "sha256": "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150922.51", "deps": [] }, "flymake-cppcheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senda-akiha/flymake-cppcheck.git", - "sha256": "c758dd31e6499f225d0720b89c574fb3eb346d9fef4908eadbc40e9d36634bbd", + "tag": "fetchFromGitHub", + "owner": "senda-akiha", + "repo": "flymake-cppcheck", + "sha256": "1dlxn8hhz3gfrhvkwhlxjmby6zc0g8yy9n9j9dn8c4cbi2fhyx5m", "rev": "9554f504d425a04fa6a875f7e3179bc7cf07dd03" }, "recipe": { "sha256": "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140415.757", "deps": [ @@ -19392,14 +20573,15 @@ }, "weechat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/the-kenny/weechat.el.git", - "sha256": "6721df4ab04dee9f40f1be832073abab2845e4cf05f37186897a85030c227cb4", + "tag": "fetchFromGitHub", + "owner": "the-kenny", + "repo": "weechat.el", + "sha256": "03xsh3fc7if6rkdp2s8lmrzpqm3pjakgqi3faap44y9i84q6mc6k", "rev": "a191b4c52e2cca33acfdd82145da42fb2798b185" }, "recipe": { "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.647", "deps": [ @@ -19411,14 +20593,15 @@ }, "psci": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/emacs-psci.git", - "sha256": "560f502edc8b23091b0055482a2fbf3333fb0c3f5cbb62cbcef1f15dde0a4322", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-psci", + "sha256": "08j31bg5vwgirv5n5fsw7w6gncrkpwpjlj2m00dhj8wbvhp503sn", "rev": "64dc931b4fe2a7507b8ac81423b12f7dcda2067a" }, "recipe": { "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150328.1401", "deps": [ @@ -19431,42 +20614,60 @@ }, "chicken-scheme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dleslie/chicken-scheme.el.git", - "sha256": "a572e151b335fd1f81beb4cc5923ecf4dc7b19e4a314f2b2822aee94f2a6c148", + "tag": "fetchFromGitHub", + "owner": "dleslie", + "repo": "chicken-scheme.el", + "sha256": "0j61lvr99viaharg4553whcppp7lxhimkk5lps0izz9mnd8y2wm5", "rev": "19b0b08b5592063e852cae094b394c7d1f923639" }, "recipe": { "sha256": "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.1339", "deps": [] }, "ample-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jordonbiondo/ample-theme.git", - "sha256": "e67f5858dda1a9095eaee82380c7ebb233aa061a369929334895f19b1e772d15", + "tag": "fetchFromGitHub", + "owner": "jordonbiondo", + "repo": "ample-theme", + "sha256": "0x72czw5rmz89w5fa27z54bz8qirrr882g0r37pb8li04j1hk7kw", "rev": "8259da1cc14e7f7dd3ee0fb01245c58110a95382" }, "recipe": { "sha256": "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150814.1301", "deps": [] }, + "ob-restclient": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alf", + "repo": "ob-restclient.el", + "sha256": "0gd2n7dgaasl0clx71gsdm74xxm03qr5yrin8vz3q7wvkfn4bzdf", + "rev": "fc5684186275146bba667325c8c33bf7d6011552" + }, + "recipe": { + "sha256": "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20151207.1503", + "deps": [] + }, "cmake-font-lock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/cmake-font-lock.git", - "sha256": "4e9397d97ce32abc5b01a05e0a7f76dafe501a4522cde098a9ec1952ea78130c", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "cmake-font-lock", + "sha256": "030kg3m546gcm6cf1k928ld51znsfrzhlpm005dvqap3gkcrg4sf", "rev": "982b753e0228bb5189e3bf2283afad9197d93c37" }, "recipe": { "sha256": "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.1527", "deps": [ @@ -19475,14 +20676,15 @@ }, "go-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shosti/go-scratch.el.git", - "sha256": "f5a2a714ab96abe9ad967f71c501d2af60cadd19a8657e83594ed9c7b778dba8", + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "go-scratch.el", + "sha256": "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm", "rev": "3f68cbcce04f59eb8e83af109164731ec0454be0" }, "recipe": { "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150809.2340", "deps": [ @@ -19498,21 +20700,22 @@ }, "recipe": { "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1604", "deps": [] }, "vala-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gopar/vala-snippets.git", - "sha256": "d822678ce6e77cec72c0734e972417cfde8b26d61e19370237d3914ad1574c47", + "tag": "fetchFromGitHub", + "owner": "gopar", + "repo": "vala-snippets", + "sha256": "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq", "rev": "671439501060449bd100b9fffd524a86064fbfbb" }, "recipe": { "sha256": "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150428.2252", "deps": [ @@ -19521,56 +20724,60 @@ }, "plenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/karupanerura/plenv.el.git", - "sha256": "f4ebb1275c16c4482ab079ecbbbbe9b83d279862626c9ec6f78e11fca867b273", + "tag": "fetchFromGitHub", + "owner": "karupanerura", + "repo": "plenv.el", + "sha256": "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g", "rev": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2" }, "recipe": { "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130707.116", "deps": [] }, "random-splash-image": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kakakaya/random-splash-image.git", - "sha256": "e44bcae6d89d4061b0432d713b41f19fe8b2e6d4e4cfd8c754f496f5397b2778", + "tag": "fetchFromGitHub", + "owner": "kakakaya", + "repo": "random-splash-image", + "sha256": "1z25xmz8pl3rsfahw6ay8wx5wbnlxabnzr2dq20m0i5jyci8lqll", "rev": "907e2db5ceff781ac7f4dbdd65fe71736c36aa22" }, "recipe": { "sha256": "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151002.2030", "deps": [] }, "typescript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ananthakumaran/typescript.el.git", - "sha256": "ac44cee87338ca5164ec694ede19f2b8a34bd37c1796d4965592698000cac19b", + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "typescript.el", + "sha256": "16y1r8080scjanbd95hpgk9lp8xqy8cxwkk9xij53jiqfglcwi5c", "rev": "49241bcc1f60b3787ccd9448a559f792156907a9" }, "recipe": { "sha256": "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.2028", "deps": [] }, "git-gutter+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/git-gutter-plus.git", - "sha256": "9da139c6b30eee2733e0f732b95efc3cb75f4561f4f3a165e943586678e7a92c", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "git-gutter-plus", + "sha256": "0bhrrgdzzj8gwxjx7b2kibp1b6s0vgvykfg0n47iq49m6rqkgi5q", "rev": "b7726997806d9a2da9fe84ff00ecf21d62b6f975" }, "recipe": { "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.1123", "deps": [ @@ -19580,14 +20787,15 @@ }, "wrap-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/wrap-region.git", - "sha256": "032967c69689a8bece8d73ded30004e49a02e5efeea86ded792b5adb0b5a6262", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "wrap-region", + "sha256": "09fzbbrdgq19c3gylj4i0c5g070k65w943wz28mzis8b403vzh3n", "rev": "0eff3165db36464d28ed303ab25b715307cbdee0" }, "recipe": { "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140117.120", "deps": [ @@ -19596,42 +20804,45 @@ }, "flymake-gjshint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/flymake-gjshint-el.git", - "sha256": "1e4e0a5f031148e05e305d2cbd6429d06d4022fe5649a141229b46d45f58ec34", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "flymake-gjshint-el", + "sha256": "14kbqyw4v1c51dx7pfgqbn8x4j8j3rgyyq2fa9klqzxpldcskl24", "rev": "dc957c14cb060819585de8aedb330e24efa4b784" }, "recipe": { "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130327.732", "deps": [] }, "smotitah": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/smotitah.git", - "sha256": "583703125b87fef3b0d94dbc871b082e08a7b7bd0c7fde4fe0fc63bd4df4ff68", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "smotitah", + "sha256": "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx", "rev": "f9ab562128a5460549d016913533778e8c94bcf3" }, "recipe": { "sha256": "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150218.430", "deps": [] }, "org-dotemacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/org-dotemacs.git", - "sha256": "c76ba5052f5042a773496001a7f20a86bfcc603adf15b982e297586442b3f997", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "org-dotemacs", + "sha256": "15zrnd168n4pwa1bj5fz79hcrgw61braf0b095rsfhjh5w2sasy7", "rev": "99a066508fedf8c80a3bfef08e015e612499d417" }, "recipe": { "sha256": "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1222", "deps": [ @@ -19641,56 +20852,60 @@ }, "rnc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TreeRex/rnc-mode.git", - "sha256": "bc4b7628df4ec4e9e9c810da75befb516ef541bf522a7b90996f9fdf9d1a9797", + "tag": "fetchFromGitHub", + "owner": "TreeRex", + "repo": "rnc-mode", + "sha256": "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih", "rev": "b39dc23218213336b55f28e12a1d0e49ef7c1e21" }, "recipe": { "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121227.1702", "deps": [] }, "pangu-spacing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/pangu-spacing.git", - "sha256": "698db552a307f17d85401e2f7e33ec2120217cf462e147654c74fc6eeb2fa4e6", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "pangu-spacing", + "sha256": "01zc2cvkyfx80snwrm3cs8cbwgxmd56rgvvbsyq53r4q3zhdk1li", "rev": "4662e66d5cb72738d46d3296ac7626536fc88acb" }, "recipe": { "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.224", "deps": [] }, "protobuf-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/google/protobuf.git", - "sha256": "761e69a84eab02c6d7aa506fb781f9d245fca3da7309fc7dc8cdfaaece9d85fa", - "rev": "dc633398af5c87e1fe1ffcedaebd697c4775c918" + "tag": "fetchFromGitHub", + "owner": "google", + "repo": "protobuf", + "sha256": "023654g10pwx6h88jiwqdfskq663cc06dvr9pf6l1xjqm28wra34", + "rev": "43f9cb1e6f535e3a57bab517f8041beb2b3b1c51" }, "recipe": { "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150521.2211", "deps": [] }, "metaweblog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/punchagan/metaweblog.el.git", - "sha256": "64ad9529d66e021c252a63cd075333a99759488605ec2b039efa80f5c96aab1a", + "tag": "fetchFromGitHub", + "owner": "punchagan", + "repo": "metaweblog.el", + "sha256": "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4", "rev": "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb" }, "recipe": { "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141130.805", "deps": [ @@ -19699,14 +20914,15 @@ }, "imenus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/imenus.el.git", - "sha256": "b016d0cb770331681fb33ac922df5dc1c22af8f8c79c9d39c3647e15137c8c82", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "imenus.el", + "sha256": "0wi346m05b18i14xxih4qvwdrfcgv30gdvxjjcn6vd7gr0wdk2ns", "rev": "a153eadef49bcc0a2dd5d045c0e003fdfd8c13cd" }, "recipe": { "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150107.1139", "deps": [ @@ -19715,14 +20931,15 @@ }, "systemd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/holomorph/systemd-mode.git", - "sha256": "7224f5e9e09e02e914d35585a01b6022993271d3e06444fc5d978cf8a3e61d38", + "tag": "fetchFromGitHub", + "owner": "holomorph", + "repo": "systemd-mode", + "sha256": "0f0xwsizi34pbpy48r70sdqk5692c0ds11amscafj0lyw3lza93j", "rev": "26de1dd6f4505eb9db606d97c11b0d120c395d76" }, "recipe": { "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.2332", "deps": [ @@ -19731,14 +20948,15 @@ }, "sourcegraph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sourcegraph/emacs-sourcegraph-mode.git", - "sha256": "19e197b244340431f2ab91fab55faa5554d66b90cfd2ab67bb5523e0a13c3ba2", + "tag": "fetchFromGitHub", + "owner": "sourcegraph", + "repo": "emacs-sourcegraph-mode", + "sha256": "18iv7jhy08smpdksplngj1mxcm2mm9gvbylimgr3211l8jr9gq8r", "rev": "554c55734c23588fce66a8fa966945509b03d395" }, "recipe": { "sha256": "0rl6s1d0y2pggbfiq4f4xg9qp7nhkd708himzilfqyfa4jwna8yz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150403.2127", "deps": [ @@ -19747,14 +20965,15 @@ }, "wordnut": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gromnitsky/wordnut.git", - "sha256": "33b1e34b3c01c50e0ae91c7576a13aedd833c55cc4ab2474a197b109afcdfd1d", + "tag": "fetchFromGitHub", + "owner": "gromnitsky", + "repo": "wordnut", + "sha256": "1b9pya342ikyxnlyxp86wx8xk6zcdws7jsqs7a9xk027prwkfngj", "rev": "3e0184a8a1cc118a985f1cbd0b6d5b7417987169" }, "recipe": { "sha256": "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151002.1657", "deps": [ @@ -19769,7 +20988,7 @@ }, "recipe": { "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.1335", "deps": [] @@ -19783,35 +21002,37 @@ }, "recipe": { "sha256": "036lf6iirxamlqzq3w6m0hji36l480yx5c9wnwypms85hi8hq0vl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120507.207", "deps": [] }, "seclusion-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dleslie/seclusion-mode.git", - "sha256": "6988d7332164c8f9f49ad59e14d16a58442d922e7c417272fd2e571e25879295", + "tag": "fetchFromGitHub", + "owner": "dleslie", + "repo": "seclusion-mode", + "sha256": "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239", "rev": "9634e76c52bfb7200ff0f9f01404f743429e9ef0" }, "recipe": { "sha256": "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121118.1753", "deps": [] }, "auto-highlight-symbol": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gennad/auto-highlight-symbol.git", - "sha256": "ace89797051218920a964942b7b997d79d6d6dca5a4e6c29b4df5b8c4357d149", + "tag": "fetchFromGitHub", + "owner": "gennad", + "repo": "auto-highlight-symbol", + "sha256": "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c", "rev": "26573de912d760e04321b350897aea70958cee8b" }, "recipe": { "sha256": "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130313.443", "deps": [] @@ -19824,21 +21045,22 @@ }, "recipe": { "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151011.345", "deps": [] }, "flycheck-clangcheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kumar8600/flycheck-clangcheck.git", - "sha256": "c2a03f82c01fec22b9dc5380eda40a41b9333540f6f73ee5232854e4b8f0d619", + "tag": "fetchFromGitHub", + "owner": "kumar8600", + "repo": "flycheck-clangcheck", + "sha256": "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck", "rev": "24a9424c484420073a24443a829fd5779752362b" }, "recipe": { "sha256": "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150712.210", "deps": [ @@ -19849,28 +21071,30 @@ }, "lisp-extra-font-lock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/lisp-extra-font-lock.git", - "sha256": "4dda2a21fe0400d2b9f81d14cff73abe41e6620e958476f25ab112bf9c845ee4", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "lisp-extra-font-lock", + "sha256": "1r2yhjfby4mibbr7d14m1rifchdy7bvwy50xz2wx4004zqhjmnjd", "rev": "ff34c8519653824cf4a40979538b334cd2653892" }, "recipe": { "sha256": "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150129.1516", "deps": [] }, "helm-rb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/helm-rb.git", - "sha256": "b34ca30bc5c1eb917ca3a85a03343fee4eff60316b847fec2d410ef46e7e71de", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "helm-rb", + "sha256": "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid", "rev": "4949d646420a9849af234dacdd8eb34a77c662fd" }, "recipe": { "sha256": "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131123.1039", "deps": [ @@ -19880,28 +21104,30 @@ }, "splitter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chumpage/chumpy-windows.git", - "sha256": "baaf7d7fb21229883f9782f140c099393a24119c9d9efa1d96b45cf9b1c72a19", + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "chumpy-windows", + "sha256": "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs", "rev": "164be41b588b615864258c502583100d3ccfe13e" }, "recipe": { "sha256": "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130705.250", "deps": [] }, "w3m": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/w3m.git", - "sha256": "9a25153b7bf7aded2bd68b4583c0752bbc2f8c03da2a7311fc2ec80f9f6afbd1", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "w3m", + "sha256": "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs", "rev": "5986b51c7c77500fee3349fb0b3f4764d3fc727b" }, "recipe": { "sha256": "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121224.1947", "deps": [] @@ -19914,35 +21140,37 @@ }, "recipe": { "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130130.1550", "deps": [] }, "pydoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/statmobile/pydoc.git", - "sha256": "9185e12f5bbb45bdf0884d19c3b01f8b74b546424df4225cbacfe062ebd48907", + "tag": "fetchFromGitHub", + "owner": "statmobile", + "repo": "pydoc", + "sha256": "1q9fmdrnsqmisykndxzy9bvjl6n1rsmfgvh3h8fkg6b44ypcyyw7", "rev": "74fb1a66e9d81661ddd371a03e916ea5e0b01dc8" }, "recipe": { "sha256": "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150525.2045", "deps": [] }, "ov": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/ov.el.git", - "sha256": "a506897ae3286981c6df49e83b557c0cb939bbf5e07d42a3f46bcd5648bfb4c7", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "ov.el", + "sha256": "1rk5pzm5wmdq68d99hhhbq8pq37bnph0dip5j2jnfj6zsw70whr2", "rev": "fae7215b3dedba2a9ced145284332e4609bfdc38" }, "recipe": { "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150312.28", "deps": [ @@ -19958,21 +21186,22 @@ }, "recipe": { "sha256": "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120205.507", "deps": [] }, "ibuffer-vc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ibuffer-vc.git", - "sha256": "3153d7a4cd775bae0c1b5142565e15c05dd619dbaee159ae026818c7bf3caae5", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ibuffer-vc", + "sha256": "0fwxhkx5rkyv3w5vs2swhmly9siahlww2ipsmk7v8xmvk4a63bhp", "rev": "daae8b8cec4b8e572b065e00c8c8a368fd0a8b8b" }, "recipe": { "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150714.1520", "deps": [ @@ -19981,56 +21210,60 @@ }, "kanji-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wsgac/kanji-mode.git", - "sha256": "d7bd8f4107393894ca143c8c982b526f530c896ba7241565e25c585358a684b8", + "tag": "fetchFromGitHub", + "owner": "wsgac", + "repo": "kanji-mode", + "sha256": "0vfagfzhh4rkmvjzfhfcm7w3z1x31aqzxwigk5yw9scnfb77pinz", "rev": "3caaee58f00f69a8c9ee2491b8a2050add9df962" }, "recipe": { "sha256": "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.225", "deps": [] }, "dired-dups": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/dired-dups.git", - "sha256": "d1026902e20accb18f4619d7210bdd0862f7067f022e53b0e8f10d22f9bf95d1", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "dired-dups", + "sha256": "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni", "rev": "694ad128c822c59348ced16c4a0c1356d43da47a" }, "recipe": { "sha256": "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130527.1625", "deps": [] }, "edebug-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ScottyB/edebug-x.git", - "sha256": "62e1b2c0b8f65fe121aec0d84723e93e3c34abfaf2baac347aa98919a28bf1fd", + "tag": "fetchFromGitHub", + "owner": "ScottyB", + "repo": "edebug-x", + "sha256": "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2", "rev": "a2c2c42553d3bcbd5ac11898554865acbed1bc46" }, "recipe": { "sha256": "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130616.125", "deps": [] }, "servant": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/servant.el.git", - "sha256": "b544061f1bc383761404a1204381b50a7a6f976ac6f1e48b7a8c012ab272891f", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "servant.el", + "sha256": "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d", "rev": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134" }, "recipe": { "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140216.619", "deps": [ @@ -20046,14 +21279,15 @@ }, "moz-controller": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/RenWenshan/emacs-moz-controller.git", - "sha256": "085ef98174a4ee9abd48873780e9abf202a5d19379b5f03895b09b46c7b05a3b", + "tag": "fetchFromGitHub", + "owner": "RenWenshan", + "repo": "emacs-moz-controller", + "sha256": "0fssn33ld6xhjlwg1dbrjg8sa0pjmglq0dw792yrmvm4fj0zjph8", "rev": "46f665c03574fa922de767fc29795e0db4a7c5c6" }, "recipe": { "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.2006", "deps": [ @@ -20062,56 +21296,60 @@ }, "bitlbee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pjones/elisp.git", - "sha256": "7a3dc9264c8346cd84b7f157de42bfdb9412c582e766651681042a08f22cddb2", + "tag": "fetchFromGitHub", + "owner": "pjones", + "repo": "elisp", + "sha256": "1cnx5kr0hah4h4b6arp7hb2i556vpx1dwmziny2csil39hkcjgbs", "rev": "5eafcd3ff0725b5826d1e01bfe4c7ed01563b75e" }, "recipe": { "sha256": "15xb0vjamnfwi25yqd37zwfm6xb6p71if88hk2ymxikza4i47x0f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130328.1218", "deps": [] }, "dired-efap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juan-leon/dired-efap.git", - "sha256": "13e4368ca0b2760077581248eb54cc8a7c2d6baa0d4d09956cdb6648152fa69c", + "tag": "fetchFromGitHub", + "owner": "juan-leon", + "repo": "dired-efap", + "sha256": "0jj9da880b4zwxba140fldai1x9p2sxc6hdf3wz6lnbvz1pyn1mv", "rev": "624757b2e54d9a13e2183118d6c113e37684b90c" }, "recipe": { "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140122.1056", "deps": [] }, "form-feed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/form-feed.git", - "sha256": "74e90a4b7555d23d2861285dd8f61c600673bbf26f664ecce2ee1c055742b27a", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "form-feed", + "sha256": "0ymj89bha77fwb64wrkgyaxp61k03kvdhp98c4l3vljmfm5hmsbl", "rev": "ba1fb2be4b509e98ba7a368176bb13e4a3bb4720" }, "recipe": { "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150926.756", "deps": [] }, "auto-complete-nxml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/auto-complete-nxml.git", - "sha256": "a68a0e5f7305c0b04895f4cdd4f248b6c6a34c277e93aff814311a11cc53a5ed", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "auto-complete-nxml", + "sha256": "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y", "rev": "ac7b09a23e45f9bd02affb31847263de4180163a" }, "recipe": { "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140220.2258", "deps": [ @@ -20126,49 +21364,52 @@ }, "recipe": { "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130130.1551", "deps": [] }, "ws-butler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/ws-butler.git", - "sha256": "a2840fb726437dce805021c1ee593ad730fa36d125d9d03611511408b65d5ef4", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "ws-butler", + "sha256": "1x2ybnv0h52i24vd1n95s4vglc6p79cyxh91a20cwza34svhz152", "rev": "a998a23ee8713808ac1fe3d1523ea1861be4da57" }, "recipe": { "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150126.959", "deps": [] }, "nsis-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/nsis-mode.git", - "sha256": "b7874cb823c778769ea84671f213fc741eb182f904f97d9c2bedd64df9aa00f1", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "nsis-mode", + "sha256": "1w80mbwlvmpd5ff7vy84z61b27klzh9z4wa6m2g7cy674fw4r1xp", "rev": "5ea767c326bbe180e42be723605c0b03b16fdb06" }, "recipe": { "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.746", "deps": [] }, "cucumber-goto-step": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gstamp/cucumber-goto-step.git", - "sha256": "7d966792621cbe5a9ce1adfb96edfb07a43fbd51b585b89b8dc06a31a2a297a0", + "tag": "fetchFromGitHub", + "owner": "gstamp", + "repo": "cucumber-goto-step", + "sha256": "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx", "rev": "f2713ffb26ebe1b757d1f2ea80e900b55e5895aa" }, "recipe": { "sha256": "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131209.2319", "deps": [ @@ -20177,14 +21418,15 @@ }, "strie": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hackscience/strie.el.git", - "sha256": "bc2efad0c9dce6d86e97dd144b757b478f3c9d33a1bea0c9785b945b4e6efaf5", + "tag": "fetchFromGitHub", + "owner": "hackscience", + "repo": "strie.el", + "sha256": "1xgsdr75p52vg34s1gm16ffkr3s7gdsln56xjxpdirnwr78glbmw", "rev": "066e72c39ed51162d7d7892c7451a6cac28581b7" }, "recipe": { "sha256": "0i1bgjlwcc2ks8hzjkyrw924q4k8pcz8335z9935m73js0sq0lxl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140109.812", "deps": [] @@ -20198,35 +21440,37 @@ }, "recipe": { "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141120.1431", "deps": [] }, "obsidian-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/obsidian-theme.git", - "sha256": "0172da03a8c0a09daf35b8d12a9bd8a5ba432e2b03a40725baaa739e780c6203", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "obsidian-theme", + "sha256": "00v21iw9wwxap8jhg9035cp47fm5v2djmldq6nprv860m01xlwh1", "rev": "0f92ce87245529d5c75d6e5f7862ebbc54bdbc92" }, "recipe": { "sha256": "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140420.1143", "deps": [] }, "firecode-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-firecode-theme.git", - "sha256": "d541500e0a432ac40d6b98a7da690b094d1ce0cda40dba7a430e04accc8e146d", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-firecode-theme", + "sha256": "0v8liv6aq10f8dxbl3d4rph1qk891dlxm9wqdc6w8aj318750hfm", "rev": "73573192e5e9d14d94dfc5131dd2b7a780b89626" }, "recipe": { "sha256": "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.102", "deps": [ @@ -20235,28 +21479,30 @@ }, "less-css-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/less-css-mode.git", - "sha256": "c63413fb5345555348285558bdb587bf35a04ddcf3dd29c038595e8b381526bd", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "less-css-mode", + "sha256": "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn", "rev": "d59a3ff4031ae75fbbe77b6cfce7843205394c28" }, "recipe": { "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150511.519", "deps": [] }, "snapshot-timemachine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrBliss/snapshot-timemachine.git", - "sha256": "f508c041c55c8146866a0640827d06e86e8e1e6e57c33823a31946910caacb9e", + "tag": "fetchFromGitHub", + "owner": "mrBliss", + "repo": "snapshot-timemachine", + "sha256": "17nbm8692ihrlcikihspdqg8wvp80ryq4h06da34d0awqm0w027m", "rev": "5c1e29fc771ffc65180faa1366c85aa50a335773" }, "recipe": { "sha256": "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150501.1300", "deps": [ @@ -20266,14 +21512,15 @@ }, "python-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wavexx/python-x.el.git", - "sha256": "62e77dada58c7b8e4e06ff54441411c3d07e8403fcea09b47eb66a22e3f81a2a", + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "python-x.el", + "sha256": "0ahsz3ij4smngss0kspw0f27xl6324a48m7z0r78wywclnnpvrv2", "rev": "1ffb8d748d1e01ca12ebf7ff93e0bade5cdf123a" }, "recipe": { "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.909", "deps": [ @@ -20284,28 +21531,30 @@ }, "el-spec": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/uk-ar/el-spec.git", - "sha256": "c6ba965ea64bd9f9cf6b200eb7cc68cb23c2c48e98ea49434e2895fbc1d86d02", + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "el-spec", + "sha256": "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az", "rev": "1dbc465401d4aea5560318c4f13ff30920a0718d" }, "recipe": { "sha256": "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121018.204", "deps": [] }, "slime-annot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arielnetworks/cl-annot.git", - "sha256": "5c63ce9db677dd8c03c8b2987cf5d39bcb03892792846677f4cb14285d8fa33d", + "tag": "fetchFromGitHub", + "owner": "arielnetworks", + "repo": "cl-annot", + "sha256": "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n", "rev": "c99e69c15d935eabc671b483349a406e0da9518d" }, "recipe": { "sha256": "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131230.2108", "deps": [ @@ -20314,14 +21563,15 @@ }, "ruby-test-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/r0man/ruby-test-mode.git", - "sha256": "ace5b3115fb0bffb51cf28b48c480debecbf7ee5f94f0e881d0b434e80cdd019", + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "ruby-test-mode", + "sha256": "06fhrn04whqb3n40wkzrwmzbzv7b1m48rd18rx8zpgxhbw8v7rdc", "rev": "b7a652b5d0492a3c712090787faa5f206c2af5fb" }, "recipe": { "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.218", "deps": [ @@ -20330,14 +21580,15 @@ }, "font-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/font-utils.git", - "sha256": "21a426b301cdbdf4b923423c289f7f1c37dbb426fb7b1dc32d03d395fd56616f", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "font-utils", + "sha256": "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055", "rev": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3" }, "recipe": { "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150806.1251", "deps": [ @@ -20347,14 +21598,15 @@ }, "digistar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/retroj/digistar-mode.git", - "sha256": "ba1d51dba40a6776175d491e7047d6566bcb1c204d6000b6456e72a3fc755866", + "tag": "fetchFromGitHub", + "owner": "retroj", + "repo": "digistar-mode", + "sha256": "0rjqfpya6wkf8nv00q2d40fcnssnsr3p07j9blbpcrqalkdm27ds", "rev": "fcc0447b9ad97ac76f86de7485e0947440966d3f" }, "recipe": { "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150402.1922", "deps": [] @@ -20368,21 +21620,22 @@ }, "recipe": { "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.2228", "deps": [] }, "phi-autopair": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/phi-autopair.git", - "sha256": "a5df86ea9306eba430df27bf90cf516e768c99548646e8db04e8e3dc9b35e091", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-autopair", + "sha256": "14g06ndxrqz80kdyhil6ajcqqxkfa77r1gr7vwqa9sq6jgm8dpx5", "rev": "ec4e02f3b1602a6450ece118c79d4beb2430ff08" }, "recipe": { "sha256": "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150527.423", "deps": [ @@ -20397,49 +21650,52 @@ }, "recipe": { "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090208.2238", "deps": [] }, "navi2ch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/naota/navi2ch.git", - "sha256": "1ad8b269ca7d917e450ef2e8ca6c634ea39cad8351ce5a74162c06b3282e30d5", + "tag": "fetchFromGitHub", + "owner": "naota", + "repo": "navi2ch", + "sha256": "15l2zmm8bp4ip8m1hfxkvswfwa29pg72kisfya2n5v900r184a4m", "rev": "faebfd15184de9df6903eae436dafb52c38ee86e" }, "recipe": { "sha256": "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150329.2116", "deps": [] }, "dired-filetype-face": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jixiuf/dired-filetype-face.git", - "sha256": "4ea5150d4251d26df3b0a4a4de4b2e1558bf22f1c5a8b28d4e6799299ffe2dea", - "rev": "a54efd4c127067c90ea1181e1c40beb8aa80abbb" + "tag": "fetchFromGitHub", + "owner": "jixiuf", + "repo": "dired-filetype-face", + "sha256": "0v6n4ymlnphzmqaqlfbxvf24dh1pa0xy37xhz9xfjkk02l02wsgf", + "rev": "c51bb2d5fba8964b86e63242c247c4688441b9db" }, "recipe": { "sha256": "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151212.2210", + "version": "20151216.2057", "deps": [] }, "pandoc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/pandoc-mode.git", - "sha256": "37340478289bfa5fd9693332c82edc8871f20968a62c661a4ef72f2b1b2d4f00", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "pandoc-mode", + "sha256": "0aj509yjqgq8bxrvdq5x3d1sfj0dgwwh6kg7f20vapz9qxjdjvdg", "rev": "23444375a60f44b3439994e969d8aa7acf220f8c" }, "recipe": { "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.513", "deps": [ @@ -20449,28 +21705,30 @@ }, "highlight-parentheses": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/highlight-parentheses.el.git", - "sha256": "7280d58782e7e73df9ae5410f46d6bab37672ecd66d7aa0edd883f295c833e22", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "highlight-parentheses.el", + "sha256": "0kzqx1y6rr4ryxi2md9087saad4g4bzysckmp8272k521d46xa1r", "rev": "a821a314942f409cd69660d816cd9a0aebd1ae8f" }, "recipe": { "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.116", "deps": [] }, "elx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/elx.git", - "sha256": "006ff5c18c313011d8e67b59496192d29164d683bc15e0b47b25d2601a6190d5", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "elx", + "sha256": "1mchc4d61li5gfsf05dwhgb694fjj9hljnbvwvc12c1iik0zavq0", "rev": "a8dff14f0626f729e745092dd88a1801c6239710" }, "recipe": { "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.639", "deps": [ @@ -20479,14 +21737,15 @@ }, "bibslurp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkmcc/bibslurp.git", - "sha256": "032ae8f0535712055dd9182bb4e790631a08501d4924c6df0b1cb319dd60e391", + "tag": "fetchFromGitHub", + "owner": "mkmcc", + "repo": "bibslurp", + "sha256": "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823", "rev": "aeba96368f2a06959e4fe945375ce2a54d34b189" }, "recipe": { "sha256": "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.1746", "deps": [ @@ -20496,14 +21755,15 @@ }, "ensime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ensime/ensime-emacs.git", - "sha256": "fbcea8e51a0ea08a2a1e782ec5628e586e12aaa02c3da2b20522ebfb1012ba0a", + "tag": "fetchFromGitHub", + "owner": "ensime", + "repo": "ensime-emacs", + "sha256": "0mzw17s831r8m4kbs2d5p15c86v7w1y7barzqwcj76sdbb7wfkmy", "rev": "dc203a1fd52e05dee4462eb7b9cfb2ea28b833ca" }, "recipe": { "sha256": "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1416", "deps": [ @@ -20518,16 +21778,17 @@ }, "hyai": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/hyai.git", - "sha256": "8f9b414aeed5bd347cf8c1ee0b723bd6d6f4adfb729fc02bfac46a2f5399e149", - "rev": "20f1cba4a3420bff42a6d23f84c51539b618c009" + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "hyai", + "sha256": "0d3kdpwzr1gs0q986pkj8b9av9knzbh1ax9ybhn0k66hi55hn7bc", + "rev": "9c229e6bbccb8481b3889643d02de9869956875c" }, "recipe": { "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.624", + "version": "20151218.610", "deps": [ "cl-lib", "emacs" @@ -20535,14 +21796,15 @@ }, "hackernews": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clarete/hackernews.el.git", - "sha256": "08edfb412805a397097cfe3165713b1e26ebae23ff151a226cdfbe3e4e1d61e5", + "tag": "fetchFromGitHub", + "owner": "clarete", + "repo": "hackernews.el", + "sha256": "15d7zjxjp9h8jmxq3dqakwzlymqk6hqsg7zklkjs0ih7fz0d25pl", "rev": "676d72da9fa4743dae34da95138fd022a51fbfdd" }, "recipe": { "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150901.1017", "deps": [ @@ -20551,14 +21813,15 @@ }, "powerline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/powerline.git", - "sha256": "9a9b7ea855082e87ecb0bc0023c9e56fd332d60c44abd2cd207f8e9bfe36d66e", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "powerline", + "sha256": "0dq7fqlv72p72hbshzbwz5k40mqfdw10v9hsd1m18s2rf7082570", "rev": "e886f6fe46c7413befb1de3799a185366fd8b39c" }, "recipe": { "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151008.1649", "deps": [ @@ -20567,14 +21830,15 @@ }, "helm-sage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/helm-sage.git", - "sha256": "b55e09e921dd73d30e0842276609eb7e553c9a2dd2c99af3cf86bacd2c95b784", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "helm-sage", + "sha256": "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl", "rev": "b42b4ba5fd1b17c4b54c30376a053281686beeb8" }, "recipe": { "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150827.2234", "deps": [ @@ -20585,14 +21849,15 @@ }, "skewer-less": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/skewer-less.git", - "sha256": "0a2050aee6eced6083bf553deb41edc5367e8fa79ebe8ea096635a557e3fe598", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "skewer-less", + "sha256": "16757xz5ank3jsh8xglyly7pwdn5xm0yngampy1n1vgcwsp5080a", "rev": "5a48dfa627c91f5f94150fab04cd66e890e3929f" }, "recipe": { "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131015.822", "deps": [ @@ -20607,21 +21872,22 @@ }, "recipe": { "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140630.947", "deps": [] }, "flymake-perlcritic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/illusori/emacs-flymake-perlcritic.git", - "sha256": "72c6a8eac6fbeffafce76724527896f22e55f4615cc952040a7a80fb481694b8", + "tag": "fetchFromGitHub", + "owner": "illusori", + "repo": "emacs-flymake-perlcritic", + "sha256": "1f4l2r4gp03s18255jawc7s5abpjjrw54937wzygmvzvqvmaiikj", "rev": "edfaa86500ddfa8a6a6f51f5581a81a821277df6" }, "recipe": { "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120328.314", "deps": [ @@ -20636,7 +21902,7 @@ }, "recipe": { "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] @@ -20649,7 +21915,7 @@ }, "recipe": { "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150821.1428", "deps": [ @@ -20658,14 +21924,15 @@ }, "emamux": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-emamux.git", - "sha256": "40416e8fdb31184f24f85b02747f4831f9445ab26fe42b0a6daeea6c1fdf9fa2", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-emamux", + "sha256": "1x88blaf7f1nwqm20jlcx4xh9almz0570dck87qf27lljrbfikpn", "rev": "1bb88275e472e131c4c14590b48e2016861724a5" }, "recipe": { "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.2302", "deps": [ @@ -20675,42 +21942,45 @@ }, "itail": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/re5et/itail.git", - "sha256": "290b1162e74b6e327c275ccb89991ca731de638e30c51af2f6104934ab41e9ab", + "tag": "fetchFromGitHub", + "owner": "re5et", + "repo": "itail", + "sha256": "1az986mk8j8hyvr1mi9hirixwcd73jcqkjsw4xy34vjbwxi122r9", "rev": "ff80d0456a0039062de1cf73932a5a32d46821b1" }, "recipe": { "sha256": "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.1035", "deps": [] }, "rings": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/konr/rings.git", - "sha256": "77ba4a7b1501a208724053b30e4df75bca8ae8080d091b5d5daa78560961ba46", + "tag": "fetchFromGitHub", + "owner": "konr", + "repo": "rings", + "sha256": "0imsc44mcy5abmfin28d13l8mjjvyx6hxcsk81r0i8h12mxlmfkp", "rev": "1655dbf88ad877f54d67fab49f292945f70708eb" }, "recipe": { "sha256": "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140102.1736", "deps": [] }, "kill-or-bury-alive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/kill-or-bury-alive.git", - "sha256": "05460a9185d6bcf4d8aaad374316a1830bbab278ecb241ecb50df6e8e071c5f0", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "kill-or-bury-alive", + "sha256": "0z9jlps979c1pza9wqfy2v9jx9awwfccdnrdlz535r49qv5lmih4", "rev": "04fa76e5baa2fbdfac77c38007a8dacbf0a3f9bc" }, "recipe": { "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.100", "deps": [ @@ -20720,28 +21990,30 @@ }, "hiwin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshida-mediba/hiwin-mode.git", - "sha256": "137bdf828646a1aa08f3b1cbaf03a5a35d2b1d5b75a6f843ebb733fbf4a4eb9c", + "tag": "fetchFromGitHub", + "owner": "yoshida-mediba", + "repo": "hiwin-mode", + "sha256": "177blksgncxpxd1zi9kmbcfjnpd3ll1szjxiyc4am8a6hs1dyyqk", "rev": "6ee8ed051405653bd9b7332d7e9fbb591d954051" }, "recipe": { "sha256": "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150825.327", "deps": [] }, "ggtags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoliu/ggtags.git", - "sha256": "14cdddb7ba43622b64858868917f1ad096c1840f74d2a668c90df4436a22dfe7", + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "ggtags", + "sha256": "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n", "rev": "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731" }, "recipe": { "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1544", "deps": [ @@ -20757,21 +22029,22 @@ }, "recipe": { "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140307.1044", "deps": [] }, "ac-cake2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-ac-cake2.git", - "sha256": "9b738f3f0f1c7bb8dfad1f501fdd5ba67e772592d72ee4034a1f099d68839556", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ac-cake2", + "sha256": "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv", "rev": "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a" }, "recipe": { "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140320.208", "deps": [ @@ -20781,14 +22054,15 @@ }, "elog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lujun9972/elog.git", - "sha256": "fa3c6ce3c473d363caec46267e23ebebdfe059858a8970a06e3170329e87dba7", + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "elog", + "sha256": "19yvhyg34w1idsh712cahmcy1pzbxcipw9j6xk567lvkqkinqg7s", "rev": "03c275877301c72fbc61d5fdd72efe5fdc0b6e98" }, "recipe": { "sha256": "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.1937", "deps": [ @@ -20797,42 +22071,45 @@ }, "cfengine-code-style": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cfengine/core.git", - "sha256": "e9632d27fbe81cd6af1d0ff19a7afd8b2e19ef25c545b5285f2fefb52cfe1598", - "rev": "085be03ef175c95197c9e41917098e17007ba6ab" + "tag": "fetchFromGitHub", + "owner": "cfengine", + "repo": "core", + "sha256": "1z68f6x0ycpsiszlv7mwh2vcsrvl97nk0wzsn9q858yyki7slya1", + "rev": "ccaf5d1c5225ab4b50212273d45fb20b8034795e" }, "recipe": { "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131209.611", "deps": [] }, "rpm-spec-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bjorlykke/rpm-spec-mode.git", - "sha256": "5b6f7dc05c98a51e110523227fc16ee14693f8947bffe6a61dc391a91d362b07", + "tag": "fetchFromGitHub", + "owner": "bjorlykke", + "repo": "rpm-spec-mode", + "sha256": "01rb6qfsk4f33nkfdzvvjkw96ip1dv0py8i30l8ix9cqbk07svsv", "rev": "7d06d19a31e888b932da6c8202ff2c73f42703a1" }, "recipe": { "sha256": "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150411.1055", "deps": [] }, "jscs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/papaeye/emacs-jscs.git", - "sha256": "650f62973382801094ad42f10c3d250b183f0909e040ca06eda9b8824d2b4806", + "tag": "fetchFromGitHub", + "owner": "papaeye", + "repo": "emacs-jscs", + "sha256": "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy", "rev": "9d39d0f2355e69a020bf76242504f3a33e013ccf" }, "recipe": { "sha256": "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151015.1249", "deps": [ @@ -20842,14 +22119,15 @@ }, "fm-bookmarks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kuanyui/fm-bookmarks.el.git", - "sha256": "239ff1786f814ea24cdef8de8ecdd9348b3da6eaa2bd016b82ed521b1c740425", + "tag": "fetchFromGitHub", + "owner": "kuanyui", + "repo": "fm-bookmarks.el", + "sha256": "0984fhf1nlpdh9mh3gd2xak3v2rlv76qxppqvr6a4kl1dxwg37r3", "rev": "e1440334a4fe161bd8872996b6862d079d8eb24e" }, "recipe": { "sha256": "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.803", "deps": [ @@ -20859,14 +22137,15 @@ }, "corral": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nivekuil/corral.git", - "sha256": "dcfb6994ba64224c8e64629519f002c22499966dd03d28313d556e38d3eb32e1", + "tag": "fetchFromGitHub", + "owner": "nivekuil", + "repo": "corral", + "sha256": "1q9jxg9khvjm7lqjhgfhdnb9j9620bq1k5b2cj74q8k4paa6kyyw", "rev": "9a5ab7f293a23a4fec77ab4fb442d69ecfcc293f" }, "recipe": { "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.1809", "deps": [] @@ -20879,21 +22158,22 @@ }, "recipe": { "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1226", "deps": [] }, "cacoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-cacoo.git", - "sha256": "45f2ad464ea9f76e1c66eababee9aa856e7d083ea2f03d9868181aa616b897ef", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-cacoo", + "sha256": "07kzhyqr8ycjvkknijqhsfr26zd5jc8wxm9sl8bp6pzn4jbs1dmx", "rev": "c9fa04fbe97639b24698709530361c2bb5f3273c" }, "recipe": { "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120319.1859", "deps": [ @@ -20902,28 +22182,30 @@ }, "widget-mvc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-widget-mvc.git", - "sha256": "70c7189dbadd43e4d0bb4dece49f9edda18e57a27a6dd28c5b778475c88bf963", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-widget-mvc", + "sha256": "0036alzp66k7w3z45lj8qzh3plxv9vwcw17wibkz90mlb27vy6yz", "rev": "a3fd2d2abc29a1b53aeaae8b267d0718740fb783" }, "recipe": { "sha256": "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.2206", "deps": [] }, "sprintly-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sprintly/sprintly-mode.git", - "sha256": "70f39254a69befab2cd4c069310dc51a92b566bece821fd2ed43b1f951e0a920", + "tag": "fetchFromGitHub", + "owner": "sprintly", + "repo": "sprintly-mode", + "sha256": "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6", "rev": "6695892bae5860b5268bf3ae62be990ee9b63c11" }, "recipe": { "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121006.34", "deps": [ @@ -20932,14 +22214,15 @@ }, "org-alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/groksteve/org-alert.git", - "sha256": "7b4328d690058cd3552f02415ea4f2aeb29e183dc3e981079969fbfa448efb7b", + "tag": "fetchFromGitHub", + "owner": "groksteve", + "repo": "org-alert", + "sha256": "0yzvir2gmyv9k43q3sf37lc9xcmfyaj5wh825xax7305j3b2hhvv", "rev": "d9b73febcc4f211406521786a39853c6bc6dd1bf" }, "recipe": { "sha256": "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151007.537", "deps": [ @@ -20950,28 +22233,30 @@ }, "dtrace-script-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dotemacs/dtrace-script-mode.git", - "sha256": "8ea6f445fa1829deea125ad078cced03b5d087aa84f42cdd6a71b42ef2e88eae", + "tag": "fetchFromGitHub", + "owner": "dotemacs", + "repo": "dtrace-script-mode", + "sha256": "1blfx3r2xd3idbfjrx44ma3x1d83xp67il2s2bmdwa8qz92z99lf", "rev": "801af1ef16075d31a19830ebb8404bbf3a322f10" }, "recipe": { "sha256": "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150214.23", "deps": [] }, "multi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kurisuwhyte/emacs-multi.git", - "sha256": "bd4bebeb7c3243fad37f4fe2b7b7621495c9ce75a4e16d390f0f02fcaa61b038", + "tag": "fetchFromGitHub", + "owner": "kurisuwhyte", + "repo": "emacs-multi", + "sha256": "0f5hc6mgq0hg1wwnvqd4fp7ck58lcavvgqjggz9zlhrjgkmynjxx", "rev": "0987ab71692717ed457cb3984de184db9185806d" }, "recipe": { "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131013.1044", "deps": [ @@ -20980,42 +22265,45 @@ }, "eclipse-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/eclipse-theme.git", - "sha256": "bc54027937aa0a82e28624aeb76097ba878a1ffe07b394b78201923b5133aaef", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "eclipse-theme", + "sha256": "1vxa6d8kp4h1havr9cq7zqgqm1xsjxhbgbi4hvi842ma6xwh4m5w", "rev": "222f5b37d9c0573f752aa6097c677c91af9d2427" }, "recipe": { "sha256": "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150929.801", "deps": [] }, "json-reformat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/json-reformat.git", - "sha256": "c1dc4b00ab7dcf8df82606986fcdf84f11c515888ef1818ce0370f36b2524660", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "json-reformat", + "sha256": "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs", "rev": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716" }, "recipe": { "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.1100", "deps": [] }, "unicode-whitespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-whitespace.git", - "sha256": "1995620e374e660bf7cb5651c344d539cb3477eaa9541bab2240de591d205798", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-whitespace", + "sha256": "1ayb15nd5vqr0xaghrnp55kqw7bblrjipmfrag6bqpn7jk9bvbdz", "rev": "a18c6b38d78b94f2eb1dcc4cb4fa91b6a17efabe" }, "recipe": { "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -21027,14 +22315,15 @@ }, "kakapo-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/listx/kakapo-mode.git", - "sha256": "80d4998bd5cf67a1e3b08ee3d15e5d42bd58f87512aadbc3271bd86c2172ca2c", + "tag": "fetchFromGitHub", + "owner": "listx", + "repo": "kakapo-mode", + "sha256": "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40", "rev": "fe3d579867f7465cd3ad04f29b4b2b3b820edc01" }, "recipe": { "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.2352", "deps": [ @@ -21049,35 +22338,37 @@ }, "recipe": { "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1841", "deps": [] }, "pretty-sha-path": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/pretty-sha-path.el.git", - "sha256": "e2b2775316e34d67a382059f51269a1475b916f32752efb3eb7164e32e9decb8", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "pretty-sha-path.el", + "sha256": "1n0594msgy53ia58gjfkm3z3cnmq52wrq5992fm28s4jgazbgdfd", "rev": "a2b43dd9de423a38d67cda2e3bd9412f7d363257" }, "recipe": { "sha256": "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141105.1226", "deps": [] }, "omni-tags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-tags.el.git", - "sha256": "5fbfc42962288a8fe35c8489355c3043a27c751c4d91b3f4ea66bcd22856fdf6", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-tags.el", + "sha256": "1lvnkdrav7h15p8d5ayhfsjynllwp4br1vqxmw0ppxnlyq7337n5", "rev": "3f88b087d492e8ef742416d6e4bf8be41e5a46c4" }, "recipe": { "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150513.1253", "deps": [ @@ -21087,14 +22378,15 @@ }, "hcl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-hcl-mode.git", - "sha256": "87f3f5c568e2694eae1c6e8e83adfdfe5bff63cbedfab5004ebc7560d9765b94", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-hcl-mode", + "sha256": "1vf5130bj1ii9j8qq9vdw0ga0qgfk8brjz34ysfmz9l2ihlcxvl0", "rev": "5a5e490509452a1882bea43952e248682577ed2d" }, "recipe": { "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151002.2249", "deps": [ @@ -21103,44 +22395,47 @@ }, "polymode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vitoshka/polymode.git", - "sha256": "e1a9c583f74940b92b5b4deb8f07245696372305a76a54deaf16adff79d39c94", - "rev": "b9dc94728e168e0d9365ac6a94c81bdf93df66f3" + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "polymode", + "sha256": "0dlgmp1vmpvfjx19jz52xjmpg0fi1d0gy3zz7rsyjdkdw8dmr1v6", + "rev": "af589492a49b4703d390a7a91b281cf0d10d91a7" }, "recipe": { "sha256": "0ndavaan7k55l3ghm5h08i0slmmzc82c0gl4b8w91fa8bi2lq4h4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151013.1014", + "version": "20151216.733", "deps": [ "emacs" ] }, "restclient": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pashky/restclient.el.git", - "sha256": "7d4fc3e9d3b5348c419c2ad49a1ce0204a6a8a819b28bec238b4f524c1a94422", + "tag": "fetchFromGitHub", + "owner": "pashky", + "repo": "restclient.el", + "sha256": "08j4m70j9xdl731bwa4vh656lji0w0f9mm1aki0qqd5msglw6kvx", "rev": "2075b17e2f8e118cf0739e4087f791ed724be1ad" }, "recipe": { "sha256": "14wxfhb17n2f9wil68lb05abj7m0whwkqvrm3y9dg9mh14lcpbvc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.1712", "deps": [] }, "lentic-server": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/lentic-server.git", - "sha256": "775dab63ede9cb4b4b5f523192329324222dad2836eb7f746b3d8740249b91b2", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lentic-server", + "sha256": "0c6wkfz6sdcs4aglvx6h3slhma2vbj7idckwzvp8ji6s7p1mavlv", "rev": "533e0eadb2dd79c50da7de8fc1d6e6f1e99bd6ff" }, "recipe": { "sha256": "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150320.826", "deps": [ @@ -21156,21 +22451,22 @@ }, "recipe": { "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120508.1320", "deps": [] }, "emms-soundcloud": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osener/emms-soundcloud.git", - "sha256": "8dfecf457196c610a0db8166d2411a38e3e65568d0ba35a10d4a55e9ca5aa55b", + "tag": "fetchFromGitHub", + "owner": "osener", + "repo": "emms-soundcloud", + "sha256": "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld", "rev": "87e5cbf9609d1f26c24dc834fdeb78b33d453c2b" }, "recipe": { "sha256": "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131221.545", "deps": [ @@ -21180,56 +22476,60 @@ }, "abl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/afroisalreadyinu/abl-mode.git", - "sha256": "0ed55827c3ba2b6bc54f82f78349f99b0c5204e1acb5d13eb5b77143b0f93920", + "tag": "fetchFromGitHub", + "owner": "afroisalreadyinu", + "repo": "abl-mode", + "sha256": "081rz6q46wdpnlzd3ddcw425434vz54q7xw29z2nnaxsqckmim8f", "rev": "5a2a65cc5eb1dc2ee80c8b64a7ea352a444abfdb" }, "recipe": { "sha256": "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.335", "deps": [] }, "page-break-lines": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/page-break-lines.git", - "sha256": "77be7733c259b3f0fc0dacb9952c940a9026f656a8ce8be6e0a27b79fb59e228", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "page-break-lines", + "sha256": "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4", "rev": "36d3f93a23b767e7558b9c90f3631b03ce9fbdce" }, "recipe": { "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150226.1017", "deps": [] }, "kpm-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/KMahoney/kpm-list.git", - "sha256": "1d944ff50c5220c93357efbb4b4287dbb773008e15055ca280d77aca688f30d5", + "tag": "fetchFromGitHub", + "owner": "KMahoney", + "repo": "kpm-list", + "sha256": "1m9hixlclynph2i5q18miq077dyvhx14pfzgawrwj82j1kslz50x", "rev": "397912496d42e57c261ff6d33edc8fc029479b8b" }, "recipe": { "sha256": "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130131.348", "deps": [] }, "edbi-sqlite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/edbi-sqlite.git", - "sha256": "c27f6757ca20befa2ce00029e62390055751df1e27e4be9ab730620687dbe6d5", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "edbi-sqlite", + "sha256": "0xnaj2f9zvnc6abjkaa23j6ga4anmq676aplws0n01y7qz6w0xk8", "rev": "929009365529b56daec172b87d7632240b15be1f" }, "recipe": { "sha256": "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150115.1301", "deps": [ @@ -21239,28 +22539,30 @@ }, "rope-read-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marcowahl/rope-read-mode.git", - "sha256": "1a3b483b87bb8b857c1d988796cb661702b663a0941f7a7071c66c6a119ab9d6", + "tag": "fetchFromGitHub", + "owner": "marcowahl", + "repo": "rope-read-mode", + "sha256": "1mmrk88nlv66f5q7l7wll1ivc0hpcv5rd1wq3my8b2xvhwxlhfqs", "rev": "8837e18405f96aab34821e890141ecf6b749bb73" }, "recipe": { "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.1705", "deps": [] }, "desktop+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ffevotte/desktop-plus.git", - "sha256": "50cc77e0a38624833fb6364d3191a038a7f0fd08262c0e9b6f6d52912e211aec", + "tag": "fetchFromGitHub", + "owner": "ffevotte", + "repo": "desktop-plus", + "sha256": "18k5898r4n96h93xsvjrpm90hz3rd0ir6x3axjzqwwrgs2ik7pj2", "rev": "8ef242d0aa6f715ff4c5abbc4ee6be66a90ffedd" }, "recipe": { "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151004.1440", "deps": [ @@ -21271,28 +22573,30 @@ }, "smart-indent-rigidly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/re5et/smart-indent-rigidly.git", - "sha256": "5143da5cdbb61e0b6c9f3ed7b0fe1f6e6d69de8c7f8a4dd97da9a962c4ebb060", + "tag": "fetchFromGitHub", + "owner": "re5et", + "repo": "smart-indent-rigidly", + "sha256": "0q5hxg265ad9gpclv2kzikg6jvbf3zzb1mrykxn0n7mnvdfdlhsi", "rev": "323d1fe4d0b81e598249aad01bc44adb180ece0e" }, "recipe": { "sha256": "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141205.1815", "deps": [] }, "colemak-evil": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/patbl/colemak-evil.git", - "sha256": "c211d3486b8c0e4e1cb959b58597916c1c6a4fca1a9e1b57af955379516b39ee", + "tag": "fetchFromGitHub", + "owner": "patbl", + "repo": "colemak-evil", + "sha256": "0jjj1miwc7hw2fbb1fnmfnydim81djswla8iy4waam9014yraqci", "rev": "cd2c75848ab0ad1aec42ca421d03a923166fa228" }, "recipe": { "sha256": "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1812", "deps": [ @@ -21301,15 +22605,15 @@ }, "elnode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/elnode.git", - "branchName": "melpa", - "sha256": "1c22485d6b9aca32157e5025199de5bea27d515f27a7d9484468a8f976916c5c", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "elnode", + "sha256": "0p3cj5vgka388i4dk9r7bx8pv8mywnfij9ahgqak5jlsddflh8hw", "rev": "3f2bf225853e40a2a10386ee5ae0bd6ba5d44ce9" }, "recipe": { "sha256": "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140203.1706", "deps": [ @@ -21325,56 +22629,60 @@ }, "bash-completion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/szermatt/emacs-bash-completion.git", - "sha256": "2464bf180b5a39e552bbd5f72d676246d5731660ca527123cb86259f7d2efa55", + "tag": "fetchFromGitHub", + "owner": "szermatt", + "repo": "emacs-bash-completion", + "sha256": "06c42531dy5ngscwfvg8rksg6jcsakfn7104hmlg1jp4kvfiy1kg", "rev": "1659c7ca38e2cf591525a3d0b9d97461de33916d" }, "recipe": { "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150514.928", "deps": [] }, "php-refactor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/keelerm84/php-refactor-mode.el.git", - "sha256": "fd01f8fbef37092496e5cbe035236182cc44fbae265c152547c5ee1b49ce40bb", + "tag": "fetchFromGitHub", + "owner": "keelerm84", + "repo": "php-refactor-mode.el", + "sha256": "163albjkq7ldc9fki368540m7nl58qa70wfpff08gx3gsvywfnyi", "rev": "9010e5e8dde2ad3a2c7a65ff1752b5482dfd4f61" }, "recipe": { "sha256": "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140920.1611", "deps": [] }, "perlbrew": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kentaro/perlbrew.el.git", - "sha256": "46e0f44b1063c4eb403566bedb6551c9e6e896befa3fdbbab1f4b9dff165e071", + "tag": "fetchFromGitHub", + "owner": "kentaro", + "repo": "perlbrew.el", + "sha256": "0wg0cpqxzfgln6xdngzspsbfirn9a5jxpgk66m0fpi33215z9q26", "rev": "30e14a606a08948fde5eafda2cbe1cd4eb83b3f3" }, "recipe": { "sha256": "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130127.524", "deps": [] }, "download-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/download-region.git", - "sha256": "d94ebef9f11146dddf22903d0e8092b7981ac6a10760ca9adabedc1573f9873d", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "download-region", + "sha256": "0gc7z5ribp5yvadclq07l731m65pja00wgch4bgxsihiy7wvwknr", "rev": "51fc808e10803f695ea3d24c22e1af27e080903d" }, "recipe": { "sha256": "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.232", "deps": [ @@ -21383,14 +22691,15 @@ }, "swoop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/emacs-swoop.git", - "sha256": "2929778655ddf5c1992f3bd2035c40a4ea76394760afef1713d0fdd3a3b31aac", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "emacs-swoop", + "sha256": "0qp078q9jrfm0k8sjq6qglfilwgqy1n0bbhyjk3hrf7rjxlkfkx7", "rev": "80a5df8edb86efd9885073b3ec6f475d8b969adf" }, "recipe": { "sha256": "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140605.1610", "deps": [ @@ -21402,28 +22711,30 @@ }, "angular-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omouse/angularjs-mode.git", - "sha256": "9e20566b3a6aca00f1379974bdf180febee88db3af996bb549ab68a1b2bfa63a", + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "angularjs-mode", + "sha256": "04kg2x0lif91knmkkh05mj42xw3dkzsnysjda6ian95v57wfg377", "rev": "8720cde86af0f1859ccc8580571e8d0ad1c52cff" }, "recipe": { "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1527", "deps": [] }, "vertigo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/noctuid/vertigo.el.git", - "sha256": "542c531de9f0bce41baa6aa28d33fcf661354fb2b8a5c75fe979178cd723086d", + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "vertigo.el", + "sha256": "0v884gbqq5vrx5gwg9dqn97kaqgnzhrqv8kam8dy9g7hx4fm6b2l", "rev": "fecc566e9039408303f9b1c979624d546152b7df" }, "recipe": { "sha256": "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.2213", "deps": [ @@ -21432,14 +22743,15 @@ }, "flycheck-ats2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/drvink/flycheck-ats2.git", - "sha256": "d0866dac7619eb56a7efa8b0f43b1ff89a4784d9a71f850355b5e38ccd466f3d", + "tag": "fetchFromGitHub", + "owner": "drvink", + "repo": "flycheck-ats2", + "sha256": "0fh5z68gnggm0qjb8ncmfngv195lbp1dxz9jbmdi418d47mlba9c", "rev": "431e46d5bbd20941c26270c7ba6872c86451348b" }, "recipe": { "sha256": "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.807", "deps": [ @@ -21449,28 +22761,30 @@ }, "supergenpass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ober/sgpass.git", - "sha256": "618c7169151e612671e343c506a90883d83102ad313fce6153830835bfd50254", + "tag": "fetchFromGitHub", + "owner": "ober", + "repo": "sgpass", + "sha256": "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331", "rev": "549072ef7b5b82913cadd4758e8a0a9926f0a04a" }, "recipe": { "sha256": "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130329.48", "deps": [] }, "iodine-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/srdja/iodine-theme.git", - "sha256": "6356a29d707b82390bee429dd60a1dea518189e3f47a18fecc041ee690eaee93", + "tag": "fetchFromGitHub", + "owner": "srdja", + "repo": "iodine-theme", + "sha256": "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3", "rev": "02fb780e1d8d8a6b9c709bfac399abe1665c6999" }, "recipe": { "sha256": "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.1139", "deps": [ @@ -21479,14 +22793,15 @@ }, "mkdown": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ajtulloch/mkdown.el.git", - "sha256": "b372e045dbe74cf1e528c658d8effceb70ba5384204aefad210407eb988808b4", + "tag": "fetchFromGitHub", + "owner": "ajtulloch", + "repo": "mkdown.el", + "sha256": "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk", "rev": "8e23de82719af6c5b53b52b3308a02b3a1fb872e" }, "recipe": { "sha256": "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140517.918", "deps": [ @@ -21495,14 +22810,15 @@ }, "ctxmenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-ctxmenu.git", - "sha256": "8b1340e36d68e5adcbc6083b6c8e151525e512cf7a53262634e069cc631599ca", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-ctxmenu", + "sha256": "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb", "rev": "5c2376859562b98c07c985d2b483658e4c0e888e" }, "recipe": { "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140303.1542", "deps": [ @@ -21513,14 +22829,15 @@ }, "python-environment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-python-environment.git", - "sha256": "35d9b16085dcfc957ea189dadc6a3a4fbdf1ec6787c1b1228f90e973c8621c2a", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-python-environment", + "sha256": "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk", "rev": "401006584e32864a10c69d29f14414828909362e" }, "recipe": { "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150310.353", "deps": [ @@ -21529,14 +22846,15 @@ }, "flymake-phpcs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senda-akiha/flymake-phpcs.git", - "sha256": "f6424371d6403360abcd1cd4d6224659a71a6b796fc80ba7632a04f67d003f56", + "tag": "fetchFromGitHub", + "owner": "senda-akiha", + "repo": "flymake-phpcs", + "sha256": "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi", "rev": "a4d383474e055e554aaf1cd617055d5d7181aa50" }, "recipe": { "sha256": "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140713.131", "deps": [ @@ -21545,28 +22863,30 @@ }, "gotham-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/gotham-theme.git", - "sha256": "10717add291b66e3e09292454eedc48a41bf74de5642705c483e274e4d89bf5f", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "gotham-theme", + "sha256": "0pxzi56lw9ry91f70hjnvrsbyhcaqknlwicjjbhf6rhv57fplw8h", "rev": "d41b0ea37ad5a4d0060ea05e25d80581f113b662" }, "recipe": { "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.358", "deps": [] }, "evil-quickscope": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/blorbx/evil-quickscope.git", - "sha256": "e7a4256a7c47f86def529dad058a90af1b94da74a850ac42c7f0430182cfa57b", + "tag": "fetchFromGitHub", + "owner": "blorbx", + "repo": "evil-quickscope", + "sha256": "0yx5ry102hzhqx1aql58fkd986xgj250bbcxabpnvy27gim2b977", "rev": "d2f512fa4bd0b0603529a441e474ca551f621650" }, "recipe": { "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150929.1448", "deps": [ @@ -21581,21 +22901,22 @@ }, "recipe": { "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1622", "deps": [] }, "lenlen-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/lenlen-theme.git", - "sha256": "c5fc644261965ffb3a01417c9efca59eff193ce814e9a972e47a7c8523266829", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "lenlen-theme", + "sha256": "0ab84qiqaz3swiraks8lx0y1kzwylpy9wz2104xgnpwnc5169z65", "rev": "05202458fa0a5242e5c6e4451e375f6c16920272" }, "recipe": { "sha256": "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150307.211", "deps": [ @@ -21604,42 +22925,45 @@ }, "orgtbl-aggregate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tbanel/orgaggregate.git", - "sha256": "fe5b7b3b16c331190ccd443f34b52d21cbffd642b0f4d6ae8fea5e57b519b1e8", + "tag": "fetchFromGitHub", + "owner": "tbanel", + "repo": "orgaggregate", + "sha256": "0am2yfnaxwc6f2wvrg4d508pdcs88cynr32k7bgyyadwq4xq3zsg", "rev": "16b54b2be7cbb87aab9498c0ab7b8bca0f73cb59" }, "recipe": { "sha256": "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1018", "deps": [] }, "cssfmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/KeenS/cssfmt.el.git", - "sha256": "3e41911495416dcd9e685b248cee6de098b172f787ab560c50f3a3756a24ce43", + "tag": "fetchFromGitHub", + "owner": "KeenS", + "repo": "cssfmt.el", + "sha256": "0hyf4im7b8zka065daw7yxrb3670dpp8q92vd2gcsva1jla92h9y", "rev": "802c82a1aa8d433ec473e253ae1fa4ecad3fb4b0" }, "recipe": { "sha256": "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150818.2328", "deps": [] }, "color-theme-buffer-local": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vic/color-theme-buffer-local.git", - "sha256": "7d32eb146147f908c02eb2e5562733f34ed117d410d72bf9df1c2932bc4c6c3f", + "tag": "fetchFromGitHub", + "owner": "vic", + "repo": "color-theme-buffer-local", + "sha256": "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx", "rev": "ca8470bc34c65a026a6bca1707d95240bfd019af" }, "recipe": { "sha256": "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151012.1828", "deps": [ @@ -21648,70 +22972,75 @@ }, "xbm-life": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/xbm-life.git", - "sha256": "e598c88c14b4fb9255e218b4eeaf2385ea53a02031ad083382ff95d0dff1f0a5", - "rev": "1f0b9863e33ba68c29e02c5fa8c29ec032e6772c" + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "xbm-life", + "sha256": "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6", + "rev": "bde2b3730a02d237f7d95a8e3f3722f23f2d9201" }, "recipe": { "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151209.220", + "version": "20151217.215", "deps": [] }, "grails-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Groovy-Emacs-Modes/groovy-emacs-modes.git", - "sha256": "f06dee27122cb7756a5092497212be7f35e2e4e06d950b0f771b0b2fedff88c5", + "tag": "fetchFromGitHub", + "owner": "Groovy-Emacs-Modes", + "repo": "groovy-emacs-modes", + "sha256": "07xiyf30p6hdd6lxv7c6xqpnvw6ys0halg8di0m3pwqz9qf4rj4i", "rev": "74f360ee1ad25755707a89bec9eeed571b6748d0" }, "recipe": { "sha256": "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.154", "deps": [] }, "flymake-lua": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sroccaserra/emacs.git", - "sha256": "9bf5e7478c2afd17d1242d32fc5fe09a00f37930698b05ca8556f870b99fe7bb", + "tag": "fetchFromGitHub", + "owner": "sroccaserra", + "repo": "emacs", + "sha256": "1fz7kywp1y2nhp50b2v961wz604sw1gzqcid4k8igz9aii3ygxcv", "rev": "ee23c427a8eb01773c87e215d0e61cd8b5b5fe76" }, "recipe": { "sha256": "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140310.430", "deps": [] }, "elpa-mirror": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/elpa-mirror.git", - "sha256": "0ab91234502a62610271347718f0769982e41e6265c1082055c3683a87dd55c2", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "elpa-mirror", + "sha256": "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a", "rev": "6c32875c2317736e590e067820996010b21acb1d" }, "recipe": { "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.653", "deps": [] }, "e2wm-bookmark": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/e2wm-bookmark.el.git", - "sha256": "00be8e800d331110c58dcc2c72925e54c9e0e0a3b2722ddbc67d09e208693b88", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "e2wm-bookmark.el", + "sha256": "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0", "rev": "bad816b6d8049984d69bcd277b7d325fb84d55eb" }, "recipe": { "sha256": "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.2321", "deps": [ @@ -21720,42 +23049,45 @@ }, "p4": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gareth-rees/p4.el.git", - "sha256": "ed284ec82619c7b1fac4a5c0731135faa9f337666415b580f368f975002cc46d", + "tag": "fetchFromGitHub", + "owner": "gareth-rees", + "repo": "p4.el", + "sha256": "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra", "rev": "eff047caa75dbe4965defca9d1212454cdb755d5" }, "recipe": { "sha256": "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150721.1437", "deps": [] }, "review-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kmuto/review-el.git", - "sha256": "90697f329b34824ed405c467cadc63c0054655ea1f7e8af268a9ea3391f1fa53", + "tag": "fetchFromGitHub", + "owner": "kmuto", + "repo": "review-el", + "sha256": "0lzsy68k7sm9d3r8lzhzx9alc1f0cgfclry40pa4x0ilkcr7ysch", "rev": "d043b227eb1cd10361f8117c17de9a67caebe96a" }, "recipe": { "sha256": "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150110.812", "deps": [] }, "peacock-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-peacock-theme.git", - "sha256": "032a7b7afae146884a30e2d39d2d98d8b9cdb8dd49b8025f74ee721977cd9bb2", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-peacock-theme", + "sha256": "1clvrmvijwpffigh5f29vnwcvffqk0nrvlz26158hip1z9x7nah3", "rev": "268a2a7eb48ac750fc939657169ec65f2ac0f4f7" }, "recipe": { "sha256": "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.102", "deps": [ @@ -21764,56 +23096,60 @@ }, "edit-server": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stsquad/emacs_chrome.git", - "sha256": "59059059edcd5a484df559b1556ca6a4b86ba1a7cb7501dadca6d1bb02876267", + "tag": "fetchFromGitHub", + "owner": "stsquad", + "repo": "emacs_chrome", + "sha256": "0ssmhwg4wfh5cxgqv8bl55449204h4zi863m7jhvas4c9zq005kd", "rev": "0a50fbb524fe256560f481701c000309c627b9ca" }, "recipe": { "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141231.1558", "deps": [] }, "imakado": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/imakado/emacs-imakado.git", - "sha256": "01697d294cbc5bbb2189cc1ce4484dc180e970ef80456798f95baafd05821bab", + "tag": "fetchFromGitHub", + "owner": "imakado", + "repo": "emacs-imakado", + "sha256": "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp", "rev": "00a1e7eea2cb9e9066343a23927d6c747707902f" }, "recipe": { "sha256": "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.423", "deps": [] }, "dynamic-ruler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocher/dynamic-ruler.git", - "sha256": "05125630107314e243bb2aae034e5b8127b6664123b4c085cdf7e9381d9952cb", + "tag": "fetchFromGitHub", + "owner": "rocher", + "repo": "dynamic-ruler", + "sha256": "1jsjk4fkisgprn2w1d1385kbc9w1bd707biapd1y453k20q5c4h5", "rev": "06318152d6831b1b0cfd814b4f4150a00b47ef67" }, "recipe": { "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150826.1609", "deps": [] }, "fontawesome": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-fontawesome.git", - "sha256": "cfcc536d23a01a8359ca4f96cb92d5b1dd19c5248babdbab343b9142f54c3ae2", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-fontawesome", + "sha256": "103xz042h8w6c85hn19cglfsa34syjh18asm41rjhr9krp15sdl1", "rev": "66650efea4a044afe0e5f482ccac465082cd5e62" }, "recipe": { "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.830", "deps": [ @@ -21823,14 +23159,15 @@ }, "langdoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tom-tan/langdoc.git", - "sha256": "ced1f335382d6fd13be2943a10dfede0c6ac041a6f24a73ddada47a2fb896c6b", + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "langdoc", + "sha256": "0svci7xs4iysv8ysf93g382arip0xpgi0fllw8xx2vrd70sz7lff", "rev": "2c7223bacb116992d700ecb19a60df5c09c63424" }, "recipe": { "sha256": "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150218.45", "deps": [ @@ -21839,28 +23176,30 @@ }, "o-blog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/renard/o-blog.git", - "sha256": "bc56e26405fb8312fbb115fec4850231c5251743b3d37cbfeeaff25c8946dd6c", + "tag": "fetchFromGitHub", + "owner": "renard", + "repo": "o-blog", + "sha256": "0xs6787a4v7djgd2zz2v1pk14x27mg2ganz30j9f0gdiai7da6ch", "rev": "e466c59478feddc8126c43c1b98550474af484c0" }, "recipe": { "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.1739", "deps": [] }, "love-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/love-minor-mode.git", - "sha256": "d41bb10f0e9c7b5af36083af562c4d00ee1ffa9cb1412797b9655138fe25399d", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "love-minor-mode", + "sha256": "179r4pz3hlb5p6bjfhdikkx1zvh09ln5dbw3c3rmlyww1q7v26yl", "rev": "31c3fc1ecd31f72f0f736014a4ff905eb3742e74" }, "recipe": { "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130429.1659", "deps": [ @@ -21869,28 +23208,30 @@ }, "erc-hl-nicks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/erc-hl-nicks.git", - "sha256": "79a50c10f4d9f6440018926ef0dc3d63cd64a7c387bd10ff05efeb8b8b725040", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "erc-hl-nicks", + "sha256": "0h2hfa5qpszg0pzi1gc7qfkn9kb37pfg0vlj30049xnryh80r9br", "rev": "e536ea57f842f85ecda5a28ceed24cd506b7be2c" }, "recipe": { "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140619.722", "deps": [] }, "quickref": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pd/quickref.el.git", - "sha256": "7ef58cadcc908a0ee43a80337c4f1688f1b100febe7b7ffb36cd45def0c5f8c4", + "tag": "fetchFromGitHub", + "owner": "pd", + "repo": "quickref.el", + "sha256": "1i7qqpqdwifd6vxpyyxyzq0b3wc82r7pqcw07bj0x2lhrjnqrxby", "rev": "cfedf98c6b8b679b93296f7436e1fb4c2cc7ad25" }, "recipe": { "sha256": "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130113.1700", "deps": [ @@ -21900,14 +23241,15 @@ }, "dash-functional": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/dash.el.git", - "sha256": "2caeefc9b4ee58818efc2a76d3e17c39f4a2b60dbc023cf343ac376067ddff91", - "rev": "6484fb5e77140d7028ac2a96f356385b40d81197" + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "dash.el", + "sha256": "1g7vrfhafmkqwdpfllfiwirl4pi437pyaws38jsd8laxmsa4m4wb", + "rev": "8a46d3c7c126d3e979f7f9b36867a413694cd8df" }, "recipe": { "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.613", "deps": [ @@ -21917,14 +23259,15 @@ }, "pdf-tools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/politza/pdf-tools.git", - "sha256": "6e82b64ff57c1066751dd0dc16bf47e1b0e73ac6853493c5ba9da94771753a2b", + "tag": "fetchFromGitHub", + "owner": "politza", + "repo": "pdf-tools", + "sha256": "1ik26v8x94myx04wy9vi6bwzvfxbl43fam765g0gy2n8289bhpi8", "rev": "aac3bdc43eb6ea78dcf7c59653c9aa526fb41f1f" }, "recipe": { "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1658", "deps": [ @@ -21935,14 +23278,15 @@ }, "beacon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/beacon.git", - "sha256": "9af76de0d71a2ae032eab254d91a2b175d9eb8cabe69bb70c16c32c468ab9fa9", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "beacon", + "sha256": "1aczmdlc8ckcq5qbnsdyraw9wp8p5cddjm5jx8rf0ahsszh6vxws", "rev": "0353da8dd7f78179a721f42cec4df8c23f0908f2" }, "recipe": { "sha256": "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1203", "deps": [ @@ -21951,14 +23295,15 @@ }, "image+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-imagex.git", - "sha256": "1746922e553afb50eb0b8ff3cd4b1e323b2c96af5632ea2b98eaa944a90bed9e", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-imagex", + "sha256": "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd", "rev": "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc" }, "recipe": { "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150707.1116", "deps": [ @@ -21967,42 +23312,45 @@ }, "dockerfile-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/spotify/dockerfile-mode.git", - "sha256": "b46a6d3e1b57a5f05268823da2a53b05ecd337b86bd7f7e09affd3af37142b71", + "tag": "fetchFromGitHub", + "owner": "spotify", + "repo": "dockerfile-mode", + "sha256": "08pd42vv2c3l19nfib1hd7i7sy9dqwar1wfrvsnm5dkxcwlsm99j", "rev": "40be396417535c6721c1b13ca9f99c46192f1d73" }, "recipe": { "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.1057", "deps": [] }, "telepathy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/telepathy.el.git", - "sha256": "8c690fc860b1bdec9d2d6424c5b72b557f6066af0036914bd33ec44fc90d799a", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "telepathy.el", + "sha256": "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc", "rev": "211d785b02a29ddc254422fdcc3db45262582f8c" }, "recipe": { "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131209.658", "deps": [] }, "flycheck-haskell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-haskell.git", - "sha256": "c50bcfe4233247fcf45e805e5c25eee233de4eb3066f4ec22fe155b3c39406a3", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-haskell", + "sha256": "0sv4swdqnra3xvjp8im0mxphwfsfw6c45shwdgnjagqs6z6v0i5k", "rev": "d83da3ff856ac59b84e3d84598a5bb30c288bd55" }, "recipe": { "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1347", "deps": [ @@ -22016,28 +23364,30 @@ }, "handoff": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/handoff.el.git", - "sha256": "391c2258c0768e67ec75c2b1804b31959965ba1562e5ffe36316369458461672", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "handoff.el", + "sha256": "0whn8rc98dhncgizzrb22nx6b6cm655q1cf2fpn6g3knq1c2471r", "rev": "75dc7a7e352f38679f65d0ca80ad158798e168bd" }, "recipe": { "sha256": "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150917.100", "deps": [] }, "evil-iedit-state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-iedit-state.git", - "sha256": "0f68dee1632ea8c5a2ae20c6afd26cec0272b421890bb5c997247f91d25b9326", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-iedit-state", + "sha256": "1kdigwpl9pp88l11bkpxkw91pvs8z3gachxccibivzgjxd2pnvfl", "rev": "153de161d5a272e3740dd862a3b7530b4240bcf8" }, "recipe": { "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141217.1934", "deps": [ @@ -22047,14 +23397,15 @@ }, "unicode-enbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-enbox.git", - "sha256": "c46645b5d78c6374273a33a44188feeb9cf7f85b26cf422bb5568539052fe811", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-enbox", + "sha256": "0936dqxyp72if9wvn2dcci670yp1gqrmpnll9xq00skp85yq9zs5", "rev": "77074fac1994a4236f111d6a1d0cf79ea3fca151" }, "recipe": { "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -22067,28 +23418,30 @@ }, "arduino-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bookest/arduino-mode.git", - "sha256": "1062865641d61a07243a96bc1cf1a9eef32aee2c079220ef8be48a4c059939c7", + "tag": "fetchFromGitHub", + "owner": "bookest", + "repo": "arduino-mode", + "sha256": "0i9xf74yfmg1a5vdf3nxd35865qhvrdw8vnfhnfx5cdc56v6rwa3", "rev": "bb89ac81e9b206a6da5653fd108a315ad3e8a8d7" }, "recipe": { "sha256": "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.135", "deps": [] }, "flycheck-pos-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-pos-tip.git", - "sha256": "80dfa60f2af94937d2401db5f5714d1b9f3ed535a93ac2b6b0db345bbb349ee2", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-pos-tip", + "sha256": "17xfh8kbf1915mq4wli32nrvk7jcg67kq698cc35g8glkkxjm64v", "rev": "6209525c675832ae4026d1458cb14fdd9e4b7527" }, "recipe": { "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.258", "deps": [ @@ -22099,28 +23452,30 @@ }, "subatomic256-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d11wtq/subatomic256.git", - "sha256": "085f4ac10b86f23d1ebc7b45de0e33b75ba7284f8402c13985b708867d8df5f0", + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "subatomic256", + "sha256": "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8", "rev": "326177d6f99cd2b1d30df695e67ee3bc441cd96f" }, "recipe": { "sha256": "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130620.2110", "deps": [] }, "evil-paredit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/evil-paredit.git", - "sha256": "179d7d5ad76179d2287e43d59b47dd543e8232237448918478845e7535f1082c", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "evil-paredit", + "sha256": "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p", "rev": "e058fbdcf9dbf7ad6cc77f0172d7517ef233d55f" }, "recipe": { "sha256": "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150413.1548", "deps": [ @@ -22130,14 +23485,15 @@ }, "ac-dcd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atilaneves/ac-dcd.git", - "sha256": "8bd27e3f90bfafdcc6a6f4fcef3d88a3cbff0f747c8a2000ffb9cd9865f31a62", + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "ac-dcd", + "sha256": "1dydjkilvyzxl7wwy3afmn1cjf8jv0385im4nhn8c3xr8iiil7yv", "rev": "8fe1a48fcfeeafa1970e5041b0e71a4fcd10f336" }, "recipe": { "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.924", "deps": [ @@ -22147,14 +23503,15 @@ }, "es-windows": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/es-windows.git", - "sha256": "bce3c91e760a15b53e1469bb8af63febace3c2fb398d8c60ec1f93db2603b3ba", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "es-windows", + "sha256": "14rsifcx2kwdmwq9zh41fkb848l0f4igp5v9pk3x4jd2yw9gay7m", "rev": "239e30408cb1adb4bc8bd63e2df34711fa910b4f" }, "recipe": { "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140211.304", "deps": [ @@ -22164,28 +23521,30 @@ }, "find-by-pinyin-dired": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/find-by-pinyin-dired.git", - "sha256": "9d6006ffdc025fb0328e2bcb8f301ed3ec8d7fef38dedf48ff724f841f505214", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "find-by-pinyin-dired", + "sha256": "18a4ydp30ycx5w80j3xgghclzmzbvrkl2awxixy4aj68nmljk480", "rev": "d049cc7f507a6f801c497a3d401b260300874f58" }, "recipe": { "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.416", "deps": [] }, "metascript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/metascript/metascript-mode.git", - "sha256": "bc4d1fd0aef5b898d39bd1525c15968a1ae406f8367b8647d463220af235ce10", + "tag": "fetchFromGitHub", + "owner": "metascript", + "repo": "metascript-mode", + "sha256": "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5", "rev": "edb361c7b0e5de231e5334a17b90652fb1df78f9" }, "recipe": { "sha256": "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150708.1957", "deps": [ @@ -22194,14 +23553,15 @@ }, "helm-helm-commands": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/helm-helm-commands.git", - "sha256": "f6320082f041dd825318bc93181cd1466494a37b00f27f7d255264454a777a16", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "helm-helm-commands", + "sha256": "05ksfx54ar2j4mypzwh0gfir8r26s4f1i4xw319q5pa1y2100cpn", "rev": "3a05aa19c976501343ad9ae630a36810921a85f6" }, "recipe": { "sha256": "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130902.1248", "deps": [ @@ -22210,14 +23570,15 @@ }, "smart-mode-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/smart-mode-line.git", - "sha256": "1ea483bce9c30c99248518c35001f6fa4bb13f9689198b4cd639ab9e2eb6a89e", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "smart-mode-line", + "sha256": "17m8nqp9xarrsr68n6c9jqzv2jzsyq0m1hqqhlj9j363x6y8790y", "rev": "4b3265ec3e442bd8c596b99cfd4ec73424c395ec" }, "recipe": { "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.837", "deps": [ @@ -22233,21 +23594,22 @@ }, "recipe": { "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150710.2151", "deps": [] }, "live-py-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/donkirkby/live-py-plugin.git", - "sha256": "cb68a077a30baa9734d5528c6579f8c76f434de47538575c893c0d170ea86f3a", + "tag": "fetchFromGitHub", + "owner": "donkirkby", + "repo": "live-py-plugin", + "sha256": "02jvfn0g7r07kvb9m97kqa22j5nsgxbnp6r5vsq3d9qjsi459yd3", "rev": "35dda7dadba37ffbcc14d3b0a2711ca4967f1db5" }, "recipe": { "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.1107", "deps": [ @@ -22256,56 +23618,60 @@ }, "virtualenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aculich/virtualenv.el.git", - "sha256": "18d149689022146d338e82726718413e91137ec2456d2f866ce80863b687a765", + "tag": "fetchFromGitHub", + "owner": "aculich", + "repo": "virtualenv.el", + "sha256": "0rd7hyv66278dj32yva5q9z1749y84c6fwl2iqrns512j1l4kl8q", "rev": "276c0f4d6493b402dc4d22ecdf17b2b072e911b3" }, "recipe": { "sha256": "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140220.1701", "deps": [] }, "pos-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pitkali/pos-tip.git", - "sha256": "43b8b715e052c32b20416388350d444294f247cb44c65c992dce4898cda11099", + "tag": "fetchFromGitHub", + "owner": "pitkali", + "repo": "pos-tip", + "sha256": "168hl76rhj6f5ncmrij4rd3z55228h6kb23384h2phsjw0avgf23", "rev": "051e08fec5cf30b7574bdf439f79fef7d42d689d" }, "recipe": { "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150318.1013", "deps": [] }, "empos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimalik/empos.git", - "sha256": "1668583b29cf0a22a5c7f1faff92df501bfba709de4fe8b6fb4dbcb36d67a02e", + "tag": "fetchFromGitHub", + "owner": "dimalik", + "repo": "empos", + "sha256": "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n", "rev": "7b99ad30e56937adb7e6349777e5a2045597d564" }, "recipe": { "sha256": "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151011.1416", "deps": [] }, "helm-gitlab": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/emacs-gitlab.git", - "sha256": "ae98ce8189b225c44b7a0ca8652bd946b2ccddf68405aba2273dae411e318df7", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-gitlab", + "sha256": "07i4j9yl1yag70sl89n7v4yg4jvh5mrifhrf1xswlb29by6najdx", "rev": "78deece7f314f9652b50117605e93be9f8c860f4" }, "recipe": { "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150604.233", "deps": [ @@ -22317,14 +23683,15 @@ }, "smart-shift": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hbin/smart-shift.git", - "sha256": "68e21f2db070c5d6fb26127fa7dc6013f1fa44372edd1149976fae509d73f02b", + "tag": "fetchFromGitHub", + "owner": "hbin", + "repo": "smart-shift", + "sha256": "0azhfffm1bkgjx4i3p9f6x2gmw8kc3fafzqj4vxxdibhn0nizqk8", "rev": "a26ab2b240137e62ec4bce1698ed9c5f7b6d13ae" }, "recipe": { "sha256": "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150203.125", "deps": [] @@ -22338,7 +23705,7 @@ }, "recipe": { "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.1804", "deps": [ @@ -22347,14 +23714,15 @@ }, "magit-gerrit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/terranpro/magit-gerrit.git", - "sha256": "bbbbdcd87474e8bd407490f4da1fc7bdce7d3e003b489699eb75595dfe811962", + "tag": "fetchFromGitHub", + "owner": "terranpro", + "repo": "magit-gerrit", + "sha256": "0qhrh7z5snbmxfcrcj1v00z7vkmxqwgxmx4hfi0bvs3lfkcdrfxv", "rev": "c4e3da19d55229feef8df2e062104ecc9fd4290d" }, "recipe": { "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.1818", "deps": [ @@ -22363,14 +23731,15 @@ }, "bubbleberry-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jasonm23/emacs-bubbleberry-theme.git", - "sha256": "48b4657882137c892aa427f03529e5aef9e79dc489929c0118936c1a7f460aaa", + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-bubbleberry-theme", + "sha256": "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28", "rev": "22e9adf4586414024e4592972022ec297321b320" }, "recipe": { "sha256": "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141017.444", "deps": [ @@ -22379,16 +23748,17 @@ }, "org-pomodoro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lolownia/org-pomodoro.git", - "sha256": "f777853f661559b761f0df05bbc452593e42bff9e900c29215f110e50b16bce0", - "rev": "749ec04434cae33cdb5c33f1afff0801fb1515d0" + "tag": "fetchFromGitHub", + "owner": "lolownia", + "repo": "org-pomodoro", + "sha256": "015idpk66835jdg1sbvpksyr07xk4vn17z8cng2qw87fss688ihb", + "rev": "95e2b1f555359a6096a19634814e1d93b2072f25" }, "recipe": { "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151020.607", + "version": "20151217.753", "deps": [ "alert", "cl-lib" @@ -22396,14 +23766,15 @@ }, "buster-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/buster-snippets.el.git", - "sha256": "a1b627fc446d628fd3a4b95553f3b678ef0523f41d448368e4ccce4a9aed0b67", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "buster-snippets.el", + "sha256": "11djqlw4qf3qs2rwiz7dn5q2zw5i8sykwdf4hg4awsgv8g0bbxn6", "rev": "bb8769dae132659858e74d52f3f4e8790399423a" }, "recipe": { "sha256": "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.410", "deps": [ @@ -22412,42 +23783,45 @@ }, "monokai-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/oneKelvinSmith/monokai-emacs.git", - "sha256": "23ece4c7746694079eec5a343c2855ba0566630845653c02b5d4ee8470157527", + "tag": "fetchFromGitHub", + "owner": "oneKelvinSmith", + "repo": "monokai-emacs", + "sha256": "09vm2mq89vnlnl13qra511inc1dsall3qd2sxjg0g536fk3y9v13", "rev": "451a46930b9c5420d526505abe8f157a7292644e" }, "recipe": { "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.507", "deps": [] }, "cloud-to-butt-erc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/cloud-to-butt-erc.git", - "sha256": "ee4e548c3571b308edd910dfc60b4222138c75f59c3091a49f5c9771cdb27b1e", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "cloud-to-butt-erc", + "sha256": "07kvnb6p35swkyj92c4wymsqq4r2885wdpqhv7nhicvi6n658kpf", "rev": "6710c03d1bc91736435cbfe845924940cae34e5c" }, "recipe": { "sha256": "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130627.1808", "deps": [] }, "kurecolor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/kurecolor.git", - "sha256": "df89f5e24502aadd6bf615129221f523ca95ded779d775b889006fe36ef24435", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "kurecolor", + "sha256": "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz", "rev": "c8c72cea04e51f57701d2dd9be7dba5f3412e2f3" }, "recipe": { "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150423.2322", "deps": [ @@ -22457,14 +23831,15 @@ }, "dropbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pavpanchekha/dropbox.el.git", - "sha256": "212dbe278e903d1ca488ba1d91e63a201f171fd82c51bedeef46e7ed1a3a6422", + "tag": "fetchFromGitHub", + "owner": "pavpanchekha", + "repo": "dropbox.el", + "sha256": "1s4cz5s0mw733ak9ps62fs150y3psqmb6v5s6s88jjfsi0r03c0s", "rev": "fb71a2787030f911b569426596c081a89241056e" }, "recipe": { "sha256": "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130513.1737", "deps": [ @@ -22474,14 +23849,15 @@ }, "helm-rails": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/asok/helm-rails.git", - "sha256": "e9d72b8f718aa13a4d8927b8ba16520eefe9154cfcb3e31145d698d9ad6b5764", + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "helm-rails", + "sha256": "1a26r21jvgzk21vh3mf29s1dhvvv70jh860zaq9ihrpfrrl91158", "rev": "31d79cd0feca11cbb1aa532a8d2112ec794de4f0" }, "recipe": { "sha256": "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130424.1019", "deps": [ @@ -22491,14 +23867,15 @@ }, "flymake-haml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-haml.git", - "sha256": "ddfb04b489e80baee8503a064037fe66582daecf7cc59dad4e75434056347764", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-haml", + "sha256": "08rcsg76qdq2l6z8q339yw770kv1q657ywqvq6a20pxxz2158a8l", "rev": "3117d94ecad908710502e8def42dbae5748e9c1d" }, "recipe": { "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130324.551", "deps": [ @@ -22507,56 +23884,60 @@ }, "highlight-indentation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antonj/Highlight-Indentation-for-Emacs.git", - "sha256": "f3805451aaf4c37b15527f28983c17d9663bf49091d06f3f50444c5cce248502", + "tag": "fetchFromGitHub", + "owner": "antonj", + "repo": "Highlight-Indentation-for-Emacs", + "sha256": "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k", "rev": "cd6d8168ccb04c6c0394f42e9512c58f23c01689" }, "recipe": { "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150307.408", "deps": [] }, "runtests": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sunesimonsen/emacs-runtests.git", - "sha256": "ad88c3bb7c09bebf0b336cbac2afd70cda347a36a755f38b931992cfb3965943", + "tag": "fetchFromGitHub", + "owner": "sunesimonsen", + "repo": "emacs-runtests", + "sha256": "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6", "rev": "ed90249f24cc48290018df48b9b9b7172440be3e" }, "recipe": { "sha256": "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.331", "deps": [] }, "monroe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sanel/monroe.git", - "sha256": "b03a675d71de68b44441b888222d93a8169e5cf5ff65e62e167333ddedf42ffc", + "tag": "fetchFromGitHub", + "owner": "sanel", + "repo": "monroe", + "sha256": "1z1gyknxscvk2qpfcrgzymf9w5m8jcnj525q852b8s6yf5fnffmh", "rev": "7f42a0139a8030407da736ddb0f67132634b70c0" }, "recipe": { "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141111.307", "deps": [] }, "helm-ctest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danlamanna/helm-ctest.git", - "sha256": "3e83ca4371bec877a13ac2f23ba05da267b20039689e39f3e0d69819a932a9a1", + "tag": "fetchFromGitHub", + "owner": "danlamanna", + "repo": "helm-ctest", + "sha256": "18d96alik66nw3rkk7k8740b4rx2bnh3pwn27ahpgj5yf51wm0ry", "rev": "973a138aa8ff4c6a1cd798779e8d0dd80522354d" }, "recipe": { "sha256": "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150823.608", "deps": [ @@ -22567,14 +23948,15 @@ }, "with-namespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/with-namespace.el.git", - "sha256": "437bd6a08124b12a33c22ac6586c1ca6bd31c873b5aa7c7b076b9d2c8743efb0", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "with-namespace.el", + "sha256": "1c7g8f3jr7bb0xxprammfg433gd63in5iiiaq8rjmc94h6hdcys3", "rev": "8ac52da3a09cf46087720e30cf730d00f140cde6" }, "recipe": { "sha256": "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130407.1322", "deps": [ @@ -22584,14 +23966,15 @@ }, "flymake-google-cpplint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senda-akiha/flymake-google-cpplint.git", - "sha256": "feb4a5d21a0bce78929d847359d1671f1e5f67bb74129529c64b545a0981f12f", + "tag": "fetchFromGitHub", + "owner": "senda-akiha", + "repo": "flymake-google-cpplint", + "sha256": "0zldhlvxmk0xcjmj4ns48pp4h3bvijrzs1md69ya7m3dmsbayfrc", "rev": "905d32e84a27f18a78bec455ca930ab1ff9ae31e" }, "recipe": { "sha256": "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140205.725", "deps": [ @@ -22600,14 +23983,15 @@ }, "names": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/names.git", - "sha256": "925745496c19a41a86451a5267446a086585173029f902ccbf86cd9bdebe1a31", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "names", + "sha256": "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh", "rev": "00862c57ae6363ba86d1e5ce138929a1b6d5c7e6" }, "recipe": { "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.604", "deps": [ @@ -22617,14 +24001,15 @@ }, "worf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/worf.git", - "sha256": "59ba8b5c26c4392ff671b7c1d32673da76db075a8751e05820f276fd608d3bf6", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "worf", + "sha256": "0flwch8hsfz1kkb0hg68s71szbvmh7mqih8hj0kwfjdb7alsah8r", "rev": "61a6fc392034c2a588c44fef0a514032cf660e68" }, "recipe": { "sha256": "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.2040", "deps": [ @@ -22635,42 +24020,45 @@ }, "ztree": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fourier/ztree.git", - "sha256": "1180986f07af1b86448fc1fd30b3210a53fc33d3145f9522ea1091b6a500dad4", + "tag": "fetchFromGitHub", + "owner": "fourier", + "repo": "ztree", + "sha256": "1m6s02jvd48hx8i9apqlscrzqlqa46rk1zf1ix28c6xg0xpri00i", "rev": "3d70aefd95404a42e21e53d7139c0b1fba47087b" }, "recipe": { "sha256": "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1412", "deps": [] }, "log4j-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/log4j-mode.git", - "sha256": "73a68146f5c71c639cd6f13842a8704d3009632af69014d1531f30569bacb591", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "log4j-mode", + "sha256": "14dmmjdmcc0zag8i947n59ihjc2df2l44f7issf66767ym3839kk", "rev": "ec3de92cfe60dd3d0de613e9062476196dea0faf" }, "recipe": { "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101016.1022", "deps": [] }, "discover-clj-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/maio/discover-clj-refactor.el.git", - "sha256": "c4bd46d2f22f37ea27e5233d88260737d5f786090e0a2cf6af1fdd521c2a4f50", + "tag": "fetchFromGitHub", + "owner": "maio", + "repo": "discover-clj-refactor.el", + "sha256": "0l2g58f55p8zmzv2q2hf163ggm9p0wk8hg93wlkyldrgyb94dgf4", "rev": "3fbd5c1162739e606d7cf5d4f5d7426547d99647" }, "recipe": { "sha256": "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150328.959", "deps": [ @@ -22680,28 +24068,30 @@ }, "faceup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/faceup.git", - "sha256": "4a727309149603c5e7d44407e254acca397ecc8fbca1ded249dbbaab9a97556a", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "faceup", + "sha256": "0sjmjydapfnv979dx8dwiz67wffamiaf41s4skkwa0wn2h4p6wja", "rev": "70fa6be83768adf78f20425d0d76fe809dc44d79" }, "recipe": { "sha256": "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150215.1548", "deps": [] }, "repl-toggle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomterl/repl-toggle.git", - "sha256": "f1afa0c6f8f575dccd6c6829014bc52b542289ee9478a3c0bb94540b72659ff0", + "tag": "fetchFromGitHub", + "owner": "tomterl", + "repo": "repl-toggle", + "sha256": "0lx9zbn9zvr50i8x5vpd5cr22c2v27ln2v89dmn0shcdx54m454l", "rev": "903791e3e34f67bca64c47dc2b91e612d3bad09c" }, "recipe": { "sha256": "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140501.731", "deps": [ @@ -22710,14 +24100,15 @@ }, "gnus-x-gm-raw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/gnus-x-gm-raw.git", - "sha256": "346648168091866ce0f7a8250006be79c05a45ee735dfd546185262afa316ec4", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "gnus-x-gm-raw", + "sha256": "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril", "rev": "978bdfcecc8844465b71641c2e909fcdc66b22be" }, "recipe": { "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140610.231", "deps": [ @@ -22727,16 +24118,17 @@ }, "noxml-fold": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paddymcall/noXML-fold.git", - "sha256": "80cdb634e2d4974ed7e20df6cb4d68b049e6e9592ba3ea3a6313dff3422559e3", - "rev": "48d55c03bb1f92fed4983b7a019926bae6aa56f7" + "tag": "fetchFromGitHub", + "owner": "paddymcall", + "repo": "noXML-fold", + "sha256": "0jahr1380919p272srym1pp16ifdz69fn1m45ppglm54q4a741d8", + "rev": "feecc06b1136c1ddbabcdc37287f1ef26f1282fc" }, "recipe": { "sha256": "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.707", + "version": "20151216.1021", "deps": [] }, "dropdown-list": { @@ -22747,21 +24139,22 @@ }, "recipe": { "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120329.1136", "deps": [] }, "look-dired": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/look-dired.git", - "sha256": "92b15024ebe127d55bbcea7b5afebbc0a5069ac0df5b3b161e5c3472995c3771", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "look-dired", + "sha256": "0w9pbjcp4d2w3qb3nnyzq2d0d9f0pgz5lyzapidxa9z1xcj51ccj", "rev": "5b2afe910a904d13674103f5264c6bcdbb9f9fb2" }, "recipe": { "sha256": "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.1956", "deps": [ @@ -22770,14 +24163,15 @@ }, "salt-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/beardedprojamz/salt-mode.git", - "sha256": "5d933495346eeb087807d6333b2b51fec5283a17cdbdfa7d8bf7abeb5615fcf1", + "tag": "fetchFromGitHub", + "owner": "beardedprojamz", + "repo": "salt-mode", + "sha256": "1hl227bmjch0vq7n47mwydkyxnd6wkbz9klk3c4398qmc2qxm5kn", "rev": "c9147cb78680cc34e6fcff3968c336460a9090a4" }, "recipe": { "sha256": "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150904.1313", "deps": [ @@ -22788,14 +24182,15 @@ }, "wand": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cmpitg/wand.git", - "sha256": "31c30b26270f4c61cd3d5cf7fd9a6c3a9da312ee9f40f01cdf606ac1b4d6f825", + "tag": "fetchFromGitHub", + "owner": "cmpitg", + "repo": "wand", + "sha256": "09gqsssc2sk0vwfg0h4zxq9a779sdjdgvxsw7p6n2k0g4wk0phri", "rev": "da6284ab75c3afa1275420faa9934037052e2967" }, "recipe": { "sha256": "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141104.1845", "deps": [ @@ -22804,14 +24199,15 @@ }, "docker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/docker.el.git", - "sha256": "dd8cbf88ac190650b2a5a0dace15fc8d56351c94a93a42604a87d63443366b1b", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "docker.el", + "sha256": "06vb6r1k9ml799h44fm9jhf3amldzhawxnm0lnr501hrmj4bz36x", "rev": "77f646cc10909403a945d188cf9d81abd3bfc2a0" }, "recipe": { "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.413", "deps": [ @@ -22829,21 +24225,22 @@ }, "recipe": { "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] }, "rpn-calc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/rpn-calc.git", - "sha256": "2807488ab372afef5e15092750a4e8cee09fe67a731ee3857e57db06e1e2b844", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "rpn-calc", + "sha256": "0i5qwbhhdnspgs2y67kkgbk9zq6fx2j509q92mgfzbvjnf54h1r8", "rev": "ed202e9eb59c4ace74b4703174f7bc7fa7e2d594" }, "recipe": { "sha256": "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150302.734", "deps": [ @@ -22852,14 +24249,15 @@ }, "auto-package-update": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rranelli/auto-package-update.el.git", - "sha256": "77fb8ba9f88c9e3fe508428e122e18a2521c372ffdbdaf61f91a20f5aee83a76", + "tag": "fetchFromGitHub", + "owner": "rranelli", + "repo": "auto-package-update.el", + "sha256": "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2", "rev": "cdef79f9fc6f8347fdd05664978fb9a948ea0410" }, "recipe": { "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151026.111", "deps": [ @@ -22869,28 +24267,30 @@ }, "map-progress": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/map-progress.git", - "sha256": "e13f2d39788c85c3663b1e829f48ff1393b80595421974e94a05e6cc0f5ca65d", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "map-progress", + "sha256": "0pd6bh7wrrh59blp86a2jl2vi4qkzx49z0hy7dkc71ccg0wjsgz1", "rev": "3167eb218510953fb97e7d50948a625eaa3f0005" }, "recipe": { "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140310.1632", "deps": [] }, "eno": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/enoson/eno.el.git", - "sha256": "462f59552505a6ba4e92db160fc711b263a0d556a67500a96dd917e57474f897", + "tag": "fetchFromGitHub", + "owner": "enoson", + "repo": "eno.el", + "sha256": "15zqfisfa5yrdnlh0xd6avas0qxj273hy5nvj97bm9h54mamjbs6", "rev": "c379bf040bab10e52aba44140e9aa1b566cdebb6" }, "recipe": { "sha256": "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150722.726", "deps": [ @@ -22900,14 +24300,15 @@ }, "helm-idris": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/helm-idris.git", - "sha256": "603b3640410de1485d85bc60b3998a48aff8559b99f3cc01ab536a8a00cd585b", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "helm-idris", + "sha256": "0128nrhwyzslzl0l7wcjxn3dlx3h1sjmwnbbnp2fj4bjk7chc59q", "rev": "a2f45d6817974f318b55ad9b7fd19d5df132d47e" }, "recipe": { "sha256": "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141202.1157", "deps": [ @@ -22917,14 +24318,15 @@ }, "omni-log": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-log.el.git", - "sha256": "57662f117ebccd55060deec8323f1b2b57d9ab82c3ff22f6f90d9136ccfbac5a", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-log.el", + "sha256": "1nvgh9wvgswcs3r958b579rsx540xrhlnafc6cmcd63z6yck19w0", "rev": "e5a8ee7d63eb1e745b37ba4e3e71c5ea025e2342" }, "recipe": { "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150604.1238", "deps": [ @@ -22936,14 +24338,15 @@ }, "zombie-trellys-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/zombie-trellys-mode.git", - "sha256": "32166180198f2e9055e44ee1b9119329266dcf02819c9c573e4fdf59de35547e", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "zombie-trellys-mode", + "sha256": "04m53hzk5n9vxh0gxi8jzpdhsdjlxnvz7hmsisr3bs99v603ha01", "rev": "7f0c45fdda3a44c3b6d1762d116abb1421b8fba2" }, "recipe": { "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150304.848", "deps": [ @@ -22954,14 +24357,15 @@ }, "ob-mongo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/ob-mongo.git", - "sha256": "1ca5426d8bfe5c5a2774c0dcef89f914103486efb6b43c5acd48aebf2948cb0e", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "ob-mongo", + "sha256": "0qibnn908a59jyfslsnpjanbm85f8xw9zywsqsh37nv27ncbx0hr", "rev": "7eb5524d9c106945b371f9fbb9f1176f6e6f9b13" }, "recipe": { "sha256": "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130718.932", "deps": [ @@ -22970,14 +24374,15 @@ }, "karma": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/karma.el.git", - "sha256": "0099c9f61844c2bd023e7d59355bb15434766387cface7a8b112a11cd712e35a", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "karma.el", + "sha256": "1xcs15j555cgp2k4k9vl5sy2lrffbk0ma2fv60hlxwirqyw4jcdy", "rev": "07d5ba0fd669b909efdf02ffd0c1f45e6136edc4" }, "recipe": { "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150120.2358", "deps": [ @@ -22994,7 +24399,7 @@ }, "recipe": { "sha256": "1v46ck9imffhrmx6s4c3kbi5g5spf2mn2axy5nfpn7q8sc8bf0s3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150217.2028", "deps": [ @@ -23004,14 +24409,15 @@ }, "imenu-anywhere": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vitoshka/imenu-anywhere.git", - "sha256": "d16c1617e86af7514b1b59cd2eb36d84e668cfc16fbdf25f4f6a0a37d62e24d6", + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "imenu-anywhere", + "sha256": "1mi45vb3f2ka9xgz5gbgq77nirl4dnrjxkar3d5m3xvax0bicv6i", "rev": "b486c1e80c667504b243a84351cc8751710248e9" }, "recipe": { "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1327", "deps": [ @@ -23020,56 +24426,60 @@ }, "js3-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thomblake/js3-mode.git", - "sha256": "9f4ab387bcaec873b657d9ee4ae79b2288d8a6d859994bc50ade172911f4687a", + "tag": "fetchFromGitHub", + "owner": "thomblake", + "repo": "js3-mode", + "sha256": "137lypg6jwsisn2g5h0wiqh57icj46zv3albxjf2q1k5isszhy1l", "rev": "d0767afbb4fc8019f9e90e978937036d3bddbc5e" }, "recipe": { "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150902.1149", "deps": [] }, "scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ieure/scratch-el.git", - "sha256": "665d0f7f9a642974b73046bc4fedf279bc70967e54657288206424a48b5b824e", + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "scratch-el", + "sha256": "0ykhr24vpx3byn2n346nqqvmwcg34hk22s3lpdx7lpnkrn5z41aq", "rev": "54e31e81cd239e1fd1b3c6a20ff426029bf9aaf5" }, "recipe": { "sha256": "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120830.1228", "deps": [] }, "tangotango-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juba/color-theme-tangotango.git", - "sha256": "0d3d886a5978d1fadec76fc3e18d7bc872daab25cedcd5dcaf9390e59ef06203", + "tag": "fetchFromGitHub", + "owner": "juba", + "repo": "color-theme-tangotango", + "sha256": "00v2y2gfb44kmzfdbp6f4nmxlwn8gf6y3hvgqzggmlbqb5m8hg8d", "rev": "92a94756080577c0446b2fc7f06d43d7b76b2005" }, "recipe": { "sha256": "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.304", "deps": [] }, "imgur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/imgur.el.git", - "sha256": "8a6cb0a15924fdec70ad27d768e582835de48639905349b6eeb25685c99a3e9f", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "imgur.el", + "sha256": "0nzgfj083im8lc62ifgsh1pmbw0j9wivimjgih7k6ny3jgw834rs", "rev": "ed952eb8f556c6fc0d982e2a689083504558cffb" }, "recipe": { "sha256": "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120307.425", "deps": [ @@ -23078,14 +24488,15 @@ }, "auto-auto-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/auto-auto-indent.git", - "sha256": "b60a7b4ed0abc26610ea4f3c8602933924e295eaba54ef5fb3a234047d60c20b", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "auto-auto-indent", + "sha256": "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7", "rev": "0139378577f936d34b20276af6f022fb457af490" }, "recipe": { "sha256": "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131106.1303", "deps": [ @@ -23095,30 +24506,32 @@ }, "aproject": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vietor/aproject.git", - "sha256": "21f0f2e7073585f66126223f5da5ba9779d78721e207263ad6144d8742e3d8da", + "tag": "fetchFromGitHub", + "owner": "vietor", + "repo": "aproject", + "sha256": "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc", "rev": "3c7d23c341862dfd77fd0a64775df12ddb44ab54" }, "recipe": { "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150605.406", "deps": [] }, "helm-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/projectile.git", - "sha256": "34999000476e13b4b4a88bbd2f56104836b73e50245a0d82a30e4ac8d8e1d0a3", - "rev": "5773d28036c81f44468da58402a32463b278ee1f" + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "01mwciy9bacx5vkxckp0hsxx0s00qss48kkcc2rhlypdcmmawvn7", + "rev": "05058b1c73799b07003ad0978f5ba9a231783be4" }, "recipe": { "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151021.448", + "version": "20151217.49", "deps": [ "cl-lib", "dash", @@ -23128,14 +24541,15 @@ }, "ahk-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ralesi/ahk-mode.git", - "sha256": "bd1a98dc5da3be7ed1075fc70e8e13f8994e9be970535856afbf1ba635d04a88", + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "ahk-mode", + "sha256": "122as0ssc6xzmxb5hlvhx6dlx6gq2f70xisz0z8pxgm3bpf9h6mx", "rev": "e08a1b467d42b9d5e719c39407908152011b4573" }, "recipe": { "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.1737", "deps": [ @@ -23145,14 +24559,15 @@ }, "requirejs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joeheyming/requirejs-emacs.git", - "sha256": "83cd75fc1826900e3a5fc5e6aedfb9e1495f2f200c68d60bcbbefb28c768d36f", + "tag": "fetchFromGitHub", + "owner": "joeheyming", + "repo": "requirejs-emacs", + "sha256": "1bfj2zjn3x41jal6c136wnwkgmag27bmrwbfwdylafc7qqk6dflv", "rev": "4ea2a5fcbc76e4cbb6a7461e6f05f019b75865b1" }, "recipe": { "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.119", "deps": [ @@ -23165,14 +24580,15 @@ }, "json-rpc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elisp-json-rpc.git", - "sha256": "445167eb6645cf86afe49be836bc59d2f564f1c903b5336479bef2422252794d", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elisp-json-rpc", + "sha256": "0xgrb0zfxyfmfnvx1l7ca99lzl6f2qyal798rcra45167c0j0vbb", "rev": "a83189b126d8d3d7a856008a5b6ad267b2fcc126" }, "recipe": { "sha256": "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.1601", "deps": [ @@ -23182,42 +24598,45 @@ }, "gnus-alias": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hexmode/gnus-alias.git", - "sha256": "e46aeca201e0217743a8f307b6b40084163c904df1fad07a77736cafae4547c4", + "tag": "fetchFromGitHub", + "owner": "hexmode", + "repo": "gnus-alias", + "sha256": "1i278npayv3kfxxd1ypi9n83q5l402sbc1zkm11pf8g006ifqsp4", "rev": "9447d3ccb4c0e75d0468899cccff7aa249657bac" }, "recipe": { "sha256": "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.1942", "deps": [] }, "pastehub": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiyoka/pastehub.git", - "sha256": "4133a47bbabbd8e15a42f8182997f4a6e00003d8cc80adfad0d6ca5f166fc516", + "tag": "fetchFromGitHub", + "owner": "kiyoka", + "repo": "pastehub", + "sha256": "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n", "rev": "37b045c67659c078f1517d0fbd5282dab58dca23" }, "recipe": { "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140615.120", "deps": [] }, "nim-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nim-lang/nim-mode.git", - "sha256": "b604f34fecd885a638dca97e7d2c2ea3f995c995b3e10cdce2e57209e48835a1", + "tag": "fetchFromGitHub", + "owner": "nim-lang", + "repo": "nim-mode", + "sha256": "00s8c4a5qnfm0h6zx26f1m0syq7gii7n45nl83y71yaccdw0syls", "rev": "1f0a6cdd39460c1d59da79aa8d4b132753448c56" }, "recipe": { "sha256": "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.225", "deps": [ @@ -23227,14 +24646,15 @@ }, "elfeed-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remyhonig/elfeed-org.git", - "sha256": "b2485ccb7afde0778449ebcf4ca58df7761ccd52fe9d18115a6da0eae1d2e832", + "tag": "fetchFromGitHub", + "owner": "remyhonig", + "repo": "elfeed-org", + "sha256": "0cp8sbhym83db88ii7gyab6iqxppinjlrkzb9627gq7xgb5mqj5j", "rev": "e5206bc983d04c68310181da83147908682de295" }, "recipe": { "sha256": "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151003.531", "deps": [ @@ -23246,28 +24666,30 @@ }, "watch-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mjsteger/watch-buffer.git", - "sha256": "221f7dd8dab0571b8bfcea551f09fb35215736f4b8c7e2e6011aa9da6db30445", + "tag": "fetchFromGitHub", + "owner": "mjsteger", + "repo": "watch-buffer", + "sha256": "0i84ndnxma8s07kf5ixqyhv5f89mzc4iymgazj5inmxhvbc7s7r2", "rev": "761fd7252e6d7bf5148283c2a7ee935f087d9427" }, "recipe": { "sha256": "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120331.1544", "deps": [] }, "langtool": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-langtool.git", - "sha256": "897ac3e506ca90af0bd99a72d51171982a85dfc5cd6d596f92d0742dfafd746a", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-langtool", + "sha256": "16wmc89jnn7qqcqw6702c9ccmwpb8pkxasa17ikmmmnggmg50lfh", "rev": "443b3804f9e33e6d96ee8e15ddede7f152ece378" }, "recipe": { "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150917.613", "deps": [ @@ -23276,28 +24698,30 @@ }, "toml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dryman/toml-mode.el.git", - "sha256": "e77eec7f3ff5562483f874c37a50f475f4664766207f529a316ceb6e89ff23df", + "tag": "fetchFromGitHub", + "owner": "dryman", + "repo": "toml-mode.el", + "sha256": "1w9vkh6c4g80zykcy77k3r0bdc99mq8yh58bqkyd6gsr7pnp16gj", "rev": "afd98423773c2b9578fc5b2b46a43b5f5ecf7e6b" }, "recipe": { "sha256": "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150818.320", "deps": [] }, "ac-skk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/ac-skk.el.git", - "sha256": "95cba9f0f0955e4e3f5f241e09da2fda627f9b43f46aee0beb2975f29d047fdb", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ac-skk.el", + "sha256": "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm", "rev": "d25a265930430d080329789fb253d786c01dfa24" }, "recipe": { "sha256": "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141229.1919", "deps": [ @@ -23315,21 +24739,22 @@ }, "recipe": { "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130901.935", "deps": [] }, "rbt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joeheyming/rbt.el.git", - "sha256": "f156109e6dccfddc630eb6515f1ad901aa63c5f3c1c12c02828a84f3207e4246", + "tag": "fetchFromGitHub", + "owner": "joeheyming", + "repo": "rbt.el", + "sha256": "0ij2gqhg714ah812rhf1yg2n7ah1v4d5yldn1rixrzfcdng10mpi", "rev": "47cf236c732e9c5f468fb24c6a1c2db69a133797" }, "recipe": { "sha256": "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.2255", "deps": [ @@ -23338,14 +24763,15 @@ }, "uzumaki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/geyslan/uzumaki.git", - "sha256": "7dc44b70cba824db0d2e37869d0cc5dca541420103a2cdffa2ce71844c45a13b", + "tag": "fetchFromGitHub", + "owner": "geyslan", + "repo": "uzumaki", + "sha256": "0fx18m688wfflbzwv8h3051439fwql69v1ip5q6xn958rdq4pi3x", "rev": "afae141588ef9407ff86ce1ae9a0f1860843c4a4" }, "recipe": { "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150119.1906", "deps": [ @@ -23361,49 +24787,52 @@ }, "recipe": { "sha256": "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120808.2207", "deps": [] }, "creole-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/creole-mode.git", - "sha256": "1068bfca7c74693cbff7ae60bc3749bb73f3e31a6c892aa10a6d27d40be75749", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "creole-mode", + "sha256": "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h", "rev": "b5e79b2ec5f19fb5aacf689b5febc3e0b61515c4" }, "recipe": { "sha256": "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130721.1950", "deps": [] }, "fvwm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theBlackDragon/fvwm-mode.git", - "sha256": "458c06cb163075419de02d62f2d09649a848a2f577be635f70554ce23705cc84", + "tag": "fetchFromGitHub", + "owner": "theBlackDragon", + "repo": "fvwm-mode", + "sha256": "0w2kqmx38ji5273mzhn9sp4r6vn7jfwb5qpsf2w8d46avpf8rj5i", "rev": "cfd14546b6905806e0f2ad3df58b08de2401be3c" }, "recipe": { "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141105.2236", "deps": [] }, "factlog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/factlog.git", - "sha256": "f53b69b33f9e9818256b4d0aff902ccbd95ad5e09e5e1e072897641a6c94f8e4", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "factlog", + "sha256": "19zm9my7fl1r3q48axjv2f8x9hcjk6qah4y4r92b90bzfmcdc30y", "rev": "6503d77ea882c995b051d22e72db336fb28770fc" }, "recipe": { "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130209.1940", "deps": [ @@ -23412,42 +24841,45 @@ }, "erc-terminal-notifier": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/julienXX/erc-terminal-notifier.el.git", - "sha256": "e018a041fec73b136ac4799c9a64143c9421be443a741ab0fbc00838355ed831", + "tag": "fetchFromGitHub", + "owner": "julienXX", + "repo": "erc-terminal-notifier.el", + "sha256": "0cfqbqskh260zfq1lx1s8jz2351w2ij9m73rqim16fy7zr0s0670", "rev": "a3dacb935845e4a20031212bbd82b2170f68d2a8" }, "recipe": { "sha256": "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140115.424", "deps": [] }, "calmer-forest-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/caldwell/calmer-forest-theme.git", - "sha256": "30b58ec531de2fc59b97313364cf5cc209da1b454e7b9935b5988087c727de58", + "tag": "fetchFromGitHub", + "owner": "caldwell", + "repo": "calmer-forest-theme", + "sha256": "0n6y4z3qg04qnlsrjysf8ldxl2f2bk7n8crijydwabyy672qxd9h", "rev": "87ba7bae389084d13fe3bc34e0c923017eda6ba0" }, "recipe": { "sha256": "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130926.10", "deps": [] }, "kaesar-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "b9bf421152125c46447ba4f4e8700dd13de079572150558294b4c29b4f3c82bd", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "1maab8iaf2wcjj02ibl21jlfzmi9gmcl167cgdlwj50wkig74s23", "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" }, "recipe": { "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150130.1004", "deps": [ @@ -23456,28 +24888,30 @@ }, "purty-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hackscience/purty-mode.git", - "sha256": "61b352c16c9b4206ec9f5eddcf2f447aea9a716685108d9549e13361ceeea262", + "tag": "fetchFromGitHub", + "owner": "hackscience", + "repo": "purty-mode", + "sha256": "0qm2xv762cz196aqs445crqrmsks8hpwzpaykzn0chlvdk0m5cv1", "rev": "8eef77317a3bab07ade212353a50fbd3f20f365a" }, "recipe": { "sha256": "1ackqv95sdphbsjwydbc4dmdzwpaj74v329f55zcwa8hn3li9d5m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131004.1759", "deps": [] }, "idea-darkula-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fourier/idea-darkula-theme.git", - "sha256": "01e33e7f05f961862bb185332db703ee8a7f59454f17ecdfbc394ecfb8e1ac44", + "tag": "fetchFromGitHub", + "owner": "fourier", + "repo": "idea-darkula-theme", + "sha256": "0i5cw6wcykirpkgyq5sg8mcpz2pf0fvjscw5n4mqcqgr0mzkxqq1", "rev": "6ee45ec8a97d9afadc4d8f96d838b365c36d5f2d" }, "recipe": { "sha256": "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.1310", "deps": [ @@ -23486,14 +24920,15 @@ }, "boon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jyp/boon.git", - "sha256": "c734aad225dc9ce1a68010e2f1584a3b31c21cc69cdeb3c65a96390130b7de86", + "tag": "fetchFromGitHub", + "owner": "jyp", + "repo": "boon", + "sha256": "1apxgj14hgfpz6hjp3384yjf2zrkv4pcncf2zklijs668igvaskq", "rev": "82458a944e9cf3e4c959e63ebad09312aafe6d2c" }, "recipe": { "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1533", "deps": [ @@ -23504,42 +24939,45 @@ }, "inflections": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/jump.el.git", - "sha256": "20e006d93a1db36158963a4441c2b671e49d01e22eaa1790c05ca10d5c9837aa", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "jump.el", + "sha256": "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5", "rev": "56cec33dd98231a95faa26dd4c0612885d923f78" }, "recipe": { "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121016.357", "deps": [] }, "loccur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fourier/loccur.git", - "sha256": "207441b3076098eac55a0bfbb6b8d1a76b43de100a0213ee9a3bd840218c2389", + "tag": "fetchFromGitHub", + "owner": "fourier", + "repo": "loccur", + "sha256": "1293ihhl1n1vkbp160ha23g46sx7s6wbdyqbbb2ym6300yrl2x10", "rev": "5e2f33943a18c0b1ae984c24c8000bbaed737067" }, "recipe": { "sha256": "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150611.1237", "deps": [] }, "interval-tree": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/interval-tree.git", - "sha256": "63ddb334b6ae105428fa337d134801d55084c47bd2a9f8a39a30b10c7bb2163b", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "interval-tree", + "sha256": "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3", "rev": "301302f480617091cf3ab6989caac385d52543dc" }, "recipe": { "sha256": "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130325.907", "deps": [ @@ -23554,7 +24992,7 @@ }, "recipe": { "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150112.1454", "deps": [] @@ -23568,63 +25006,67 @@ }, "recipe": { "sha256": "1r9mh7756jgf1hdnprci988z07xxh2jvh8d0c1h5rmxmldlbx8az", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120814.312", "deps": [] }, "color-theme-sanityinc-solarized": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/color-theme-sanityinc-solarized.git", - "sha256": "f6f29bbaef71f0c1ca13ef8e6b1d074da7f61f058bfd04c0b0133e03de3d81b9", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "color-theme-sanityinc-solarized", + "sha256": "07703v8xyia1vx9s636aaql99i29a4r5v9z0lvaypixgsidshx10", "rev": "14beb86aeb5b17451980f192bad72d7edb17321c" }, "recipe": { "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150803.1620", "deps": [] }, "ido-yes-or-no": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/ido-yes-or-no.git", - "sha256": "f43265b7f5db4fb84078fbca0d18979e5fbfc65903fea93daef298f10748ef0d", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-yes-or-no", + "sha256": "0zqjmi1pbvpby84g1nsrmwcv7w5k0nl3hmkqj0fvhdsmayxqc6j8", "rev": "a9de5731b64f888be38073773c3d72b19c61ed4f" }, "recipe": { "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140625.2306", "deps": [] }, "mode-line-debug": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/mode-line-debug.git", - "sha256": "410383b7838054b573f79c318a38893960c80b7225a46e4d3edb684bad4d7cd2", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "mode-line-debug", + "sha256": "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1", "rev": "da44422eeb6a1f055b4ec2f822962c5162fce001" }, "recipe": { "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150307.712", "deps": [] }, "helm-mode-manager": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/helm-mode-manager.git", - "sha256": "902bafc45553c4d39c9451716639f56d359c929c306290aa21da6c6b37597dd1", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "helm-mode-manager", + "sha256": "1lbxb4vnnv6s46m90qihkj99qdbdylwncwaijjfd7i2kap2ayawh", "rev": "5d9c3ca4f8205d07ff4e03c4c3e88f596751c1fc" }, "recipe": { "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.338", "deps": [ @@ -23633,28 +25075,30 @@ }, "python-docstring": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/glyph/python-docstring-mode.git", - "sha256": "3bfb79130f6c629199e960f49ac065c9cf405ef6b767e99a3e9c7971420a40a8", + "tag": "fetchFromGitHub", + "owner": "glyph", + "repo": "python-docstring-mode", + "sha256": "1a2019172ycw7sdfjrxpyrg41ky9cp09mx30x6cr2qkc1w9pkyrv", "rev": "263879fb339b18ee55d9463697d6f0a73171ee78" }, "recipe": { "sha256": "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150907.1504", "deps": [] }, "helm-aws": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/helm-aws.git", - "sha256": "4e1d9eeb86b2d507d4a50e65683353911baa6974dae1ec970bcc3d0352bedeae", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "helm-aws", + "sha256": "1bnypr906gfc1fbyrqfsfilsl6wiacrnhr8flpa0gmdjhvmrw7af", "rev": "512fb7edcdc6c65303b9641bfc737f836939e5e9" }, "recipe": { "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.333", "deps": [ @@ -23665,28 +25109,30 @@ }, "ido-springboard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/springboard.git", - "sha256": "c8b73eb2e39d981e838cbce46c71a57fa7f000eeb77c893d865f1a03ab2afe92", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "springboard", + "sha256": "14py5amh66jzhqyqjz5pxq0g19vzlmqnrr5wij1ix64xwfr3xdy8", "rev": "d12119d9dd2b0b64f0af0ba82c273326c8c12268" }, "recipe": { "sha256": "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150505.1211", "deps": [] }, "autotetris-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/autotetris-mode.git", - "sha256": "ac31fa944979ff599d7ad3ac57dd0eec643b4b11febd36a871f25523c0d2f292", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "autotetris-mode", + "sha256": "14pjsb026mgjf6l3dggy255knr7c1vfmgb6kgafmkzvr96aglcdc", "rev": "7d348d33829bc89ddbd2b4d5cfe5073c3b0cbaaa" }, "recipe": { "sha256": "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141114.1046", "deps": [ @@ -23695,14 +25141,15 @@ }, "pcache": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/pcache.git", - "sha256": "48b9b58d79fee288baff3d2930174a11c0aff83a2edb20d2de3047da1ac26b75", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "pcache", + "sha256": "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8", "rev": "4b090f46182fd2ed1f44905dc04acc3121bcf622" }, "recipe": { "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.839", "deps": [ @@ -23717,35 +25164,37 @@ }, "recipe": { "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1609", "deps": [] }, "lolcode-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bodil/lolcode-mode.git", - "sha256": "6b12ce2d888832d751a412af71b578ac9bfc4ce29ef7b6b30a9fda5ab97fce5f", + "tag": "fetchFromGitHub", + "owner": "bodil", + "repo": "lolcode-mode", + "sha256": "0pyfgywmmnlz1arvdxwyw96gr6xcg2sp3bqjli8xfcl8i0nww4kb", "rev": "1914f1ba87587ecf5f175eeb2144c28e9f039317" }, "recipe": { "sha256": "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20111002.347", "deps": [] }, "go-playground": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/grafov/go-playground.git", - "sha256": "0f97d77506bf7653d64e13dd653163b94dae6f433233b8d490b33004ccec422b", + "tag": "fetchFromGitHub", + "owner": "grafov", + "repo": "go-playground", + "sha256": "1hpxvp0slqafbxhkashnmfjssb0ccjq67x01b4p7gznf6rwji166", "rev": "6de119fe6d1ecb8db2dad1f70831561695c5da58" }, "recipe": { "sha256": "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.1610", "deps": [ @@ -23756,42 +25205,45 @@ }, "cache": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/cache.git", - "sha256": "7e5199dc732711d3bdf0f41d96fafbbcab812fc51bbe4f8bacf3ed4dd06ce6c2", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "cache", + "sha256": "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby", "rev": "7499586b6c8224df9f5c5bc4dec96b008258d580" }, "recipe": { "sha256": "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20111019.1800", "deps": [] }, "flymake-go": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/robert-zaremba/flymake-go.git", - "sha256": "629685d2914fc63cc9de345723c31eb441ec778402f3b4c8cad44c445b9ee2df", + "tag": "fetchFromGitHub", + "owner": "robert-zaremba", + "repo": "flymake-go", + "sha256": "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q", "rev": "ae83761aa908c1a50ff34af04f00dcc46bca2ce9" }, "recipe": { "sha256": "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150714.233", "deps": [] }, "reverse-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-reverse-theme.git", - "sha256": "ae3c2830db398454b5778a56c4c19ae6bbf14388e20a55d999cb235d25e45e00", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-reverse-theme", + "sha256": "002ywhjms8ybk7cma2p2i11z3fz6kb0w8mlafysm911rvcq2hg5f", "rev": "8319d0d5342890a3530ffa4daafdb7c35feda1ca" }, "recipe": { "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141204.1945", "deps": [] @@ -23804,21 +25256,22 @@ }, "recipe": { "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.1120", "deps": [] }, "perspective": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/perspective-el.git", - "sha256": "ad6e6f38a86c70744c602c3898913619a834df8a987805e71b2a80b706f555aa", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "perspective-el", + "sha256": "1ajmyl3bg01a3gkhay4qibgk9a0r6s8rhf1cc1678w3cm0w6yvmd", "rev": "b6f4f05951d3f0d16a503bf462f136c689ede4df" }, "recipe": { "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1654", "deps": [ @@ -23827,28 +25280,30 @@ }, "loop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/loop.el.git", - "sha256": "97d32ab49d2cee1411147d70752b988b30bdafd0de12a498bc76d1a2cfa5c91d", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "loop.el", + "sha256": "07f9lp7s5lbnpjca84nys2pvsc4bk0mpaw3x2h8i9vickns2mlwp", "rev": "186332dfd3f63ab79b53c4e26b46ef75713b308e" }, "recipe": { "sha256": "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130309.1005", "deps": [] }, "offlineimap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jd/offlineimap.el.git", - "sha256": "58fb8303368357f0cd352162b804b039ee04a3ba12a4be87f1f43c3a917c59ae", + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "offlineimap.el", + "sha256": "1bjrgj8klg7ly63vx90jpaih9virn02bhqi16p6z0mw36q1q7ysq", "rev": "cc3e067e6237a1eb7b21c575a41683b1febb47f1" }, "recipe": { "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150916.658", "deps": [] @@ -23862,21 +25317,22 @@ }, "recipe": { "sha256": "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.1236", "deps": [] }, "es-lib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/es-lib.git", - "sha256": "212b21084ced61f6990b77c02ac3ee148811aefe120163405cea1a482cfa7d46", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "es-lib", + "sha256": "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b", "rev": "753b27363e39c10edc9e4e452bdbbbe4d190df4a" }, "recipe": { "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141111.1230", "deps": [ @@ -23885,14 +25341,15 @@ }, "php-eldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/php-eldoc.git", - "sha256": "115c410563b7b864eb77f3855ea37510d5e46717da1de6bc68c485e4b6afa642", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "php-eldoc", + "sha256": "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i", "rev": "df05064146b884d9081e10657e32dc480f070cfe" }, "recipe": { "sha256": "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140202.1341", "deps": [] @@ -23905,35 +25362,37 @@ }, "recipe": { "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141009.939", "deps": [] }, "how-many-lines-in-project": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaihaosw/how-many-lines-in-project.git", - "sha256": "92ab293bdce9958e98d24efe0fb47a1a11ccb5c796cdbc41b16737e1655bcf6f", + "tag": "fetchFromGitHub", + "owner": "kaihaosw", + "repo": "how-many-lines-in-project", + "sha256": "0vygbdjy2dv7n50vrkcnqyswq48sgas0zzjfsac8x5g9vhxjkawj", "rev": "8a37ef885d004fe2ce231bfe05ed4867c6192d9b" }, "recipe": { "sha256": "145zmfmsxcbmfh9s0mvxxgfh1d51q66396zc29k1c0hw94ffhkdd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140806.2342", "deps": [] }, "helm-fuzzier": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/EphramPerdition/helm-fuzzier.git", - "sha256": "b7039f550161690ebc2821c6b2c37dd2bffa9773c74c9f38a9b957890401daca", + "tag": "fetchFromGitHub", + "owner": "EphramPerdition", + "repo": "helm-fuzzier", + "sha256": "1jns0428jmxrm4w9yk67ffbzmgyjgp1v5ii152y0wsb105ary0xp", "rev": "7e8573de1a639c031056f20c677d13760f2cece0" }, "recipe": { "sha256": "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.838", "deps": [ @@ -23943,56 +25402,60 @@ }, "pt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/pt.el.git", - "sha256": "f3ef5f61987a1d6a4d578d43c5d42e60ed5e56f51ab41f77558de17de14c5a2e", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "pt.el", + "sha256": "0bjs9khpvqcdamvizd0symb5xvb05vacahwdax6nl7bsk1hmzvzk", "rev": "d63d1c2765160683a7b496aa265024fc8e768ae0" }, "recipe": { "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151024.1051", "deps": [] }, "idle-require": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/idle-require.el.git", - "sha256": "09708cff241a71c5553664a3619cf0662185fd40859ee85a804706c4bc3ed390", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "idle-require.el", + "sha256": "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam", "rev": "33592bb098223b4432d7a35a1d65ab83f47c1ec1" }, "recipe": { "sha256": "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090715.1703", "deps": [] }, "save-visited-files": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/save-visited-files.git", - "sha256": "15f22a1895c8f56b515e87be7f0ccea427b7f96f8b9da8e3700921766da05b02", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "save-visited-files", + "sha256": "00jvl1npc889f3isi7cbdzwvf9x4rq67zgl7br8npxf8jlc2mwhm", "rev": "35f8055a3eb0614721b5b755a3902ba008a4d6fa" }, "recipe": { "sha256": "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.1243", "deps": [] }, "colonoscopy-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-colonoscopy-theme.git", - "sha256": "26028c9f5c592ee6e35b60b04ee3d65f003bd80baba676de87ee3ee70e687acc", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-colonoscopy-theme", + "sha256": "1k3sd07ffgpfhzg7d9mb1gc3n02zsvilxc30bgiycbjrbjgqq0i6", "rev": "7b873d7e7e091b71bf4fdd23ded19e261a1e3936" }, "recipe": { "sha256": "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.101", "deps": [ @@ -24001,28 +25464,30 @@ }, "gitignore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/git-modes.git", - "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" }, "recipe": { "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.1248", "deps": [] }, "go-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vibhavp/go-complete.git", - "sha256": "0ac2b1fe18c351fe427ddf818e394e1ba5c7734f5de3dc13529f219519111e5e", + "tag": "fetchFromGitHub", + "owner": "vibhavp", + "repo": "go-complete", + "sha256": "0phy24cra8cza89xrqsx9xrwg98v9qwqx0fzgm1gwlf333zb3hha", "rev": "e39efc356f6e19f17db3f3d2c81f28d38b31a55e" }, "recipe": { "sha256": "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151015.428", "deps": [ @@ -24032,28 +25497,30 @@ }, "ruby-guard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/ruby-guard.git", - "sha256": "41d6e7dfa6e882c5c08096ee53515baeb1f1f1479f400144bcb8f722c45f8d0c", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "ruby-guard", + "sha256": "034dbz225xxqpi202h4z8zqz3cdfbd8m7vlnh30cb0p8lvgygmj1", "rev": "c0bc5c58ad32e1786001aa5cd84f490096a00a4b" }, "recipe": { "sha256": "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141218.2114", "deps": [] }, "dkdo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidkeegan/dkdo.git", - "sha256": "a9907d79c0513774251e2de24421649117fd5d9fc26a61c15aeb8f97b86d7bd9", + "tag": "fetchFromGitHub", + "owner": "davidkeegan", + "repo": "dkdo", + "sha256": "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459", "rev": "fd6bb105e8331fafb6385c5238c988c4c5bbe2da" }, "recipe": { "sha256": "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131110.519", "deps": [ @@ -24063,28 +25530,30 @@ }, "occidental-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/olcai/occidental-theme.git", - "sha256": "a87628ca895d0457704d965181118c419b4fcaa71321f016441c6726008fd45e", + "tag": "fetchFromGitHub", + "owner": "olcai", + "repo": "occidental-theme", + "sha256": "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8", "rev": "fd2db7256d4f78c43d99c3cddb1c39106d479816" }, "recipe": { "sha256": "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130312.1458", "deps": [] }, "helm-flycheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-flycheck.git", - "sha256": "c03934f14e21de5e5326ef337d8fcec93570b374ee7d682080180d24ed00a74c", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-flycheck", + "sha256": "0k5703nj838qh0h6hzgffjrp0df9rs7psczg4r9mxpi19vqk8ff0", "rev": "361d7f0359cea3dd0bfef1647d65ab61c9e52925" }, "recipe": { "sha256": "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140915.952", "deps": [ @@ -24101,21 +25570,22 @@ }, "recipe": { "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1822", "deps": [] }, "fold-dwim-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/fold-dwim-org.git", - "sha256": "bc53fd2557b7e0746c973a17998c202dec4b2b7ee8eea4c1e2646f0ed55c5b92", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "fold-dwim-org", + "sha256": "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw", "rev": "c09bb2b46d65afbd1d0febc6fded7495be7a3037" }, "recipe": { "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131203.751", "deps": [ @@ -24131,21 +25601,22 @@ }, "recipe": { "sha256": "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150414.22", "deps": [] }, "fstar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/FStarLang/fstar-mode.el.git", - "sha256": "16620a7f453ea7e843616a5a80d7f943aaf585893806e9a63434dd0c82a15cf5", + "tag": "fetchFromGitHub", + "owner": "FStarLang", + "repo": "fstar-mode.el", + "sha256": "0qq2gradcibjhn477sljy4lnsmi3pzlac42hpa92c6ca1srh3lc4", "rev": "5e7c3d5a4b5422284d8ef4b69023b1fd71952b81" }, "recipe": { "sha256": "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.953", "deps": [ @@ -24156,14 +25627,15 @@ }, "ac-mozc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/igjit/ac-mozc.git", - "sha256": "0a7acdbe1a589e1ace18cf25d111abc9a5820718c32821cc5afeff527d06f738", + "tag": "fetchFromGitHub", + "owner": "igjit", + "repo": "ac-mozc", + "sha256": "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5", "rev": "4c6c8be4701010d9362184437c0f783e0335c631" }, "recipe": { "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150227.1019", "deps": [ @@ -24174,14 +25646,15 @@ }, "helm-dirset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/helm-dirset.git", - "sha256": "cb93e1bdcc5a786b91bad6859be204190d5ec94414a630d5c4aa9c127d917ba0", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "helm-dirset", + "sha256": "183vj5yi575aqkak19hl8k4mw38r0ki9p1fnpa8nny2srjyy34yb", "rev": "eb30810cd26e1ee73d84a863e6b2667700e9aead" }, "recipe": { "sha256": "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1812", "deps": [ @@ -24193,14 +25666,15 @@ }, "logalimacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/logaling/logalimacs.git", - "sha256": "91f685dfc639ab93c05f75911a598933cb47357d5a1bf1c862d846f58884c6a6", + "tag": "fetchFromGitHub", + "owner": "logaling", + "repo": "logalimacs", + "sha256": "0lj3i9i3mg17xws13gzx8myc6d7djgsj47yx4kaq5hycgkni1p7q", "rev": "8286e39502250fc6c3c6656a7f46a8eee8e9a713" }, "recipe": { "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131021.1329", "deps": [ @@ -24211,14 +25685,15 @@ }, "outlined-elisp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/outlined-elisp-mode.git", - "sha256": "9bf3caf8d3429dc3b1f2ee8b249f11553dc8dc5ce0d8c61487339b3549763035", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "outlined-elisp-mode", + "sha256": "0d9hfr4kb6rkhwacdn70bkfchgam26gj92zfyaqw77a2sgwcmwwv", "rev": "c16cb02b540448919ad148f2be6a41523ee5489c" }, "recipe": { "sha256": "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131108.527", "deps": [] @@ -24232,7 +25707,7 @@ }, "recipe": { "sha256": "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150530.1326", "deps": [ @@ -24241,14 +25716,15 @@ }, "company-nixos-options": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/travisbhartwell/nix-emacs.git", - "sha256": "9c44131bb762df62b5476871bed5a5d344a4db448854145bf06dc839c0910147", + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "0iq1j703kj3dy1di8m488kds8i6klpavwwb88ysn5pv2nwdi6i4w", "rev": "2bd8a5fe792dd6a219934f5295d6116877e45f6c" }, "recipe": { "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.1809", "deps": [ @@ -24259,14 +25735,15 @@ }, "mongo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/mongo-el.git", - "sha256": "1df88bc68af523a683359d22ff2a7133f0abc6f337c8e9425ab00822a163157d", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "mongo-el", + "sha256": "0z8mcfhj425hb91fkj1pyg3apw1kf4mgy8lx6n1sc8zmib38py0x", "rev": "595529ddd70ecb9fab8b11daad2c3929941099d6" }, "recipe": { "sha256": "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.719", "deps": [] @@ -24279,21 +25756,22 @@ }, "recipe": { "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1558", "deps": [] }, "flymake-json": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-json.git", - "sha256": "5d0d8db198c77e2c6bb755888191a41ed44d14275e67af2e583c99d5c9c49319", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-json", + "sha256": "1qn15pr7c07fmki484z5xpqyn8546qb5dr9gcp5n1172wnh2a534", "rev": "36084b67830bdc6c226115ea8287ea88d14b05dd" }, "recipe": { "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130424.157", "deps": [ @@ -24302,14 +25780,15 @@ }, "sass-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/sass-mode.git", - "sha256": "c52c84b6a2a94b30bcb7e871b5cb00311bed3e24f3b1da7144b83eb4f117cb19", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "sass-mode", + "sha256": "0srz4j7484v5h7hmdlyrcl2k27jhy414689wphbbyj63rvg321cm", "rev": "3da9040680880743fddb55a965ecd150d1039df6" }, "recipe": { "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.2212", "deps": [ @@ -24319,14 +25798,15 @@ }, "string-edit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/string-edit.el.git", - "sha256": "5784fcd8af0859c64011866154d428a2d8ff835286928937e1ce522ab738ddc7", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "string-edit.el", + "sha256": "0nx303bdi8mq18isgf79y8f1cjhqnxv3g3ynm09llrg73qr7r4zw", "rev": "c380e20ca169bd4e7117a99edd5711e673168cbe" }, "recipe": { "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1130", "deps": [ @@ -24335,14 +25815,15 @@ }, "flycheck-elm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bsermons/flycheck-elm.git", - "sha256": "67fe08696db12587d868c9383f69a52a8982ee3b9f2c80e12834a326dea8b421", + "tag": "fetchFromGitHub", + "owner": "bsermons", + "repo": "flycheck-elm", + "sha256": "08dlm3g2d8rl53hq0b4z7gp8529almlkyf69d3c8f9didmlhizk7", "rev": "d1395ce80dcad5ed8931b4901471a8980fd3f2b8" }, "recipe": { "sha256": "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.924", "deps": [ @@ -24358,35 +25839,37 @@ }, "recipe": { "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150527.1048", "deps": [] }, "proc-net": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-proc-net.git", - "sha256": "2be372ba689f7cfa25b05cc09959b20c3362198e4e2c1711600d71d3002c9e5a", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-proc-net", + "sha256": "0nly5h0d6w8dc08ifb2fiqcn4cqcn9crkh2wn0jzlz4zd2x75qrb", "rev": "10861112a1f3994c8e6374d6c5bb5d734cfeaf73" }, "recipe": { "sha256": "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130321.1912", "deps": [] }, "phi-grep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/phi-grep.git", - "sha256": "ddf32d0b7c2aa9782063a9bcd2f07aab69e4dd6a7ffe89de9a25ca492eec90e5", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-grep", + "sha256": "1rchxhp4kji5kbg8kzkzdbfy8sdbgbqd5g59cch7ia9agh5jvwyx", "rev": "9f1eb3548311816920864a171de303245a001301" }, "recipe": { "sha256": "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150212.924", "deps": [ @@ -24395,28 +25878,30 @@ }, "xah-replace-pairs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xah-replace-pairs.git", - "sha256": "143ba713c9f1fff9d7174116c87cb12241b0c5a47a88fa8daaba1a7e4892baa2", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-replace-pairs", + "sha256": "18msj947w6msma6zm23slk2v0h92n5ych5j12zbzkzzir49sffql", "rev": "b80430cd285ba09e2b35d518be0c25ba7db2d0a3" }, "recipe": { "sha256": "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150522.533", "deps": [] }, "sequences": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/timvisher/sequences.el.git", - "sha256": "94eb6ed1077451a6d0df8c81e22d5def0f22f9e64c1ff3a233baea89c48de6da", + "tag": "fetchFromGitHub", + "owner": "timvisher", + "repo": "sequences.el", + "sha256": "1np6ip28ksms6fig67scwvwj43zgblny50ccvz8aclbl0z8nxswl", "rev": "2bcc54a6738202fffb23e9579b9695337ba6ef26" }, "recipe": { "sha256": "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130908.1322", "deps": [ @@ -24425,28 +25910,30 @@ }, "chronos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dxknight/chronos.git", - "sha256": "04537567c5046366c663bcb99869c6131162311d7af0ff1c405582bef3f80dd7", + "tag": "fetchFromGitHub", + "owner": "dxknight", + "repo": "chronos", + "sha256": "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4", "rev": "b360d9dae57aa553cf2a14ffa0756a51ad71de09" }, "recipe": { "sha256": "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150602.1029", "deps": [] }, "flymake-haskell-multi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-haskell-multi.git", - "sha256": "94deeca8956cc2eb5e7029eb8b244475eaa86082444bd18f9eeb941167388bba", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-haskell-multi", + "sha256": "0hwcgas83wwhk0szwgw7abf70400knb8dfabknwv0qrcsk4gqffd", "rev": "6183620ffee429b33c886fffd6106b876245ea47" }, "recipe": { "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130620.622", "deps": [ @@ -24455,42 +25942,45 @@ }, "simple-screen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wachikun/simple-screen.git", - "sha256": "515c1774f176afc8eedbadda26d9fbc914601ac89d06fa0188005870fde3c97d", + "tag": "fetchFromGitHub", + "owner": "wachikun", + "repo": "simple-screen", + "sha256": "0zf9wgyp0n00i00zl1lxr0d60569zgcjdnmdvgpcibvny5s1fp2i", "rev": "4fcbdb4575310c0a2b4dd17fc8aeb4d7e6e9ffae" }, "recipe": { "sha256": "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141023.958", "deps": [] }, "git-timemachine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/git-timemachine.git", - "sha256": "ef579a874c0ed6c01bd13f41a89239e25527a8e0146985451657f570f0a61e15", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "git-timemachine", + "sha256": "058ylvq71xap2r2qas8lw2l2fmg2769ahh9zs4dw1mhf9j3rlmzg", "rev": "141122e52a80f28b958a8bad128c480567ce3942" }, "recipe": { "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.29", "deps": [] }, "evil-search-highlight-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juanjux/evil-search-highlight-persist.git", - "sha256": "d31ff1cc55b9c39d5220c658a14ee00d365f4caaf7d289fa4a8c81dad214d1c9", + "tag": "fetchFromGitHub", + "owner": "juanjux", + "repo": "evil-search-highlight-persist", + "sha256": "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk", "rev": "0e2b3d4e3dec5f38ae95f62519eb2736f73c0b85" }, "recipe": { "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.438", "deps": [ @@ -24499,14 +25989,15 @@ }, "edn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/expez/edn.el.git", - "sha256": "4dbf8b2f57167afdcb7d234b29b6359873014098b9835e6b36f76ecae3f7b9fc", + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "edn.el", + "sha256": "107ljwqibnd247h4iyav37y75zcgl0j2yav09s38kl3nbxmaad2y", "rev": "501a69696bec2fc09bf5d61e38a3ea344ed77a47" }, "recipe": { "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150929.346", "deps": [ @@ -24519,14 +26010,15 @@ }, "register-channel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/YangZhao11/register-channel.git", - "sha256": "a9c9bce2743d6afe06b2e6a40c61b438ef8b040d529dad69b1f3f86d0bfeefce", + "tag": "fetchFromGitHub", + "owner": "YangZhao11", + "repo": "register-channel", + "sha256": "01k3v4yiilz1k6drv7b2x6zbjx6dlz7cch8rq63mwc7v8kvdnqmi", "rev": "f62f9a62ebd2537d4a8c8f2e358562c67d2aefc1" }, "recipe": { "sha256": "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150513.2259", "deps": [] @@ -24539,21 +26031,22 @@ }, "recipe": { "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.1305", "deps": [] }, "virtualenvwrapper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/porterjamesj/virtualenvwrapper.el.git", - "sha256": "9756d78a2b7b2da44c617833773c1de2b8694ef2062ee084e7ca03ba85b3d6f7", + "tag": "fetchFromGitHub", + "owner": "porterjamesj", + "repo": "virtualenvwrapper.el", + "sha256": "1a0x4dsyavqcl7xibn3g90fxvh1fnb6k0mpjm5mjvzc168p939kc", "rev": "f95094dc7a6e6c0aa6f80fd897dbf380382f35f2" }, "recipe": { "sha256": "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.821", "deps": [ @@ -24563,28 +26056,30 @@ }, "emagician-fix-spell-memory": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jonnay/emagicians-starter-kit.git", - "sha256": "657dec43dc650142aacf062b4341c510b1c3cd17f1e61416e466c0bf04ab308c", + "tag": "fetchFromGitHub", + "owner": "jonnay", + "repo": "emagicians-starter-kit", + "sha256": "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z", "rev": "5fadbf1bf84091b6ffe6cd1bff48f30e3da6c479" }, "recipe": { "sha256": "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141229.1634", "deps": [] }, "google-contacts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jd/google-contacts.el.git", - "sha256": "b25e676b27c2e6f8f1458f6a25f4105b11794dc9d8ecc8786cfddf7aa66c78a8", + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "google-contacts.el", + "sha256": "1a3qdjk7mpzxdiwciv6qr56pj4av23s2aslg8pqzirn24xmnfpmj", "rev": "92969f5f02f0ec1957c591b248530c0be0cc5432" }, "recipe": { "sha256": "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140530.433", "deps": [ @@ -24593,98 +26088,105 @@ }, "org-table-comment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/org-table-comment.el.git", - "sha256": "977bb21fca41c5cf63b4c8a75973e024485d470de47bdf8f5dc5b36d54fb3079", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-table-comment.el", + "sha256": "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb", "rev": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e" }, "recipe": { "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120209.1251", "deps": [] }, "govet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/meshelton/govet.git", - "sha256": "ab73f08661b4acd28f8d9fbcc2ec7cae9973bd335506e8cfb044e3e3eb20eebb", + "tag": "fetchFromGitHub", + "owner": "meshelton", + "repo": "govet", + "sha256": "1fzf43my7qs4n37yh1jm6fyp76dfgknc5g4zin7x5b5lc63g0wxb", "rev": "736f11850f2d1d62bd417fb57d4f8bb55a176b70" }, "recipe": { "sha256": "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150428.1359", "deps": [] }, "c-eldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/c-eldoc.git", - "sha256": "ea6c3bcfea345cdbb037a32e3ba386bd92e034337d136071553690628c2b9556", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "c-eldoc", + "sha256": "0mlm5f66541namqn04vx6csf14mxhsiknbm36yqdnp1lxb7knv7a", "rev": "3baef9b6300370bd8db3ea7636084afcdebc6e85" }, "recipe": { "sha256": "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150904.332", "deps": [] }, "toc-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/snosov1/toc-org.git", - "sha256": "e070adc368f1d0ed6f889baeac54cbfd1d56b70671ced46d9b0b78d97d21fb3f", + "tag": "fetchFromGitHub", + "owner": "snosov1", + "repo": "toc-org", + "sha256": "0gzv45yxjy0bkdnx9kki0svmc7gxrdaarblvi1pyvl7id31ssw70", "rev": "72883a08b01d08b74cc03c565eac8d0422770fcf" }, "recipe": { "sha256": "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150921.905", "deps": [] }, "hl-sexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/hl-sexp.git", - "sha256": "7c9a33cee9837215f78bf4e0dd53a20f66bc05bedb33a7bbb3e5335c59925ebb", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "hl-sexp", + "sha256": "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw", "rev": "0606100422321c18db51ceda80f25cd7717c2e01" }, "recipe": { "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101130.643", "deps": [] }, "find-temp-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisirs/find-temp-file.git", - "sha256": "00d2718456a0496fd845103fae2233e97636b52fd96798f559241d79c337a55b", + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "find-temp-file", + "sha256": "0anc6icm1a5d4iirkzzmz8g4z5ssa3hpzgj7gigm3kvvp4r1261d", "rev": "556cc3afbdc3011c99e92e1ab3fe0744bd1af9ba" }, "recipe": { "sha256": "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.801", "deps": [] }, "avy-migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/avy-migemo.git", - "sha256": "525ba03bb7ce7faf3f2930d831ff2f0f95a9e8bd12a7a68dd014831f82d0fa30", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "avy-migemo", + "sha256": "0c7ss211z0qls26sd9qjpplak58g5zzk3n1h54zsyzyfnwxs0nsj", "rev": "804a02dbd50dcfbdbf327ec800d9f7572e8b9511" }, "recipe": { "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.808", "deps": [ @@ -24701,7 +26203,7 @@ }, "recipe": { "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1539", "deps": [ @@ -24712,14 +26214,15 @@ }, "osx-browse": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/osx-browse.git", - "sha256": "800ba903f6a440c92fc857f5d5ac5ac1a1b3475030b0ac5077127802993bf50a", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "osx-browse", + "sha256": "1iybrhp607a5rb3ynlaf8w2x9wdgdbril702z44dgcg3wxih2zy1", "rev": "44ded7cc3a7ee426c1c3257fae534c121f7e752e" }, "recipe": { "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -24729,28 +26232,30 @@ }, "sql-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bsvingen/sql-indent.git", - "sha256": "5e520cd1964765ee18ffb56ea5266d2b562819c6ac07507e26d8a1d2b162cb9e", + "tag": "fetchFromGitHub", + "owner": "bsvingen", + "repo": "sql-indent", + "sha256": "17nbcaqx58fq4rz501xcqqcjhmibdlkaavmmzwcfwra7jv8hqljy", "rev": "f85bc91535b64b5d538e5aec2ce4c5e2312ec862" }, "recipe": { "sha256": "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150424.1916", "deps": [] }, "helm-orgcard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/helm-orgcard.git", - "sha256": "632ec2288b0b78b18d0cc54d320ebec2f71a9d1e57eccfb0ecdd1ed572eed2ff", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-orgcard", + "sha256": "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3", "rev": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d" }, "recipe": { "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151001.1024", "deps": [ @@ -24759,14 +26264,15 @@ }, "phpcbf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nishimaki10/emacs-phpcbf.git", - "sha256": "58d57f6efb8bd201dd6eef6345eda1b0d1a04d45ce0eae12062b86452fa9707e", + "tag": "fetchFromGitHub", + "owner": "nishimaki10", + "repo": "emacs-phpcbf", + "sha256": "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z", "rev": "b556b548ceb061b002389d6165d2cc63d8bddb5d" }, "recipe": { "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150302.728", "deps": [ @@ -24775,14 +26281,15 @@ }, "dispass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ryuslash/dispass.el.git", - "sha256": "81ee51451d3b39f30f08d332b5ed725ed3ea6e8f8d5a1e0cd83b439b0392af1c", + "tag": "fetchFromGitHub", + "owner": "ryuslash", + "repo": "dispass.el", + "sha256": "075gj81rnhrvv061wnldixpfmlsyfbnvacnk107z6f9v3m2m3vl1", "rev": "b6e8f89040ebaaf0e7609b04bc27a8979f0ae861" }, "recipe": { "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140202.931", "deps": [ @@ -24791,14 +26298,15 @@ }, "ac-inf-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ac-inf-ruby.git", - "sha256": "40c5c8e611944ef31f46ac7b327f36ff39962be58d2602062eb5d6903198b875", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-inf-ruby", + "sha256": "0xdqk0qr1mmm5q3049ldwlmrcfgz6rzk4yxc8qgz6kll27kciia0", "rev": "3a1e741b40b8dba0e9c235dad4b9907411d9dcd3" }, "recipe": { "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131115.550", "deps": [ @@ -24808,14 +26316,15 @@ }, "cider-eval-sexp-fu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/cider-eval-sexp-fu.git", - "sha256": "33cef1dee2c1a679ff88a49b99ffadcd75d4679fac0ff67d0bc73ef467de9651", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider-eval-sexp-fu", + "sha256": "1gpklkrw6iishfb3yilnqysh6zij67l1sl3ixq1bi3f6r237v1pg", "rev": "7c54327e6ff8914c7dbc9f8de289e1b255d01fbc" }, "recipe": { "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150320.2215", "deps": [ @@ -24826,14 +26335,15 @@ }, "wn-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/luismbo/wn-mode.git", - "sha256": "5451e4cd0f946e12d209409779683459a51f9f05dbb6edb70acc3002aae48395", + "tag": "fetchFromGitHub", + "owner": "luismbo", + "repo": "wn-mode", + "sha256": "12rfpkyjkhikjh0mihhp5h5pzbm4br68nwf8k1ja9djl77vfzv36", "rev": "f05c3151523e529af5a0a3fa8c948b61fb369f6e" }, "recipe": { "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.2352", "deps": [ @@ -24842,42 +26352,45 @@ }, "professional-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juanjux/emacs-professional-theme.git", - "sha256": "347d15c6b4d0e8932d49996f2e9a3068945018dd8434f22bf329dc19571857c8", + "tag": "fetchFromGitHub", + "owner": "juanjux", + "repo": "emacs-professional-theme", + "sha256": "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b", "rev": "0927d1474049a193f9f366bde5eb1887b9ba20ed" }, "recipe": { "sha256": "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.600", "deps": [] }, "goto-last-change": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/camdez/goto-last-change.el.git", - "sha256": "e59710be1894faac74782478467008a0ed5317b8d2a7b383faf1b4a3f6a61fb8", + "tag": "fetchFromGitHub", + "owner": "camdez", + "repo": "goto-last-change.el", + "sha256": "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5", "rev": "58b0928bc255b47aad318cd183a5dce8f62199cc" }, "recipe": { "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150109.1223", "deps": [] }, "flymake-css": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-css.git", - "sha256": "874738fbcbb2b0f26bf574b846a68f87032eeccc7032d995771a23559ab91fed", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-css", + "sha256": "00cnz3snhs44aknq6wmf19hq9bzb5pj0hvfzz93l6n7ngd8vvpzy", "rev": "4649fc209836498d709bb627e8aa6e50189a06ec" }, "recipe": { "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121104.1304", "deps": [ @@ -24886,14 +26399,15 @@ }, "flycheck-pyflakes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/flycheck-pyflakes.git", - "sha256": "8aeba55672e10a4e0b4a70496e184603ace88c1817f9789925b81d51b45e5499", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "flycheck-pyflakes", + "sha256": "16albss527dq4ncpiy8p326fib038qc6wjbh985lw2p1f9babswa", "rev": "026ef070f1589bc0ae8f86a02072fa36e57b9912" }, "recipe": { "sha256": "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140630.1721", "deps": [ @@ -24902,42 +26416,45 @@ }, "vc-check-status": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisirs/vc-check-status.git", - "sha256": "9918eb8a561f6f14c38f12bf6a74920ce6138f635c8fa39624defde968ad6eca", + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "vc-check-status", + "sha256": "0rl1q374h06lmspsmgkp44m9x8w93dz6zx2yk89hklfbsvg5pb5j", "rev": "540db724cdd9f517f54fcd9f8c4be3bf274c9333" }, "recipe": { "sha256": "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.301", "deps": [] }, "pbcopy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/pbcopy.el.git", - "sha256": "86970f548da98717a9a1c73bd9d35f8d36c8bb656e26d045ae52d77169031c8d", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "pbcopy.el", + "sha256": "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6", "rev": "338f7245746b5de1bb96c5cc2b32bfd9b5d83272" }, "recipe": { "sha256": "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150224.2259", "deps": [] }, "ob-lfe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/ob-lfe.git", - "sha256": "16d26be5099649fe12fe5fc02df4fd03d758f8829ed558c9f4c46d4d1cc367d6", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-lfe", + "sha256": "1mk7qcf4svf4yk4mimcyhbw5imq3zps2vh2zzq9gwjcn17jnplhn", "rev": "d50a5d76e389501504e060a7005f20b96c895594" }, "recipe": { "sha256": "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150701.855", "deps": [ @@ -24946,30 +26463,32 @@ }, "auto-yasnippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/auto-yasnippet.git", - "sha256": "117fec8ed9c14f553cb767e221b132011745478dcb712d7f1b82065821adfc35", - "rev": "deb00c74cfc98c32e1e71baf44ee8d2c3df7164e" + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "auto-yasnippet", + "sha256": "14qr8c4i4644vwqvlh5d3xhw1dzmqz3v74hqlp7g8991yaka72va", + "rev": "9e126461d4473fb734f7e33dc2019cd71856dc42" }, "recipe": { "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151109.610", + "version": "20151218.1031", "deps": [ "yasnippet" ] }, "company-try-hard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/company-try-hard.git", - "sha256": "a8a71f25c760d4cc93f62660218c8c36a9a371fa7ee9a254982392bf38fb9f44", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "company-try-hard", + "sha256": "18hy60fm3b3dmp29cmzbs6grlihkwifjbzv30gprwj5f6x7m8knf", "rev": "0401e8afa6bd4d3e9d2cf18e58955b83aef93005" }, "recipe": { "sha256": "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150902.1706", "deps": [ @@ -24980,14 +26499,15 @@ }, "clippy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/clippy.el.git", - "sha256": "4cc2e4844cf15eb4279824a690c47a3c492a188570823f7997179e1bff8b5557", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "clippy.el", + "sha256": "0msmigzip7hpjxwkz0khhlc2lj9wgb2919i4k0kv8ppi9j2f9hjc", "rev": "23ba8772056a103267611b3757722730740d9f00" }, "recipe": { "sha256": "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140417.614", "deps": [ @@ -24996,14 +26516,15 @@ }, "company-coq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cpitclaudel/company-coq.git", - "sha256": "bc01164d09c438cc38cc5d3171506847bca2ff01ff3e158394a37c231d31c996", + "tag": "fetchFromGitHub", + "owner": "cpitclaudel", + "repo": "company-coq", + "sha256": "1np5k6wnhylyi3si2vg4fff5axafixv9qdf3k7l2iislq372nq61", "rev": "eba6fee09a02b42ef581fa757314b6b63a11601f" }, "recipe": { "sha256": "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150718.2131", "deps": [ @@ -25016,14 +26537,15 @@ }, "emacsql-sqlite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad", "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" }, "recipe": { "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151004.915", "deps": [ @@ -25034,14 +26556,15 @@ }, "haskell-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/haskell/haskell-snippets.git", - "sha256": "c619b88d3087f574a5516f3bbacd0512bd9fde07143aac42b99aed8d773e6d2c", + "tag": "fetchFromGitHub", + "owner": "haskell", + "repo": "haskell-snippets", + "sha256": "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6", "rev": "bcf12cf33a67ddc2f023a55072859e637fe4fa25" }, "recipe": { "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150612.1439", "deps": [ @@ -25050,56 +26573,60 @@ }, "ycm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/neuromage/ycm.el.git", - "sha256": "d25b62cb6415c8e64542ebaaabe5a845399d30a80e13ca2b18f3ff849487cc7e", + "tag": "fetchFromGitHub", + "owner": "neuromage", + "repo": "ycm.el", + "sha256": "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj", "rev": "4da8a14abcd0f4fa3235042ade2e12b5068c0601" }, "recipe": { "sha256": "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150822.1336", "deps": [] }, "ldap-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/ldap-mode.git", - "sha256": "c34dc837e595b5ba84840a1958364ce14fa46e75aad54de63ad9eb344d16bb0e", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "ldap-mode", + "sha256": "03mv2r6k9syr7bk4vmdafmpa8kz19hv5h68ahj2bmdcmwlvwhkf3", "rev": "8761a835e90b990fb5fe70173ecdcd6f4b776cb0" }, "recipe": { "sha256": "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091203.1215", "deps": [] }, "golint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/golang/lint.git", - "sha256": "0391e33c7143fded33e9f919566fddb1776526294201785da0a76510db848f9a", + "tag": "fetchFromGitHub", + "owner": "golang", + "repo": "lint", + "sha256": "16lghkdi0rd7l1fph0a254k6axxivmpmc6grx4ryvza3f4yf7483", "rev": "32a87160691b3c96046c0c678fe57c5bef761456" }, "recipe": { "sha256": "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150414.1930", "deps": [] }, "typed-clojure-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/typedclojure/typed-clojure-mode.git", - "sha256": "4184ccfcd4972ed5db00ba47db42e811dbd719ca6d4f6382813aaf4a43ce473e", + "tag": "fetchFromGitHub", + "owner": "typedclojure", + "repo": "typed-clojure-mode", + "sha256": "1i826xq77nh4s7qlj63r2iznbn319l1l3fzpbjb2nj0m00bwvxl6", "rev": "3abd53d8cc1ad77ffe76e02849d0ab7731fd8364" }, "recipe": { "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151003.1322", "deps": [ @@ -25109,42 +26636,45 @@ }, "load-theme-buffer-local": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vic/color-theme-buffer-local.git", - "sha256": "7d32eb146147f908c02eb2e5562733f34ed117d410d72bf9df1c2932bc4c6c3f", + "tag": "fetchFromGitHub", + "owner": "vic", + "repo": "color-theme-buffer-local", + "sha256": "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx", "rev": "ca8470bc34c65a026a6bca1707d95240bfd019af" }, "recipe": { "sha256": "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120702.1536", "deps": [] }, "xah-math-input": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xah-math-input.git", - "sha256": "68f1ddfd27479bce44bca27055555580cbbd383cb07c8510d133296f70670d85", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-math-input", + "sha256": "118dcxq6ya9ks488az5h7hwbvjw0amamaw52pi2cx6s74zyxvwb8", "rev": "dbf055ca2b5497465de57e98d6cc58ddfa09bb8d" }, "recipe": { "sha256": "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150907.1900", "deps": [] }, "vim-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/emacs-vim-region.git", - "sha256": "2ff2a5cf2604f8438749dbc757064b4b09203ff6f0c3d356818801106c84e28d", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "emacs-vim-region", + "sha256": "13g2hin100c8h5bd7hzhyqzj02ab9c35giyv963l7y044v7sbwig", "rev": "7c4a99ce3678fee40c83ab88e8ad075d2a935fdf" }, "recipe": { "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140329.1124", "deps": [ @@ -25159,21 +26689,22 @@ }, "recipe": { "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] }, "tumble": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/febuiles/tumble.git", - "sha256": "8c16ee4d36971e2d8ceb83c3d3863e183b081b8406f2c772240c183bc1c498ce", + "tag": "fetchFromGitHub", + "owner": "febuiles", + "repo": "tumble", + "sha256": "1klqqk0kn60c4ircgwh6hhdhhfqq7s3d7hw3xf62s7lp6r6yw5lc", "rev": "8d04216752ad94c343ffa507016b893f8252602f" }, "recipe": { "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.1349", "deps": [ @@ -25182,14 +26713,15 @@ }, "evil-tabs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/evil-tabs.git", - "sha256": "79ce6c756c75665de49269a407bf22c6e1cc76fc5310788932da4890ab5978b0", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "evil-tabs", + "sha256": "1rjpgcl9m23fzlw9gfp0yyf5k5dcgn88pjm8glmmdpx1b08ymk79", "rev": "93eba393e86ea4574aebaf4edbd27dce4fd7b2e6" }, "recipe": { "sha256": "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150127.1546", "deps": [ @@ -25199,28 +26731,30 @@ }, "solidity-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ethereum/emacs-solidity.git", - "sha256": "9cb0f6a1bb4b26c949fe08b6cb094d4f7182150ce7c5d2cf6cf0044813f34f97", + "tag": "fetchFromGitHub", + "owner": "ethereum", + "repo": "emacs-solidity", + "sha256": "0drb237750lry18arbfx37drf16znwz8fhx5fawxy1q4z7bl7z5n", "rev": "8bbd7d9e1e823b524d882d996b5c4e7b6a523b41" }, "recipe": { "sha256": "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.1111", "deps": [] }, "ac-math": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vitoshka/ac-math.git", - "sha256": "a62d775b29574891a744eff314de6b8bc3497c5f25ad8b65b54fa29db86aac5c", + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "ac-math", + "sha256": "0p5cdaw9v8jgnmjqpb95bxy4khwbdgg19wzg8jkr2j2p55dpfbd6", "rev": "c012a8f620a48cb18db7d78995035d65eae28f11" }, "recipe": { "sha256": "1gx35m0wv60cfgm87y2c7vrpwdsqjzk9bz4pp9dbs8dhxvji0ay4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.1527", "deps": [ @@ -25230,28 +26764,30 @@ }, "flex-autopair": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/uk-ar/flex-autopair.git", - "sha256": "14efca11472950338f9433d3583f903e9d8dfa8e8eb835049f6ce40afd81eaa0", + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "flex-autopair", + "sha256": "187ah7yhmr3ckw23bf4fivx8v79yj0zmilrkjj7k6l198w8wmvql", "rev": "4bb757f2556a4a51828e2fed8fb81e31e83052cb" }, "recipe": { "sha256": "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120809.718", "deps": [] }, "company-ghci": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juiko/company-ghci.git", - "sha256": "24008f241721ab96e1baa0b6ea1437127809eab715b05a0ef381cc2ce79e5684", + "tag": "fetchFromGitHub", + "owner": "juiko", + "repo": "company-ghci", + "sha256": "112nkvkjrk41yc75mc0mnzm0jy0j6wafmdm0pbhrdar12wj8y014", "rev": "c62617770a457c53d1d49621d4e71a2c36de2f82" }, "recipe": { "sha256": "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.1250", "deps": [ @@ -25261,28 +26797,30 @@ }, "aurel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/aurel.git", - "sha256": "d894cd8e53471212d40e8d9da7b0d8b28886be98380ea49ff863b14cc1f06d9b", - "rev": "0f135e600de3ef60d0cd4d98f3fcaa12a9d1e4c9" + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "aurel", + "sha256": "1vzjrdzb7wp5ydlwsfxy8jnml7pb16y2dhf85qqv0ckncvwwrs3h", + "rev": "dec8063d243176a176f9d7c117c0bb4be9bd03dc" }, "recipe": { "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151006.1515", + "version": "20151218.1353", "deps": [] }, "ob-typescript": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lurdan/ob-typescript.git", - "sha256": "e1c272f28c4f6ebb61a873c87ef97cdce7d79ef8c5be08e4257f124e51ccc683", + "tag": "fetchFromGitHub", + "owner": "lurdan", + "repo": "ob-typescript", + "sha256": "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai", "rev": "9dcbd226cbfb75e790dd9de91d9401dde85a889a" }, "recipe": { "sha256": "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.730", "deps": [ @@ -25292,14 +26830,15 @@ }, "anaconda-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/anaconda-mode.git", - "sha256": "aea3ff085f8d7c28a45973f37a8b5256e975c13937a66d55cfe7542e174f495a", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "anaconda-mode", + "sha256": "01a9l785chmcf6d7fsyc72gapapb4gddgqmpps705zpkhjm8f6wj", "rev": "e8f6d910993ac1ecaa41b07abc4cdc9e76e66fb8" }, "recipe": { "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150922.737", "deps": [ @@ -25312,14 +26851,15 @@ }, "js2-closure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jart/js2-closure.git", - "sha256": "4cffe59aad5f1494c93cef3e291978e7f23b4c16929b2e76c20119b64edf0504", + "tag": "fetchFromGitHub", + "owner": "jart", + "repo": "js2-closure", + "sha256": "0105vx7bc681q9v2x6wj2r63pwp7g0cjjgpg7k4r852zmndfbzsc", "rev": "8e81e90ee0b923b9d053c339e4b328ecc7693998" }, "recipe": { "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141027.1750", "deps": [ @@ -25328,28 +26868,30 @@ }, "drag-stuff": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/drag-stuff.git", - "sha256": "858d06f9d795c71f04398caec289d9876ffc0096f295f3ff3ad9b730c50e7a0b", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "drag-stuff", + "sha256": "08kkiqhfy1i6j9156gbl85jvyj592vd08qy24ng2dj0prjvap8w1", "rev": "0d7e28bf234037380dbcb24b9175b96ae34ef8fb" }, "recipe": { "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150717.732", "deps": [] }, "epic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshinari-nomura/epic.git", - "sha256": "35466d110cc20f5c181764b685aa8e8e30e1fb9e598900772f7bea834488eea1", + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "epic", + "sha256": "18gfi1287skv5xvh12arkvxy2c4fism8bdk42wc5q3y21h8nsiim", "rev": "02f6472bb490a39d42ed49c0364972173202f6e1" }, "recipe": { "sha256": "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150503.237", "deps": [ @@ -25361,25 +26903,26 @@ "tag": "fetchsvn", "url": "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/", "sha256": "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq", - "rev": "1720288" + "rev": "1720849" }, "recipe": { "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130120.1457", "deps": [] }, "clocker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/clocker.el.git", - "sha256": "3b9df19d086c3d67193292e1a9aaed12652207e2ccefe12b9be50621c9696fab", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "clocker.el", + "sha256": "0hw6i92k651p71am578p02lqp1dj9pic880n6x4z0ydz4xyjhmfw", "rev": "9cb1440ca1fa4f82597f8b053c7f8e44f4682229" }, "recipe": { "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150505.1043", "deps": [ @@ -25389,14 +26932,15 @@ }, "ujelly-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marktran/color-theme-ujelly.git", - "sha256": "34dcb1c9c6fbf1e832b7a78a433808a804490f0a4fb888c5b50d076d77be3e33", + "tag": "fetchFromGitHub", + "owner": "marktran", + "repo": "color-theme-ujelly", + "sha256": "0cryprvns1qdnp2qif2g187lj15810w472m7nwrfiwgvqv4v3p1l", "rev": "ff4b9fb4a9469cd807ed712e05cf739a1a900218" }, "recipe": { "sha256": "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.2336", "deps": [] @@ -25409,49 +26953,52 @@ }, "recipe": { "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1624", "deps": [] }, "quick-buffer-switch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/renard/quick-buffer-switch.git", - "sha256": "969c0a175112b464d416d1b2af3ac836c1224fee72a997ca006f3d92ee0e9850", + "tag": "fetchFromGitHub", + "owner": "renard", + "repo": "quick-buffer-switch", + "sha256": "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5", "rev": "d5fdd67b4c9f04b7a7122da2215e4ae076a03b1b" }, "recipe": { "sha256": "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151007.1708", "deps": [] }, "jump-char": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/jump-char.git", - "sha256": "f898b75b5feedeae063ff16150cf0175690f6dfde99df812f60e8ceca951f46e", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "jump-char", + "sha256": "0vpla6lyr30fyq9gi7g9zmnhysbm077m0qgi7w3axppfbxdvg67q", "rev": "b6011a1cb501c0242d11103bbee4d9138fcc765f" }, "recipe": { "sha256": "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.1435", "deps": [] }, "e2wm-svg-clock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/e2wm-svg-clock.el.git", - "sha256": "cefc7c015e8079d819302ae1246bc40936152b7cf613b36577b80abf2fb52e40", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "e2wm-svg-clock.el", + "sha256": "0h1fnlpvy2mqfxjv64znghmiadh9qimj9q9a60cxhyc0bq0prz6f", "rev": "d425925e3afffcbe2ff74edc80b714e4319d4c94" }, "recipe": { "sha256": "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.706", "deps": [ @@ -25468,21 +27015,22 @@ }, "recipe": { "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130104.821", "deps": [] }, "tracking": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/circe.git", - "sha256": "d72cca8e58ec8b961a6926e4966469444d13c9298c45ec2d53805fe9869f837e", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "circe", + "sha256": "1l6lm3i02r0b8ng0n3rckgk0q38wjng41dqbx148bjxfq44cpghz", "rev": "c9862e432d2dad7cd568d79dbe49849245333fb1" }, "recipe": { "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.519", "deps": [] @@ -25495,21 +27043,22 @@ }, "recipe": { "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.707", "deps": [] }, "helm-chrome": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/helm-chrome.git", - "sha256": "9e455817ac4e58ac0abd02061e985f0ed70beb4f899b8dee91888a83ab2f8155", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "helm-chrome", + "sha256": "0mc15ymq72l8j7p8v6w99zmhpmqfbyc1w1h2pl5aqn2fmhbmhicy", "rev": "212711d5adcbd3af9195855792ef0166fdf7b8ff" }, "recipe": { "sha256": "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.2327", "deps": [ @@ -25520,28 +27069,30 @@ }, "chruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/plexus/chruby.el.git", - "sha256": "34c335e6d277a2bc50f0b900155b0507d0ef5399886f6270b43487234f5ba03f", + "tag": "fetchFromGitHub", + "owner": "plexus", + "repo": "chruby.el", + "sha256": "0gx0bd7j71rlniq64vw8k59yzl070mdia05ry18br8kpsbk3bhrl", "rev": "0b210f5bb8c38dbe4581e660055cf9bac93304d0" }, "recipe": { "sha256": "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.630", "deps": [] }, "whitaker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/whitaker.git", - "sha256": "4b319f011e50d555e510fd4463f482be481c22271f2aec1124c53ebca967e5f8", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "whitaker", + "sha256": "1y75cylvqgn54h8yqahz4wi1qj5yhbs66i7x23jmbmah3q0rycab", "rev": "eaf26ea647b729ca705b73ea70312d5ffdf89448" }, "recipe": { "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150814.622", "deps": [ @@ -25550,14 +27101,15 @@ }, "company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/company-mode/company-mode.git", - "sha256": "62e710636351349ad3892477176e45365866bf92ebbf7b9f6f1010b595d86b30", + "tag": "fetchFromGitHub", + "owner": "company-mode", + "repo": "company-mode", + "sha256": "0xvrhkh2vdvy0xvwicsmy96bfa46lj89m1gy35lp3dl36nh64kjb", "rev": "250ca1c395c6f05b733abce69a2d928b6cd31618" }, "recipe": { "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1541", "deps": [ @@ -25567,42 +27119,45 @@ }, "twilight-bright-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jimeh/twilight-bright-theme.el.git", - "sha256": "32fb2d83cefcbef6593ceffd6392927f8ee611f0752bcc53cd81c1fb1c45e6ca", + "tag": "fetchFromGitHub", + "owner": "jimeh", + "repo": "twilight-bright-theme.el", + "sha256": "1awqc4rvg8693myynb1d4y4dfdaxkd5blnixxs3mdv81l07zyn8c", "rev": "322157cb2f3bf7920ecd209dafc31bc1c7959f49" }, "recipe": { "sha256": "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130605.343", "deps": [] }, "macro-math": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/macro-math.el.git", - "sha256": "be7d6302be52cfb1d25d11d2e9f70c270aa568e51878dc79ef36fa3eca93c7c5", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "macro-math.el", + "sha256": "119c77s3qp1vqc5m2yf7m4s81aphkhsvsnwqmpq6xl08r3592zxz", "rev": "216e59371e9ee39c34117ba79b9acd78bb415750" }, "recipe": { "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130328.1104", "deps": [] }, "elscreen-mew": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/elscreen-mew.git", - "sha256": "48f717202e8261d8786b41d47847f54d4552c02a032659d733c7a038586dfcb8", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "elscreen-mew", + "sha256": "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh", "rev": "f66a2a5a8dd904791ede5133fdd183522b061bba" }, "recipe": { "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140629.1016", "deps": [ @@ -25611,14 +27166,15 @@ }, "helm-backup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antham/helm-backup.git", - "sha256": "baeec59b5472d8ac4d86b36791ca65dc609ffbe64930e2d0f4a824816b487dc3", + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "helm-backup", + "sha256": "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76", "rev": "184026b9fe454aab8e7730106b4ca494fe307769" }, "recipe": { "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1247", "deps": [ @@ -25629,14 +27185,15 @@ }, "cedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/cedit.git", - "sha256": "7bc8d8b8344c07155e031f4383ebb4f6c4438737e118c34020039372876c0fb9", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "cedit", + "sha256": "1f8gdj3p54q3410c66716y3l7i7nnkmq6hqz0dg1a1sc6jwdij3v", "rev": "0878d851b6307c162bfbddd2bb02789e5e27bc2c" }, "recipe": { "sha256": "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141231.1014", "deps": [] @@ -25649,21 +27206,22 @@ }, "recipe": { "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.707", "deps": [] }, "rinari": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/rinari.git", - "sha256": "a40dc36b14bdeced68a71c2a7aea318c66c5796ebc5209c2ff592bcf71ff7099", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rinari", + "sha256": "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx", "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" }, "recipe": { "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150709.140", "deps": [ @@ -25675,14 +27233,15 @@ }, "irony-eldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ikirill/irony-eldoc.git", - "sha256": "6ad813d960762d54d0a6936232766f5db9776f7bb09dcc060da83e1740d21634", + "tag": "fetchFromGitHub", + "owner": "ikirill", + "repo": "irony-eldoc", + "sha256": "01fjpfixfcca01a5fnnpd2wga4j30p0kwhbai25prvib4qcp1kqn", "rev": "bd1fadbc7c806d84aeec098b19238e5328cbbb7b" }, "recipe": { "sha256": "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141227.19", "deps": [ @@ -25693,28 +27252,30 @@ }, "bm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joodland/bm.git", - "sha256": "633cae4a027da2bc72c9554f8024f92d28b8f1585dc7a37a0098b5084eddcffa", + "tag": "fetchFromGitHub", + "owner": "joodland", + "repo": "bm", + "sha256": "0ifiqy3lpqf0v76jzhgi59smrbzph7silrhjw6w9fqw6nvmyg608", "rev": "d773ecda1c7aec7d9adf4471884c3aba8be22e2b" }, "recipe": { "sha256": "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.1722", "deps": [] }, "ox-textile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yashi/org-textile.git", - "sha256": "5dac91e68b1efddd008f89d5e5c8e2ef4d860e709461d94514c79c1412489a5e", + "tag": "fetchFromGitHub", + "owner": "yashi", + "repo": "org-textile", + "sha256": "1r9c4s9f7cvxxzf9h07rg75bil0295zq1inh5i4r6za5jabkr4dg", "rev": "0dfca070e35bc6f4a412319e2474bb88666c8c2d" }, "recipe": { "sha256": "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.2225", "deps": [ @@ -25723,14 +27284,15 @@ }, "helm-prosjekt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/prosjekt.git", - "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "prosjekt", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3", "rev": "a864a8be5842223043702395f311e3350c28e9db" }, "recipe": { "sha256": "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140129.117", "deps": [ @@ -25740,14 +27302,15 @@ }, "ucs-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/ucs-utils.git", - "sha256": "b595e2a4f08ca3fec2e7fb03bf5e91a57c9766d1156c527765fcd5ab1e7fedba", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ucs-utils", + "sha256": "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m", "rev": "cbfd42f822bf5717934fa2d92060e6e24a813433" }, "recipe": { "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150826.914", "deps": [ @@ -25758,14 +27321,15 @@ }, "ids-edit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/ids-edit.git", - "sha256": "f9bab428a2d4a024f3e0e47501e5370cd375b47df8c3201aac9fa959d209f0cc", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "ids-edit", + "sha256": "1k7h1795kaczmhd21hzqgns7blqc6zjh2xg4w3rj986ll8lb9fpr", "rev": "f40495ecd434c6b39d52cadfed25098f08ce78cb" }, "recipe": { "sha256": "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.635", "deps": [ @@ -25774,14 +27338,15 @@ }, "string-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/string-utils.git", - "sha256": "c3b15fab51598da0e811257ef20138f89edbcb6b2a6e5891073ea498c7dbb3b5", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "string-utils", + "sha256": "1frdspm1qgksa8cpx5gkj50xk9mgz8202pgp11lqir6l3yjcj3wq", "rev": "c2232d691617973ecf12a970c6008a161c21da14" }, "recipe": { "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -25797,49 +27362,52 @@ }, "recipe": { "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140520.1148", "deps": [] }, "egison-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/egisatoshi/egison3.git", - "sha256": "dd1d9f33c93eeed03d9a13c6ff67b5aea6e5faaf33bf84687b40cdf8e87eb329", + "tag": "fetchFromGitHub", + "owner": "egisatoshi", + "repo": "egison3", + "sha256": "0sz506yx59gjkphyi3fp07i8h0mkm7gr73xfbjdhn29dss0xl7x0", "rev": "dbb8773f8a47655f3b5311e0a87f63c7b39f60db" }, "recipe": { "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150827.2329", "deps": [] }, "hy-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hylang/hy-mode.git", - "sha256": "556062e6488f60f3cddb54fb9c5c9e8cecba0c5fec7e0f9dfa2b0d246f1de49b", + "tag": "fetchFromGitHub", + "owner": "hylang", + "repo": "hy-mode", + "sha256": "16z43mpj839bzafhyzpcbw6bmv4ckrf9ryslvg6z6q4g93k64q2m", "rev": "af0d848b069ca0cda3ed177d37d94de117f7ffec" }, "recipe": { "sha256": "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.743", "deps": [] }, "shader-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/midnightSuyama/shader-mode.git", - "sha256": "4426dfd26a6a04f57c3c2b0918fb66916fb95828ebb51ea4d9c8aa9db3250950", + "tag": "fetchFromGitHub", + "owner": "midnightSuyama", + "repo": "shader-mode", + "sha256": "0l094nrrvan8v6j1xdgb51cbjvwicvxih29b7iyga13adb9dy9j4", "rev": "5d5fcbc614f8d7e9226730dd587faf14115b0e6f" }, "recipe": { "sha256": "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.904", "deps": [ @@ -25848,14 +27416,15 @@ }, "elscreen-separate-buffer-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wamei/elscreen-separate-buffer-list.git", - "sha256": "ce8cdbc0979790e8a0e90d01f3f71f179f2a50c301b1e57cfd9daa4fa8b564f0", + "tag": "fetchFromGitHub", + "owner": "wamei", + "repo": "elscreen-separate-buffer-list", + "sha256": "1w34nnl4zalxzmyfbc81qd82m7qp3zvz608dx6hfi44pjz0dp36f", "rev": "1aa66cdbf2b1dc87689725aef004a29bb79dd0f9" }, "recipe": { "sha256": "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150522.145", "deps": [ @@ -25865,14 +27434,15 @@ }, "helm-cider-history": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Kungi/helm-cider-history.git", - "sha256": "2654b8a50aebac103d577294a770d50b521c7bbfa4e7d49c38af462015fed434", + "tag": "fetchFromGitHub", + "owner": "Kungi", + "repo": "helm-cider-history", + "sha256": "18j4ikb3q8ygdq74zqzm83wgb39x7w209n3186mm051n8lfmkaif", "rev": "c391fcb2e162a02001605a0b9449783575a831fd" }, "recipe": { "sha256": "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150719.1620", "deps": [ @@ -25882,14 +27452,15 @@ }, "ido-occur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danil/ido-occur.git", - "sha256": "201119e1fafbf8bb68a1f0416b496df2a05fad249175d5a58438591b7d5e68f7", + "tag": "fetchFromGitHub", + "owner": "danil", + "repo": "ido-occur", + "sha256": "1xv8bryinn9qhjjxaxci4jnmz87jdm4nnhghl5lbpy7vzbhij490", "rev": "13dc79ac2bb148b9fcbb470509a06ad1cb7008bb" }, "recipe": { "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150928.1643", "deps": [ @@ -25905,21 +27476,22 @@ }, "recipe": { "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150814.949", "deps": [] }, "outshine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/outshine.git", - "sha256": "973d97d0b43fc25892727cadb683767b8c33c318c60a87cd1b15877e4e39a8df", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outshine", + "sha256": "0g6h5ifmzxvwgyi7qrkkmr8s28kpq8xhmv7rkr3gphqrh5hyppl8", "rev": "d1847614727a060e01d1d2f33b414a1b49d3e85b" }, "recipe": { "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1002", "deps": [ @@ -25929,14 +27501,15 @@ }, "ack-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chumpage/ack-menu.git", - "sha256": "b090306e58a18c739707d46ebf4edd259ee53824e8cd896a3b0174d85a6fa788", + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "ack-menu", + "sha256": "02ba4d8qkvgy52g0zcbyfvsnhr9685gq569nkwa2as30xdcq3khm", "rev": "f77be93a4697926ecf3195a355eb69580f695f4d" }, "recipe": { "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150504.1522", "deps": [ @@ -25945,28 +27518,30 @@ }, "golden-ratio": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/golden-ratio.el.git", - "sha256": "c4f569c53c384e204056bd4dc0ca97bbac0b2314f73cda992416d0b8ed08666b", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "golden-ratio.el", + "sha256": "0wdw89n7ngxpcdigv8c01h4i84hsdh0y7xq6jdj1i6mnajl8gk92", "rev": "72b028808b41d23fa3f7e8c0d23d2c475e7b46ae" }, "recipe": { "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150819.620", "deps": [] }, "evil-mark-replace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/evil-mark-replace.git", - "sha256": "d23ac7591ffca8079c6a16021cca7c9b32725b3622e9e8c6f3cbe3c30572d212", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-mark-replace", + "sha256": "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv", "rev": "56cf191724a3e82239ca47a17b071c20aedb0617" }, "recipe": { "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150424.218", "deps": [ @@ -25975,14 +27550,15 @@ }, "dark-krystal-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-dark-krystal-theme.git", - "sha256": "ddf5188b1ed6142c782df475815820b873241e68a24c8a3001495ff59857851f", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-dark-krystal-theme", + "sha256": "07w5aycgaps904q8lk52d0g28wxq41c82xgl5mw2q56n3s5iixfx", "rev": "bcb3c4ccf17db541e319d60e2eca38a5b22d5664" }, "recipe": { "sha256": "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.101", "deps": [ @@ -25991,14 +27567,15 @@ }, "helm-hoogle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/haskell-config.git", - "sha256": "572d2c743a5b066ec3e266ebc93c759c2df295a6ce85dab8c2a4d81797ff5014", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "haskell-config", + "sha256": "052hzybign54qawdm1fflsaz4bcwflycksv6wb1nw1jv79s2qbap", "rev": "8e4e28c3852376510861f64f00009a63b8ec0c7d" }, "recipe": { "sha256": "0672mqm0c261mknbgc3a4pahq27gw2pfklflxl1y4ykbs6q7vcyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150919.421", "deps": [ @@ -26008,14 +27585,15 @@ }, "kixtart-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ryrun/kixtart-mode.git", - "sha256": "6b931784b85f3e17936b58424d3715f536e25dadbb67606496151e8c1e63a3d1", + "tag": "fetchFromGitHub", + "owner": "ryrun", + "repo": "kixtart-mode", + "sha256": "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb", "rev": "1c2356797e7b766bbaaa2b341176a8b10499cd79" }, "recipe": { "sha256": "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150611.1104", "deps": [ @@ -26024,14 +27602,15 @@ }, "helm-ag": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-ag.git", - "sha256": "fe494f3515f8d4f4e8b509739390ebd9525a81dafa2c76fbf35678a4e11563dd", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-ag", + "sha256": "11m1r4bcwk3w2g8wsgc1fbmkj5c30qfljwxhg1zw3hakvmycnpg6", "rev": "47aca7f291eccd81f1b1a4a8f96b8d8caec5242e" }, "recipe": { "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.218", "deps": [ @@ -26041,14 +27620,15 @@ }, "direx-grep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/direx-grep.git", - "sha256": "b0b822f61e4ec1bc51d5c455ab319740392848446034a1ccd6325eeb31808d6b", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "direx-grep", + "sha256": "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h", "rev": "1109a512a80b2673a70b18b8568514049017faad" }, "recipe": { "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140515.1006", "deps": [ @@ -26063,21 +27643,22 @@ }, "recipe": { "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090804.1752", "deps": [] }, "cycle-resize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pierre-lecocq/cycle-resize.git", - "sha256": "237ac7c81f7df8f6f9aee5ed69aea93f35ab9beab985e3d5e4c7fe6413cac341", + "tag": "fetchFromGitHub", + "owner": "pierre-lecocq", + "repo": "cycle-resize", + "sha256": "0hf3r89n9zn7wkay71drxadsnd9zm6p6kvg5mvwzdy3x3z4cfyi3", "rev": "1a5ed3ff6f7f5dc097c38b4361708b6882af692c" }, "recipe": { "sha256": "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150602.1423", "deps": [] @@ -26090,35 +27671,37 @@ }, "recipe": { "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1534", "deps": [] }, "centimacro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/centimacro.git", - "sha256": "f0314ef095a1e1c634f340aa2fc41c298c3a1c82da6fdba508950e96b0ba197f", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "centimacro", + "sha256": "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh", "rev": "1b97a9b558ed9c49d5da1bfbf29b2506575c2742" }, "recipe": { "sha256": "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140306.827", "deps": [] }, "cmake-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Kitware/CMake.git", - "sha256": "720660bc113904d40b725b242f415f878ed637fe7f9ea74655ac35bff1947e76", - "rev": "7a47745d69003ec580e8f38d26dbf8858a4f5b18" + "tag": "fetchFromGitHub", + "owner": "Kitware", + "repo": "CMake", + "sha256": "1fga8yvhna953p8gkx69767ai9lkzrxfisqwlf3mrc4pn40yi74x", + "rev": "f9e3ca46cbeae4fb885398e8f7b90c784078b1d3" }, "recipe": { "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151012.926", "deps": [] @@ -26131,7 +27714,7 @@ }, "recipe": { "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150509.1545", "deps": [ @@ -26140,14 +27723,15 @@ }, "smart-forward": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/smart-forward.el.git", - "sha256": "0a76a5c2295a86af7b4c8b3a4bc77bbedca8758d60c61f874c1542f9713f84a6", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "smart-forward.el", + "sha256": "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha", "rev": "7b6dbfdbd4b646376a567c70e1a161545431b72b" }, "recipe": { "sha256": "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140430.213", "deps": [ @@ -26163,35 +27747,37 @@ }, "recipe": { "sha256": "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.1243", "deps": [] }, "interleave": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rudolfochrist/interleave.git", - "sha256": "11059f527efb7aca797796516cd1c14cc3acc87f5bf8e15a02474f1d95f35472", + "tag": "fetchFromGitHub", + "owner": "rudolfochrist", + "repo": "interleave", + "sha256": "13bsszx4rsq3awg6zgzfdwgflkldw38nihkc9nldfixzvw1gdqqv", "rev": "4b8ce53ee8ca075029ce88d203735256a875e516" }, "recipe": { "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.835", "deps": [] }, "workgroups2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pashinin/workgroups2.git", - "sha256": "2bcf5853ea97d94154c1317085d741855960eca6cdf3852f8d8f429442773656", + "tag": "fetchFromGitHub", + "owner": "pashinin", + "repo": "workgroups2", + "sha256": "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n", "rev": "928d509157ec8a4a2e343b6115dff034c3243a7a" }, "recipe": { "sha256": "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141102.1322", "deps": [ @@ -26203,14 +27789,15 @@ }, "eyebrowse": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/eyebrowse.git", - "sha256": "47e108da168fe02e2d186f98ac2b10ca36ec682762a8eb0bf409b109c5e68549", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "eyebrowse", + "sha256": "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7", "rev": "6d75409a81a6447765ad2171e3d0b5a272e1f207" }, "recipe": { "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.816", "deps": [ @@ -26220,14 +27807,15 @@ }, "ido-occasional": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/ido-occasional.git", - "sha256": "99e2134a58e14f40ef357434c68e9237c0d29414ba190ede266ab4ce93c0937e", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ido-occasional", + "sha256": "0zlkq29wxd3a4vg0w6ds2jad5h1pja7ccd3l6ppl0kz1b1517qlr", "rev": "d405f1795e1e0c63be411ee2825184738d29c33a" }, "recipe": { "sha256": "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150214.648", "deps": [ @@ -26236,14 +27824,15 @@ }, "extempore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/extemporelang/extempore-emacs-mode.git", - "sha256": "20215de3e1eaf3e3834b2411eb1164a0af5a486eb0152f6a62917600ac6524ec", + "tag": "fetchFromGitHub", + "owner": "extemporelang", + "repo": "extempore-emacs-mode", + "sha256": "1gdvls5gaqiwrc8v335ap9raa25jzjq32h80y0mfq0iyrk1r9glp", "rev": "e1efe28b29e2a5caf03a0cf1f1406e6a375be919" }, "recipe": { "sha256": "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.40", "deps": [ @@ -26252,14 +27841,15 @@ }, "oauth": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/psanford/emacs-oauth.git", - "sha256": "920e98b72e57d7713a0aec4fca2e8d38e688f7d4d76564d18d80c7c1c2f40d15", + "tag": "fetchFromGitHub", + "owner": "psanford", + "repo": "emacs-oauth", + "sha256": "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj", "rev": "ee4744ad76a1560281b0c4944575a3bd598c6458" }, "recipe": { "sha256": "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130127.1951", "deps": [] @@ -26272,35 +27862,37 @@ }, "recipe": { "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141128.837", "deps": [] }, "apropospriate-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/apropospriate-theme.git", - "sha256": "7d674a3fbe7a33e0aef29f2c9fbe12252cfd7a702eb8904515f194db17bd36dd", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "apropospriate-theme", + "sha256": "1p9nplbxp57i2m2r1f1ff1xgsb152az9yb4zyapf0cvspqzllrvx", "rev": "3cc7729e266058c3c080ee67769cb0ff3e0789a6" }, "recipe": { "sha256": "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.1059", "deps": [] }, "speech-tagger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cosmicexplorer/speech-tagger.git", - "sha256": "44c382b456b23dea6c9dbda97e9b0ca48f91bff789c5b6158a10b5d4ce865b33", + "tag": "fetchFromGitHub", + "owner": "cosmicexplorer", + "repo": "speech-tagger", + "sha256": "03vvv8s5l3218231hm7l6bkl990b0ypc8n72lda1zxk6kjyr1q25", "rev": "10135e324630d25ae8c16f052cf4d97bda592164" }, "recipe": { "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150903.2", "deps": [ @@ -26309,42 +27901,45 @@ }, "dokuwiki-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kbkbkbkb1/emacs-dokuwiki-mode.git", - "sha256": "f929dfd835a5c005c1b7f742ddec218f3d5a8d4ed3286f794c55c32aeeb69680", + "tag": "fetchFromGitHub", + "owner": "kbkbkbkb1", + "repo": "emacs-dokuwiki-mode", + "sha256": "104nnvp2mhsm9iwnya6k9s6mlgcg47ndshppnz0hbh556pcdyagr", "rev": "e0cecc9551f490318e7a23ed9e0a3082c7196bc7" }, "recipe": { "sha256": "0q5ybyj35dyh8k0nfvbglsq3ad2apc8cdijw4wqczc5180fckgy9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140130.1136", "deps": [] }, "wakatime-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wakatime/wakatime-mode.git", - "sha256": "363cc9b5737c48a6b2fe4b94ef54ce0b6834284f7c340e3006d197b7cadc8dad", + "tag": "fetchFromGitHub", + "owner": "wakatime", + "repo": "wakatime-mode", + "sha256": "1bcdvk5bg5yi0qq0wd3w9wl38s0brrafz52bzsracj3wffswjg1n", "rev": "883f969c1502994b55912c6ade7155220e3c2cea" }, "recipe": { "sha256": "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.1830", "deps": [] }, "evil-vimish-fold": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alexmurray/evil-vimish-fold.git", - "sha256": "58c6a0315e57b059c1ae2f30cf82b1186e497236145afda45f6fccd2c7bf9154", + "tag": "fetchFromGitHub", + "owner": "alexmurray", + "repo": "evil-vimish-fold", + "sha256": "0m4ipz3x5k3gbyjgsnhl6rr4jvhqn61cyc1gmv0mkc2pbqqs1ijq", "rev": "d187a685d9610ec8159040c90030cb8ada4f54a5" }, "recipe": { "sha256": "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.2326", "deps": [ @@ -26355,14 +27950,15 @@ }, "try": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/larstvei/Try.git", - "sha256": "ccc50f794e672eb1a96723fc78a7cbd42bf05e1e95703ed6794945792664df16", + "tag": "fetchFromGitHub", + "owner": "larstvei", + "repo": "Try", + "sha256": "05nzchk7jia9g7b3ww4m3rgg0aylrfkpiz13cylv2bk79rwhzifc", "rev": "464cfb73599c88a4b57c83adfa93173c41d28a35" }, "recipe": { "sha256": "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150608.411", "deps": [ @@ -26371,126 +27967,135 @@ }, "whole-line-or-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/whole-line-or-region.git", - "sha256": "2d30e199cdd52d3ad438df540340274c13f7bbf289f1f77147a836b2f0dce046", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "whole-line-or-region", + "sha256": "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d", "rev": "a60e022b30c2f4d3118bcaef1adb77b90e0ca941" }, "recipe": { "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110901.330", "deps": [] }, "flymake-elixir": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/flymake-elixir.git", - "sha256": "088e8c33a45862b0147925a9677c2b4c4d59fb15db01acf45e5224338bd80bf9", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "flymake-elixir", + "sha256": "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn", "rev": "3810566cffe35d04cc3f01e27fe397d68d52f802" }, "recipe": { "sha256": "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130810.917", "deps": [] }, "flatui-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/john2x/flatui-theme.el.git", - "sha256": "163fc66d83f917801fbfb7679b9613815e4dd48032be61b4eb8de6908ab3f848", + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "flatui-theme.el", + "sha256": "0j8pklgd2sk01glgkr24b5n5521425vws8zwdi4sxcv74922j5zr", "rev": "80d1967ea73c10aa8aa10620c2b343010e9ce5b9" }, "recipe": { "sha256": "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150531.343", "deps": [] }, "seti-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/caisah/seti-theme.git", - "sha256": "9617807672e6c8483be459f026a06c441422ef0a9f21d34483bcaf5ce9ea2fa2", + "tag": "fetchFromGitHub", + "owner": "caisah", + "repo": "seti-theme", + "sha256": "18igxblmrbxwhd2d68cz1bpj4524djh2dw2rwhxlij76f9v805wn", "rev": "f2f472af00f251f8cdced29faadbb3380d3c7ff1" }, "recipe": { "sha256": "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150314.322", "deps": [] }, "git-link": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sshaw/git-link.git", - "sha256": "aee955bf9d1d95a1c5fd6e1ed2e2ceabb5324659294b4adaecef572bd9ff43d1", + "tag": "fetchFromGitHub", + "owner": "sshaw", + "repo": "git-link", + "sha256": "1la3zzcjnmzgxkd4ljr9b5335ddbrvid47kfzp2s358xknzmbsdf", "rev": "00a8ed924d837d43bfdc486ab389ee400b6c2a8f" }, "recipe": { "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.1225", "deps": [] }, "evil-nerd-commenter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/evil-nerd-commenter.git", - "sha256": "7b486a366a536fc2fa6e879bda4a9a76cef552e673879c2056e4361b9f644c33", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-nerd-commenter", + "sha256": "1c8zh5vykl4v57jrxcpyrbd1ih6nv306sfmb6ihiak6ncvllp8cx", "rev": "770981cffd7e8d967e6291c738534a04bcd7f753" }, "recipe": { "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.625", "deps": [] }, "aes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sauermann/emacs-aes.git", - "sha256": "4aad119c1eb346ee70401cef0aba0ffe98ee6db5985066557af30ce38f94dba1", + "tag": "fetchFromGitHub", + "owner": "Sauermann", + "repo": "emacs-aes", + "sha256": "0jlqk3kn2920b0dfmwy511x83hkmclb646qws3im0p75qcnyr4s1", "rev": "61d0da553ad980e5b9079444aed8214a28b409d9" }, "recipe": { "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1603", "deps": [] }, "vcl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ssm/vcl-mode.git", - "sha256": "e76590efe0e4d5a4054a71505d55851aa78d0eea5b650d5c25996696ccbd7de1", + "tag": "fetchFromGitHub", + "owner": "ssm", + "repo": "vcl-mode", + "sha256": "1jfis26lmghl30ydzq1xdkrrj3d85q7g44ns6kmfg119ccapllbj", "rev": "9f315654ec2ab13e5a14b752cac57dc832bef893" }, "recipe": { "sha256": "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1323", "deps": [] }, "orgit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/orgit.git", - "sha256": "e1665631714e9d84f9341d3ec21945862b93db4418411ba4b404ec125781f934", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "orgit", + "sha256": "0d7rh5bi5v04njj1nh8q8kdr6aw68lcw4ghx6kwq97aff4qmcrp1", "rev": "731c5cb4f1c7e2ee5b819ca159c0c01e2b306c73" }, "recipe": { "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151008.1614", "deps": [ @@ -26502,28 +28107,30 @@ }, "jump-to-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/jump-to-line.git", - "sha256": "7a6057656a200f741cdaf7c8c694d4f4838f3dd0d3e25e84b9a10e315ea537e9", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "jump-to-line", + "sha256": "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s", "rev": "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8" }, "recipe": { "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130122.1053", "deps": [] }, "browse-at-remote": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rmuslimov/browse-at-remote.git", - "sha256": "61b944f1b53d8982ad5857f83e5b09ff6f75ab825467de6fdad6a5ba67297b22", + "tag": "fetchFromGitHub", + "owner": "rmuslimov", + "repo": "browse-at-remote", + "sha256": "1djylgajp47mjxgdppm8ihbs4k4gnqn6ryzq3d1wkq5vlmqq25m3", "rev": "6b07282cbf3d40d654cbc083f19a07118848ee6d" }, "recipe": { "sha256": "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1527", "deps": [ @@ -26534,14 +28141,15 @@ }, "pkg-info": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/pkg-info.el.git", - "sha256": "a6d32a57e310aa3ab9adbf5bc6fb0be052c3accc2625b33180467554820e1a3e", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "pkg-info.el", + "sha256": "1xkdbyhz9mgdz5zmjm4hh050klsl12w5lkckw2l77ihcxv0vjnf2", "rev": "4dbe328c9eced79e0004e3fdcd7bfb997a928be5" }, "recipe": { "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150517.643", "deps": [ @@ -26550,14 +28158,15 @@ }, "dollaro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/dollaro.git", - "sha256": "b2bd1e5db291d4bec8108b797649338deea3cfe68f8aaf068ba8b557bdd5d8f7", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "dollaro", + "sha256": "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj", "rev": "500127f0172ac7a1eec627e026b59136580a74ac" }, "recipe": { "sha256": "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.702", "deps": [ @@ -26566,14 +28175,15 @@ }, "rustfmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fbergroth/emacs-rustfmt.git", - "sha256": "a9d6dc2ddcff1cc72938c79b60e806228d32bd8a6850481deb4ce2eb22095944", + "tag": "fetchFromGitHub", + "owner": "fbergroth", + "repo": "emacs-rustfmt", + "sha256": "0i2r14ifpqjcxcflhl38iayk53920vl616y770lwf77zvhnxrmm9", "rev": "b54e77b2287bfc558c0b4dbfa8908b4face48320" }, "recipe": { "sha256": "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.1311", "deps": [ @@ -26582,14 +28192,15 @@ }, "helm-css-scss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/helm-css-scss.git", - "sha256": "f05aa3614eeb1c1e5aacd40c477c230bff77e8f5fdb9d94a6867757da1ba4305", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "helm-css-scss", + "sha256": "01a3pahpsxb7d15dkfgxypl7gzqb4dy4f36lmid1w77b9rhs6nph", "rev": "ab8348aa98e0daa2f1b771e35bdb06bfacbe5016" }, "recipe": { "sha256": "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140626.1925", "deps": [ @@ -26599,14 +28210,15 @@ }, "flycheck-protobuf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/edvorg/flycheck-protobuf.git", - "sha256": "1fe0fda77559bcea3d4572c3e3d299ba2bc6eca9e8105fe5b71af1c9d8a90fed", + "tag": "fetchFromGitHub", + "owner": "edvorg", + "repo": "flycheck-protobuf", + "sha256": "0dq4ikqskkpcl3z4s5vl6h4f4bx4dsgyn2knlr3x4wjcgzyrv0qn", "rev": "2f0ab48b1b2e8f6c4b86ce876598f9ac9868d1da" }, "recipe": { "sha256": "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150731.512", "deps": [ @@ -26615,14 +28227,15 @@ }, "evil-space": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/linktohack/evil-space.git", - "sha256": "be67ad6727d40618d7d065c74ea5613d159b662540de5035466f538425bc96f4", + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-space", + "sha256": "1x4nphjq8lvg8qsm1pj04mk9n59xc6jlxiv5s3bih1nl4xkssrxy", "rev": "a9c07284d308425deee134c9d88a2d538dd229e6" }, "recipe": { "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.628", "deps": [ @@ -26631,42 +28244,45 @@ }, "ipretty": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/ipretty.git", - "sha256": "f430a6686892d57825c2a294871f61757d4d553e040ea94ed8c8fc7b586a7e6a", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "ipretty", + "sha256": "0skyd9c7pz68v17aj3h47ralszbmc4gqg552q8jpimcjd1lacc7l", "rev": "6f6da8907abea53d6d246d61e1a0f4ebeb0b9f38" }, "recipe": { "sha256": "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140407.20", "deps": [] }, "wcheck-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tlikonen/wcheck-mode.git", - "sha256": "bb800e20b75c79f4226caf92570c5d4c5e616ccacc11e0546734b4bbcc72f095", + "tag": "fetchFromGitHub", + "owner": "tlikonen", + "repo": "wcheck-mode", + "sha256": "15ghfb6bpd1lcxaf04fcr9n62pjcbl65g4mgdhig8yawnwh0x05v", "rev": "6f5e9faabb04f9e7c6698b90487ebe5913a13aed" }, "recipe": { "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1205", "deps": [] }, "overseer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/overseer.el.git", - "sha256": "52710482081e8a7a202626dd1a6e4bb72d15de484690e565b18bede3ec4086ac", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "overseer.el", + "sha256": "1bfj56ackza8c1jja660v6ss9ii7prcaim5plnfqsv3k149r8qlh", "rev": "db27cbbb10fb9b072d638a1b345102b42b20a37d" }, "recipe": { "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150801.1202", "deps": [ @@ -26683,35 +28299,37 @@ }, "recipe": { "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1839", "deps": [] }, "win-switch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/genovese/win-switch.git", - "sha256": "7efc05e7e7315d63e8cf0e8e020b2ae1b211d3ce7e7d2584ddbd7dc86214cd4b", + "tag": "fetchFromGitHub", + "owner": "genovese", + "repo": "win-switch", + "sha256": "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i", "rev": "a0da96c23e8775a2dfdbe55ed3ec5b57f1ebb26a" }, "recipe": { "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150208.2111", "deps": [] }, "nrepl-sync": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/lein-sync.git", - "sha256": "d9448f7fa709ae1a1428a493cbf7f74cfe0b15e2857b7afd1ea53a38b69cee86", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lein-sync", + "sha256": "1129r3rzmfbl8nxjz71xnlyaszhhldawj467zbl36brdadp014n1", "rev": "bab53a2361526d63a24cda176d07a1247bf5b399" }, "recipe": { "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140807.1054", "deps": [ @@ -26720,72 +28338,77 @@ }, "smtpmail-multi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/smtpmail-multi.git", - "sha256": "0f5b5b95fc93ca121d88937f70ddd8bb1477d0f8e073f81fa15a8a7365b41766", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "smtpmail-multi", + "sha256": "0rhpnijp72jsl4gzhwz0z387f55vv3fp0zwki0fi5jlkzjamnnqg", "rev": "21885f6f7ec46facb64fafc2caa2be01caa4b6db" }, "recipe": { "sha256": "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130921.2242", "deps": [] }, "gitty": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/gitty.git", - "sha256": "00142aa99ec2d24381429241ae7fd2f00bbf92574b9d40da81dc7d2a84d51579", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "gitty", + "sha256": "0y8msn22lzfwh7d417abay9by2zhs9zswhcj8a0l7ln2ksljl500", "rev": "c7c3d622d59531d023b9184d2479316c28045ca2" }, "recipe": { "sha256": "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.148", "deps": [] }, "dmenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lujun9972/el-dmenu.git", - "sha256": "227eeeb36d2601b1a3b7311494aa7bb2ab7354088ad1799c8fecc83d9a100400", - "rev": "8026fbb51140fd8afd0ffa859c7bdfc6e27b8575" + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "el-dmenu", + "sha256": "1k9fkydy5rwfnj610fv2k8pallz4w545f4ms0snj63fp01640090", + "rev": "3b8e146f1f2170a7db2a0e45c352e523be25f25e" }, "recipe": { "sha256": "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151209.932", + "version": "20151216.1027", "deps": [ "cl-lib" ] }, "stem": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/stem.git", - "sha256": "d3ae23dc5ea9feba8eda5d0a7b5d091610ffd01914712f511a03f17fdef6ef29", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "stem", + "sha256": "1xc4v8a35c2vpfhza15j4f89x7vyg9bbgm7xnprij7814k8iy7p0", "rev": "d74e6611d6ba5025e0276a2cc7c8a90f46bfa9ac" }, "recipe": { "sha256": "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131102.609", "deps": [] }, "erefactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-erefactor.git", - "sha256": "313db0762385e6a74ffb52f8c63e729a1f2a5c61ec2e036b9c3e83eaec31259e", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-erefactor", + "sha256": "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i", "rev": "fde3fd42c815c76e8015f69518a92f6bfcfde990" }, "recipe": { "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150620.1943", "deps": [ @@ -26794,56 +28417,60 @@ }, "mwe-log-commands": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/mwe-log-commands.git", - "sha256": "832b60f89e9034600a9cf90a867d75e972c23b4d1ac55cb02f26bf43b05fb461", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "mwe-log-commands", + "sha256": "0qdlbyq47gr65yq5ri8s9lxw4wp9fmyqc2prkh560d4hkvw60aw3", "rev": "8253f2a311f35b03f72a035744f0cbdd776ea17e" }, "recipe": { "sha256": "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100703.741", "deps": [] }, "livescript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yhisamatsu/livescript-mode.git", - "sha256": "e1521fd17de14375ec52e285d004440f9669b4128d572f26bf3a788dea5e22f5", + "tag": "fetchFromGitHub", + "owner": "yhisamatsu", + "repo": "livescript-mode", + "sha256": "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg", "rev": "90a918d9686e256e6d4d439cc20f24dad8d3b804" }, "recipe": { "sha256": "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140612.2321", "deps": [] }, "identica-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gabrielsaldana/Emacs-Identica-mode.git", - "sha256": "47664da51942255bb81207362c4da74e36190b6a83be33859df273ab1bc1c29b", + "tag": "fetchFromGitHub", + "owner": "gabrielsaldana", + "repo": "Emacs-Identica-mode", + "sha256": "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk", "rev": "cf9183ee11ac922e85c7c908f04e2d00b03111b3" }, "recipe": { "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130204.1653", "deps": [] }, "org-ehtml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/org-ehtml.git", - "sha256": "ea2859eddeb89895b9252b4caba86b891426f6de2f9f09dacec0b3bb0f6827b5", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "org-ehtml", + "sha256": "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq", "rev": "9df85de1a0fe1e7b2d6c000777c1a0c0217f92d0" }, "recipe": { "sha256": "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150506.1858", "deps": [ @@ -26853,14 +28480,15 @@ }, "mentor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skangas/mentor.git", - "sha256": "67d0b598dc2f5e3b322ef2d77a664f62313d646fe04689d5d974d7c0e84df08e", + "tag": "fetchFromGitHub", + "owner": "skangas", + "repo": "mentor", + "sha256": "11hyydc13jdai6lkxx8nqf8xljh0gx7fcmywhik4f1hf3pdv7i2q", "rev": "f5d653348140cdab1d8ee9143b14a50ea88ed3fb" }, "recipe": { "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140904.1910", "deps": [ @@ -26875,35 +28503,37 @@ }, "recipe": { "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.657", "deps": [] }, "dtrt-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jscheid/dtrt-indent.git", - "sha256": "874f4fdc708f2d7c668ddb070592c873b77e9176882870fa616ac3c09a44499d", + "tag": "fetchFromGitHub", + "owner": "jscheid", + "repo": "dtrt-indent", + "sha256": "0x8c3h3jvyn2462r0sagz63vv9pr5ivfzkshr69603ibyfgqxxkp", "rev": "7f212888fbacc262080ab2740eda673b376c6b7b" }, "recipe": { "sha256": "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.414", "deps": [] }, "bracketed-paste": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hchbaw/bracketed-paste.el.git", - "sha256": "1ab1391a3494bccded0d48adfd243ac8ff217effe919f23dc9337740ce1f8600", + "tag": "fetchFromGitHub", + "owner": "hchbaw", + "repo": "bracketed-paste.el", + "sha256": "00463z740xrkr4yz46g9zxz23zy878jgvba81pnwvg4l6hd3kc8s", "rev": "6c2aee346e2f5cdb4ed1386c3e3c853cecd72eff" }, "recipe": { "sha256": "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140222.2001", "deps": [ @@ -26912,14 +28542,15 @@ }, "ac-alchemist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-alchemist.git", - "sha256": "f50e8a0995757a766ac85edbd03c97161177391018f21e88d4e5de8f317eeeeb", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-alchemist", + "sha256": "19msfx3f3px1maj41bzh139s6sv2pjk9vm3bphn7758fqhzyin0f", "rev": "b1891c3d41aed83f61d78a609ea97be5cc2758d9" }, "recipe": { "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150908.156", "deps": [ @@ -26930,14 +28561,15 @@ }, "jvm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/martintrojer/jvm-mode.el.git", - "sha256": "3cda59672aba3f06674139d5870fcd2c90f9447ffa8f46d8b588c64b6563214d", + "tag": "fetchFromGitHub", + "owner": "martintrojer", + "repo": "jvm-mode.el", + "sha256": "0k91cdjlpil8npc4d3zsgx2gk41crl7qgm9r85khcgxs59kmkniw", "rev": "3355dbaf5b0185aadfbad24160399abb32c5bea0" }, "recipe": { "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150422.208", "deps": [ @@ -26947,72 +28579,77 @@ }, "replace-symbol": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmastenbrook/replace-symbol-el.git", - "sha256": "ba83dea6b1519770ce1379a0972f983a2b8bc4d49dc4dac310bc7d8e7fdacd19", + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "replace-symbol-el", + "sha256": "0ks884jhxqkr8j38r9m4s56krm2gpkm0v5d51zzivcfhs30s6nff", "rev": "6af93ad5a23790c90595c92bf2dcb69cd6d5f820" }, "recipe": { "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1857", "deps": [] }, "which-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/justbur/emacs-which-key.git", - "sha256": "a3d2a8668d5629c0fce5c4b5e75b3fef0fce1cd95489568867b6f500532c9a62", - "rev": "14a11c6d69fea066a56cec0ce2702580ef86a9f1" + "tag": "fetchFromGitHub", + "owner": "justbur", + "repo": "emacs-which-key", + "sha256": "11mi23djk690n4984hk3pv61rrkdnxpkmywsqibi3xki27v2al36", + "rev": "ad60a6c7206752d9b9cf4ba17c2293dba365e9fb" }, "recipe": { "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151211.1429", + "version": "20151217.827", "deps": [ "emacs" ] }, "myanmar-input-methods": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yelinkyaw/emacs-myanmar-input-methods.git", - "sha256": "d91ba0ffae8a519b2461482e7a0c9ad9246dfbce4e95809317ea34f172ca1496", + "tag": "fetchFromGitHub", + "owner": "yelinkyaw", + "repo": "emacs-myanmar-input-methods", + "sha256": "0177q8hm51bcvb4i46rwnimngvy9y32p3as19zwmfbznp2sc5963", "rev": "601f5342ee2fd01263f6e04579d90cc22ad623f7" }, "recipe": { "sha256": "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150806.707", "deps": [] }, "spaces": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chumpage/chumpy-windows.git", - "sha256": "baaf7d7fb21229883f9782f140c099393a24119c9d9efa1d96b45cf9b1c72a19", + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "chumpy-windows", + "sha256": "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs", "rev": "164be41b588b615864258c502583100d3ccfe13e" }, "recipe": { "sha256": "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130610.249", "deps": [] }, "esxml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tali713/esxml.git", - "sha256": "633773cc02d68b35e63b5e8075c860944222a88c5e801c31634e6a26079e2e57", + "tag": "fetchFromGitHub", + "owner": "tali713", + "repo": "esxml", + "sha256": "0mrfkq3jcsjfccqir02yijl24hllc347b02y7gk3b2yn0b676dv3", "rev": "ca09423c3172820ba97dcc68204911d06f55f851" }, "recipe": { "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.1328", "deps": [ @@ -27021,56 +28658,60 @@ }, "iss-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rasmus-toftdahl-olesen/iss-mode.git", - "sha256": "11ffbfe33a1174816061493f24f5fb08341091019f90237f5f9a513ac46ab5e4", + "tag": "fetchFromGitHub", + "owner": "rasmus-toftdahl-olesen", + "repo": "iss-mode", + "sha256": "0992lzgar0kz9i1sk5vz17q9qzfgl8fkyxa1q0hmhgnpjf503cnj", "rev": "3b517aff31529bab33f8d7b562bd17aff0107fd1" }, "recipe": { "sha256": "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141001.1413", "deps": [] }, "dpaste": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gregnewman/dpaste.el.git", - "sha256": "fac7f92fe1bc5641247717584dca381bfcd69106078f4f49f75c2b6e72df4487", + "tag": "fetchFromGitHub", + "owner": "gregnewman", + "repo": "dpaste.el", + "sha256": "11s4vxr6waswyx4lz3q70s8xdz0v7354sn0pfwj42mmww4pzkizs", "rev": "d073030e6b7feae84f0e2118e5fc454833848629" }, "recipe": { "sha256": "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150528.800", "deps": [] }, "python-cell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisch/python-cell.el.git", - "sha256": "c7d886aef5743507dda99cbbffd11a5e39a55871afb3ce792fb7ff2a9ab4b4e5", + "tag": "fetchFromGitHub", + "owner": "thisch", + "repo": "python-cell.el", + "sha256": "1cnjdgw3x6yb5k06z57xifywlg0kdx9ai4f1ajc0wx9aax8r5gav", "rev": "ccacd91a19be784860d687eb1e8ce88fddaacaf6" }, "recipe": { "sha256": "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131029.1816", "deps": [] }, "japanese-holidays": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/japanese-holidays.git", - "sha256": "fb263cfc6d7d414a3f2a79ef929a0f45419114204e02ea0eb703e36e2f4f95d7", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "japanese-holidays", + "sha256": "1mwm9wpnxqq3nw7fl0jf40a92ha51yd95vvr58zllhbxdpy3q9pv", "rev": "3c82e33a942e495bbfdf3f40d965dafc87b51336" }, "recipe": { "sha256": "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150208.1937", "deps": [ @@ -27079,14 +28720,15 @@ }, "pyimpsort": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/pyimpsort.el.git", - "sha256": "088777e80a2f2a3b349dfc5a53dea7826af22a5fe52882f379bde6d03b511b1e", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "pyimpsort.el", + "sha256": "003hd5igv152yr4fa47n2l5jhwvdlfhw7bap1dkm1i7i898i6yds", "rev": "e90d1b09e35356e3eed890fe38875bc7216d0f4e" }, "recipe": { "sha256": "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.1317", "deps": [ @@ -27095,56 +28737,60 @@ }, "fwb-cmds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/fwb-cmds.git", - "sha256": "755678b6cbad8999c37fb907b7d680abbb4aba70f3faf0248768a44252f61623", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "fwb-cmds", + "sha256": "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm", "rev": "93504c2022799a84cc14d598e1413f8d9df4ee0e" }, "recipe": { "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131209.1800", "deps": [] }, "thread-dump": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nd/thread-dump.el.git", - "sha256": "3769c8db04dacd20250f8209cb7bc7fc32b6f81a4565e6a102c18b9df8ce4c66", + "tag": "fetchFromGitHub", + "owner": "nd", + "repo": "thread-dump.el", + "sha256": "0rjcrvw9v2y10ahycra53bwbccpwqxxwn2c21wjj1kfs0kdwhs9p", "rev": "1cee07775ac8c13bb52217be6c383562c617542b" }, "recipe": { "sha256": "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130323.1225", "deps": [] }, "highlight-stages": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/highlight-stages.git", - "sha256": "cf0d65a63dca1236e83630bc0ac4ed07cff0cc813d2a89bf7b895536710bd93e", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "highlight-stages", + "sha256": "0gnr1dqkcmc9gfzqjaixh76g1kq7xp20mg1h6vl3c4na7nk6a3fg", "rev": "c5a01b29cf79cebd09da863d45f9f35f6ad3bd06" }, "recipe": { "sha256": "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150421.2257", "deps": [] }, "notmuch-labeler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/notmuch-labeler.git", - "sha256": "4042f18604b37bace249928115b040dcbb99b0fa500f95b0abe31220eb484345", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "notmuch-labeler", + "sha256": "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18", "rev": "d65d1129555d368243df4770ecc1e7ccb88efc58" }, "recipe": { "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131230.1119", "deps": [ @@ -27153,42 +28799,45 @@ }, "arjen-grey-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/credmp/arjen-grey-theme.git", - "sha256": "0219d5dee87c02d4c3aa6eacbe41c7500c04cdde85a0761f7226c62df61cdec4", + "tag": "fetchFromGitHub", + "owner": "credmp", + "repo": "arjen-grey-theme", + "sha256": "1i6y3kv2vii6f8gpd845vv6h832hqx0vxb3fmb1x80kwx3gda682", "rev": "d67a1da021269cb1aeb25ff1aa56249d67371266" }, "recipe": { "sha256": "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150731.845", "deps": [] }, "phi-search": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/phi-search.git", - "sha256": "c274136b2d4f52600c9cba34b96ab26d1c8038609fab446190755538e9c07e82", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-search", + "sha256": "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62", "rev": "40b86bfe9ae15377fbee842b1de3d93c2eb7dd69" }, "recipe": { "sha256": "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.312", "deps": [] }, "helm-c-yasnippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/helm-c-yasnippet.git", - "sha256": "ede5088a064804f8a17e00f552b1f604a74377a2a7d862605ddd58403867580b", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-c-yasnippet", + "sha256": "02sqcww40n6xbmh65n57l9vl79q4ysqm5x80gshzh1280s50irgd", "rev": "660e18131a91e08a6a797ae6c17e2067416b93d1" }, "recipe": { "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.1705", "deps": [ @@ -27199,14 +28848,15 @@ }, "codic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-codic.git", - "sha256": "bba3722e294d452a6aaece2665b2de49e4f5aa61fe5c2069bb0b7ecf55c3af12", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-codic", + "sha256": "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz", "rev": "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557" }, "recipe": { "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150926.627", "deps": [ @@ -27216,28 +28866,30 @@ }, "perl-completion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/imakado/perl-completion.git", - "sha256": "457e9efd79b0572de3f022ebe8f4266e039a80bbb783bf3c9bf497d63bbbfe3b", + "tag": "fetchFromGitHub", + "owner": "imakado", + "repo": "perl-completion", + "sha256": "0fzypcxxd5zlkcybz0xppf09l0vf4vsfisr2y3ijsmxhg7yrwzj5", "rev": "f2ec91b88a8b7d97d40d6c90a89eaf8e595c2b89" }, "recipe": { "sha256": "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090528.136", "deps": [] }, "ahungry-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ahungry/color-theme-ahungry.git", - "sha256": "efab0f5bea88e902531cd60a51f35af9738ba200901bea4620072419ff289336", + "tag": "fetchFromGitHub", + "owner": "ahungry", + "repo": "color-theme-ahungry", + "sha256": "0dlk53zij907413fl6wh02i8nwzrbbrm22nn3i9h5sc8x9dhzazg", "rev": "52b050992ef6fe0e6e57b51bcb5c98e02c616541" }, "recipe": { "sha256": "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.2138", "deps": [ @@ -27246,14 +28898,15 @@ }, "spaceline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TheBB/spaceline.git", - "sha256": "91c54a898a0c631c2cc0e1e6cf5c9480a3fcd90209891fb490593d4105418e0f", + "tag": "fetchFromGitHub", + "owner": "TheBB", + "repo": "spaceline", + "sha256": "1xyhayzr2mbsq9w448bxy7ja9cgy3vrgh70w36nqrrkl1pi7lm3b", "rev": "2cc31a94b8b8c3eefc81ab409071365d120d2535" }, "recipe": { "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.225", "deps": [ @@ -27266,42 +28919,45 @@ }, "auto-complete-clang-async": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Golevka/emacs-clang-complete-async.git", - "sha256": "f65fc7a8e9b8ace0a1cc5badb9166d65e3ac7366572a10a743187df50c4ef4ea", + "tag": "fetchFromGitHub", + "owner": "Golevka", + "repo": "emacs-clang-complete-async", + "sha256": "1sw0wxrjcjqk0w1llfj376g6axa5bnk2lq2vv66746bkz14h0s8f", "rev": "5d9c5cabbb6b31e0ac3637631c0c8b25184aa8b4" }, "recipe": { "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130526.1014", "deps": [] }, "gscholar-bibtex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/gscholar-bibtex.git", - "sha256": "13f709143302e9840486acbc9a4801a2ae63815d9b5e4e3262e0bf248c10cdb5", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "gscholar-bibtex", + "sha256": "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk", "rev": "00b32521de3aa689bc58516ae10ba7f3ef1b6c92" }, "recipe": { "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151022.1225", "deps": [] }, "elscreen-multi-term": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wamei/elscreen-multi-term.git", - "sha256": "a1642a0916bfb347cb6838d229f2d38779312f8aa0cb3ba77fe0fdfe56b6d1b2", + "tag": "fetchFromGitHub", + "owner": "wamei", + "repo": "elscreen-multi-term", + "sha256": "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51", "rev": "7b6048a0dd80f69460a62bbc6f1af8856141a5ea" }, "recipe": { "sha256": "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.2133", "deps": [ @@ -27312,14 +28968,15 @@ }, "hive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/r0man/hive-el.git", - "sha256": "7da53b652b44baf5c1f3d8f51b6c18714dce3da69088c1f9d747b94793ccf424", + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "hive-el", + "sha256": "097lrj9lgfa7szww324hlqywwkbi31n1pxfqyg0zbfj45djkp9bx", "rev": "11b5172e081ad8079fc78758bef6f306f82ae32b" }, "recipe": { "sha256": "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131217.912", "deps": [ @@ -27328,42 +28985,45 @@ }, "anyins": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antham/anyins.git", - "sha256": "6dc915ed4bad45619ff769db368b7afe5f050559ab94103f34e90c666e597284", + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "anyins", + "sha256": "05lq0bllgn44zs85mgnfdcyjasm6j8m70jdcxksf798i0qdqnk7n", "rev": "83844c17ac9b5b6c7655ee556b75689e4c8ea663" }, "recipe": { "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131229.441", "deps": [] }, "d-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode.git", - "sha256": "922dd6bbd35a57917a44a281d6e2e9b0b518e02c0b6baec1f293512aa7cd6b4b", + "tag": "fetchFromGitHub", + "owner": "Emacs-D-Mode-Maintainers", + "repo": "Emacs-D-Mode", + "sha256": "0fqirypxhbvnhz86rznwdx553ppg0z0hxh1h04qg7y58g01vpsdq", "rev": "5501b77a1e212e27dd78e8c0e86424064b439cbb" }, "recipe": { "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.154", "deps": [] }, "google-this": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/emacs-google-this.git", - "sha256": "0f195d4be81c55f733b907225cc5ea233ab63124c1935f875f0b13106d52641f", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "emacs-google-this", + "sha256": "0r6hngf3h5x55lk2qwfgd6bhjhkax5nz8ml43d1x23y5bjnrricq", "rev": "5274167553071fadaebe9c2d3b061470a684ae22" }, "recipe": { "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150522.440", "deps": [ @@ -27378,21 +29038,22 @@ }, "recipe": { "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.859", "deps": [] }, "iterator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/iterator.git", - "sha256": "d7f91503c7e8326f7eaab1457baf350041ed4671c296e35b315d80430e7eea21", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "iterator", + "sha256": "08gagq74702x65dy75n2f53fsh806nppnidim9z6ycp8qw1ibyfp", "rev": "7bd349d559a6e1c3da575e579a7cb35a7bee9190" }, "recipe": { "sha256": "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150321.2325", "deps": [ @@ -27402,14 +29063,15 @@ }, "jss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/segv/jss.git", - "sha256": "7efe1018838a890736211cbee301e1ef7fd157987078afc7ac7dbb91700d13b4", + "tag": "fetchFromGitHub", + "owner": "segv", + "repo": "jss", + "sha256": "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83", "rev": "41749257aecf13c7bd6ed489b5ab3304d06e40bc" }, "recipe": { "sha256": "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130508.923", "deps": [ @@ -27420,28 +29082,30 @@ }, "dired-fdclone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/dired-fdclone.el.git", - "sha256": "482d03f29cd197cbc39fcc23cf5859524cd657614176136c2966fbfcd794d8d2", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "dired-fdclone.el", + "sha256": "1lnqjkbzryv655n16xj1c5bxck2jb5ccy8yckz1wp5yikkr06ba8", "rev": "e9bf4f16248cb5d187a323b7887d236a4a203c59" }, "recipe": { "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150417.332", "deps": [] }, "package-safe-delete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/package-safe-delete.git", - "sha256": "2d9fcfbf1a808d9167cdf283d87e0122fcaed5dfcc2787e5bb5596ba4c33bbdd", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "package-safe-delete", + "sha256": "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd", "rev": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194" }, "recipe": { "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150116.1007", "deps": [ @@ -27451,28 +29115,30 @@ }, "emacsc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/emacsc.git", - "sha256": "475b2879d5622980b1aee0f1e3b7099683a008aed48186eb191c1e201f0219e7", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "emacsc", + "sha256": "1rqr08gj07hw37mqd0flmq4a10wn16vy7wg0msqq0ab2smwjhns7", "rev": "02325c640232ee184314eb58d0051f365f7f085c" }, "recipe": { "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150807.457", "deps": [] }, "react-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/johnmastro/react-snippets.el.git", - "sha256": "47714fc4ab7f9e7fb25df793ee8185593159df7daca3f6723fedfb33148e4002", + "tag": "fetchFromGitHub", + "owner": "johnmastro", + "repo": "react-snippets.el", + "sha256": "00j0iqa37yzd7xrgd8xcgpgmjcarhn0yx4zpbnr7z7kzmg24ywa7", "rev": "1b56f99e1f26c6dea4315c14fa58a851caa9d84f" }, "recipe": { "sha256": "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.1740", "deps": [ @@ -27481,14 +29147,15 @@ }, "dirtree-prosjekt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/prosjekt.git", - "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "prosjekt", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3", "rev": "a864a8be5842223043702395f311e3350c28e9db" }, "recipe": { "sha256": "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140129.304", "deps": [ @@ -27498,42 +29165,45 @@ }, "indicators": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/indicators.el.git", - "sha256": "3b3234f1673a31fc2d68e36f23447cecc363e6401cb046d94850cafd3f325cff", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "indicators.el", + "sha256": "1zsw68zzvjjh93cldc0w83k67hzcgi226vz3d0nzqc9sczqk8civ", "rev": "c6d520eb3536cf3a77c635fa36fec031d3f84fe4" }, "recipe": { "sha256": "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130217.1605", "deps": [] }, "fuzzy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/auto-complete/fuzzy-el.git", - "sha256": "3bda40b1e3394a5503bada130415c37b8cdf8a24da89fa5e398713130443f767", + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "fuzzy-el", + "sha256": "0rzp8c2164w775ggm2fs4j5dz33vqcah84ysp81majirwfql1niv", "rev": "534d723ad2e06322ff8d9bd0ba4863d243f698e7" }, "recipe": { "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150729.2237", "deps": [] }, "evil-snipe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hlissner/evil-snipe.git", - "sha256": "d89c9e89e1b77995461267ffccf9210b4491ddf7d5107befd072b07bec45d347", + "tag": "fetchFromGitHub", + "owner": "hlissner", + "repo": "evil-snipe", + "sha256": "0iyk8pn7pc3js3ppn46myzfr2i0b47wwrzv72939aydpw64rx76q", "rev": "71f0f7df2300be390227e3f78619630c32bddbe9" }, "recipe": { "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.1602", "deps": [ @@ -27542,14 +29212,15 @@ }, "jedi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi", + "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.905", "deps": [ @@ -27560,28 +29231,30 @@ }, "god-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/god-mode.git", - "sha256": "95e9db820509f0db8218e83758b1e1ab6ef508357bc32aee278cae901ba2fc35", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "god-mode", + "sha256": "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix", "rev": "6cf0807b6555eb6fcf8387a4e3b667071ef38964" }, "recipe": { "sha256": "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.1125", "deps": [] }, "cask-package-toolset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/cask-package-toolset.el.git", - "sha256": "f0dcebf81debbe5d2137b72aba544f1f0bf3b283104f545cc45488b840022e1b", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "cask-package-toolset.el", + "sha256": "1182z9h6xk8mj2blq4x4429kjg7b9s54gdhza4cdb6jk9409bdrn", "rev": "27467a52e243f3ba4024ce19d8e1f4dbd5dd7c0b" }, "recipe": { "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.130", "deps": [ @@ -27597,14 +29270,15 @@ }, "firebelly-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/startling/firebelly.git", - "sha256": "dd18169683a043210686adba32b08e5f013e143ce410f76d3b635a0abc6a5209", + "tag": "fetchFromGitHub", + "owner": "startling", + "repo": "firebelly", + "sha256": "02ajday0lnk37dnzf4747ha3w0azisq35fmdhq322hx0hfb1c66x", "rev": "5fd621102c676196319579b168da1476e8552d00" }, "recipe": { "sha256": "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140410.355", "deps": [ @@ -27613,28 +29287,30 @@ }, "wc-goal-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bnbeckwith/wc-goal-mode.git", - "sha256": "8c2f47fe65cd83a69563365253b44098d7dd92d87de8a42c70d2bbce3624f25c", + "tag": "fetchFromGitHub", + "owner": "bnbeckwith", + "repo": "wc-goal-mode", + "sha256": "0p7j4hvcxfyjf0na9s3xv29dvmwq82s56lincfasd0ydcpz4fbwc", "rev": "bf21ab9c5a449bcc20dd207a4915dcec218d2699" }, "recipe": { "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140829.859", "deps": [] }, "toml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/emacs-toml.git", - "sha256": "c0365a4c780e5534b612feea0b2509b07dbcf0c937e40a77b40665cc78d0cc4c", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "emacs-toml", + "sha256": "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban", "rev": "9633a6872928e737a2335aae1065768b23d8c3b3" }, "recipe": { "sha256": "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130903.755", "deps": [] @@ -27648,63 +29324,67 @@ }, "recipe": { "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110806.158", "deps": [] }, "find-things-fast": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eglaysher/find-things-fast.git", - "sha256": "63bd72bb924951dbf219602a096d0de844513eaf753fcede7cb96e9a2cc91520", + "tag": "fetchFromGitHub", + "owner": "eglaysher", + "repo": "find-things-fast", + "sha256": "1r6cs7p43pi6n2inbrv9q924m679izxwxqgyr4sjjj3lg6an4cnx", "rev": "efc7c189019ed65430e2f9e910e8e0a5ca9d2d03" }, "recipe": { "sha256": "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150519.1726", "deps": [] }, "github-issues": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/inkel/github-issues.el.git", - "sha256": "885f0a9daa6bf051ad10978a8224ccee507a6b07bdddf0eaecd99aac6b0d871b", + "tag": "fetchFromGitHub", + "owner": "inkel", + "repo": "github-issues.el", + "sha256": "065gpnllsk4x574fn9d6m4ajxl7mj5w2w5g9in421sp5r80fp9fv", "rev": "ebe83ec18e7b874b05e7bc9c25b8cf0800ad20c1" }, "recipe": { "sha256": "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120425.1735", "deps": [] }, "window-numbering": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/window-numbering.el.git", - "sha256": "5621d032ff17f622be1f924a80bd72b88134dbbfeb9032f11ff2b314b60be5c7", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "window-numbering.el", + "sha256": "1f4c6q4larifm745fr8f3w8sxs1sbs77vna29rw120jz8rnlz0jy", "rev": "575ad203545b01e21d28fefc0d8b809d1016ea3a" }, "recipe": { "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150228.1447", "deps": [] }, "company-math": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vspinu/company-math.git", - "sha256": "31056c3b2cb66d57636124d8451a09c92fc084e49afc885199ecd01b0a4aaf5f", + "tag": "fetchFromGitHub", + "owner": "vspinu", + "repo": "company-math", + "sha256": "0pxg9851pl7ck58qiz4swj2c0by914d4bn14c5imfvdn5hxnq19i", "rev": "f5cedcfa73e5ddd445167969e87ddf8e1bbd2bc1" }, "recipe": { "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.1837", "deps": [ @@ -27720,21 +29400,22 @@ }, "recipe": { "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140123.2102", "deps": [] }, "creole": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/elwikicreole.git", - "sha256": "744ab3f2825ddbd921c577fd889471bb1e15bc23dbe966b4a3fb92adf72a06fe", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "elwikicreole", + "sha256": "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv", "rev": "7d5cffe93857f6c75ca09ac79c0e47b8d4410e53" }, "recipe": { "sha256": "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140924.1000", "deps": [ @@ -27744,28 +29425,30 @@ }, "minibuffer-complete-cycle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/minibuffer-complete-cycle.git", - "sha256": "d3951a23cacadd51805ef40315fedfdd35c9d6ae20f6636f3bf337de0733cbff", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "minibuffer-complete-cycle", + "sha256": "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk", "rev": "3df80135887d0169e02294a948711f6dfeca4a6f" }, "recipe": { "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130813.1145", "deps": [] }, "imgix": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/imgix/imgix-emacs.git", - "sha256": "946ff48d3242604a2db010afe7dd0484ef49f269b3f70d402d19c6d676b857b7", + "tag": "fetchFromGitHub", + "owner": "imgix", + "repo": "imgix-emacs", + "sha256": "1q53r3f3x0hpzryxd1v1w3qgs54p384q0azi7xj2gppi1q49sa42", "rev": "4906ff0b4f7c9e84a5beb81630fe6d522ec91eaa" }, "recipe": { "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141226.1532", "deps": [ @@ -27778,14 +29461,15 @@ }, "anything-project": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/imakado/anything-project.git", - "sha256": "f7023c00604968accb5c655f392a1b58662572e3560e1de07d13638403884799", + "tag": "fetchFromGitHub", + "owner": "imakado", + "repo": "anything-project", + "sha256": "16a7i01q8qqkgph1s3jnwdr2arjq3cm3jpv5bk5sqs29c003q0pp", "rev": "9f6f04bc1911474e97e99faf52e204cf159add83" }, "recipe": { "sha256": "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.427", "deps": [ @@ -27795,14 +29479,15 @@ }, "powerline-evil": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/raugturi/powerline-evil.git", - "sha256": "849e55c8921bbc0527bd044f36fa3eb2a632a021e71d7a7433b89b7547876db0", + "tag": "fetchFromGitHub", + "owner": "raugturi", + "repo": "powerline-evil", + "sha256": "1c8y4r7zdr6764kzs5bc64idv2pfjvi78lg2f1d2hp1595ia8y5r", "rev": "98b3a102b6dba6632aa0755a7257300c9b164309" }, "recipe": { "sha256": "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.910", "deps": [ @@ -27812,14 +29497,15 @@ }, "bog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyleam/bog.git", - "sha256": "419e95df5e4d96bfc7add15c7c10aab2f2692f88594b19cbeefa3dee0a77e379", + "tag": "fetchFromGitHub", + "owner": "kyleam", + "repo": "bog", + "sha256": "15nmcnyj2w5llbznyww3i2ldfifp866qyg4bx1kbylqc3hd3y51w", "rev": "ea55493083ba08ac96e6cf130f24ac38c94abb45" }, "recipe": { "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150918.1730", "deps": [ @@ -27835,21 +29521,22 @@ }, "recipe": { "sha256": "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110301.234", "deps": [] }, "evil-indent-textobject": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/evil-indent-textobject.git", - "sha256": "bfb60d9f510fa0fbc7e6efce2d3fdec28f8d17a3cdb5564d813b26c2ac8ef059", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-indent-textobject", + "sha256": "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz", "rev": "70a1154a531b7cfdbb9a31d6922482791e20a3a7" }, "recipe": { "sha256": "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130831.1719", "deps": [ @@ -27858,14 +29545,15 @@ }, "fixmee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/fixmee.git", - "sha256": "2d5794d02e16cb334f190daabcc466d62fdebff9b2722a65ffd2ee56605946ba", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "fixmee", + "sha256": "1x4k8890pzdcizzl0p6v96ylrx5xid9ykgrmggx0b3y0gx0vhwic", "rev": "1b8b3460f1e3c3c1784b2a63fb9f4fb3bb4dc084" }, "recipe": { "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.755", "deps": [ @@ -27886,35 +29574,37 @@ }, "recipe": { "sha256": "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131004.342", "deps": [] }, "atom-dark-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/whitlockjc/atom-dark-theme-emacs.git", - "sha256": "c490160fc5ed13e6ec92030bbcc430b06830508caae03d4db684eedad0fed749", + "tag": "fetchFromGitHub", + "owner": "whitlockjc", + "repo": "atom-dark-theme-emacs", + "sha256": "0jfpzv8dmvl4nr6kvq5aii830s5h632bq2q3jbnfc4zdql7id464", "rev": "b6963e486d27eae7cd472736c106c7079c2a3d3c" }, "recipe": { "sha256": "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.135", "deps": [] }, "ox-tiddly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dfeich/org8-wikiexporters.git", - "sha256": "ba88de9da279819f90ba36e7619f447d12cf6c020ab82e1e034edbad45e7b4e6", + "tag": "fetchFromGitHub", + "owner": "dfeich", + "repo": "org8-wikiexporters", + "sha256": "1rmlwx2svnsf0cg2xf0a09ncy4kx8jgn3rrnpa89z0brlafxx25s", "rev": "0cd92e84ad22c103b078f285ec66ff98f7ca98ca" }, "recipe": { "sha256": "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.440", "deps": [ @@ -27930,21 +29620,22 @@ }, "recipe": { "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121125.1337", "deps": [] }, "semi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wanderlust/semi.git", - "sha256": "e37ff0b96d681304a8e253da6b80faf56f54b5ab1349b801c35717b5c4943ce8", + "tag": "fetchFromGitHub", + "owner": "wanderlust", + "repo": "semi", + "sha256": "1s1wjk2ba5spqc0vhj8kmfsm8vzmza06pnjkwal084v8dnwz0zz3", "rev": "35c9ff77db07ace4b7178189c1fe45118ebf9a65" }, "recipe": { "sha256": "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150525.619", "deps": [ @@ -27953,14 +29644,15 @@ }, "boron-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-boron-theme.git", - "sha256": "0baa3c31856713a4602cbcc2cad0aa5cffaec5a923cac68b285a6853622edabf", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-boron-theme", + "sha256": "1gys5ri56s2s525wdji3m72sxzswmb8cmhmw5iha84v7hlqkrahb", "rev": "ea5873139424d6ca013b915876daf0399432015b" }, "recipe": { "sha256": "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150117.1152", "deps": [ @@ -27969,14 +29661,15 @@ }, "relax": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/relax.el.git", - "sha256": "c6c86243ef3c1d6012d19c56b3cd3b144c4aa57fc0e570d3d664211722870b53", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "relax.el", + "sha256": "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66", "rev": "6e33892623ab87833082262321dc8e1977209626" }, "recipe": { "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131029.1634", "deps": [ @@ -27985,42 +29678,45 @@ }, "omni-kill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-kill.el.git", - "sha256": "9944a0ac72273338f13b9366571f1ed9d44d26966a3b6a71b2c5e85c9451b7d2", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-kill.el", + "sha256": "1925mh47n4x9v780qp5l6cksl64v9mpyb87znsg93x6sxr0cvv4c", "rev": "4c8dbb6b2c9f1afc0f82077c04eab022e5387e85" }, "recipe": { "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150527.149", "deps": [] }, "jenkins-watch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ataylor284/jenkins-watch.git", - "sha256": "c6e0b9f51d82611daf3213cc06ca3ebd88ae4e039a6d58633ba2ac23d1865e49", + "tag": "fetchFromGitHub", + "owner": "ataylor284", + "repo": "jenkins-watch", + "sha256": "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66", "rev": "37b84dfbd98240a57ff798e1ff8bc7dba2913577" }, "recipe": { "sha256": "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121004.1826", "deps": [] }, "git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/git.el.git", - "sha256": "ce3770100e0fbcc11da6f9a1ec63091ff9c9dd78bbe490707ceb9889a227d1b8", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "git.el", + "sha256": "0471xm0h6jkmxnrcqy5agq42i8immdb2qpnw7q7czrbsl521al8d", "rev": "2b523c1975d4f258effaf826656c4b7120b2a19f" }, "recipe": { "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140128.441", "deps": [ @@ -28031,28 +29727,30 @@ }, "operate-on-number": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/operate-on-number.el.git", - "sha256": "c94969e74b1a015fd277c86bbe803b912052fb2b6dd754e28c5f806335628347", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "operate-on-number.el", + "sha256": "0iw3c8sn702ziki59mvd5gxm484i7f0bwsy8fz95y08s9gknjjf9", "rev": "ceb3be565a29326c1098244fac0c50606723a56e" }, "recipe": { "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150707.123", "deps": [] }, "easy-escape": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cpitclaudel/easy-escape.git", - "sha256": "6701d633daa0db07450adcac3ea89b90ce7cfec320ed6d91f00f48587b947088", + "tag": "fetchFromGitHub", + "owner": "cpitclaudel", + "repo": "easy-escape", + "sha256": "1qn0givyh07w41sv5xayfzlwbpbq7p39wbhmwsgffgfqzzz5r2ys", "rev": "c87d76e5001f36fbbf975e9ce7e776acd2dd7776" }, "recipe": { "sha256": "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150718.2133", "deps": [] @@ -28065,7 +29763,7 @@ }, "recipe": { "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.1226", "deps": [ @@ -28075,14 +29773,15 @@ }, "browse-url-dwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/browse-url-dwim.git", - "sha256": "b0470ced3378a3653528a5972bd1e9c463fa402ee842ba708e55c9b45f624f06", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "browse-url-dwim", + "sha256": "1rcihwdxrzhgcz573rh1yp3770ihkwqjqvd39yhic1d3sgwxz2hy", "rev": "3d611dbb167c286109ac53995ad68286d87aafb9" }, "recipe": { "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140731.1422", "deps": [ @@ -28091,56 +29790,60 @@ }, "bats-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dougm/bats-mode.git", - "sha256": "4e163eae2d989af754797e05878b6eaa416a9794768d30bdc568edaeb9c5c9bb", + "tag": "fetchFromGitHub", + "owner": "dougm", + "repo": "bats-mode", + "sha256": "1fy9qnwsxvb8qnyk13bnjjbnlhdads5qf1byg5agg6lq5np3w5jf", "rev": "9469a9a9de4fe7d1aab4600294c43898bf5cf638" }, "recipe": { "sha256": "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141115.901", "deps": [] }, "requirejs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ricardmo/requirejs-mode.git", - "sha256": "9b45b72a582b5b1404a1774e67da1f5d3ca5fc0b950b5d675180ed8a70519b0b", + "tag": "fetchFromGitHub", + "owner": "ricardmo", + "repo": "requirejs-mode", + "sha256": "02wva5q8mvc0a5kms2wm1gyaag2x3zd6fkkpl4218nrbb0mbficv", "rev": "bbb0c09f8eb2d6a33c17319be8137f68bb16bc92" }, "recipe": { "sha256": "1sq1kim17bcmh39106vfgm7gq9nj9943lw8by0bpi5qr8xdjsn5r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130215.1504", "deps": [] }, "emmet-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/smihica/emmet.git", - "sha256": "992bc872ca2348f479b37c0045f8124270e2df3c54e9b0fe73ea856334210f35", + "tag": "fetchFromGitHub", + "owner": "smihica", + "repo": "emmet", + "sha256": "0037nikvlcw6i228jym76pl1mgw4fn5dpz8hfr86b3m0zb012inj", "rev": "3a29a1ae17271a3dfe3cd47db034ee4036b2b144" }, "recipe": { "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.938", "deps": [] }, "trident-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/johnmastro/trident-mode.el.git", - "sha256": "58bce0e75c0ebd7825b50c55c454059842502012568d51d90cd7fa085a8f7bcc", + "tag": "fetchFromGitHub", + "owner": "johnmastro", + "repo": "trident-mode.el", + "sha256": "08484fhc69rk16g52f9bzc1kzpif61ddfchxjbj1qqqammbx11ym", "rev": "ad3201f47e114de35df189c3d80f0fdea9507ea9" }, "recipe": { "sha256": "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130726.1407", "deps": [ @@ -28152,30 +29855,32 @@ }, "gnu-apl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lokedhs/gnu-apl-mode.git", - "sha256": "19ff62260107a43de03223138a6df922ada50608c28c67ab8c358808e00b8872", - "rev": "c34a231250622519a606ac5013c67b7307efa645" + "tag": "fetchFromGitHub", + "owner": "lokedhs", + "repo": "gnu-apl-mode", + "sha256": "1l37447zshk5bl3r8v8nladxrcq252z05z1wch5ywp3h2qkmhkxp", + "rev": "ee7e633c65a36acdf92a34325fc759698614fbfe" }, "recipe": { "sha256": "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151212.2335", + "version": "20151217.2305", "deps": [ "emacs" ] }, "edbi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-edbi.git", - "sha256": "7a645752aeeffde178aab432d99312e39e00f2ccd1384d5b8b88b0cc4a0bbef4", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-edbi", + "sha256": "1x5y1d5crc48iddlsf6irkr017p32a9xjcmlm9wf3zggmr95fr3s", "rev": "3edb409245d8a3bca7a5b25c70c98954c0ab42b2" }, "recipe": { "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140920.235", "deps": [ @@ -28186,14 +29891,15 @@ }, "markdown-toc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/markdown-toc.git", - "sha256": "705ad7e1d67d3f35ed290da3de720f51e40ed5c556aaaad642fb7b202044ecd5", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "markdown-toc", + "sha256": "0bmd601y2gafydnvzv9nbi5sh7m8hkwxbidim03knl2fh4j5rkyv", "rev": "44c79a3b57224337fdaca5d2bdedba918e908fcd" }, "recipe": { "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150715.1114", "deps": [ @@ -28204,14 +29910,15 @@ }, "sly-named-readtables": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/sly-named-readtables.git", - "sha256": "5790d3861e42e76d900c1cd69799f54676e547e84c2c8fce6c857dde04cc7bca", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly-named-readtables", + "sha256": "1xi625pn3mg77mjvr94v6a5pjyvgjavpkdbbh1lqjx1halaa2qb7", "rev": "df4ed79064cf85275804e201899b677bef4ab3f5" }, "recipe": { "sha256": "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150817.1016", "deps": [ @@ -28220,14 +29927,15 @@ }, "ac-html": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/ac-html.git", - "sha256": "dca39461ecadc2406281152b88cf9f79fb48c86527c989e2ec2dd79aef375aba", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "ac-html", + "sha256": "1sip87j4wvlf9pfnpr0zyyhys1dd9smh6hy3zs08ihbdh98krgs5", "rev": "3de94a46d8cb93e8e62a1b6bdebbde4d65dc7cc2" }, "recipe": { "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.231", "deps": [ @@ -28239,74 +29947,79 @@ }, "rails-log-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ananthakumaran/rails-log-mode.git", - "sha256": "e5a3e165e02aad20bc5d4d9dbadba33399fbe81ecf39dc2465379acf5004ed43", + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "rails-log-mode", + "sha256": "1fh8wsb0pa2isr1kgh3v9zmmxq1nlmqwqk4z34dw5wpaiyihmk84", "rev": "ff440003ad7d47cb0ac3300f2a632f4cfd36a446" }, "recipe": { "sha256": "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140407.2325", "deps": [] }, "swiper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/swiper.git", - "sha256": "db228997b044bf1c4fc778a200e54a03095327b8c6ee7f13d8b84d24e012e2e0", - "rev": "83f89d8c3160b968a422127d14d245f3f4a2c733" + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper", + "sha256": "021rl53d7qmrkg0l3z19khfznj60bf45907dz1ypgbk6blakbk8q", + "rev": "8306be11c84a23e0ab3bcdd36cab1e5c16df8fbe" }, "recipe": { "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151212.241", + "version": "20151218.523", "deps": [ "emacs" ] }, "simple-call-tree": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vapniks/simple-call-tree.git", - "sha256": "52d67825f4bd91ab47dee92e1c5ea677e811306da84a2643c68b06a902637425", + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "simple-call-tree", + "sha256": "09blcc1aj1lbqr1jcjm8dlq13s3plrg1qbp9vr3sp4dxyhjpimjj", "rev": "9f2fd423a3b86878d84e8c97e3ba45647b4d165e" }, "recipe": { "sha256": "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1625", "deps": [] }, "eldoc-eval": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/eldoc-eval.git", - "sha256": "59a14ba30e067d74376fc1392edf36c176932e56814778f3390759187b52f76e", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "eldoc-eval", + "sha256": "0vppa9xihn8777rphiw1aqp96xn16vgjwff1dwvp8z861silp8ar", "rev": "e87b89f89a2aed0bb3b31c014fc1b72f00413866" }, "recipe": { "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150512.706", "deps": [] }, "elm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jcollard/elm-mode.git", - "sha256": "f91f3f2562ce2809c51d7093fcda4e3325645c4403427cf79f45c95ef0e946c8", - "rev": "3f33790b1de000c70cd852bbe63cfa5e282987dd" + "tag": "fetchFromGitHub", + "owner": "jcollard", + "repo": "elm-mode", + "sha256": "1gbb8896fg0kdkdnnhq9zyknq5jifyj25lsigil407y4a4d0s78m", + "rev": "a813a0ab2ac7a255b41f2da230dae5e479a8de5d" }, "recipe": { "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151121.1250", + "version": "20151218.257", "deps": [ "emacs", "f", @@ -28323,7 +30036,7 @@ }, "recipe": { "sha256": "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1509", "deps": [ @@ -28332,14 +30045,15 @@ }, "speed-type": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hagleitn/speed-type.git", - "sha256": "33391e361943034df19b88097fc8ccc6180f7e2c999ea026aa9c348918a80f26", + "tag": "fetchFromGitHub", + "owner": "hagleitn", + "repo": "speed-type", + "sha256": "102hjyr9ii2rmq8762irbwansbi023s7dg4a8n6lkadcvzfibmag", "rev": "d3a6745dbaaf6b1eacee10ce9b50108482dbe758" }, "recipe": { "sha256": "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150120.2234", "deps": [ @@ -28348,14 +30062,15 @@ }, "el-pocket": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pterygota/el-pocket.git", - "sha256": "677352f6f5522257154a6d70135620de6d50730067c84da0c981c5c05884d3c7", + "tag": "fetchFromGitHub", + "owner": "pterygota", + "repo": "el-pocket", + "sha256": "1iykhicc1ic1r6h4vj3701rm0vfy41b16w3d98amf8jjypv54wv7", "rev": "e79b5a4c7762be4ea88f43f17203d44a5c8ad310" }, "recipe": { "sha256": "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.1728", "deps": [ @@ -28365,14 +30080,15 @@ }, "helm-descbinds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-descbinds.git", - "sha256": "1108c876784d137ca9c5cd5053a24519cb92ec8080669c42755d227f7f32d534", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-descbinds", + "sha256": "1f9nfvfsj9m1ha6cyic2l6gq5wlabx3mhnvs0jb111ybm87v4bhz", "rev": "871771c458b59e494b0af036cff1cebf4fc24e2b" }, "recipe": { "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1557", "deps": [ @@ -28381,14 +30097,15 @@ }, "popup-switcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kostafey/popup-switcher.git", - "sha256": "e5103de3e70c9ccb9b57a689a3b70dcc46fa292d9cacdf0f2d5e0ac07f038ebd", + "tag": "fetchFromGitHub", + "owner": "kostafey", + "repo": "popup-switcher", + "sha256": "1gcf0dzw02jy5l7xzb4w5llzlinc1nvs72d6aydwp70cwziks475", "rev": "a858f680898ef9631c21eebbe5cb527622179305" }, "recipe": { "sha256": "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150331.908", "deps": [ @@ -28398,14 +30115,15 @@ }, "edit-color-stamp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/edit-color-stamp.git", - "sha256": "598ced40af165593e0b01bc643ba8e79458716fd5788b0f0c14b54421c29696e", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "edit-color-stamp", + "sha256": "0vk954f44m2bq7qb122pzlb8fibrisx47ihvn3h96m8nmx0fv32r", "rev": "32dc1ca5bcf3dcf83fad5e39b55dc5b77becb3d3" }, "recipe": { "sha256": "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130529.1233", "deps": [ @@ -28415,14 +30133,15 @@ }, "flycheck-typescript-tslint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Simplify/flycheck-typescript-tslint.git", - "sha256": "15b0bf370cd8481fd2bd21986dbb946c0171c05e848de15aa1f2da501143e045", + "tag": "fetchFromGitHub", + "owner": "Simplify", + "repo": "flycheck-typescript-tslint", + "sha256": "0m9fjfpand20qy9d196z5khiznn25n95zbmgs8q2s2wcn4f7022p", "rev": "79d33ba8fbc23df604c239cfc32c21e07339faa1" }, "recipe": { "sha256": "141x4scl13gqxyg0nlc8vig1iaybc3g95il5r51k4k83isi62iyq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.1647", "deps": [ @@ -28432,14 +30151,15 @@ }, "wispjs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/wispjs-mode.git", - "sha256": "d56c52ca1757ed777470ca389a175936c7162aec25106242cf2b9b75ff27dc1b", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "wispjs-mode", + "sha256": "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x", "rev": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f" }, "recipe": { "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140103.1632", "deps": [ @@ -28448,14 +30168,15 @@ }, "org-wunderlist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-wunderlist.el.git", - "sha256": "1510b08b43c7aaae7eb12d3ee9a43c2b1e42b579881aae9378a16aa41f1bdd78", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-wunderlist.el", + "sha256": "1cagmwl3acanwc2nky7m61cawi0i0x703sjc6zlw968lacyw86wa", "rev": "b89633fcfd74e83dd8a5d81619244a666a45715c" }, "recipe": { "sha256": "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150817.2113", "deps": [ @@ -28469,14 +30190,15 @@ }, "discover-js2-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/discover-js2-refactor.git", - "sha256": "7667d1181f050d17df9d43690cf09b0f644375fc5013bf9976918eaf15b1cbee", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "discover-js2-refactor", + "sha256": "1vnbn4asz3lifscvy4shzisl6r0gkgq0qsa3kpgif3853wcd2rvn", "rev": "3812abf61f39f3e73a9f3daefa6fed4f21a429ba" }, "recipe": { "sha256": "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140129.952", "deps": [ @@ -28486,56 +30208,60 @@ }, "glsl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jimhourihan/glsl-mode.git", - "sha256": "12d922967a42dd00efc6a1fda5651b57c1d067aa1f01caf2afc0b6f51d6bd42c", + "tag": "fetchFromGitHub", + "owner": "jimhourihan", + "repo": "glsl-mode", + "sha256": "0b6ldcfzbdn0mzrcl08zm9kx1hap3djsbzd1qvph1pa2gab25n8j", "rev": "6bd83d429307d682fef0efd46c78b3e055e2caf1" }, "recipe": { "sha256": "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150114.1033", "deps": [] }, "py-import-check": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/psibi/emacs-py-import-check.git", - "sha256": "5b03a1176c5b51d55d35faae8c3a88da03c351e9aed3f4104b963f62d8822690", + "tag": "fetchFromGitHub", + "owner": "psibi", + "repo": "emacs-py-import-check", + "sha256": "1416hbc64gwn9c8g9lxfx58w60ysi0x8rbps6mfxalavdhbs20sv", "rev": "9787f87745a4234cd9bed711860b707902bc8ae4" }, "recipe": { "sha256": "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130802.611", "deps": [] }, "neotree": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jaypei/emacs-neotree.git", - "sha256": "c966a868628038f4e2e6282b58ddf5ce46d427cf3a0690e26dd580096a24effd", + "tag": "fetchFromGitHub", + "owner": "jaypei", + "repo": "emacs-neotree", + "sha256": "0ig7r2shwp37sfmbxb4k4rl3hyssj4g6va0l31qx8n5z8dpfdxxy", "rev": "cd02617453a0a780bc8fa13efb2426f1623cfd4d" }, "recipe": { "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151101.807", "deps": [] }, "magit-topgit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-topgit.git", - "sha256": "636089034ec8e55e4b01c77c8c44ee723eb258f340bdaac44c7f5b78f7404136", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-topgit", + "sha256": "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33", "rev": "732de604c31c74e9da24616428c6e9668b57c881" }, "recipe": { "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.1231", "deps": [ @@ -28545,14 +30271,15 @@ }, "gildas-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/smaret/gildas-mode.git", - "sha256": "bc43c28ef1e20659e24864a7c43d04ab8950756e26e22785881f90f4c2bd48d9", + "tag": "fetchFromGitHub", + "owner": "smaret", + "repo": "gildas-mode", + "sha256": "1na8pp1g940zi22jgqi6drsm12db0hyw99v493i5j1p2y67c4hxw", "rev": "23e8a2e6066ff74af592de6d5d0d858442e2bf8a" }, "recipe": { "sha256": "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150919.1701", "deps": [ @@ -28562,14 +30289,15 @@ }, "express": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/express.git", - "sha256": "88c2f02f936f65ac74535fff4061d562b7a7fcd6266b8261fd1636a2e076bd73", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "express", + "sha256": "0ah8zayipwp760909llb9whcdvmbsdgkg0x5y4qlcicm1r9kwcc7", "rev": "93dae7377eace4a5413ba99aecb6f26f90798725" }, "recipe": { "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [ @@ -28578,14 +30306,15 @@ }, "easy-lentic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/easy-lentic.git", - "sha256": "967d6249e404345f51a6e85ff38a9d983430c045fe397637f4b341ffec7f2f9a", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "easy-lentic", + "sha256": "0gk2a1bhxb2fr9mcli3j3mry0gipc407mbwrdip385rrzy7vqv2w", "rev": "ecf7bac5e3ab760ab1e46f1955575b3c25ac99fe" }, "recipe": { "sha256": "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.2116", "deps": [ @@ -28595,14 +30324,15 @@ }, "ox-twiki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dfeich/org8-wikiexporters.git", - "sha256": "ba88de9da279819f90ba36e7619f447d12cf6c020ab82e1e034edbad45e7b4e6", + "tag": "fetchFromGitHub", + "owner": "dfeich", + "repo": "org8-wikiexporters", + "sha256": "1rmlwx2svnsf0cg2xf0a09ncy4kx8jgn3rrnpa89z0brlafxx25s", "rev": "0cd92e84ad22c103b078f285ec66ff98f7ca98ca" }, "recipe": { "sha256": "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.440", "deps": [ @@ -28612,14 +30342,15 @@ }, "company-web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/company-web.git", - "sha256": "ed9aa143219acacfec9042d989c57f261c2a83067a58567904663dd161bb3a7c", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "company-web", + "sha256": "00acy74sgp4r2dxgss66aldc9s59dn0i85ixz9glgamk9411j5qr", "rev": "8fafaf180cade7633dc5fcbbf12b1e4843e4e365" }, "recipe": { "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.1546", "deps": [ @@ -28631,42 +30362,45 @@ }, "yandex-weather": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abstractionlayer/yandex-weather.el.git", - "sha256": "c38d52d17218bc65aaa47d9c0e49b0ecb894ead99ffa7e81ed49af14226ed59f", + "tag": "fetchFromGitHub", + "owner": "abstractionlayer", + "repo": "yandex-weather.el", + "sha256": "17ymdqi19bs9xn0pxylzv7m99f7cn14hx73xljm6bg0qfb8m53f3", "rev": "41cb91bd1e5aa0e4a317a99e88742631f487ab37" }, "recipe": { "sha256": "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150821.614", "deps": [] }, "howdoi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atykhonov/emacs-howdoi.git", - "sha256": "688b978da5d3c52a7da3b919131bdb072bf999d8e97f03397251e15e114b5207", + "tag": "fetchFromGitHub", + "owner": "atykhonov", + "repo": "emacs-howdoi", + "sha256": "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8", "rev": "5fbf7069ee160c597a328e5ce5fb32920e1ca88f" }, "recipe": { "sha256": "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150203.1843", "deps": [] }, "helm-recoll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-recoll.git", - "sha256": "e647f286c979d6fa56f6defb89d683c7c7017a764b2a34e66b350859643ec87c", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-recoll", + "sha256": "0c9h8n67wxy93rbf6ma7p27hpaj8v562mjnrc9wzgccb9rk4z4fn", "rev": "e3e010d084697137d0b3cb802b19ab34c488094b" }, "recipe": { "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.658", "deps": [ @@ -28675,14 +30409,15 @@ }, "anything-milkode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/anything-milkode.git", - "sha256": "671b2b07271a95e1554015bce542f698fe6fafe02528c04f0ddd0dca387e86cb", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "anything-milkode", + "sha256": "1jw6gqwcl3fx1m7w0a15w2pnzzlqyr1fbg0m81ay358s4w3jn6v7", "rev": "d6b2be13a351c41793e9cc13c1320953939d3ac9" }, "recipe": { "sha256": "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140518.943", "deps": [ @@ -28698,21 +30433,22 @@ }, "recipe": { "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.1151", "deps": [] }, "emr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/emacs-refactor.git", - "sha256": "05c1737bd3a3f0fcae7cf73e133fe4aec0c1cbe7ebceb870eb3ba5d82c86d349", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "emacs-refactor", + "sha256": "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4", "rev": "fd20fc1887e2ebcf752f0170b1f3bf697043fd4b" }, "recipe": { "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140817.1804", "deps": [ @@ -28729,17 +30465,19 @@ }, "emacs-eclim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senny/emacs-eclim.git", - "sha256": "657e809f6b155567373a87eb78cb91716b89162974a782a47e9a5a9e8cd90a61", - "rev": "79d6e3a70e99d2e47fdaaba7a030300f6a010b99" + "tag": "fetchFromGitHub", + "owner": "emacs-eclim", + "repo": "emacs-eclim", + "sha256": "1m674w1wskzvi92yjfk7sz4i59kc6bbgnic5z2m806qr1dmdyy0s", + "rev": "c13ad662a5194b292576fba477282263f573bc46" }, "recipe": { - "sha256": "0lj91lfhiy6hwglv62bzqk2qjqg3dvwv0nff6cbv0za3zdwdj5yv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "sha256": "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150816.420", + "version": "20151217.2022", "deps": [ + "cl-lib", "dash", "json", "popup", @@ -28748,14 +30486,15 @@ }, "pillar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pillar-markup/pillar-mode.git", - "sha256": "6eab37afc90f9912f5c1e16f1d25efd8625e54037421cc7e3df5bfbdc3e7aaf0", + "tag": "fetchFromGitHub", + "owner": "pillar-markup", + "repo": "pillar-mode", + "sha256": "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8", "rev": "13a7f676544cc66005ccd8e6fc1c25e4ccd6f909" }, "recipe": { "sha256": "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141112.1211", "deps": [ @@ -28764,14 +30503,15 @@ }, "esqlite-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-esqlite.git", - "sha256": "306f8a4781dceca65dccdeb1370598b8db5b2ee10e371ee1d80c52741abe6241", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-esqlite", + "sha256": "0ag444hfrpdrf3lnaz7l2plj392xgh7a2080421z3g0alc74m8h3", "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" }, "recipe": { "sha256": "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.250", "deps": [ @@ -28781,14 +30521,15 @@ }, "docean": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/docean.el.git", - "sha256": "9a50bd4c7ae346f165ac63c9739c27d142484b65734c8b082aa8f7cb852e5f17", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "docean.el", + "sha256": "055kr0qknjgnjs7dn6gdmahrdbs8piwldbz7vg1hgq3b046x8lky", "rev": "dcc296782b08531b768d3cf851cc7959ec486bf1" }, "recipe": { "sha256": "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.1318", "deps": [ @@ -28799,42 +30540,45 @@ }, "noflet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-noflet.git", - "sha256": "ee7a31fa81c8c65cc470c9a1755ec4c1ae6481cc3645e6be24c2a2e8aa7de03c", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-noflet", + "sha256": "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf", "rev": "7ae84dc3257637af7334101456dafe1759c6b68a" }, "recipe": { "sha256": "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141102.854", "deps": [] }, "typo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/typoel.git", - "sha256": "73cf8b09a6fced7f76c79c7c3bf39fb88391de67c916bd9a14fd75dc84a53938", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "typoel", + "sha256": "0f1rln2dqxgx2jdbs5n9czg930xqkzrknz4wqxv7zvgwlq4qpkvk", "rev": "a6b9e0400706aeda99fe29012ff017bef300f580" }, "recipe": { "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.843", "deps": [] }, "org-jekyll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juanre/org-jekyll.git", - "sha256": "f57f74c9cfb9205f3c0dc9b160d37e95bad0748499d3022bd8e12069816160dd", + "tag": "fetchFromGitHub", + "owner": "juanre", + "repo": "org-jekyll", + "sha256": "0whv8nsla93194jjpxrhlr6g230spdxbac8ibmzmyad075vx97z5", "rev": "66300a1a6676ab168663178e7a7c954541a39992" }, "recipe": { "sha256": "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130508.439", "deps": [ @@ -28843,14 +30587,15 @@ }, "foreman-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/foreman-mode.git", - "sha256": "9d067c88048997a6a871067253f0a752452f4ad99a4cbefd0529775020b29803", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "foreman-mode", + "sha256": "00wqn8h50xr90pyvwk4sv552yiajlzq56wh6f6lad5w90j47q1lx", "rev": "9496018b0c202442248d4983ec5345501ea18a84" }, "recipe": { "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150611.356", "deps": [ @@ -28863,14 +30608,15 @@ }, "timesheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tmarble/timesheet.el.git", - "sha256": "e84007a97898e46267ffc384c5aa22c6399d688b1b65c4e7bb9416a9aee35ec2", + "tag": "fetchFromGitHub", + "owner": "tmarble", + "repo": "timesheet.el", + "sha256": "1ghvnmswq6rg17pjnys58mak6crfcvv1vb6q7spagq143y2ar24z", "rev": "6aba2bac0be92b38c245135cebe5bf1f0d8406ab" }, "recipe": { "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.804", "deps": [ @@ -28881,14 +30627,15 @@ }, "crab": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/puffnfresh/crab-emacs.git", - "sha256": "d42e872fc5807beb38eb022a0a057928caeb7cb926b27319390a75f848776778", + "tag": "fetchFromGitHub", + "owner": "puffnfresh", + "repo": "crab-emacs", + "sha256": "0y37fx4ghx8a74cp7ci6p5yfpji8g42hlah2xcwfnyw0qlpqfbnl", "rev": "6d66844856c1864157cef3dea9332c319b05d7d5" }, "recipe": { "sha256": "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150126.2337", "deps": [ @@ -28898,14 +30645,15 @@ }, "slideview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-slideview.git", - "sha256": "a830e4990b729151df2ad1cbdf7e423cf4c9b694bba4d43225164802a1bd9b2d", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-slideview", + "sha256": "11p1pghx55a4gcn45cadw7c594134b21cdim723k2h99z14f89az", "rev": "b6d170bda139aedf81b47dc55cbd1a3af512fb4c" }, "recipe": { "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150324.1740", "deps": [ @@ -28914,58 +30662,62 @@ }, "latest-clojure-libraries": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdamClements/latest-clojure-libraries.git", - "sha256": "933c43913f70022028cb0037faf6d0eded961a8d14666c0e5f1d343de66b0bb3", + "tag": "fetchFromGitHub", + "owner": "AdamClements", + "repo": "latest-clojure-libraries", + "sha256": "1cqbdgk3sd0xbw76qrhlild9dvgds3vgldq0rcl200kh7y8l6g4k", "rev": "6db8709a746194800a3ffea3f906e3c9f5d4ca22" }, "recipe": { "sha256": "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140314.817", "deps": [] }, "direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/direx-el.git", - "sha256": "d962d9a09a8fe55d53d55f37b8d81bf58efef2952aa28ad1dd748f474d1d3a56", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "direx-el", + "sha256": "0mis3m6lg3vlvp8qm8iajprgx3pm3gcbhdszsm9mvrcgkahdjqnr", "rev": "9497231cf50767987494718db073731b05a4f970" }, "recipe": { "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.1806", "deps": [] }, "yaxception": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/yaxception.git", - "sha256": "088d3adc32c3aef876de4a66b324a28e4791b5b671eef8daf5ec2edc2c322fc3", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "yaxception", + "sha256": "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8", "rev": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875" }, "recipe": { "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150105.852", "deps": [] }, "haskell-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/haskell/haskell-mode.git", - "sha256": "d8f5a57a1210813dc6c03030f0f69c36407b0464468720eca76bf31c47068c78", - "rev": "0fe7688a7e5a765a0cc4de74f3fe336a383fe1e1" + "tag": "fetchFromGitHub", + "owner": "haskell", + "repo": "haskell-mode", + "sha256": "1fi74hk3q8r75k9kyahfnx302kca5p0r04i8hj21cn9fd9q2nfq0", + "rev": "93bfb29b8e49aba39f1de791bcece1b8043a4d32" }, "recipe": { "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151211.1550", + "version": "20151217.1822", "deps": [ "cl-lib" ] @@ -28978,49 +30730,52 @@ }, "recipe": { "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151015.1751", "deps": [] }, "linum-relative": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/linum-relative.git", - "sha256": "32cbf3c1037228249443feddff6465350f7888e317ac4b94e1ecaffa96a47b28", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "linum-relative", + "sha256": "0a3vljbgmbzcw6a4pb0pwf47h3rmcmjgzpgy8fa28a3j0g0z7jrj", "rev": "3bed92ac52495938f3f23b626b2097e64a3d9dc0" }, "recipe": { "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1956", "deps": [] }, "fingers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgeller/fingers.el.git", - "sha256": "2f7bd242aae7a75bf7ee2075ae24c7dec87526341ff8915f24e78afd7d674fee", + "tag": "fetchFromGitHub", + "owner": "fgeller", + "repo": "fingers.el", + "sha256": "1vjgcxyzv2p74igr3y0z6hk7bj6yqwjawx90xvvmp9z7m91d4yrg", "rev": "8fc8ae143736c4761fef69cb53c6083c5be5d914" }, "recipe": { "sha256": "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150809.1916", "deps": [] }, "flymake-jslint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-jslint.git", - "sha256": "71a81a3421b67f7e80af7bb10e321120aae28f059dfa58f59e10dad51aca60cc", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-jslint", + "sha256": "0y01albwwcnhj4pnpvcry0zw7z2g9py9q2p3sw5zhgw3g0v5p9ls", "rev": "68ca28a88cffdd317f50c712b09abd2ccda8d7bc" }, "recipe": { "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130613.402", "deps": [ @@ -29029,14 +30784,15 @@ }, "flycheck-nim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ALSchwalm/flycheck-nim.git", - "sha256": "2fc71cbc6e6f9660ab2ff2a2f21696a3d90a516a8df2917643a0c24068201a1a", + "tag": "fetchFromGitHub", + "owner": "ALSchwalm", + "repo": "flycheck-nim", + "sha256": "06hs41l41hm08dv93wldd98hmnd3jqbg58pj5ymn15kgdsy1rirg", "rev": "4cf6a70864e594c24b33c1032e2692ad1b310d6c" }, "recipe": { "sha256": "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150911.1847", "deps": [ @@ -29046,56 +30802,60 @@ }, "org-bullets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/org-bullets.git", - "sha256": "1ce0cbfaa8541518c6c079db12ef59d97a1ff73553d56736a50b5be7a426d982", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "org-bullets", + "sha256": "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w", "rev": "b70ac2ec805bcb626a6e39ea696354577c681b36" }, "recipe": { "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140918.1337", "deps": [] }, "org-beautify-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jonnay/emagicians-starter-kit.git", - "sha256": "657dec43dc650142aacf062b4341c510b1c3cd17f1e61416e466c0bf04ab308c", + "tag": "fetchFromGitHub", + "owner": "jonnay", + "repo": "emagicians-starter-kit", + "sha256": "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z", "rev": "5fadbf1bf84091b6ffe6cd1bff48f30e3da6c479" }, "recipe": { "sha256": "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.1156", "deps": [] }, "bitly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/bitly-el.git", - "sha256": "abe6a67879075939fe10c63b57d30e15ff596075a9f2a8da1d192fb658827425", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "bitly-el", + "sha256": "09blh9cbcbqr3pdaiwm9fmh5kzqm1v9mffy623z3jn87g5wadrmb", "rev": "fca9d8da070402fa62d9289e56f7f1c5ce40f664" }, "recipe": { "sha256": "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.1048", "deps": [] }, "scala-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/scala/scala-tool-support.git", - "sha256": "04b38efd9f5cb0899df7bc2e24c2dc15db015240076e9f7d3cbb273fabb94015", + "tag": "fetchFromGitHub", + "owner": "scala", + "repo": "scala-tool-support", + "sha256": "0qd3yi2as30kacr74vbzvyq97684s8sz585z30d47shqcvp6l1a6", "rev": "0a217bc446b970116c67c933a747d5f57b853d34" }, "recipe": { "sha256": "1vbgphmvvsj5jl8f78rpsidlmlgyp1kq3nkmziqhwkcq8hfywssm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141205.1451", "deps": [] @@ -29108,7 +30868,7 @@ }, "recipe": { "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1909", "deps": [] @@ -29121,21 +30881,22 @@ }, "recipe": { "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.1143", "deps": [] }, "org-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/IvanMalison/org-projectile.git", - "sha256": "78a66404464246dc2d2163245f08eaeb657e098ba62fc562f918a6bec820d7b8", + "tag": "fetchFromGitHub", + "owner": "IvanMalison", + "repo": "org-projectile", + "sha256": "1zskm97502f4yq1jr3k1j2mkdpbh8q7lm56wqnpbpv4gcprpx8gg", "rev": "df1d4a843724f2e556305aea53567a0b3b403fb1" }, "recipe": { "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150902.2356", "deps": [ @@ -29151,21 +30912,22 @@ }, "recipe": { "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1553", "deps": [] }, "magit-rockstar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/magit-rockstar.git", - "sha256": "d2246288dd71e9e1bf5f8cd131d025981658301ec6d66da7d4cfa3006fea2e5d", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "magit-rockstar", + "sha256": "0p9fx9ph18ygsjknvmn63qq5h5lq4p833lccbyzy3sbivn46496j", "rev": "6e09d3d1589e5bde7279f9bd5b8f27352ea26ef4" }, "recipe": { "sha256": "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.928", "deps": [ @@ -29175,28 +30937,30 @@ }, "list-environment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgtized/list-environment.el.git", - "sha256": "d6ce67343753c11650fd3ecaf99f2206fcf380e08f3d23e600fe8831ee7ea1c8", + "tag": "fetchFromGitHub", + "owner": "dgtized", + "repo": "list-environment.el", + "sha256": "1vlli9fmd5fsb19bmylp3yzqnhwk5ldxld0m0q4sai0992lwx897", "rev": "70919f3f75cfee6a68bf617baf417d672deb8c4b" }, "recipe": { "sha256": "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150620.2218", "deps": [] }, "flyspell-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/flyspell-popup.git", - "sha256": "2c3ae892b4c4ecbaf22a23da8b64b741348b9271cb2ab260a64a034aa37667e6", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "flyspell-popup", + "sha256": "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic", "rev": "a3890c9272c0cfa1e2cde6526f7d6280ad4af00c" }, "recipe": { "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150926.1003", "deps": [ @@ -29205,42 +30969,45 @@ }, "nameframe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/john2x/nameframe.git", - "sha256": "855f462993a0e81d7e903a249446b96e373801ac1c424b2f5a7e08adb3e7ef1f", + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "nameframe", + "sha256": "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5", "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" }, "recipe": { "sha256": "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151017.2319", "deps": [] }, "pyvenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/pyvenv.git", - "sha256": "c4b1285322289b33bc661a797251e52e1b252208fabb3d7d75e821cc4029cc6a", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "pyvenv", + "sha256": "11scrmm15zyybl861l6izqsdysh8li7kkkwjm4p8cl5kmibiqrss", "rev": "a0331f52ba2c9fe994ee423e4d82263b6f68a38a" }, "recipe": { "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.1719", "deps": [] }, "persp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Bad-ptr/persp-mode.el.git", - "sha256": "eb606912f03b1e0d7e56daa7280fa713d105e12cd1fb9be7912567f255a12c89", + "tag": "fetchFromGitHub", + "owner": "Bad-ptr", + "repo": "persp-mode.el", + "sha256": "129cl5az4rr5j7krpyyi5khhbl8klw7ji9ysarz0s7ivy096jq7b", "rev": "00e5f345f13b2b9e615082ac9ccbfd076592cc22" }, "recipe": { "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.207", "deps": [] @@ -29253,7 +31020,7 @@ }, "recipe": { "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150406.1930", "deps": [] @@ -29262,12 +31029,12 @@ "fetch": { "tag": "fetchgit", "url": "git://factorcode.org/git/factor.git", - "sha256": "a339a009bb3e4bdee9bbe22eb6d9f4d517b8b67621cec6eca8f6e5068172304b", - "rev": "119f188423822121b1cb94358ea16c4b95b02850" + "sha256": "4a92fbfc3f08910d7fb1e351209dc40eb7bd724eebe7bf91bfab31f5faba54ec", + "rev": "216a1234c26d793488bb5a2c397c830b825f8da2" }, "recipe": { "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.543", "deps": [ @@ -29277,28 +31044,30 @@ }, "what-the-commit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danielbarbarito/what-the-commit.el.git", - "sha256": "e6bc110ddbb238972e387a259cc02d240a46ca5ba2e479abdf18e3bb55138613", + "tag": "fetchFromGitHub", + "owner": "danielbarbarito", + "repo": "what-the-commit.el", + "sha256": "04w62davpqqqvympkr52bg54c2i45p09q9bs70p9ff5jvc6i3g76", "rev": "868c80a1b8614bcbd2225cd0290142c72f2a7956" }, "recipe": { "sha256": "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150901.816", "deps": [] }, "xterm-keybinder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/xterm-keybinder-el.git", - "sha256": "afc218e00fd75909a93465d04059c7a1c81479b8b762c95311f76148dfab91cb", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "xterm-keybinder-el", + "sha256": "1jwimgglhqgp259wjqmpp1wi9j51qxcl1l356jlhjnfp1zh1ihmg", "rev": "08d7c9b4c71db05df092010ba92f87567004b8c7" }, "recipe": { "sha256": "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.101", "deps": [ @@ -29315,21 +31084,22 @@ }, "recipe": { "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140714.219", "deps": [] }, "helm-core": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm.git", - "sha256": "da5c76e602f2f11c68ac027e5a67bed942faeebba337461a5663053fea18387f", - "rev": "b99615090efa622cba280fff0615dc7f269877fd" + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm", + "sha256": "1dsipz9qz3bsmgj49z42vfs3ggdv37jcn852hffwjyzlhalwpi8i", + "rev": "e42e3ed6543b72756e6f2f1a96cbd0d35166cb6e" }, "recipe": { "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.217", "deps": [ @@ -29340,14 +31110,15 @@ }, "ssh-agency": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/ssh-agency.git", - "sha256": "e8dcb13ee83ef6f90d4c6ca9b5a02981c48573f7ff95ace26d87f8ca0d092c45", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "ssh-agency", + "sha256": "0i9c146wmy47dpiar5gzyxrqbi4156hbbabc9h6zkxiyx0zb3p78", "rev": "528122b182e9e8ade2361720ea05a5594f926c18" }, "recipe": { "sha256": "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.1754", "deps": [ @@ -29357,28 +31128,44 @@ }, "bf-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/bf-mode.git", - "sha256": "d6a421ab57af13717637e358ed5d70b7a62d7fbb0f49922b93d6138019a86209", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "bf-mode", + "sha256": "02b2m0cq04ynjcmr4j8gpdzjv9mpf1fysn736xv724xgaymj396n", "rev": "7cc4d09aed64d9db6be95646f5f5067de68f8895" }, "recipe": { "sha256": "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130403.942", "deps": [] }, + "sml-modeline": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:~nxhtml/nxhtml/main", + "sha256": "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4", + "rev": "835" + }, + "recipe": { + "sha256": "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20120110.1440", + "deps": [] + }, "wonderland": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kurisuwhyte/emacs-wonderland.git", - "sha256": "9329fb320b8086b5ed13bc4e093bcbed151c20b743dd38f96384f0a220624c41", + "tag": "fetchFromGitHub", + "owner": "kurisuwhyte", + "repo": "emacs-wonderland", + "sha256": "0hacc8ha5w44cgwkipa3nwh1q5gdrcxhjkmw2gnvb1l01crgnack", "rev": "89d274ad694b0e748efdac23ccd60b7d8b73d7c6" }, "recipe": { "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130912.2019", "deps": [ @@ -29390,14 +31177,15 @@ }, "plsense": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-plsense.git", - "sha256": "e75dfda39ae5d77d6143388c28f6846757af0998a17fa694ce1b2b6d4a3953f8", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-plsense", + "sha256": "1r2yxa7gqr0z9fwhx38siwjpg73a93rdmnhr4h6nm6lr32vviyxm", "rev": "d50f9dccc98f42bdb42f1d1c8142246e03879218" }, "recipe": { "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.845", "deps": [ @@ -29414,35 +31202,37 @@ }, "recipe": { "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150920.38", "deps": [] }, "clipmon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bburns/clipmon.git", - "sha256": "943bf9b94c296094f3de752f86888ff9232167bc9152885caadd395068c30487", + "tag": "fetchFromGitHub", + "owner": "bburns", + "repo": "clipmon", + "sha256": "11q4qdl50ffxm9f8hllipikj28zriy48cbvmvvrr8q199jwzjfwl", "rev": "0789be82a19bcdc556a93a287579c9eab2cc5c43" }, "recipe": { "sha256": "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150306.1423", "deps": [] }, "datomic-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/datomic-snippets.git", - "sha256": "c055a99cc2c4949609e5f80df144828c6a70bf7e77c9abc4eec3f4e49faac767", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "datomic-snippets", + "sha256": "0ry7magy9x63xv2apjbpgszp0slch92g23gqwl4rd564qafajmf0", "rev": "7116eac8e15a16fc72973b96fa855fd9784bbbb8" }, "recipe": { "sha256": "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130707.1515", "deps": [ @@ -29459,7 +31249,7 @@ }, "recipe": { "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.1352", "deps": [] @@ -29472,21 +31262,22 @@ }, "recipe": { "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140421.1122", "deps": [] }, "dionysos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/dionysos.git", - "sha256": "cf3191b71b5d90416cf8681411ac729633b8f7517e4e04f1bb340c8bb6c8d69d", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "dionysos", + "sha256": "1ldqxdwy6r0fd2vh0ckkhgpincvybghavi8c7vvyd24j91i57y2f", "rev": "98907a38e98ff1b02171a1ad8df246a291e04750" }, "recipe": { "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.303", "deps": [ @@ -29500,14 +31291,15 @@ }, "company-qml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/company-qml.git", - "sha256": "631a1e769a0c6db0ec2d767905b68a4dba69e37d142d9dfc7b274aeb31ef6c1f", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "company-qml", + "sha256": "07vcxwqynji7ggy9sb8lgpinkfjdiav0aybn5pnb0v8ck9v1w6k3", "rev": "ae4a5f1ac30eb31e74e2eebf98c895c2cb5a51df" }, "recipe": { "sha256": "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1035", "deps": [ @@ -29517,14 +31309,15 @@ }, "graphene": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/graphene.git", - "sha256": "f93ea7697fdf0b0a51410903ba62e21f30e367abc147defafd3e2f32690e5233", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "graphene", + "sha256": "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa", "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" }, "recipe": { "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.140", "deps": [ @@ -29543,14 +31336,15 @@ }, "flycheck-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flycheck-package.git", - "sha256": "1d2a7426c8438728fb4dd86d6968df624712946ecc67b7799c62f762de427671", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flycheck-package", + "sha256": "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd", "rev": "ff93e8986a1021daf542c441c1fd50436ee83cba" }, "recipe": { "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.1338", "deps": [ @@ -29561,14 +31355,15 @@ }, "btc-ticker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/niedbalski/emacs-btc-ticker.git", - "sha256": "5ff4da37e7fbd63fc02f36b91799f9556c17b5ef126f701cfab24f5cf8035208", + "tag": "fetchFromGitHub", + "owner": "niedbalski", + "repo": "emacs-btc-ticker", + "sha256": "022j0gw5qkxjz8f70vqjxysifv2mz6cigf9n5z03zmpvwwvxmx2z", "rev": "845235b545f070d0812cd1654cbaa4997565824f" }, "recipe": { "sha256": "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.859", "deps": [ @@ -29580,40 +31375,42 @@ "fetch": { "tag": "fetchgit", "url": "git://orgmode.org/org-mode.git", - "sha256": "fab06e90d79c19cc598ea1cb04ca0fe53999f22d71f292ce6947de1b5ead701f", - "rev": "0bdf4cedc5959ec4f40eb3b79302f020d69e2fd0" + "sha256": "c1c1d1723bd8d8b0a1b45d89000f1fed977ceddf7de0acc66ebd1121bd1dbb62", + "rev": "73803c1cf9d0e4016cd1c36653b40573396bd9e7" }, "recipe": { "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140107.719", "deps": [] }, "annotate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bastibe/annotate.el.git", - "sha256": "1a0c56181a476323596c8eda5f6d6064befe3ed16dd1a52cbeb87df4c3b6d1a2", + "tag": "fetchFromGitHub", + "owner": "bastibe", + "repo": "annotate.el", + "sha256": "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s", "rev": "a1690384317ce366e5a33aec916949e3328a0117" }, "recipe": { "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.1133", "deps": [] }, "elfeed-goodies": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/algernon/elfeed-goodies.git", - "sha256": "c928ff995deb397ad816aa8d789be0d52d1c6091ded2b63e2e3481f91223c26f", + "tag": "fetchFromGitHub", + "owner": "algernon", + "repo": "elfeed-goodies", + "sha256": "1xl76gxjinggg332dib2h6z1gyqfi81r0x5rl8hrfpx8spi4iql0", "rev": "319d88242c78d6073d25f8bb68336603c35904d0" }, "recipe": { "sha256": "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.801", "deps": [ @@ -29627,14 +31424,15 @@ }, "ox-mediawiki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomalexander/orgmode-mediawiki.git", - "sha256": "44db117b9d44901c4c778714213019a0ad9d7604de1559a92015aeb2c9727f24", + "tag": "fetchFromGitHub", + "owner": "tomalexander", + "repo": "orgmode-mediawiki", + "sha256": "0c2m02g6csg5fqizj3zqcm88q7w17kgvgi7swcx4fzz6rixnpsji", "rev": "973ebfc673dfb4beeea3d3ce648c917b58dcf879" }, "recipe": { "sha256": "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150923.1102", "deps": [ @@ -29644,28 +31442,30 @@ }, "indy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/attichacker/indy.git", - "sha256": "36505f800f207f9938b44f15508762e345ef01d7e83bb6f5fc5944428854604f", + "tag": "fetchFromGitHub", + "owner": "attichacker", + "repo": "indy", + "sha256": "0kv0aj444i2rzksvcfz8sw0yyig3ca3m05agnhw9jzr01y05yl1n", "rev": "bc1edbaa6db7264dd64fbd04331406d889b44501" }, "recipe": { "sha256": "1brmsgnkhr5nlma1p8f5s78y9gw3rfm8sah55n6vyhr0dpb4z7kl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150610.1206", "deps": [] }, "company-inf-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/company-mode/company-inf-ruby.git", - "sha256": "35f825e5042a2250a5a9302551c47c2c83773393433c8374fe3827bd7726db3a", + "tag": "fetchFromGitHub", + "owner": "company-mode", + "repo": "company-inf-ruby", + "sha256": "0fnv4rvvs9rqzrs86g23jcrpg0rcgk25299hm6jm08ia0kjjby1m", "rev": "fe3e4863bc971fbb81edad447efad5795ead1b17" }, "recipe": { "sha256": "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140805.1554", "deps": [ @@ -29676,14 +31476,15 @@ }, "envdir": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/envdir-mode.git", - "sha256": "977b066c32e4f3631ae7fa571711e27a58dc1c0ac92fea92fc66f7b8bf59367d", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "envdir-mode", + "sha256": "0jb8hf4v02b0zd02749533arrypjr3b3k88129grfks2kf29ybhb", "rev": "efbfc45de320d33cd5c52edfa73a399a8b4dc34b" }, "recipe": { "sha256": "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150519.955", "deps": [ @@ -29694,14 +31495,15 @@ }, "flycheck-ghcmod": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/scturtle/flycheck-ghcmod.git", - "sha256": "0d16d421807cbc2b389d73875a53c3d94a19123b547370e3048ca3a3615ac07d", + "tag": "fetchFromGitHub", + "owner": "scturtle", + "repo": "flycheck-ghcmod", + "sha256": "0q1m1f3vhw1wy0pa3njy55z28psznbw2xwmwk2v1p5c86n74ns8d", "rev": "6bb7b7d879f05bbae54e99eb04806c877adf3ccc" }, "recipe": { "sha256": "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150114.32", "deps": [ @@ -29711,28 +31513,30 @@ }, "zerodark-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/zerodark-theme.git", - "sha256": "f8b05c33fd34b61b0cbcfa88c2607611515afdb5f2a62f4e66a5943418e769f3", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "zerodark-theme", + "sha256": "1wv9wwc39555cr72z9pjnpymll8ifrhc527sph61pdilzlrmrc7q", "rev": "98135542bad1fc894c718bc37e611f79434b693a" }, "recipe": { "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.534", "deps": [] }, "py-test": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Bogdanp/py-test.el.git", - "sha256": "eebe48e81368ca6b9f563da6f2e0a47e087de4161b6a5d3208bfe7f10f2069e8", + "tag": "fetchFromGitHub", + "owner": "Bogdanp", + "repo": "py-test.el", + "sha256": "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf", "rev": "3b2a0bdaacb54df6f2bee8317423e5c0d159d5cf" }, "recipe": { "sha256": "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.22", "deps": [ @@ -29743,42 +31547,45 @@ }, "py-gnitset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/quodlibetor/py-gnitset.git", - "sha256": "48d9038ce9f6f634b5f1d2dceaf07dbfdf380f6c625ed7ae0f9889b401b0b615", + "tag": "fetchFromGitHub", + "owner": "quodlibetor", + "repo": "py-gnitset", + "sha256": "05803wi7rj73sy9ihkilr6pcn72szfsvgf2dgbdpnqra508rxyb6", "rev": "471eb99b83eb9f6915d8ca241e9770ddd6244a78" }, "recipe": { "sha256": "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140224.2210", "deps": [] }, "org-cua-dwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mlf176f2/org-cua-dwim.el.git", - "sha256": "157a4f785e59188bd17e97bca57637981b63be916d713201b6f082b370dd2e5b", + "tag": "fetchFromGitHub", + "owner": "mlf176f2", + "repo": "org-cua-dwim.el", + "sha256": "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm", "rev": "a55d6c7009fc0b22f1110c07de629acc955c85e4" }, "recipe": { "sha256": "0p7v564p8n1hm7rzlrbm2pnhyha8aif2r9g7g4kg0iqln89f5yhc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120202.2334", "deps": [] }, "docbook-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jhradilek/emacs-docbook-snippets.git", - "sha256": "3833570d87ba3147f92a975d5791188aaab0c4598631ca2dcc3a8bd03e1f75d9", + "tag": "fetchFromGitHub", + "owner": "jhradilek", + "repo": "emacs-docbook-snippets", + "sha256": "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq", "rev": "b06297fdec039a541aaa6312cb328a11062cfab4" }, "recipe": { "sha256": "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150714.1125", "deps": [ @@ -29787,28 +31594,30 @@ }, "quick-preview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/quick-preview.el.git", - "sha256": "fafa790a570802e364f6c2a950012746567d3d08baa586de5247d47f32303e60", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "quick-preview.el", + "sha256": "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c", "rev": "29c884c6ab385ef67d9aa656ebb7c94cabeb5c35" }, "recipe": { "sha256": "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.2339", "deps": [] }, "scad-preview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/scad-preview.git", - "sha256": "6cd12f46aaeffef484b62626fbefcb6c451269a73635c92b1248be55c95ba5d7", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "scad-preview", + "sha256": "1mx5bg4mbgj828mwjd9nlxli4ibcrgpzn9i6ns2g9zpgm932zlbc", "rev": "a444532126bdec3dec9cacf55bc183780decf040" }, "recipe": { "sha256": "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150818.824", "deps": [ @@ -29817,14 +31626,15 @@ }, "flx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/flx.git", - "sha256": "50a03447d54f82ebbf790f4e4086aedbb040598e690d16adf0d44868beda309c", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "flx", + "sha256": "10f9135i9z2y4k0x6fbwm0g6vhsj6ag41xq504zpygqzp6y6ikmz", "rev": "807d69455585d89804ecef233a9462db7d0524d8" }, "recipe": { "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1312", "deps": [ @@ -29833,14 +31643,15 @@ }, "hardhat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/hardhat.git", - "sha256": "4e072ba44c9922e326cff667399a2ba713ddc729d989689aa49622c3c4d84dbd", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "hardhat", + "sha256": "13pgxskddir74lqknkkflzkrv6q455cf5s7wjww1zgvw95j7q50v", "rev": "9355d174d49a514f3e176995ba93d5da7a25cbba" }, "recipe": { "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140827.2056", "deps": [ @@ -29849,14 +31660,15 @@ }, "pinyin-search": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/pinyin-search.el.git", - "sha256": "2111c7b1e1d8cab01273e15540b2edfeda5214eae0ec8165b70c71e99efad124", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "pinyin-search.el", + "sha256": "096izagfjw8cnxjq3v70x8a55npyxnr40mg1fc9b1jnqw6qwf491", "rev": "53e75c2e32c03920dcc10334c7b62922779f2c8b" }, "recipe": { "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150719.1955", "deps": [] @@ -29869,7 +31681,7 @@ }, "recipe": { "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.1052", "deps": [] @@ -29883,21 +31695,22 @@ }, "recipe": { "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150915.1230", "deps": [] }, "mc-extras": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/mc-extras.el.git", - "sha256": "c116350ee989d65b83cd1ba26bed085060656a7bc35ee0dd87d2344d70e3a208", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "mc-extras.el", + "sha256": "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1", "rev": "71cf966be06d9c74e781a87bb30fa4cf657ee852" }, "recipe": { "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150218.434", "deps": [ @@ -29913,35 +31726,37 @@ }, "recipe": { "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140119.1543", "deps": [] }, "seoul256-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ChrisDavison/seoul256.el.git", - "sha256": "cc53d35307f50bb07f8b05d5346e86b9c46ab65a96b55d6b5146215971687597", + "tag": "fetchFromGitHub", + "owner": "ChrisDavison", + "repo": "seoul256.el", + "sha256": "15vmd1qmj8a6a5mmvdcnbav6mi5rhrp39m85idzv02zm0x9x6lyc", "rev": "32790703847b868e8fdd9c0736b0b8a0167f97cf" }, "recipe": { "sha256": "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150714.1735", "deps": [] }, "test-kitchen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jjasghar/test-kitchen-el.git", - "sha256": "b95a5b0156083fe7ae4c6c6fa20185a0ffdda24cc47e02d83069f687f508b388", + "tag": "fetchFromGitHub", + "owner": "jjasghar", + "repo": "test-kitchen-el", + "sha256": "125k13sqgxk963c04zn49jidvzx0hl0s4vvc9jpffgq8aq0mnnmr", "rev": "3f3647bf437563493331821638f5f5829ae7dd26" }, "recipe": { "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.627", "deps": [] @@ -29950,26 +31765,27 @@ "fetch": { "tag": "fetchgit", "url": "http://llvm.org/git/llvm", - "sha256": "4aa3ce45502636723d58dc4bfa05928082dfc4541fa6b4c95f8655712e9452a3", - "rev": "8c9bc7b01bf5e097f461703f6ce7a35e65178e66" + "sha256": "6def2eb038bf60d3520930449ba109763e1c430c6b4c7fba3f272c3c46311fe6", + "rev": "52707d211b073942a461af811dcc442456a3064b" }, "recipe": { "sha256": "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.844", "deps": [] }, "dired-rainbow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141214.743", "deps": [ @@ -29979,56 +31795,60 @@ }, "thrift": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/apache/thrift.git", - "sha256": "9bc1b3055986de1f3abc17753e5f3bae1f095a6b29f19de905a1f382ce062288", - "rev": "e68ccc23bebde961767e47e6751dcf764b8503f2" + "tag": "fetchFromGitHub", + "owner": "apache", + "repo": "thrift", + "sha256": "07wzips127pxd0s75l71jl9jc299v6r8npz7flb391z3lfryvbin", + "rev": "7be41c7ada9692e3c37fb8b4935991f6247320f6" }, "recipe": { "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140312.1548", "deps": [] }, "better-defaults": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/better-defaults.git", - "sha256": "6a6f29ba4c980ef1d49165aab86084c2eb123210990451b0e5c2083c08bf7c48", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "better-defaults", + "sha256": "0j3wpw43q262wnq5214r20r15sy2hihbiak5j7ag23lq9jx2jvva", "rev": "b7888289ed702aff1616cbff832c97d4e5fc2463" }, "recipe": { "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150404.423", "deps": [] }, "wwtime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ndw/wwtime.git", - "sha256": "197517336742b66c64eb9a57544f8149dab527a9de7d08cba0e7564ce348412d", + "tag": "fetchFromGitHub", + "owner": "ndw", + "repo": "wwtime", + "sha256": "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r", "rev": "d04d8fa814b5d3644efaeb28f25520ada69acbbd" }, "recipe": { "sha256": "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.1010", "deps": [] }, "color-theme-solarized": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sellout/emacs-color-theme-solarized.git", - "sha256": "ed0307e52c24c3b433792854a5d9f99fded3af0353d044ed604f3804950e2960", + "tag": "fetchFromGitHub", + "owner": "sellout", + "repo": "emacs-color-theme-solarized", + "sha256": "1xd2yk7p39zxgcf91s80pqknzdxw9d09cppjb87g7ihj6f0wxqjv", "rev": "412713a0fcedd520d208a7b783fea03d710bcc61" }, "recipe": { "sha256": "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150619.1934", "deps": [ @@ -30037,14 +31857,15 @@ }, "cinspect": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/inlinestyle/cinspect-mode.git", - "sha256": "1fc71c6a3ecd258988246947b8d08a85e559623c7bb052e81fd8c1dddd4eb0a0", + "tag": "fetchFromGitHub", + "owner": "inlinestyle", + "repo": "cinspect-mode", + "sha256": "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw", "rev": "4e199a90f89b335cccda1518aa0963e0a1d4fbab" }, "recipe": { "sha256": "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150715.2133", "deps": [ @@ -30056,14 +31877,15 @@ }, "nu-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pyluyten/emacs-nu.git", - "sha256": "f1bb924a4d9d11bd1b80d86c20053ebadd88eaf37e52bd2da38016a283fc390b", + "tag": "fetchFromGitHub", + "owner": "pyluyten", + "repo": "emacs-nu", + "sha256": "0nbmpnljl0wdkwmxzg6lqd3mand9w043qmwp727hb84gxy0j4dib", "rev": "e2b509a9b631e98f6feabdc783c01a6b57d05fc2" }, "recipe": { "sha256": "0h5jaw577vgm3hfiwc2c0k1wn8zda8ps06vj6mqj952m8bqhf4i7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150413.1515", "deps": [ @@ -30073,14 +31895,15 @@ }, "plsense-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/plsense-direx.git", - "sha256": "410606f05b1ef21eb65bcb2dc70d01835c5cd71585c83e428858198ff1b26468", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "plsense-direx", + "sha256": "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1", "rev": "8a2f465264c74e04524cc789cdad0190ace43f6c" }, "recipe": { "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140520.1508", "deps": [ @@ -30098,21 +31921,22 @@ }, "recipe": { "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131111.1546", "deps": [] }, "aggressive-fill-paragraph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidshepherd7/aggressive-fill-paragraph-mode.git", - "sha256": "0de15f4d0f54a6eacdda38660c3e8915a358b157dc52ddbbe5f5eab9480861f5", + "tag": "fetchFromGitHub", + "owner": "davidshepherd7", + "repo": "aggressive-fill-paragraph-mode", + "sha256": "18zlxgwcvqhlw9y7zn6fywmy04f7rs71fd5ihcx28j4rx9ay929c", "rev": "9af6a31b7c47306fb524bcc8582e0a3738701f25" }, "recipe": { "sha256": "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.141", "deps": [ @@ -30121,14 +31945,15 @@ }, "eshell-git-prompt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/eshell-git-prompt.git", - "sha256": "2c01ccf4ec9c355a288254d5fa26245df1a8de3cd9f34537354289b4aaba24ad", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "eshell-git-prompt", + "sha256": "1b94pamb92a26lvlbwyr7kgaiwax4hkgmmalh8l5ldcwxkscq09c", "rev": "1751dd26dab245fd9567ed5eb09ba0b312699eac" }, "recipe": { "sha256": "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150929.47", "deps": [ @@ -30147,49 +31972,52 @@ }, "recipe": { "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140213.548", "deps": [] }, "poporg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/QBobWatson/poporg.git", - "sha256": "2020a9a1e20f963303e11e795d95baef9648d459d803d8615641155027de65b9", + "tag": "fetchFromGitHub", + "owner": "QBobWatson", + "repo": "poporg", + "sha256": "0ja1kq4pl62zxlzwv2m8zzb55lg2fl366bi9pzvxl38frvbqg8qx", "rev": "d4d8b3e6206b0af4044d1dcecfc0bd2193704e07" }, "recipe": { "sha256": "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150603.2047", "deps": [] }, "cdb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skk-dev/ddskk.git", - "sha256": "003be81094d22aa34b472dab82673037a34ca2b9a928c9d2fa865a990b360630", + "tag": "fetchFromGitHub", + "owner": "skk-dev", + "repo": "ddskk", + "sha256": "11qr5ami93rwgvc3pf9370rsxbnawdllsrizm1v53xsi98yfp812", "rev": "83f1acd557d1b5561f6bc5a3abae7ab9ab4ea440" }, "recipe": { "sha256": "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.743", "deps": [] }, "kite-mini": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tungd/kite-mini.el.git", - "sha256": "0d754c1e47c72da9fb1784b6c748405e562af8a4308f53bcc408e1cf220c0ed4", + "tag": "fetchFromGitHub", + "owner": "tungd", + "repo": "kite-mini.el", + "sha256": "1m0f1hiczq88qjy573rhlkw2lmjy814cgdl42zxsjbf78wg4qx8d", "rev": "d9eb14593364f7d58eed3f26b45e8aef5b845b20" }, "recipe": { "sha256": "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150811.1329", "deps": [ @@ -30199,14 +32027,15 @@ }, "ac-html-bootstrap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/ac-html-bootstrap.git", - "sha256": "603e45398b365917790b720e517af2049d5042645c83d490e7abe5556a76dc03", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "ac-html-bootstrap", + "sha256": "0c2d5yh0xndna2p1azhhss63q3vbn3lsi2f22nb792gr6al1j8za", "rev": "3c1880294585054fe8345f25d002a7a4633b2fae" }, "recipe": { "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150930.241", "deps": [ @@ -30215,42 +32044,45 @@ }, "zlc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/emacs-zlc.git", - "sha256": "1de1c90dd509460b3f5f9cf2cb4612055c900036f3d91ff48afe20d7f00a65bd", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "emacs-zlc", + "sha256": "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x", "rev": "4dd2ba267ecdeac845a7cbb3147294ee7daa25f4" }, "recipe": { "sha256": "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151010.2057", "deps": [] }, "julia-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/JuliaLang/julia.git", - "sha256": "5457f518eda68fdcfd854788b6736902250f06519af6b4ba6360a4cc8b5ba3b6", - "rev": "97443cd94d038fc3fe182e97b3ff2a597a9e319b" + "tag": "fetchFromGitHub", + "owner": "JuliaLang", + "repo": "julia", + "sha256": "08rznffmfbfsr1i7bphkxxsadq25rqkidfni7ljxakf0zwl6x7yr", + "rev": "e83b7559df94b3050603847dbd6f3674058027e6" }, "recipe": { "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150912.1000", "deps": [] }, "term+mux": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarao/term-plus-mux-el.git", - "sha256": "922a6886ea4a34bec05eb04b0393668fd841275f504f912cab35b8af92ed9ea7", + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "term-plus-mux-el", + "sha256": "12gfvcf7hl29xhg231cx76q04ll7cvfpvhkb0qs3qn1sqb50fs2q", "rev": "81b60e80cf008472bfd7fad9233af2ef722c208a" }, "recipe": { "sha256": "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140211.149", "deps": [ @@ -30260,28 +32092,30 @@ }, "chinese-remote-input": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/chinese-remote-input.git", - "sha256": "9b4103a9a04bbe15d8f99adbf0d3dae67b0be44b71e0cf14201ca762261f611a", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "chinese-remote-input", + "sha256": "06k13wk659qw40aczq3i9gj0nyz6vb9z1nwsz7c1bgjbl2lh6hcv", "rev": "d05d0bd116421e6fd19f52e9e576431ee5de0858" }, "recipe": { "sha256": "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150110.2303", "deps": [] }, "flycheck-status-emoji": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/liblit/flycheck-status-emoji.git", - "sha256": "4cd4fa46b29aee507cc17b103658405451b603195e6b36de2ad7af45b6fa2fda", + "tag": "fetchFromGitHub", + "owner": "liblit", + "repo": "flycheck-status-emoji", + "sha256": "17mhsxnixw37x9jpy59nn3npw93r1rza2zcw6jmqzandmj0jyvm4", "rev": "a6ae7b108110acc4dba32e616c8b02555455ea67" }, "recipe": { "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150924.1314", "deps": [ @@ -30292,14 +32126,15 @@ }, "gitlab": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/emacs-gitlab.git", - "sha256": "ae98ce8189b225c44b7a0ca8652bd946b2ccddf68405aba2273dae411e318df7", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-gitlab", + "sha256": "07i4j9yl1yag70sl89n7v4yg4jvh5mrifhrf1xswlb29by6najdx", "rev": "78deece7f314f9652b50117605e93be9f8c860f4" }, "recipe": { "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.238", "deps": [ @@ -30311,14 +32146,15 @@ }, "ivariants": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/emacs-ivariants.git", - "sha256": "51279d7ba4f629acf36ec65d73f950b56723fe60d4848be6e5449c5fd9bfd88a", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "emacs-ivariants", + "sha256": "12nqpzcmz724wpk8p16lc3z26rxma3wp6pf6dvrsqagnlixrs9si", "rev": "f9deff2e6fba5647f69771546fb2283136d0fb0d" }, "recipe": { "sha256": "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140720.2327", "deps": [ @@ -30334,21 +32170,22 @@ }, "recipe": { "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140415.2041", "deps": [] }, "common-lisp-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/common-lisp-snippets.git", - "sha256": "1aa6265fb02b2a91bb2eb5c8c752ffa4571daeb1c4e5dc6e73019c88b3c433f9", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "common-lisp-snippets", + "sha256": "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad", "rev": "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284" }, "recipe": { "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.547", "deps": [ @@ -30357,42 +32194,45 @@ }, "apples-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tequilasunset/apples-mode.git", - "sha256": "5b27e5269fba70f2f686d387eb7e06ae725bc0c11d3bb84c601c1c553fdaf08f", + "tag": "fetchFromGitHub", + "owner": "tequilasunset", + "repo": "apples-mode", + "sha256": "0br0jl6xnajdx37s5cvs13srn9lldg58y9587a11s3s651xjdq0z", "rev": "83a9ab0d6ba82496e2f7df386909b1a55701fccb" }, "recipe": { "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110120.2218", "deps": [] }, "reveal-in-osx-finder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaz-yos/reveal-in-osx-finder.git", - "sha256": "5bac2fcfa9a9bb5a4921e76a433c6f8f0b3f3c5774298236b6f073f2ef6323e0", + "tag": "fetchFromGitHub", + "owner": "kaz-yos", + "repo": "reveal-in-osx-finder", + "sha256": "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v", "rev": "5710e5936e47139a610ec9a06899f72e77ddc7bc" }, "recipe": { "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150802.1157", "deps": [] }, "minitest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arthurnn/minitest-emacs.git", - "sha256": "72f2ff4570cf56c36471c83bc371ed095096e29c4b3929b6e99d6dca83c33069", - "rev": "56bb89ee5e96983ca53021587aba6703b38e5c97" + "tag": "fetchFromGitHub", + "owner": "arthurnn", + "repo": "minitest-emacs", + "sha256": "0svv44f9fham9icqq3v31n9728wap4fa0dq241sikbbrw0lnq3gx", + "rev": "c2019088087ebb5e3fe32eae9ae8156db08bd82d" }, "recipe": { "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151015.1331", "deps": [ @@ -30401,14 +32241,15 @@ }, "evil-god-state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gridaphobe/evil-god-state.git", - "sha256": "50cc662ddc6dab98b06d6ed5b47ea1b4278f7632a958e2f20bd6b8de2d2662b3", + "tag": "fetchFromGitHub", + "owner": "gridaphobe", + "repo": "evil-god-state", + "sha256": "1cv24qnxxf6n1grf4n5969v8y9xll5zb9mbfdnq9iavdvhnndk2h", "rev": "3d44197dc0a1fb40e7b7ff8717f8a8c339ce1d40" }, "recipe": { "sha256": "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.2055", "deps": [ @@ -30420,68 +32261,72 @@ "fetch": { "tag": "fetchgit", "url": "git://orgmode.org/org-mode.git", - "sha256": "fab06e90d79c19cc598ea1cb04ca0fe53999f22d71f292ce6947de1b5ead701f", - "rev": "0bdf4cedc5959ec4f40eb3b79302f020d69e2fd0" + "sha256": "c1c1d1723bd8d8b0a1b45d89000f1fed977ceddf7de0acc66ebd1121bd1dbb62", + "rev": "73803c1cf9d0e4016cd1c36653b40573396bd9e7" }, "recipe": { "sha256": "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150910.616", + "version": "20151218.428", "deps": [] }, "occur-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juan-leon/occur-x.git", - "sha256": "ca51136a35fe9a2013cd0f819c589bf695d194b773bf68e66533748ad4e02cb2", + "tag": "fetchFromGitHub", + "owner": "juan-leon", + "repo": "occur-x", + "sha256": "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6", "rev": "352f5fab207d8a1d3dd048073ff127a83e97c82b" }, "recipe": { "sha256": "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130610.843", "deps": [] }, "evil-matchit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/evil-matchit.git", - "sha256": "90ab83764c00c926081508f8d41d10dfe111558a0113c2b85ae5f3fbd48bd6c3", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-matchit", + "sha256": "0kf4m1ghpxfalqx2zwm1d8xav4d6l6bpk79g5cvssk5jz5913fbi", "rev": "8b80b3df9472217d55962981025539f2da603296" }, "recipe": { "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.535", "deps": [] }, "sqlup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/trevoke/sqlup-mode.el.git", - "sha256": "dadea8b37baaaa84d8f8df71f42b94efda5077442075a73dd2f84fe178f318cb", + "tag": "fetchFromGitHub", + "owner": "trevoke", + "repo": "sqlup-mode.el", + "sha256": "0p2g4ss3bf2asxcibrd8l70ll04nm47znr99l5xyzzwhyfzi61w4", "rev": "9cb9662673b7bed891582cfc1080d91a254048f7" }, "recipe": { "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.830", "deps": [] }, "ox-impress-js": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kinjo/org-impress-js.el.git", - "sha256": "824c1e9f2dd05364346170242a97449a4e75675f69aa2513044b78a10042cc7c", + "tag": "fetchFromGitHub", + "owner": "kinjo", + "repo": "org-impress-js.el", + "sha256": "1kf2si2lyy0xc971bx5zd2j9mnz1smc9s8l0dwc6iksh2v9q8cy9", "rev": "91c6d2af6af308ade352a03355c4fb551b238c6b" }, "recipe": { "sha256": "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150412.1216", "deps": [ @@ -30490,14 +32335,15 @@ }, "flycheck-gometalinter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/favadi/flycheck-gometalinter.git", - "sha256": "a03d0e23b43b80f5cdfae95e1ad91de0eb3b2279dbad604e5c69bcacf25e72c3", + "tag": "fetchFromGitHub", + "owner": "favadi", + "repo": "flycheck-gometalinter", + "sha256": "1hvjbvrarg39bi761bfvg4i3psz03pcilpp9zb6zb01vnhihwgd0", "rev": "bc82ffa3ad4a4407a4eddc9bc06ff0b7df9d4ab3" }, "recipe": { "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1128", "deps": [ @@ -30507,28 +32353,30 @@ }, "hipster-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xzerocode/hipster-theme.git", - "sha256": "8332d6db387093e7e0324974d5e702b6214587d3b4c711317ac4102f3abfac9d", + "tag": "fetchFromGitHub", + "owner": "xzerocode", + "repo": "hipster-theme", + "sha256": "17dcpwx2y464g8qi3ixlsf3la8dn0bkxax296bhfg4vh73dxccl3", "rev": "0583bcef489c0bbe2393f813c17f634a9487e04f" }, "recipe": { "sha256": "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141205.2205", "deps": [] }, "ir-black-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jmdeldin/ir-black-theme.el.git", - "sha256": "22061c96562d46800a7be368fcd91eb58a9a99c826e48f1e543b49ae21efc9b3", + "tag": "fetchFromGitHub", + "owner": "jmdeldin", + "repo": "ir-black-theme.el", + "sha256": "1cy9xwhswj9vahg8zr16r2crm2mm3vczqs73gc580iidasb1q1i2", "rev": "36e930d107604b5763c80294a6f92aaa02e6c272" }, "recipe": { "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130303.155", "deps": [] @@ -30542,7 +32390,7 @@ }, "recipe": { "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1649", "deps": [ @@ -30558,63 +32406,67 @@ }, "recipe": { "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1855", "deps": [] }, "memento": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ehartc/memento.git", - "sha256": "18d426d0f1fede3b1d1bd5cba3666386729e17513ca2e54131eb9a784757585e", + "tag": "fetchFromGitHub", + "owner": "ehartc", + "repo": "memento", + "sha256": "0pjqax3pi6pb650yb8iwa4brwwl6cdka7jym3cfkpppyy782dm0q", "rev": "35733b79101f694346792a57df686cbffe64bd79" }, "recipe": { "sha256": "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150823.539", "deps": [] }, "django-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andrzejsliwa/django-theme.el.git", - "sha256": "76b21c549174a22a1a407dcbfc93625de92b1169a013f3ad7f56e6340eb61d21", + "tag": "fetchFromGitHub", + "owner": "andrzejsliwa", + "repo": "django-theme.el", + "sha256": "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w", "rev": "86c8142b3eb1addd94a43aa6f1d98dab06401af0" }, "recipe": { "sha256": "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131022.402", "deps": [] }, "vimrc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mcandre/vimrc-mode.git", - "sha256": "e06249edfe8e47a8621ab6f7a39dc5a127c7f937d904ab105668b35fa0d00e00", + "tag": "fetchFromGitHub", + "owner": "mcandre", + "repo": "vimrc-mode", + "sha256": "000fs2h5zcv8aq8an16r6zwwf9x1qnfs7xxn39iahiwfzvnljqp0", "rev": "d4c7d41091eb282e617c973f5b1fc29c69dc9a28" }, "recipe": { "sha256": "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150607.1113", "deps": [] }, "highlight-unique-symbol": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hitode909/emacs-highlight-unique-symbol.git", - "sha256": "5dc24c0a561956fece5d8adf262d15185104685966d37ba58d089b7f09150c42", + "tag": "fetchFromGitHub", + "owner": "hitode909", + "repo": "emacs-highlight-unique-symbol", + "sha256": "0hhc2l4pz6q8injpplv6b5l08l8q2lnjdpwabp7gwmhraq54rhjx", "rev": "4141bf86a94e30d94d9af9c29d40b16886226e1c" }, "recipe": { "sha256": "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130612.42", "deps": [ @@ -30623,28 +32475,30 @@ }, "extend-dnd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/extend-dnd.git", - "sha256": "cc3d9ed7b44fd772e63e5f5b123a53704958a8953571bf61e03d2dc456b71ce9", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "extend-dnd", + "sha256": "15dwl1rb3186k328a83dz9xmslc0px60ah16fifvmr3migis9hwz", "rev": "80c966c93b82c9bb5c6225a432557c39144fc602" }, "recipe": { "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.1250", "deps": [] }, "bts-github": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-bts-github.git", - "sha256": "e9b5b44e3a25b83ec7d52ffb88068d73974dee2a2026e5ac4c937c19821cd9e9", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-bts-github", + "sha256": "1sfr3j11jz4k9jnfa9i05bp4v5vkil38iyrgsp3kxf15797b9dg9", "rev": "57c23f2b842f6775f0bbbdff97eeec78474be6bc" }, "recipe": { "sha256": "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.227", "deps": [ @@ -30654,14 +32508,15 @@ }, "ac-haskell-process": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ac-haskell-process.git", - "sha256": "81281a4b2377a45976daa01dcdcc442a6c64eb9ea7dfea58d467f8e163da6354", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-haskell-process", + "sha256": "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41", "rev": "0362d4323511107ec70e7165cb612f3ab01b712f" }, "recipe": { "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150423.902", "deps": [ @@ -30671,28 +32526,30 @@ }, "erc-view-log": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Niluge-KiWi/erc-view-log.git", - "sha256": "5ed4b8918ee45433d71aab6a747a365b05e29e3470145f64223f4327a016f12f", + "tag": "fetchFromGitHub", + "owner": "Niluge-KiWi", + "repo": "erc-view-log", + "sha256": "0bzi2sh2fhrz49j5y53h6jgf41av6rx78smb3bbk6m74is8vim2y", "rev": "c5a25f0cbca84ed2e4f72068c02b66bd0ea3b266" }, "recipe": { "sha256": "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140227.1439", "deps": [] }, "jst": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/jst-mode.git", - "sha256": "2272037c73c79a5c056424c81f5d2ba66c2c7a71c30bae95d370ba0ef70566ca", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "jst-mode", + "sha256": "16jgmabcqrjb3v9c6q711jqn9dna88bmzm4880mdry69ixwcydxy", "rev": "2a3fd16c992f7790dc67134ef06a814c3d20579c" }, "recipe": { "sha256": "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150604.638", "deps": [ @@ -30705,14 +32562,15 @@ }, "flx-ido": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/flx.git", - "sha256": "50a03447d54f82ebbf790f4e4086aedbb040598e690d16adf0d44868beda309c", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "flx", + "sha256": "10f9135i9z2y4k0x6fbwm0g6vhsj6ag41xq504zpygqzp6y6ikmz", "rev": "807d69455585d89804ecef233a9462db7d0524d8" }, "recipe": { "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1312", "deps": [ @@ -30722,16 +32580,17 @@ }, "helm-open-github": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-open-github.git", - "sha256": "1f63975d65cc1bbbb984cdbc7cc6dc9b8ed064729f9e7cbfa2c9b0c3722e1652", - "rev": "95140bbacc66320a032d3cdd9e1c31aeb47eb83d" + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-open-github", + "sha256": "0z20wrrzwbw7d6b1s0grzlc3nj9n7dhmv3yk2wk0m4s8y5gmwjd5", + "rev": "9f275e065dbdcaf10c7573984d1ac97041faddba" }, "recipe": { "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151010.131", + "version": "20151217.846", "deps": [ "cl-lib", "gh", @@ -30740,42 +32599,45 @@ }, "xresources-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CQQL/xresources-theme.git", - "sha256": "e2328c36ea9cf46c499b7d4093262ee6cdc9d8c61029ce2150846bfd9213e68d", + "tag": "fetchFromGitHub", + "owner": "CQQL", + "repo": "xresources-theme", + "sha256": "1n3biybylvq5c1lpf7zsjsgdrg7mzrhkaw251fp8qmsss0s3sv4g", "rev": "4842144f9f83e9d6f71f5ba2fd3abdcf6887de8f" }, "recipe": { "sha256": "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141219.1117", "deps": [] }, "enclose": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/enclose.git", - "sha256": "e2905d2664b590c6ab87bf2514bba08d1a9a3b28919e6779a23d9ba40cd0dd7a", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "enclose", + "sha256": "0dz5xm05d7irh1j8iy08jk521p19cjai1kw68z2nngnyf1az7cim", "rev": "2747653e84af39017f503064bc66ed1812a77259" }, "recipe": { "sha256": "04gs468qqhdc9avx7lgibr0f1i444714i7rifad37dfmim8qk759", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121008.1114", "deps": [] }, "magic-latex-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/magic-latex-buffer.git", - "sha256": "e3abaf6be2ac571ffe9786cb49dd0809454af5a8c59b7f698e53c78b26db5880", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "magic-latex-buffer", + "sha256": "102qvck8piskirlpz6y5m3slli8913flkjw6jzz1ymxcw9mszaz3", "rev": "9039acc76000d3c11444fc8782343344247f6fb3" }, "recipe": { "sha256": "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.202", "deps": [ @@ -30785,14 +32647,15 @@ }, "nvm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/nvm.el.git", - "sha256": "5590f78dd36c98131fde18b0276759072b227b04b82d95445d318c4c133145f0", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "nvm.el", + "sha256": "0prag0ks511ifa5mdpqmizp5n8190dxp4vdr81ld9w9xv7migpd7", "rev": "d6c7ad048f1d2854ec3c043d80528857aa1090a8" }, "recipe": { "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.255", "deps": [ @@ -30804,28 +32667,30 @@ }, "organic-green-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kostafey/organic-green-theme.git", - "sha256": "4fafa62849c445d9131c7eb85664ff3b1e570633b495f7d38349eff145dd2061", + "tag": "fetchFromGitHub", + "owner": "kostafey", + "repo": "organic-green-theme", + "sha256": "0q90vm2z3vs9hg9zg5dl6c35f7ivzxj5df3y3h9xjif494ladbsg", "rev": "c4d68c3329147aedd066a88b6d5e5266bcd59dcc" }, "recipe": { "sha256": "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151028.720", "deps": [] }, "ruby-factory": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sshaw/ruby-factory-mode.git", - "sha256": "cdb36ac2d8ae2dcf5e9841c817c3582ada413161656870f1a0185979673890f7", + "tag": "fetchFromGitHub", + "owner": "sshaw", + "repo": "ruby-factory-mode", + "sha256": "1xwh71kpjn8ql3qp0s35c4ql3niab31igj21k1gcybdfv316mcyd", "rev": "134a91c854c06d0d06038005769ce20b2a8177bd" }, "recipe": { "sha256": "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151011.1023", "deps": [ @@ -30834,28 +32699,30 @@ }, "kv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-kv.git", - "sha256": "b5c83b8605f3f2d27534ed9b49a02185382d9131513965b923c0ef67b4f81464", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-kv", + "sha256": "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m", "rev": "721148475bce38a70e0b678ba8aa923652e8900e" }, "recipe": { "sha256": "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140108.934", "deps": [] }, "org-mobile-sync": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/org-mobile-sync.git", - "sha256": "b0d91cefe3436b1e691e26fd80318b063d59c2f724f2bd3a0687ff584fc14234", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "org-mobile-sync", + "sha256": "0d22q57mizw70qxbvwi4yz15jg86icqq1z963rliwss3wgpirndh", "rev": "3b086ffebfead48feccc629f7a6571df2f94c8e0" }, "recipe": { "sha256": "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131118.1316", "deps": [ @@ -30865,28 +32732,30 @@ }, "websocket": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ahyatt/emacs-websocket.git", - "sha256": "57d91fd04b1523cf7468094d68720c21883f7e86a48a343432884ec59479d8f0", + "tag": "fetchFromGitHub", + "owner": "ahyatt", + "repo": "emacs-websocket", + "sha256": "1w6qg6acakl868s392m4hrz3z2111ir6hk89d1scy8qm9g81znap", "rev": "e5cd7c955734f6864fd9f2fa001f076b1a024044" }, "recipe": { "sha256": "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150719.1248", "deps": [] }, "editorconfig-core": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "e7a0756c60b165c328baedf6376574a79198a2086c46666ea42a02f9e307a2cd", - "rev": "44b93337549fa501b404767852a25b7a8b9af02f" + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "0af6r0qn6gy3ww5cf3cvvbwyqpvx5xv08gxkjsj92z9h2x5rfz7f", + "rev": "301d67b26098d048ff7235c0878252e80becc7e0" }, "recipe": { "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1035", "deps": [ @@ -30896,14 +32765,15 @@ }, "gnomenm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-nm.git", - "sha256": "62c9c2a717e23f5455e73c35ef27e2e14c8eff0dc14a9966aea463ec52dd76eb", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-nm", + "sha256": "1svnvm9fqqx4mrk9jjn11pzqwk71w8kyyd9wwxam8gz22ykw5jb2", "rev": "9065cda44ffc9e06239b8189a0154d31314c3b4d" }, "recipe": { "sha256": "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150316.1418", "deps": [ @@ -30914,14 +32784,15 @@ }, "imenu-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmag/imenu-list.git", - "sha256": "3390b22fee598f5350ff8fa7d5f0dd28b5e42ff1149a09049521260bb6859942", + "tag": "fetchFromGitHub", + "owner": "bmag", + "repo": "imenu-list", + "sha256": "0hlrhnv0n9i1jl20k6hly4py9d98vpqdb9wgzx8573srxqpv541k", "rev": "0c725825ad13fca6b1eea2d28c42ffb172fa6de9" }, "recipe": { "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150911.446", "deps": [ @@ -30936,21 +32807,22 @@ }, "recipe": { "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141226.1420", "deps": [] }, "flymake-less": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-less.git", - "sha256": "445295365a279e027a5701572db511c40f70218bd17d07937ccce15bc338785d", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-less", + "sha256": "0ggi8a4j4glpsar0sqg8q06rscajjaziis5ann31wphx88rc5wd7", "rev": "32d3c28a9a5c52b82d1741ff9d715013b6498421" }, "recipe": { "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.138", "deps": [ @@ -30962,12 +32834,12 @@ "fetch": { "tag": "fetchgit", "url": "https://go.googlesource.com/tools", - "sha256": "8db229f334a755903a5cd68980b5345c6899c8201bd15e956436998ea2c4a3ce", - "rev": "1cdaff4a02c554c9fb39dda0b56241c5f0949d91" + "sha256": "e8768dadb61beb860223d8cc2b9a2e4da8e5ebaeb631f94d1a72aebb9ce1a30a", + "rev": "fa833fdef560f0fe9b40dbb37fd03030ac3d514b" }, "recipe": { "sha256": "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.838", "deps": [ @@ -30976,14 +32848,15 @@ }, "malinka": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/LefterisJP/malinka.git", - "sha256": "73102ae0ffc0e8f9b5150e9081e6686b55cf54a72e13ea6df8ee2be84f1b02fb", + "tag": "fetchFromGitHub", + "owner": "LefterisJP", + "repo": "malinka", + "sha256": "1a22xkhnmpfffllarsjdw10n5cd3nwifcl1iv98kb4j4x96kd4xg", "rev": "cd451d32dcdfa3e6b34f47c6956ff310de8a9a06" }, "recipe": { "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.216", "deps": [ @@ -30997,14 +32870,15 @@ }, "aggressive-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/aggressive-indent-mode.git", - "sha256": "79e28034ef883b02be23f969bd538e6d276f0d52eac51b96927156ad6f96982a", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "aggressive-indent-mode", + "sha256": "0alqjrpssmkijab1pigaa86ny9vdir9vssgr4fz04fw8xws81qkr", "rev": "e613e7eb5179ae0caf4b96501923276bccd30d83" }, "recipe": { "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.1448", "deps": [ @@ -31014,14 +32888,15 @@ }, "helm-pt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ralesi/helm-pt.git", - "sha256": "bebcf54af1626b77190c91255d03a8df04366eff74317df2f2bec9b0fef28c07", + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "helm-pt", + "sha256": "01wcybzb1jdyybr7scblzxp3c16zm01ms9ci1hcpfsv2y55gbg5y", "rev": "afdf50913c49b8bbb0ff40ee5d9dfe3eb8b7c71a" }, "recipe": { "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.2130", "deps": [ @@ -31030,28 +32905,30 @@ }, "subemacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kbauer/subemacs.git", - "sha256": "1d991faf26aade9b28d6b7b182a9e5f1350736f5d9566917527a92c44dc0ebff", + "tag": "fetchFromGitHub", + "owner": "kbauer", + "repo": "subemacs", + "sha256": "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362", "rev": "24f0896f1995a3ea42a58b0452d250dcc6802944" }, "recipe": { "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.1054", "deps": [] }, "magit-find-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bradleywright/magit-find-file.el.git", - "sha256": "67c9ea64736ffcb18e38571b8350a6e9dc0e3a0a14bc056a06449812d9883979", - "rev": "035da838b1a19e7a5ee135b4ca8475f4e235b61e" + "tag": "fetchFromGitHub", + "owner": "bradleywright", + "repo": "magit-find-file.el", + "sha256": "1j3jsrp0qpaa2xd98d1g9z0zc4b93knwajrlnlsc7l6g0vlfsddb", + "rev": "c3ea91bab37d10a814a829728ec972811f728d60" }, "recipe": { "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.330", "deps": [ @@ -31067,49 +32944,52 @@ }, "recipe": { "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130917.1348", "deps": [] }, "c0-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/catern/c0-mode.git", - "sha256": "5d7617a5b173e3b0412b96e167c12c2d6febcdf56e317c93956dcec948066982", + "tag": "fetchFromGitHub", + "owner": "catern", + "repo": "c0-mode", + "sha256": "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx", "rev": "c214093c36864d6208fcb9e6a72413ed17ed5d60" }, "recipe": { "sha256": "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.1252", "deps": [] }, "dizzee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidmiller/dizzee.git", - "sha256": "6dd8abcb431cbe60f23146b41e5855dbf2503c17f040d28bbc303ac9872c6d4d", + "tag": "fetchFromGitHub", + "owner": "davidmiller", + "repo": "dizzee", + "sha256": "120zgp38nz4ssid6bv0zy5rnf2claa5s880incgljqyl0vmj9nq5", "rev": "37629f390afb8da03ef0ce81c2b3caff660e12f6" }, "recipe": { "sha256": "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20111009.816", "deps": [] }, "mvn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/apgwoz/mvn-el.git", - "sha256": "a6190c980b4dd7eb891313704974921fbbf6d3255b0b09e8b4723d9a880276bf", + "tag": "fetchFromGitHub", + "owner": "apgwoz", + "repo": "mvn-el", + "sha256": "1gvn0a49lgbjnkl0j2sv4p9zdfqzj9s4jw0k2f4ypmsd1fc0q6d6", "rev": "01ede605d49c5fb6f2da038f5df6f31112de802f" }, "recipe": { "sha256": "1ykiz5fviq2n2474izwp0vvqanpbmxg7lzh1xbpn281kwmp0mwin", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151001.129", "deps": [] @@ -31123,21 +33003,22 @@ }, "recipe": { "sha256": "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141104.1037", "deps": [] }, "caroline-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xjackk/caroline-theme.git", - "sha256": "4b2e23722cafe6c19290647c3ab86afcbe29f96eec546c5544fb858bd3623292", + "tag": "fetchFromGitHub", + "owner": "xjackk", + "repo": "caroline-theme", + "sha256": "14ijcb9qp1gv8ianqm7cdvwjkgpwdaw3lz34j29c3rmg5ir26bjb", "rev": "742bf4ac4521ff9905294812919051cec768b1a0" }, "recipe": { "sha256": "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1804", "deps": [ @@ -31146,14 +33027,15 @@ }, "ace-isearch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tam17aki/ace-isearch.git", - "sha256": "d92fce7a5ce841964a3b107940ec5e88cbfd60325f20c62e5063bb79667f230a", + "tag": "fetchFromGitHub", + "owner": "tam17aki", + "repo": "ace-isearch", + "sha256": "02i3gxk7kfv3a0pcc82z69hgvjw8bvn40y8h7d59chg8bixcwbyr", "rev": "9a32a039623e3907a4fce959aa48c26a79fb249b" }, "recipe": { "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150808.756", "deps": [ @@ -31165,14 +33047,15 @@ }, "flycheck-perl6": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hinrik/flycheck-perl6.git", - "sha256": "34474e12ded34a4159b85c21ad0bef7a8a39b392088b60562df3d5b2aa817a7c", + "tag": "fetchFromGitHub", + "owner": "hinrik", + "repo": "flycheck-perl6", + "sha256": "0ffas4alqhijvm8wl1p5nqjhnxki8gs6b5bxb4nsqwnma8qmlcx3", "rev": "6a9a929ffb58595bbe9fe3d7c2e78617c8e9bb5a" }, "recipe": { "sha256": "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150414.2032", "deps": [ @@ -31182,14 +33065,15 @@ }, "sparkline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/woudshoo/sparkline.git", - "sha256": "77b304f838db6560b33bae6efe52dc14d79e0ca38ee33f85a5b577ee991f0dbb", + "tag": "fetchFromGitHub", + "owner": "woudshoo", + "repo": "sparkline", + "sha256": "1fqd3ycywxxmln2kzqwflc69xmqlvi9gwvmf7frn0rfv73w09cvp", "rev": "a2b5d817d272d6363b67ed8f8cc75499a19fa8d2" }, "recipe": { "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.719", "deps": [ @@ -31198,28 +33082,30 @@ }, "slime-volleyball": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fitzsim/slime-volleyball.git", - "sha256": "2303f2a7c5f45d650df2af0ee3d0ca423d7f650bc566c2e744cd394500ac6403", + "tag": "fetchFromGitHub", + "owner": "fitzsim", + "repo": "slime-volleyball", + "sha256": "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3", "rev": "159b5c0f40b109e3854e94b89ec5383854c46ae3" }, "recipe": { "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140717.2341", "deps": [] }, "free-keys": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/free-keys.git", - "sha256": "e0228557750dd20dc1cb205dda77209e6b2fe0f3cf2a9912132ba6fa8ee3358b", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "free-keys", + "sha256": "12rmwf7gm9ib2c99jangygh2yswy41vxlp90rg0hvlhdfmbqa8p0", "rev": "368820cb361161f10a2ae7a839ab758146fd222c" }, "recipe": { "sha256": "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.522", "deps": [ @@ -31228,14 +33114,15 @@ }, "emms-player-simple-mpv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/emms-player-simple-mpv.git", - "sha256": "2e7fefdeec0b541f7ce21b89de804e6cf86abbbe4c1dfd6343d192eecff65d2a", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "emms-player-simple-mpv", + "sha256": "0ajxyv7yx4ni8dizs7acpsxnmy3c9s0dx28vw9y1ym0bxkgfyzrf", "rev": "92be36ef158df3db3a2f9e2d0186a609fc2d3702" }, "recipe": { "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151020.801", "deps": [ @@ -31246,14 +33133,15 @@ }, "ta": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kuanyui/ta.el.git", - "sha256": "d59f817553db651829fe53fe8ef4e0f580ea79c0256416ccc03ba6d96b1c9414", + "tag": "fetchFromGitHub", + "owner": "kuanyui", + "repo": "ta.el", + "sha256": "054l3imxk9ivq361cr15q1wym07mw3s8xzjkzqlihrfvadsq37ym", "rev": "0d946b15a88239982ec66eaa8a55ad53d85e7c3f" }, "recipe": { "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150604.1224", "deps": [ @@ -31263,14 +33151,15 @@ }, "mote-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/inkel/mote-mode.git", - "sha256": "27d69cfa3fc6078f536b9348237cba14571fbbccc2644275e15f7c0f37dee9c3", + "tag": "fetchFromGitHub", + "owner": "inkel", + "repo": "mote-mode", + "sha256": "1hz9vqvhyz2zw5sl4r62rjxiymqlp9y26j4kdd9qy1y67zx9rmi7", "rev": "18dfc3af0cee7d6d522616f07134364c1c3e54ba" }, "recipe": { "sha256": "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121014.2319", "deps": [ @@ -31279,56 +33168,60 @@ }, "xml-rpc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hexmode/xml-rpc-el.git", - "sha256": "8a95d4709f5656fe924cbfccd16e078ab9d108e796cf977969e37141c373724e", + "tag": "fetchFromGitHub", + "owner": "hexmode", + "repo": "xml-rpc-el", + "sha256": "0kkjfg1l2wg3d5wrgkwnww4d3fca0xpd3k5z9j9gwmjnkxqd95ca", "rev": "a190759da8765d3b22ceb6774cefc610fda404d8" }, "recipe": { "sha256": "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150902.2027", "deps": [] }, "cmm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bgamari/cmm-mode.git", - "sha256": "33e68149ef8c82af6b19fc9416f0e9c17ce3e90158bc9d0143f7b9fd220ad7ff", + "tag": "fetchFromGitHub", + "owner": "bgamari", + "repo": "cmm-mode", + "sha256": "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx", "rev": "c3ad514dff3eb30434f6b20d953276d4c00de1ee" }, "recipe": { "sha256": "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150225.146", "deps": [] }, "enlive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/enlive.git", - "sha256": "50a2c620272ccd94fff08f8dc5b0d89885ed16a05c384ba55761616b80ffa76d", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "enlive", + "sha256": "0vd7zy06nqb1ayjlnf2wl0bfv1cqv2qcb3cgy3zr9k9c4whcd8jh", "rev": "0f6646adda3974e7fe9a42339a4ec3daa532eda5" }, "recipe": { "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150824.749", "deps": [] }, "wiki-summary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jozefg/wiki-summary.el.git", - "sha256": "310c90837536a3cf464221c92f94ec55367f2b33fc96efb30a9a855503fb6c09", + "tag": "fetchFromGitHub", + "owner": "jozefg", + "repo": "wiki-summary.el", + "sha256": "02bczc1mb1cs1aryz5pw6cmpydjmxja2zj91893cz8rnfn1r031i", "rev": "ed3755dd09f5f73ef78ec295fe842d08b316c8a0" }, "recipe": { "sha256": "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150408.1622", "deps": [ @@ -31337,28 +33230,30 @@ }, "nexus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juergenhoetzel/emacs-nexus.git", - "sha256": "47f81c3d5aba872024bbf46a40fc7ae95ed0d25d843a82e1fa4b9998c836ddf6", + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "emacs-nexus", + "sha256": "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27", "rev": "c46f499951b90839aa8683779fe43d8f01672a60" }, "recipe": { "sha256": "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140114.705", "deps": [] }, "rake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/asok/rake.git", - "sha256": "b92c442fd114b40d6155cb428ba8561c176ce0a64fe6b9554b01d57adf66f817", + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "rake", + "sha256": "1wcs8j8rdls0n3v8zdpk2n5riwzz2yvjf6b70a5bj7p20gyafhj2", "rev": "eba311a8f5ccfb6535efbc26fa58c43e3f1e5515" }, "recipe": { "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150831.358", "deps": [ @@ -31369,28 +33264,30 @@ }, "slim-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/slim-template/emacs-slim.git", - "sha256": "216ef4f08cad6ef20baad193abb97d045694c6233e91908b43b6e2e4ad60fe6d", + "tag": "fetchFromGitHub", + "owner": "slim-template", + "repo": "emacs-slim", + "sha256": "0vgyc2ny9qmn8f5r149y4g398mh4gnwsp4yim85z4vmdikqg8vi1", "rev": "869c84821cf3e556b380c5c35d8ad62287c4df58" }, "recipe": { "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140611.1150", "deps": [] }, "ox-html5slide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/org-html5slide.git", - "sha256": "b5272081d491e381b596e0b8b8ced204a00260951d9e2dc096c068c5dce003a6", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "org-html5slide", + "sha256": "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm", "rev": "4703dfbd9d79161509def673d2c1e118d722a58f" }, "recipe": { "sha256": "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.6", "deps": [ @@ -31399,14 +33296,15 @@ }, "waher-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-waher-theme.git", - "sha256": "8c76c6d11a43783c3264edf0040768281204579e1b318110849eadc5508fa970", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-waher-theme", + "sha256": "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc", "rev": "60d31519fcfd8e797723d47961b255ae2f2e2c0a" }, "recipe": { "sha256": "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141115.630", "deps": [ @@ -31422,7 +33320,7 @@ }, "recipe": { "sha256": "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.1159", "deps": [ @@ -31431,14 +33329,15 @@ }, "mu4e-maildirs-extension": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/agpchil/mu4e-maildirs-extension.git", - "sha256": "c365b9e066e9f10f1d252c560619aaf74833e698ed322c61ac6cf933ec243cf9", + "tag": "fetchFromGitHub", + "owner": "agpchil", + "repo": "mu4e-maildirs-extension", + "sha256": "0hbgzvybd04s9fz9myrs68ic2v0kks3wpv8qj14ihrnl7xh03rfh", "rev": "17eacf2d0b3a57ebf26a6aaa9eeb51d579457d25" }, "recipe": { "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.1126", "deps": [ @@ -31447,14 +33346,15 @@ }, "gvpr-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rodw/gvpr-lib.git", - "sha256": "7500d583d2881cb3c2fafef2991b069e9ee71f23f36c8d8e313051012e7b04d2", + "tag": "fetchFromGitHub", + "owner": "rodw", + "repo": "gvpr-lib", + "sha256": "0060qw4gr9fv6db20xf3spgl2fwg2iid5ckfjm3vj3ydyv62q13s", "rev": "3d6cc6f4416faf2a1913821d12ba6eb624362af0" }, "recipe": { "sha256": "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131208.1118", "deps": [] @@ -31467,49 +33367,52 @@ }, "recipe": { "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1610", "deps": [] }, "move-dup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wyuenho/move-dup.git", - "sha256": "47f52e9264cdc64f139bbd0dc57bdffbf54887dc2ca019a5e7375cafa134c27e", + "tag": "fetchFromGitHub", + "owner": "wyuenho", + "repo": "move-dup", + "sha256": "0baynb6gq04rxh10l6rn0myrhg7c7fwqaryiiyddp4jy7llf83c8", "rev": "964d1bbaacd4559d2dbde9cb44015c400d5a71b5" }, "recipe": { "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140925.1008", "deps": [] }, "stash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vermiculus/stash.el.git", - "sha256": "a978095d85317bd5dcc19f32a37677a6fd7fa22a5077f17ac5cba56d9ef2af5f", + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "stash.el", + "sha256": "0cl2y72iagmv87kg72a46a3kap2xigwnrbk2hjgvsbxv2ng5f9cr", "rev": "c2e494d20c752b80ebbdffbf66687b3cdfc425ad" }, "recipe": { "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.827", "deps": [] }, "autopair": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/autopair.git", - "sha256": "cc2e494c276b7bba057190b81d81c175137346352e593796d6564fb71dc587ff", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "autopair", + "sha256": "1z3hd2jkibwz2ijvyh066ki5g30pdqgh2vj2r35prpp12bqabw4a", "rev": "4f4bd30b341e7fb15a452b59f3e5c34cbd5c97d8" }, "recipe": { "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140825.627", "deps": [ @@ -31518,14 +33421,15 @@ }, "chinese-word-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/chinese-word-at-point.el.git", - "sha256": "c37a27f8c28d536a287ac8d3f569b88395bc5bd3625e9477a5a63fd29862c764", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "chinese-word-at-point.el", + "sha256": "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j", "rev": "36a03cce32fe059d2b581cb2e029715c0be81074" }, "recipe": { "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150618.2038", "deps": [ @@ -31534,14 +33438,15 @@ }, "key-seq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vlevit/key-seq.el.git", - "sha256": "0dc5cafd836164af6fbedb7ef7da378d3fad6464dc11f54b570823209b396d3d", + "tag": "fetchFromGitHub", + "owner": "vlevit", + "repo": "key-seq.el", + "sha256": "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f", "rev": "e29b083a6427d061638749194fc249ef69ad2cc0" }, "recipe": { "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150907.256", "deps": [ @@ -31550,14 +33455,15 @@ }, "ox-pandoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/ox-pandoc.git", - "sha256": "194ecb815e045df3a81d39ad5875d0bfce87f2d8535be1bff85771a29d9d1031", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "ox-pandoc", + "sha256": "0c8hknfs4wapz2zy2nskv3r8gkmzs1smib9r3nlg6p84bs0wnkhr", "rev": "c2ee3801e1df4e865afc9ce271771479ce2b248b" }, "recipe": { "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150706.2009", "deps": [ @@ -31569,14 +33475,15 @@ }, "helm-ghc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/helm-ghc.git", - "sha256": "4ee8874e41fa67ff4a7c847c3485196129e4878006715aa6f41e8bddb9f20cd5", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "helm-ghc", + "sha256": "16p1gisbza48qircsvrwx020n96ss1c6s68d7cgqqfc0bf2467is", "rev": "e5ee7b8d3b745d162553aecfbd41381c4de85f35" }, "recipe": { "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141105.859", "deps": [ @@ -31588,16 +33495,17 @@ }, "projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/projectile.git", - "sha256": "34999000476e13b4b4a88bbd2f56104836b73e50245a0d82a30e4ac8d8e1d0a3", - "rev": "5773d28036c81f44468da58402a32463b278ee1f" + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "01mwciy9bacx5vkxckp0hsxx0s00qss48kkcc2rhlypdcmmawvn7", + "rev": "05058b1c73799b07003ad0978f5ba9a231783be4" }, "recipe": { "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151130.1239", + "version": "20151217.1552", "deps": [ "dash", "pkg-info" @@ -31605,30 +33513,32 @@ }, "fabric": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/fabric.el.git", - "sha256": "bd5cbee2b608c56ad1196cb74f96cc5d210955dced3bc7b4ad4f3ea62c086f96", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "fabric.el", + "sha256": "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5", "rev": "004934318f63d8cf955022f87b2c33eb97ada280" }, "recipe": { "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.522", "deps": [] }, "sage-shell-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/sage-shell-mode.git", - "sha256": "d7cecfe82569543852f3c65eef30d8d0bbab1154c3616aa6c8ba1279777ecdc9", - "rev": "7daed23524a74fee8ce0a87b72bddff8bc0ac725" + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "sage-shell-mode", + "sha256": "060xvh5qwqbvvb5ykyflwps2p2by9p1mm5dz7gkxla5zq0a73vmx", + "rev": "ad78c168c1fb702eebc74f30eba830adc3fe0079" }, "recipe": { "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151020.809", + "version": "20151024.313", "deps": [ "cl-lib", "deferred" @@ -31636,16 +33546,17 @@ }, "flycheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck.git", - "sha256": "77845737d168f4ccaf65fb153cd8f512893052b28fb12ee1e455faeedd3b5997", - "rev": "757c32644a38b95cd3ee7faa25a1ac3675c4850e" + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck", + "sha256": "1szj58qd0wx6lvcb69mb7ccn2b0qsa7b028519137slrwmxipgp8", + "rev": "1404451f226153a06a1e7741fe6a3d10267bb3a4" }, "recipe": { "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151212.611", + "version": "20151216.902", "deps": [ "dash", "emacs", @@ -31656,28 +33567,30 @@ }, "cuda-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chachi/cuda-mode.git", - "sha256": "56bc5dc66334339e1d840887f4b4ce8612d1ededad2c89d3ab5daaa8e1e98f26", + "tag": "fetchFromGitHub", + "owner": "chachi", + "repo": "cuda-mode", + "sha256": "1ms0z5zplcbdwwdbgsjsbm32i57z9i2i8j9y3wm0pwzyz4zr36zy", "rev": "9ae9eacfdba3559b5456342d0d03296290df8ff5" }, "recipe": { "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.2121", "deps": [] }, "ob-cypher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/ob-cypher.git", - "sha256": "36316bbe0613f3817621646b5f7e5cda84594f7953f42d0d2f2f36ecb0ff6cf5", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-cypher", + "sha256": "1xbczyqfqdig5w6jvx2kg57mk16sbiz5ysv445v83wqk0sz6nc9n", "rev": "b3511df05f175c1947996802e9e199432ea9ced8" }, "recipe": { "sha256": "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150224.2037", "deps": [ @@ -31689,14 +33602,15 @@ }, "company-ycm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/neuromage/ycm.el.git", - "sha256": "d25b62cb6415c8e64542ebaaabe5a845399d30a80e13ca2b18f3ff849487cc7e", + "tag": "fetchFromGitHub", + "owner": "neuromage", + "repo": "ycm.el", + "sha256": "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj", "rev": "4da8a14abcd0f4fa3235042ade2e12b5068c0601" }, "recipe": { "sha256": "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140904.1317", "deps": [ @@ -31707,25 +33621,26 @@ "fetch": { "tag": "fetchurl", "url": "http://www.emacswiki.org/emacs/download/dired+.el", - "sha256": "0nizzrahz0fm2w9qfnx34l3jy8nwp9vxjk3xn5sj44k7p2j11m8s" + "sha256": "0pgm5pg3z7cbrvs12fwj6g2kxm7qqq0410lsb1kpsdlgixb2yh5q" }, "recipe": { "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151110.1121", + "version": "20151215.854", "deps": [] }, "bfbuilder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/bfbuilder.git", - "sha256": "27b49a8f58aeb87a6dc8debad53831704459e14bb5105e91d51db86583ee2ef9", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "bfbuilder", + "sha256": "1y9fxs1nbf0xsn8mw45m9ghmji3h64wdbfnyr1npmf5fb27rmd17", "rev": "49560bdef131fa5672dab660e0c62376dbdcd906" }, "recipe": { "sha256": "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150924.1150", "deps": [ @@ -31734,14 +33649,15 @@ }, "debug-print": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kenoss/debug-print.git", - "sha256": "b77b791ef71d831eac43fa49218295da2f72c2b7a12121caf5956a416eb629d9", + "tag": "fetchFromGitHub", + "owner": "kenoss", + "repo": "debug-print", + "sha256": "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp", "rev": "d817fd9ea2d3f8d2c1ace4d8af155684f3a99dc5" }, "recipe": { "sha256": "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140125.1819", "deps": [ @@ -31750,14 +33666,15 @@ }, "gorepl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/manute/gorepl-mode.git", - "sha256": "0b3cbf483ce9c9426da0dde4d4e458211e073203f46a3808e5ea3ddd3b3a6ba9", + "tag": "fetchFromGitHub", + "owner": "manute", + "repo": "gorepl-mode", + "sha256": "1abb78xxsggawl43hspl0cr0f7i1b3jd9r6xl1nl5jg97i4byg0b", "rev": "17e025951f5964a0542a4b353ddddbc734c01eed" }, "recipe": { "sha256": "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.622", "deps": [ @@ -31766,14 +33683,15 @@ }, "mocker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/mocker.el.git", - "sha256": "5a57867381d4716ca8b2f61e038fcc43bda32810c1265b5561175e9595fdcf36", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "mocker.el", + "sha256": "0dngznaraphpc5amn9n120la7ga3rj7h67pnnal6qwflh5rqcmss", "rev": "b56f0f2839d4a395979816b40089a77050518eb6" }, "recipe": { "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150916.2054", "deps": [ @@ -31783,56 +33701,60 @@ }, "ido-hacks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/scottjad/ido-hacks.git", - "sha256": "7d3603070b80d386113da55a96384304987fd07b50bf1053db324c24c257e406", + "tag": "fetchFromGitHub", + "owner": "scottjad", + "repo": "ido-hacks", + "sha256": "01p4az128k1jvd9i1gshgg87z6048cw9cnm57l8qdlw01c3h6dkx", "rev": "b7e7514a0e011e4d767d1f5755c5eae9d85f83dc" }, "recipe": { "sha256": "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150331.1409", "deps": [] }, "subatomic-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cryon/subatomic.git", - "sha256": "1fe0959b6a4bffe88bb567e6bd6b20c918d55f18f417e3bd04a02698bde44eda", + "tag": "fetchFromGitHub", + "owner": "cryon", + "repo": "subatomic", + "sha256": "1njfwjyrh9m00jyy65zl31gxa66941mvvrk7nn5yizsbdadrbq0z", "rev": "2543881f9bbb8520f845b7fe8f370793c36f7df2" }, "recipe": { "sha256": "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150704.1009", "deps": [] }, "jar-manifest-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omajid/jar-manifest-mode.git", - "sha256": "b80af9bcf58b4d1f5717f0910bdbea199f3fe77f058b444c800e7a543c90cd5b", + "tag": "fetchFromGitHub", + "owner": "omajid", + "repo": "jar-manifest-mode", + "sha256": "0nydj0y58yhfh16492q5gzkkz7qrxbdhp4gh2xbiykcbynygj2mq", "rev": "200dcf6ec5116b506ae24a83511837adf0acedef" }, "recipe": { "sha256": "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150329.1733", "deps": [] }, "psc-ide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/epost/psc-ide-emacs.git", - "sha256": "1fb75010c4538c8092511262a8e8856229db7a826e8e8046a29a403074feb9f1", + "tag": "fetchFromGitHub", + "owner": "epost", + "repo": "psc-ide-emacs", + "sha256": "0pz5d8xl2bc9k4isk39rbkw9wcmd83a4hpqv04fqcvjnrvawabww", "rev": "44d9bc5e0cfadb4fd03b32c0c0b8ea01e5b1c1ae" }, "recipe": { "sha256": "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.817", "deps": [ @@ -31843,14 +33765,15 @@ }, "quelpa-use-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/quelpa/quelpa-use-package.git", - "sha256": "a6ceca3db578afa7da3852d3a1bb441369ae65792a602f43e33caa26b8df9603", + "tag": "fetchFromGitHub", + "owner": "quelpa", + "repo": "quelpa-use-package", + "sha256": "00wnvyw2daiwwd1jyq1ag5jsws8k8jxs3lsj73dagbvqnlywmkm6", "rev": "d18b55508ceaeb894f5db3d775f5c1b27e4be81b" }, "recipe": { "sha256": "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150805.528", "deps": [ @@ -31867,35 +33790,37 @@ }, "recipe": { "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140201.514", "deps": [] }, "dna-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jhgorrell/dna-mode-el.git", - "sha256": "7664eb5682a8100b519daf4784b4b16187de200d7f061c1e0b6c3e7efa91487c", + "tag": "fetchFromGitHub", + "owner": "jhgorrell", + "repo": "dna-mode-el", + "sha256": "0z28j7x7wgkc1cg1q1kz1lhdx1v1n6s88ixgkm8hn458h9bfnr3n", "rev": "c3fed6b9d98deafbc1525d445a920b969120fe6a" }, "recipe": { "sha256": "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130821.1305", "deps": [] }, "pungi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mgrbyte/pungi.git", - "sha256": "41c0d044dd2160a142d590934c92f31100d64fb6fa7019ac404741677c493cee", + "tag": "fetchFromGitHub", + "owner": "mgrbyte", + "repo": "pungi", + "sha256": "1viw95y6fha782n1jw7snr7xc00iyf94r4whsm1a2q11vm2d1h21", "rev": "a2d4d439ea371be0b064a12248288903b8a521a0" }, "recipe": { "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150222.646", "deps": [ @@ -31905,28 +33830,30 @@ }, "mpages": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/slevin/mpages.git", - "sha256": "d42b0d23c3661b43e0a48180e28ed0c1f9f27b7a6010cb5826d3fb1244ebd1ee", + "tag": "fetchFromGitHub", + "owner": "slevin", + "repo": "mpages", + "sha256": "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2", "rev": "39a72a0931ab1cdbfdf0ab9f412dc12d43a3829f" }, "recipe": { "sha256": "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150710.904", "deps": [] }, "colorsarenice-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/colorsarenice-theme.git", - "sha256": "2aca79f4bc2c2e01cf18e86dda2d76bea71b066d2f1bd2e7a2d251fefda91fa2", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "colorsarenice-theme", + "sha256": "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia", "rev": "3cae55d0c7aeda3a8ef731ebc3886b2449ad87e6" }, "recipe": { "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150421.1536", "deps": [ @@ -31935,28 +33862,30 @@ }, "isearch-symbol-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/re5et/isearch-symbol-at-point.git", - "sha256": "69bf83ab2b9a75452268f6496696889d80f23a1b40bc0e59065d0c060a4ae427", + "tag": "fetchFromGitHub", + "owner": "re5et", + "repo": "isearch-symbol-at-point", + "sha256": "09z49850c32x0rchxg203cxg504xi2b6cjgnd0i4axcs5fmq7gv9", "rev": "51a1029bec1ec414885f9edb7e5947603dffdab2" }, "recipe": { "sha256": "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130728.1721", "deps": [] }, "flycheck-mypy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lbolla/emacs-flycheck-mypy.git", - "sha256": "1331403a59f4decaf7ecb18fdc85edcf69473ecea231dc34c30a3d68a1e1b6ed", + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-flycheck-mypy", + "sha256": "1vdnw6hnhg8aqcsdqcd2rqz4fsfgxn2xr3xixkvwmpplb4x40c8k", "rev": "263339e6e44c3d0d4c10ff3528e5575db97a353f" }, "recipe": { "sha256": "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150915.333", "deps": [ @@ -31965,28 +33894,30 @@ }, "backup-walker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/backup-walker.git", - "sha256": "1b194e000693a5fc2818b11874c07e91865b9043793f0ac401a5a94953478d7c", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "backup-walker", + "sha256": "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v", "rev": "934a4128c122972ac32bb9952addf279a60a94da" }, "recipe": { "sha256": "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130720.1016", "deps": [] }, "workgroups": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tlh/workgroups.el.git", - "sha256": "56d8f51f631645f8e953b3be7e37ff55d750dd8802f5e5c755483a8549f96260", + "tag": "fetchFromGitHub", + "owner": "tlh", + "repo": "workgroups.el", + "sha256": "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n", "rev": "9572b3492ee09054dc329f64ed846c962b395e39" }, "recipe": { "sha256": "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110726.1141", "deps": [] @@ -31999,7 +33930,7 @@ }, "recipe": { "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1532", "deps": [ @@ -32008,14 +33939,15 @@ }, "ace-jump-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/ace-jump-buffer.git", - "sha256": "3e84481b62f94ce2869a2a47adcd597cbea08d8a92bdbd3806f1d704b3938985", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "ace-jump-buffer", + "sha256": "11c9jfrh9mzi0qwbvgcjia6s1gkwb76ssiraka3f4k7rc8dli11y", "rev": "9299ebd4bbbf6ba78dcb40440b3aadd7b540375c" }, "recipe": { "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150215.34", "deps": [ @@ -32031,35 +33963,37 @@ }, "recipe": { "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150829.2355", "deps": [] }, "codebug": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shano/emacs-codebug.git", - "sha256": "f79e54c476ef9400cd8be2e9d63c8fb0e8d4c9bdfed4ba7ed40b8d4158386687", + "tag": "fetchFromGitHub", + "owner": "shano", + "repo": "emacs-codebug", + "sha256": "11v671c4338bsizbmm7ypp4x9s5hiwyddsg2ig6h157gfv2597pp", "rev": "ac0e4331ba94ccb5203fa492570e1ca6b90c3d52" }, "recipe": { "sha256": "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140929.1637", "deps": [] }, "bts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-bts.git", - "sha256": "efaf89571dabf2ab36f32462dcfcabfb4577f5a0d327a2a78dc3c791d2d465bc", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-bts", + "sha256": "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w", "rev": "df42d58a36447697f93b56e69f5e700b2baef1f9" }, "recipe": { "sha256": "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.733", "deps": [ @@ -32073,56 +34007,60 @@ }, "fyure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/fyure.git", - "sha256": "76c53cc1a100b9b8a774a7f6c3a3f30808eef3313d9bedb9f4f5b1c9ca16d8e6", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "fyure", + "sha256": "08x5li0mshrlamr7vswy7xh358bqhh3pngjr4ckswfi0l2r5fjbd", "rev": "b6977f1eb148e8b63259f7233b55bb050e44d9b8" }, "recipe": { "sha256": "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130216.714", "deps": [] }, "wedge-ws": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aes/wedge-ws.git", - "sha256": "c69975093876af8c2ae3cad3283183a898ec2ab9d046cfb3d9f85321bac2aee9", + "tag": "fetchFromGitHub", + "owner": "aes", + "repo": "wedge-ws", + "sha256": "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98", "rev": "4669115f02d9c6fee067cc5369bb38c0f9db88b2" }, "recipe": { "sha256": "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140714.1649", "deps": [] }, "ctl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/emacs-grads.git", - "sha256": "cf67b5c75559f52ea0168ad3d6fdcc2be449ea50cd33de0e75f8a8314eb7b64c", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "emacs-grads", + "sha256": "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31", "rev": "1a13051db21b999c7682a015b33a03096ff9d891" }, "recipe": { "sha256": "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.406", "deps": [] }, "ac-octave": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/ac-octave.git", - "sha256": "f8d4d4df0a7c4a2a752a1fb19d2031f531a6e297ae6652f0e9430804de176f99", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "ac-octave", + "sha256": "16bg2zg08223x7q54rmfjziaccgm64h9vc8z59sjljkw1bgx9m7q", "rev": "28dfce296dd2aa0ea46b51803109f3fdd1e5c379" }, "recipe": { "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150111.1908", "deps": [ @@ -32131,42 +34069,45 @@ }, "color-moccur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/color-moccur.el.git", - "sha256": "1decf8c11ad22649d75580512c346d4073b8cd7d9947513d52a559f231182edc", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "color-moccur.el", + "sha256": "1p1f30qz4nd5a8ym2iwrgp6vhws0dls2qlc0apblj9nj3b0ziv0x", "rev": "4f1c59ffd1ccc2ab1a171cd6b721e8cb9e002fb7" }, "recipe": { "sha256": "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141222.1835", "deps": [] }, "simple-mpc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorenvo/simple-mpc.git", - "sha256": "0522e28df1140d9d5fa492572ea5270d3ff489536f2c3eb44e877d0ff37cd4f8", + "tag": "fetchFromGitHub", + "owner": "jorenvo", + "repo": "simple-mpc", + "sha256": "1y6lgkrhyzc79ss3wb3gaf4z8gqd4yjjwmwjligrs38ly66y48h5", "rev": "fdf0ccb2a157325386e6997c119d87a9aa0865d1" }, "recipe": { "sha256": "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150802.406", "deps": [] }, "ansi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ansi.git", - "sha256": "890f93330ed499250775fa2dbdc5003e78b900d4ea5b6513ae54ae1c39e42fe0", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ansi", + "sha256": "19k71dj83kvc8mks6zhl45vsrsb61via53dqxjv9bny1ybh2av85", "rev": "12b4c5d91b3da1902838f421e5af6d40e2cd57dd" }, "recipe": { "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150703.326", "deps": [ @@ -32176,16 +34117,17 @@ }, "evil-magit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/justbur/evil-magit.git", - "sha256": "b7e67dfe1e43215c71bb6f0b4309146329d28feca1bd2957fa0a2511e263b190", - "rev": "c35be89c5a80c7513f23e7382809b5abc8c58903" + "tag": "fetchFromGitHub", + "owner": "justbur", + "repo": "evil-magit", + "sha256": "0g7a7djdzwm15n51384571xfmwzbf7ibldbzki6s64g5yf3yd69d", + "rev": "8f07cf1382c9715cf3c735087794460f92b4b114" }, "recipe": { "sha256": "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.1626", + "version": "20151216.1858", "deps": [ "evil", "magit" @@ -32193,14 +34135,15 @@ }, "ido-describe-bindings": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danil/ido-describe-bindings.git", - "sha256": "389e0aa707e366d878f1fa16a3c82ffea086999739d7a3ca5b8e5cab549e90a5", + "tag": "fetchFromGitHub", + "owner": "danil", + "repo": "ido-describe-bindings", + "sha256": "19chkraanp4fbg5a7mrrjycqd87y5z4a65psy5wdhrp30ykhm7iq", "rev": "a4048d5d1a6aad93c0206dbe4f34f4edb21a04d2" }, "recipe": { "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.1438", "deps": [ @@ -32210,42 +34153,45 @@ }, "birds-of-paradise-plus-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jimeh/birds-of-paradise-plus-theme.el.git", - "sha256": "b1f3d31f65e50ebaae63d1ef6397b080209e2e03f6484e2611b805342dfe01c0", + "tag": "fetchFromGitHub", + "owner": "jimeh", + "repo": "birds-of-paradise-plus-theme.el", + "sha256": "1n5icy29ks5rxrxp7v4sf0523z7wxn0fh9lx4y6jb7ppdjnff12s", "rev": "bb9f9d4ef7f7872a388ec4eee1253069adcadb6f" }, "recipe": { "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130419.1629", "deps": [] }, "term+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarao/term-plus-el.git", - "sha256": "7292ff7eeacc343778205cfd7e426ebcd8167bb143398113b7ada89dabea452b", + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "term-plus-el", + "sha256": "1ayr34smxf94c09ssdwl4hyhzgahsmbj7j4h25cdm6wcwii2br86", "rev": "090807985673755720c5533b2fc684f88a3554ad" }, "recipe": { "sha256": "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130612.852", "deps": [] }, "elixir-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/elixir-lang/emacs-elixir.git", - "sha256": "3f28e9e72c97f12129ddaa0ebd6301abc74767c8af9cce9aee19b3db1c259a84", + "tag": "fetchFromGitHub", + "owner": "elixir-lang", + "repo": "emacs-elixir", + "sha256": "00rl76bsyzq6dh9z65n894z1rsj483yclyndw515j4gvfqqlxcd9", "rev": "25f3995ea34b23b7ffa304159a2508dbf9b3d075" }, "recipe": { "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.612", "deps": [ @@ -32255,44 +34201,47 @@ }, "jbeans-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/synic/jbeans-emacs.git", - "sha256": "665cf0042ecd23468008fa5762eb1f2b973f601eedffb22fdfb8795608f46362", - "rev": "9bf942ca383c559d2c94da67a94d8c3e680eb96c" + "tag": "fetchFromGitHub", + "owner": "synic", + "repo": "jbeans-emacs", + "sha256": "0yx64jrq1br0aylfn4mm26f71gyyw6kad97kv40sb0ashm3di96h", + "rev": "282f4236b11d42b2927f18b4e0b458bf61550867" }, "recipe": { "sha256": "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151214.926", + "version": "20151217.954", "deps": [ "emacs" ] }, "fakespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elisp-fakespace.git", - "sha256": "da0d29dcc08b6705f25b6638a3538ad8ad96d17ef58ca0c338c5d3981304d585", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elisp-fakespace", + "sha256": "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs", "rev": "d1bd1f4b14b2690d7a67f9a52622ec51ed84813a" }, "recipe": { "sha256": "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120817.1906", "deps": [] }, "auto-complete-chunk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/auto-complete-chunk.git", - "sha256": "91a6e619ed0b57297171d7003f91b33b70e62493c8c444e7856f10426fbf0bfe", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "auto-complete-chunk", + "sha256": "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li", "rev": "a9aa77ffb84a1037984a7ce4dda25074272f13fe" }, "recipe": { "sha256": "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140225.346", "deps": [ @@ -32301,14 +34250,15 @@ }, "hookify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/hookify.git", - "sha256": "0c1a84847e65a4cf3e5c3bf21852efb14c5c6f7f2e69e39a86fdda034b4b7ffb", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "hookify", + "sha256": "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc", "rev": "e76127230716f7fab6662410c03c3872d17a172b" }, "recipe": { "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141216.1609", "deps": [ @@ -32318,28 +34268,30 @@ }, "gntp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tekai/gntp.el.git", - "sha256": "6af8626fba745e8b7a159551b81aad14657da206e95d467cbf35e6e6a5947edb", + "tag": "fetchFromGitHub", + "owner": "tekai", + "repo": "gntp.el", + "sha256": "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a", "rev": "767571135e2c0985944017dc59b0be79af222ef5" }, "recipe": { "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.2150", "deps": [] }, "github-browse-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osener/github-browse-file.git", - "sha256": "e814a5b24d59275e690f08f5604e292b443f08997d38b8071c6f4d605db56f1f", + "tag": "fetchFromGitHub", + "owner": "osener", + "repo": "github-browse-file", + "sha256": "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578", "rev": "fa5cc00a40869430fb44596792961a4cddf9c265" }, "recipe": { "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.1825", "deps": [ @@ -32348,28 +34300,30 @@ }, "diminish": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/diminish.git", - "sha256": "8e9569286602d52c7b054ba408e706761a23e103e11bdda71403ba3b6ae5770e", + "tag": "fetchFromGitHub", + "owner": "myrjola", + "repo": "diminish.el", + "sha256": "03kpwmm3pfh32jkxs6z10ghj66kn0vkhi92b0mxjrm82cql6k5cf", "rev": "18d9730f48f1f775b38ec8390cc644bc3f3d8de5" }, "recipe": { - "sha256": "03sskxgvkj8zrkh1p6kc993609r6261q4ww9hr78kr2f2a98lj88", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "sha256": "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1115", "deps": [] }, "easy-kill-extras": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/easy-kill-extras.el.git", - "sha256": "08504928461648c965fd8893adc8b6f938667c748a9b6d0ff18d33502d4ed6a1", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "easy-kill-extras.el", + "sha256": "18fn9qnm0cwdy47nv6wafiy6cf7rnv4av4w8zmjwjj0n8ql4jl08", "rev": "aff957b4fd699331d21648780b2f0f6ffc3cb70b" }, "recipe": { "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.2117", "deps": [ @@ -32378,14 +34332,15 @@ }, "projekt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tekai/projekt.git", - "sha256": "bc325975f73b587097670288ee7b492e2f469a106f69817e97f8944004a47b43", + "tag": "fetchFromGitHub", + "owner": "tekai", + "repo": "projekt", + "sha256": "0hvvlh24157qjxz82sbg22d4cbrf95xyx202cybp0n1vyxsmjcmw", "rev": "a65e554e5d8b0def08c5d06f3fe34fec40bebd83" }, "recipe": { "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150324.348", "deps": [ @@ -32394,14 +34349,15 @@ }, "ob-ipython": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gregsexton/ob-ipython.git", - "sha256": "1a7efd33ef8a6ee6f79af4a18b83ee95a167e073844658693a9cc47cf213b764", + "tag": "fetchFromGitHub", + "owner": "gregsexton", + "repo": "ob-ipython", + "sha256": "0r5p2gr7ri4w79lmhil4fgh6g8cmxs1qp8glkbvycvlaxwrzszhs", "rev": "15011a8e1694d09a74094c5361a588bf586458f6" }, "recipe": { "sha256": "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151010.507", "deps": [ @@ -32420,7 +34376,7 @@ }, "recipe": { "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1832", "deps": [] @@ -32434,21 +34390,22 @@ }, "recipe": { "sha256": "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130508.1703", "deps": [] }, "ranger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ralesi/ranger.el.git", - "sha256": "f1ac1d266754855b608732b8f45af8a916bcf4938dc295d49a264b3aed0e867b", + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "ranger.el", + "sha256": "0yw61vnkljr6kba9bhldjgsbq5m9z1dg9f1jhxh5p1alcwk1vb7i", "rev": "bec7f51db0aa2fd6c08304b61475352ee54b6692" }, "recipe": { "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.36", "deps": [ @@ -32457,14 +34414,15 @@ }, "jq-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ljos/jq-mode.git", - "sha256": "f7016ae21fb8965e8269e65fd06eb7274b80a2277bb8c493ba43300ce8779804", + "tag": "fetchFromGitHub", + "owner": "ljos", + "repo": "jq-mode", + "sha256": "014qfzl0qc23pa9w9f3v4yi80jr7nxpd0pz6d615x5mq3zi6l0gp", "rev": "305ead8f087b1b817291d5f0365e5226199ec58c" }, "recipe": { "sha256": "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.651", "deps": [ @@ -32473,14 +34431,15 @@ }, "jedi-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-jedi-direx.git", - "sha256": "57b18e630cce9b19d09bbda1096bac6b392bf61b8fdbe3f7cd4f95cfed2ef1dd", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi-direx", + "sha256": "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap", "rev": "7a2e677400717ed12b959cb5988e7b3fb1c12117" }, "recipe": { "sha256": "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140310.436", "deps": [ @@ -32490,14 +34449,15 @@ }, "yascroll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/yascroll-el.git", - "sha256": "e59b1cc7968ce1e7950542936b02359fc8e898153f0fef22623978a7e1498a23", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "yascroll-el", + "sha256": "08wa97hsfy1rc8ify3rz2ncfij4z6l16p4s20naygqccjv3ir6z5", "rev": "f7743df1cf6d8e55607141d1ea5f50b562582c51" }, "recipe": { "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.805", "deps": [ @@ -32506,42 +34466,45 @@ }, "general-close": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-berlin/general-close.git", - "sha256": "c4354bac232091576c3759147f5ed3c7e3e86d957e80839ce8769a062ecde6db", + "tag": "fetchFromGitHub", + "owner": "emacs-berlin", + "repo": "general-close", + "sha256": "1nz6rlp0d6knx2f8703yjmnyiqy7sdg7y52r6xn5g4904fn4ndf4", "rev": "77aac6f98a7c136c88794b0e3d50915a027e185f" }, "recipe": { "sha256": "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150922.213", "deps": [] }, "date-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/date-at-point.el.git", - "sha256": "115bc42208de7d0f747bb0639051d56f5f149c79d8e086d727e73ef3144051db", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "date-at-point.el", + "sha256": "0l4z9rjla4xvm2hmp07xil69q1cg0v8iff0ya41svaqr944qf7hf", "rev": "65733210479812a70a6dd5978ba0e2a4a6fcd08b" }, "recipe": { "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.618", "deps": [] }, "boogie-friends": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/boogie-org/boogie-friends.git", - "sha256": "518abffd5f4721af0f22e0f85058591a57357763a74a7003e8c3f1621445b188", + "tag": "fetchFromGitHub", + "owner": "boogie-org", + "repo": "boogie-friends", + "sha256": "11m0w8i2nq0nqrpg6m7vnn9sd3v1ln5b3rka7m9fnasadf77nmpv", "rev": "d7b67730e9d4ac2ad5dc886bdc27e9b441497b96" }, "recipe": { "sha256": "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.1549", "deps": [ @@ -32554,14 +34517,15 @@ }, "flycheck-ledger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flycheck-ledger.git", - "sha256": "3b8fabb65c3ffecc21a401c935a6b46c19ed36db5fe8f763c4de0e6be8c28f95", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flycheck-ledger", + "sha256": "15cgqbl6n3nyqiizgs2zvcvfs6bcnjk3bj81lhhwrzizbjvap3rv", "rev": "78392ba2c0c177c47bb795a1a191c29846837f57" }, "recipe": { "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140605.1346", "deps": [ @@ -32570,28 +34534,30 @@ }, "killer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/killer.git", - "sha256": "1d8ce6eb72cd91309365324edcf631c3c45b54694461c06fb25a0e3961812b17", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "killer", + "sha256": "05rbh5hkj3jsn9pw0qa4d5a5pi6367vdqkijcn9k14fdfbmyd30x", "rev": "7bbb223f875402a7b2abee4baa5a54f10bd97212" }, "recipe": { "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120808.622", "deps": [] }, "flycheck-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/flycheck-tip.git", - "sha256": "0a47344a7c2a751307adeaf55363b884d0da1c93861ad885e546ccbc95330427", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "flycheck-tip", + "sha256": "0hn3qjff1lcpd2ghjixkkq2bpmrmqab3860vy38yw201yy4xmn5r", "rev": "9eefbea4ccc9e348d356faf28c9a1902ba28f29e" }, "recipe": { "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150726.356", "deps": [ @@ -32602,14 +34568,15 @@ }, "ibuffer-rcirc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/ibuffer-rcirc.git", - "sha256": "c8a0a22a1243f973460f1641f685bbabc6cde0f652c3c73dc6850df96a38aa86", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "ibuffer-rcirc", + "sha256": "15lapyj7qkkw1i1g1aizappm7gxkfnxhvd4fq66lghkzb76clz2m", "rev": "8a4409b1c679d65c819dee4085faf929840e79f8" }, "recipe": { "sha256": "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150215.1518", "deps": [ @@ -32618,14 +34585,15 @@ }, "tablist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/politza/tablist.git", - "sha256": "8e0be5e3ec0828f2b78f8aa64e6bffde4dff39d26b653b205842eb877f353348", + "tag": "fetchFromGitHub", + "owner": "politza", + "repo": "tablist", + "sha256": "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns", "rev": "ef38312867bc0268b1584dd890b1c420bb77ec11" }, "recipe": { "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150619.18", "deps": [ @@ -32634,28 +34602,30 @@ }, "iedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/victorhge/iedit.git", - "sha256": "3f1c515cf74a96cc3683aef5b841b846ed378eda957a9887dd55a7e5b931b86a", + "tag": "fetchFromGitHub", + "owner": "victorhge", + "repo": "iedit", + "sha256": "1n2yz6jzbminrviadhd3h42fwvfrdy0v2nw7sk5plkzc8zrs3x25", "rev": "2d9017daeaeb408568992f5c9cad5df5ca4f1d12" }, "recipe": { "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150915.2222", "deps": [] }, "term-alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CallumCameron/term-alert.git", - "sha256": "48ac0392a98827400ae7238cf3d983a51a933915179fcf5a87695b3158fcaa00", + "tag": "fetchFromGitHub", + "owner": "CallumCameron", + "repo": "term-alert", + "sha256": "0sa3chk16s830lqhcd8d3bwdfmjg239ywb7jm6lhwshydssh34nk", "rev": "46cc46dba6957a7081a360692e58b9bffb2cfa86" }, "recipe": { "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141121.1405", "deps": [ @@ -32665,14 +34635,15 @@ }, "org-vcard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flexibeast/org-vcard.git", - "sha256": "bee5e91a9b759b0cd070ecc7bb506556e152072bc744a24fe4213cc7cd6d5dd4", + "tag": "fetchFromGitHub", + "owner": "flexibeast", + "repo": "org-vcard", + "sha256": "1m2xdp6wfg11wi7s4i675c3m5qancm8bpizcf380r6vmkcdfkrdy", "rev": "928827c1de3c90045df3ea4fb07db4af9d3b0a22" }, "recipe": { "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.22", "deps": [] @@ -32686,7 +34657,7 @@ }, "recipe": { "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.1406", "deps": [] @@ -32699,7 +34670,7 @@ }, "recipe": { "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150616.1522", "deps": [ @@ -32708,14 +34679,15 @@ }, "mbo70s-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-mbo70s-theme.git", - "sha256": "bf9cac357637994a5571a28b57c4c4d82545ef6d16801d5a7cfc93459b2b28ef", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-mbo70s-theme", + "sha256": "1vr85fdlb4zwgid1v00ndppla9fqqk25g2x2f5alm69pfqssr75z", "rev": "d50414697760896dbe6b06d2a00c271c16e0e4a2" }, "recipe": { "sha256": "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141122.842", "deps": [ @@ -32724,14 +34696,15 @@ }, "weather-metno": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ruediger/weather-metno-el.git", - "sha256": "2adc62107ddf5904cc834c04a1fdd00743f3f470e83ef2e71558362b1e5799d6", + "tag": "fetchFromGitHub", + "owner": "ruediger", + "repo": "weather-metno-el", + "sha256": "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z", "rev": "bfc7137095e0ee71aad70ac46f2af677f3c051b6" }, "recipe": { "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150831.2007", "deps": [ @@ -32741,28 +34714,30 @@ }, "gitconfig": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/gitconfig.el.git", - "sha256": "e898334574359b9a8d899f6b5ec4557fb871f221ba9e6203833b27d5f51e98a0", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "gitconfig.el", + "sha256": "184q3vsxa9rvhc1n57ms47r73f3zap25wswzi66rm6rmfi2k7678", "rev": "7612a37ca14009cac8fb8d6b6f54adad739a5741" }, "recipe": { "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130718.435", "deps": [] }, "auth-password-store": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/auth-password-store.git", - "sha256": "066ba82c4c5061bc11c1d390bfbacded48d91e6ccabd9328c8e09aaeb287e063", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "auth-password-store", + "sha256": "0gi65n1np63zi2ylc4y1licwvk97jl92s1v98fv5y61kppi1d8sq", "rev": "d7fc1f026c3f43190cacedfa6eff8da916e607f5" }, "recipe": { "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.1547", "deps": [ @@ -32774,28 +34749,30 @@ }, "org-context": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thisirs/org-context.git", - "sha256": "545940c9afdf0cccc8d99fd55518c326b8486f374e5f1837600cca7899cb2eed", + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "org-context", + "sha256": "1sn0lhy5sb241wspv56s1snhsb8r5jwy9cwgaszcq3yibi34j38q", "rev": "47d1f0c9b9fb7547dbeed5b3315102a2d3c3e16f" }, "recipe": { "sha256": "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.1506", "deps": [] }, "eyuml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antham/eyuml.git", - "sha256": "b6557c7b2dbdff6cfba93f3850754e4a7e55c3c5cd077092a77af430beff0184", + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "eyuml", + "sha256": "1rgzydxv7c455vj1jm44vvs6xc4qgivqqb0g6zh5x4wdcpgdi2g9", "rev": "2f259c201c6cc63ee608f75cd85c1ae27f9d2532" }, "recipe": { "sha256": "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141028.1727", "deps": [ @@ -32805,28 +34782,30 @@ }, "cpputils-cmake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/cpputils-cmake.git", - "sha256": "23357bdb09873ddab28422f822c2e23c4c78fd7887e02777ddd435486e056197", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "cpputils-cmake", + "sha256": "0kjkqylg0fncizrgcr8xx2qgjr8id41904n2pip0gicbry1n8bqg", "rev": "9a496c9c14d1f287d9819aa0ed017be9fad9d3f4" }, "recipe": { "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.603", "deps": [] }, "anzu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-anzu.git", - "sha256": "f4f3f307cc0cd85d544782557d703ce2224420042aaf9f04e89befb683f5364d", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-anzu", + "sha256": "1d2laybz1igrr9nnkmfsnrvsjw7qmrgby4wnrxprins9gq263lra", "rev": "6fded24b366efc4cf27166104c1928f7d1fedaa7" }, "recipe": { "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151015.605", "deps": [ @@ -32836,14 +34815,15 @@ }, "tj-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/katspaugh/tj-mode.git", - "sha256": "896b4c6c4500ba9caf79a468109f4bba03accd49b96ada33d22d9222fe29a30e", + "tag": "fetchFromGitHub", + "owner": "katspaugh", + "repo": "tj-mode", + "sha256": "152yrxridh4b3k808lmky4p6zm8q4jpff8hmnywqhfbrvwv1n6ah", "rev": "492b271c3736616c84a99c5b43897848bc350c96" }, "recipe": { "sha256": "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150826.1051", "deps": [ @@ -32861,21 +34841,22 @@ }, "recipe": { "sha256": "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141025.1112", "deps": [] }, "web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-web.git", - "sha256": "c5132c8b28a28d6a1809c11510481cb3cfd90b87d92dc33b2c0f064e6f53ac0f", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-web", + "sha256": "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5", "rev": "483188dac4bc6b409b985c9dae45f3324a425efd" }, "recipe": { "sha256": "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141231.1401", "deps": [ @@ -32885,28 +34866,30 @@ }, "python-django": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/python-django.el.git", - "sha256": "d0a8f70f0599f6414a176cf0a0620667affd39c6a5fa851f2465c51057b193e1", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "python-django.el", + "sha256": "1qckn5bi1ib54hgqbym5qqwzvbv70ria1w3c2x543xlr0l7zga6h", "rev": "fc54ad74f0309670359b939f64d0f1fff68aeac4" }, "recipe": { "sha256": "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150821.2304", "deps": [] }, "helm-google": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/helm-google.git", - "sha256": "6246633b3f929063c8f7552da721bf60b0ddaed78c2af92a1ce73781c4ae8556", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "helm-google", + "sha256": "0ml5mv282dz73hmgjalcsypdvc30pwhsfbamyz46744j7wxn6ik2", "rev": "21443456eefab39a2bfef00f1387c015e7dfac51" }, "recipe": { "sha256": "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141228.540", "deps": [ @@ -32916,56 +34899,60 @@ }, "format-sql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/format-sql.el.git", - "sha256": "adb8870c0f12e930843a7b5455a8f9c03d1d0e57680fc910b0b565b2f0be44bc", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "format-sql.el", + "sha256": "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0", "rev": "97f475c245cd6c81a72a265678e2087cee66ac7b" }, "recipe": { "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150422.833", "deps": [] }, "writegood-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bnbeckwith/writegood-mode.git", - "sha256": "2b0c3987112ed453007aec5b32b5cba812c0c9559c52e6dddf1b266372b0d2da", + "tag": "fetchFromGitHub", + "owner": "bnbeckwith", + "repo": "writegood-mode", + "sha256": "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b", "rev": "4302169c1563cab9319745083f9b9a7f5f4af0bd" }, "recipe": { "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150325.1315", "deps": [] }, "simpleclip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/simpleclip.git", - "sha256": "0e1724351d66f424aedad16f60e04bf58c7df472ae5463b2fe03615258c96279", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "simpleclip", + "sha256": "09286h2q9dqghgfj9a4cniz6djw7867vcy3ixs7cn4wghvhyxm8s", "rev": "7079086ec09a148fcc9146ba9bd10e12fb011861" }, "recipe": { "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.1210", "deps": [] }, "pallet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/pallet.git", - "sha256": "2caef10bf2794c3104abce1dac8eefd061894aa5de251ac868e72006a1ba42f4", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "pallet", + "sha256": "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw", "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" }, "recipe": { "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150512.202", "deps": [ @@ -32977,14 +34964,15 @@ }, "org-sync": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arbox/org-sync.git", - "sha256": "05e493fd5f3ee4efe9fb584fdf71b39ebc04d61c4bf7b11fb80ac142931303b3", + "tag": "fetchFromGitHub", + "owner": "arbox", + "repo": "org-sync", + "sha256": "14zn0b8qs740ls1069kg2lwm0b9yc4qv525fg8km0hgi0yp8qw7z", "rev": "1e9045e38cd6f12dc0d60e2f7bd2d414a49a5722" }, "recipe": { "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150817.954", "deps": [ @@ -32995,14 +34983,15 @@ }, "rcirc-styles": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aaron-em/rcirc-styles.el.git", - "sha256": "8beb3500e35ce58d62c9856672d56710fe9b8fd5641d7ca2c31f783adb2267a1", + "tag": "fetchFromGitHub", + "owner": "aaron-em", + "repo": "rcirc-styles.el", + "sha256": "18b74bdkly0zqfi7q7b4sn7rpzhhczap4rl5r5i8vrawwc03bswb", "rev": "a1a166ad34e6096d6b5dde9ea4312b3104899a75" }, "recipe": { "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150720.2031", "deps": [ @@ -33011,14 +35000,15 @@ }, "jasminejs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stoltene2/jasminejs-mode.git", - "sha256": "e29b56085b3d1dbd6ac500333f3e128468222b45d48cc3e4856b1cd2411fd328", + "tag": "fetchFromGitHub", + "owner": "stoltene2", + "repo": "jasminejs-mode", + "sha256": "1zcrxijcwqfs6r1cd6w4jq8g3ly0a69nf0cbx93w5v86x2kjpz0l", "rev": "9f8044bf81ab5b4841a30b0bd099916e1b7ff54a" }, "recipe": { "sha256": "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150526.1905", "deps": [] @@ -33031,64 +35021,67 @@ }, "recipe": { "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.304", "deps": [] }, "twilight-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/developernotes/twilight-theme.git", - "sha256": "daf14286114bdb311ee5d423965403e28268857fadcee40ecc8ff30c6068fb34", + "tag": "fetchFromGitHub", + "owner": "developernotes", + "repo": "twilight-theme", + "sha256": "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs", "rev": "77c4741cb3dcf16e53d06d6c2ffdc660c40afb5b" }, "recipe": { "sha256": "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120412.803", "deps": [] }, "apel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wanderlust/apel.git", - "branchName": "apel-wl", - "sha256": "3531d891f7af7ee3e26bcea3ddda1f941e59fbe643c02e170b1a67b488b3bd69", + "tag": "fetchFromGitHub", + "owner": "wanderlust", + "repo": "apel", + "sha256": "0sdxnf4b8rqs1cbjxh23wvxmj7ll3zddv8yfdgif6zmgyy8xhc9m", "rev": "8402e59eadb580f59969114557b331b4d9364f95" }, "recipe": { "sha256": "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141024.1842", "deps": [] }, "cn-outline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mori-dev/cn-outline.git", - "sha256": "99959dd3be36375031fc49b7aa0b2163c4dd1086d10970c43678c77b43996598", + "tag": "fetchFromGitHub", + "owner": "mori-dev", + "repo": "cn-outline", + "sha256": "1635k51ppivq6v2702fihq8dvi33445smds9zhqm0drnpv9rv5cr", "rev": "47d33a99b7ae26b1cd456441970b4bab2173d981" }, "recipe": { "sha256": "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100321.1114", "deps": [] }, "yatemplate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mineo/yatemplate.git", - "sha256": "0c708b036320bbb6707c29219f09dc229f71af047ef79e8d36d8493e0518b6bf", + "tag": "fetchFromGitHub", + "owner": "mineo", + "repo": "yatemplate", + "sha256": "1gxn302kwjfq6s6rxxvy0jpp37r2vh4ry899giqbdfr0cc1qnw0c", "rev": "499e7f2ea245686c09915523657fa95905f70561" }, "recipe": { "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.107", "deps": [ @@ -33097,28 +35090,30 @@ }, "nginx-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ajc/nginx-mode.git", - "sha256": "68383ec0f80d1a797def7f0af17b6d56acaee6fdc842e401151df4bcc0f47721", + "tag": "fetchFromGitHub", + "owner": "ajc", + "repo": "nginx-mode", + "sha256": "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38", "rev": "8a296e30b01adbc40d1aa9ccde369a972ac5ceab" }, "recipe": { "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150824.1611", "deps": [] }, "anything-git-grep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mechairoi/anything-git-grep.git", - "sha256": "fbcefa3ca15d3ed4a2f781d0cab1036b885cb1ca5814e9cc532a7cc9cedcde19", + "tag": "fetchFromGitHub", + "owner": "mechairoi", + "repo": "anything-git-grep", + "sha256": "06fyvk7cjz1aag6fj52qraqmr23b0fqwml41yyid8gjxl4ygmkpv", "rev": "6ee26e68bb8ec23ffacf5c5f9698c451a4bc905c" }, "recipe": { "sha256": "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130608.2140", "deps": [ @@ -33127,30 +35122,32 @@ }, "emoji-fontset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/emoji-fontset.el.git", - "sha256": "393ff52a3d1632495bc3ea893750aa2e5d7604f3804d8415acc35a955fb82762", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "emoji-fontset.el", + "sha256": "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr", "rev": "3b8c2204284b95934383836b5b36efeefb65663b" }, "recipe": { "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151107.2247", "deps": [] }, "ergoemacs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ergoemacs/ergoemacs-mode.git", - "sha256": "017e3a9253bc6351694ed1737f894c5bd19fb346bd53a2af9b48b7856deb39ae", - "rev": "6f16300270afffe64f65c48204049641ba3010bf" + "tag": "fetchFromGitHub", + "owner": "ergoemacs", + "repo": "ergoemacs-mode", + "sha256": "0h46k3wjcrizb45j8xcr5chk30lvzn2v9892k4m4xcgp6jdhzycm", + "rev": "6b105ec09b45d8f67549b7c23ecf4cca26e27a40" }, "recipe": { "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.1600", + "version": "20151218.930", "deps": [ "emacs", "undo-tree" @@ -33158,14 +35155,15 @@ }, "cyphejor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/cyphejor.git", - "sha256": "51a549c4e6140d896060d9e6603f7af1aa7e3bf06b5ba4ef1498afda67026c6a", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "cyphejor", + "sha256": "1vkwm1n0amf0y0jdyvqskp00b6aijqhd7wclzkzrq7glrvj2z1xw", "rev": "1025d82a9abaca132f5855e72d56c0c2ccc0eef4" }, "recipe": { "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.627", "deps": [ @@ -33174,14 +35172,15 @@ }, "motion-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ainame/motion-mode.git", - "sha256": "fb5a955bafd44e89f58fa3fb186b7c3e1a0e796abaf23dea857405c2fed47fc5", + "tag": "fetchFromGitHub", + "owner": "ainame", + "repo": "motion-mode", + "sha256": "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1", "rev": "4c94180e3ecea611a61240a0c0cd48f1032c4a55" }, "recipe": { "sha256": "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140919.2056", "deps": [ @@ -33191,14 +35190,15 @@ }, "guide-key-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/guide-key-tip.git", - "sha256": "d2772007877e1985f1d2440cb0389fb7ca5ce464270c8dcc74a5e3d5b427d7e8", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "guide-key-tip", + "sha256": "1s6p4ysdbqx5fk68s317ckj5rjmpkwwb0324sbqqa6byhw3j0xyj", "rev": "d1773156b62566e1245f39936abd151844bd471c" }, "recipe": { "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140406.2020", "deps": [ @@ -33214,21 +35214,22 @@ }, "recipe": { "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150828.914", "deps": [] }, "ac-racer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-racer.git", - "sha256": "8d70ad5e88997bc6204eceda076111598f40f380eecf7b9fa26b3dd7508a17fb", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-racer", + "sha256": "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl", "rev": "2708b0a49afc89fb99a6d74a016cff6b94138ed0" }, "recipe": { "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150831.341", "deps": [ @@ -33239,56 +35240,60 @@ }, "iregister": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atykhonov/iregister.el.git", - "sha256": "65a1fb8e59301217d37e1981c0aada3152af0b18899c4b5fb7a38336160806b2", + "tag": "fetchFromGitHub", + "owner": "atykhonov", + "repo": "iregister.el", + "sha256": "1ch610b3d0x3nxglp749305syliivamc108rgv9if4ihb67gp8b5", "rev": "6a48c66187289de5f300492be11c83e98410c018" }, "recipe": { "sha256": "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150515.1607", "deps": [] }, "nemerle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rsdn/nemerle.git", - "sha256": "2670724d9b2dfd16b1450790660b2a3123aaf49d880240457cfae03e3e45b7dd", - "rev": "57c4b84b40cd7b2aa186baae78e79f0a4f521d97" + "tag": "fetchFromGitHub", + "owner": "rsdn", + "repo": "nemerle", + "sha256": "0sybgk7pbqx6l3q1jk5x562m3rn3lg5i21qw8h522hfp7pk6i7p5", + "rev": "d57f26b57601a8092f0a9c95470931fbdeb0afa5" }, "recipe": { "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130328.946", "deps": [] }, "tango-plus-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tmalsburg/tango-plus-theme.git", - "sha256": "4e6e1feb1e7018ba011bf3b9a801978e992485f341657e4274e2a6e5bd0fd6bd", + "tag": "fetchFromGitHub", + "owner": "tmalsburg", + "repo": "tango-plus-theme", + "sha256": "1gfn1yyyb9p2fi17wra1yf2j96cfjw0sifgk3c0vl63h3vmiyvjf", "rev": "99c3484eeb4e6f7f62a6dacfd665a4d46f4cbdaf" }, "recipe": { "sha256": "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140425.1711", "deps": [] }, "debpaste": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/debpaste.el.git", - "sha256": "cc2775b327347e1fee64ff7211c747a3dc042dd8e03032eb6441e6d7d3a07946", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "debpaste.el", + "sha256": "1wzjdyadm8x63r874x8qi4p9ni1wdq28v3m9hca9jizkfqv9xxzz", "rev": "c296c063e5a75da1ebeea84ee35c6988651de416" }, "recipe": { "sha256": "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140618.58", "deps": [ @@ -33297,42 +35302,45 @@ }, "kerl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/correl/kerl.el.git", - "sha256": "697a536809445368c0af71aab808544326258a54db145283c5e46496edd17fce", + "tag": "fetchFromGitHub", + "owner": "correl", + "repo": "kerl.el", + "sha256": "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9", "rev": "1732ee26213f021bf040919c45ad276aafcaae14" }, "recipe": { "sha256": "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150424.1505", "deps": [] }, "haskell-emacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knupfer/haskell-emacs.git", - "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" }, "recipe": { "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151004.1230", "deps": [] }, "terraform-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-terraform-mode.git", - "sha256": "78a9871673a5852644bceccc58e025812aab890211da389a744ed09a1771f79f", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-terraform-mode", + "sha256": "00yvgpw16i6kncxrs4vvky131c8gwmvf43vjkhblai2cag6s6bfq", "rev": "06b06b415f05f73d1d8bb1a8ba236e8ffe45793b" }, "recipe": { "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.945", "deps": [ @@ -33342,28 +35350,30 @@ }, "octopress": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aaronbieber/octopress.el.git", - "sha256": "1e28c0ea69621d6d70093add1b20fe59dadafa5f2f87210359d857d7978a89b9", + "tag": "fetchFromGitHub", + "owner": "aaronbieber", + "repo": "octopress.el", + "sha256": "1fc9iabxfmyqb41j31rgbzxdmnjrzqh1pp9s15q6s7b2d7mc0a0y", "rev": "2e068887b17b72a69e29349d477333d067867eec" }, "recipe": { "sha256": "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151006.514", "deps": [] }, "helm-dired-recent-dirs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/akisute3/helm-dired-recent-dirs.git", - "sha256": "20848dec32498e5530f1b3ac993b7dce2d78dd1215235953dccda3e772735193", + "tag": "fetchFromGitHub", + "owner": "akisute3", + "repo": "helm-dired-recent-dirs", + "sha256": "14sifdrfg8ydvi9mj8qm2bfphbffglxrkb5ky4q5b3j96bn8v110", "rev": "3bcd125b44f5a707588ae3868777d91192351523" }, "recipe": { "sha256": "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131228.814", "deps": [ @@ -33379,49 +35389,52 @@ }, "recipe": { "sha256": "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140913.1458", "deps": [] }, "elpa-audit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/elpa-audit.git", - "sha256": "3c02d197e84b70c5f5924db65d935d08eccc161476b6b49c6fb5f18e64e2b4b6", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "elpa-audit", + "sha256": "1dadf24x6v1vk57bp6w0g2dysigy5cqjzwldc8dn129f4pfrhipy", "rev": "1ca4e6073f8c4cbb41688b69d3b3feaa1a392efc" }, "recipe": { "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141023.831", "deps": [] }, "sublimity": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/sublimity.git", - "sha256": "ec1a17d32b64c14ce46dc20ea4cd8f056da6604eac10834b2970d6002554e875", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "sublimity", + "sha256": "0xg8ahjh1mkh555q645c9rhacv85iz6s83n2dpj4rhb45g9if6pc", "rev": "45fabc1a63625bd0181f2bd4f39f154df5110338" }, "recipe": { "sha256": "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150918.1417", "deps": [] }, "helm-w3m": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-w3m.git", - "sha256": "3fc602c483e64148f2e64130b28b350d05796004fe6e2370536e7eb222ae8734", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-w3m", + "sha256": "0d47mqib4zkfadq26vpy0ih7j18d6n5v4c21wvr4hhg6hg205iiz", "rev": "280673470672c9fbc57fd6a91defeb9f6641fc8a" }, "recipe": { "sha256": "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150722.1024", "deps": [ @@ -33433,14 +35446,15 @@ }, "ietf-docs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/choppsv1/ietf-docs.git", - "sha256": "47b7fd4501a9853ff1a7cf9ca1a84f21568eccc01900783d2b54aecb95df24f7", + "tag": "fetchFromGitHub", + "owner": "choppsv1", + "repo": "ietf-docs", + "sha256": "0b86x675g95yrlc0alffx0z9fmficlwv3gpy5cy86z1xvvyh3nzw", "rev": "ede30d6d26044069e1731fd20c0ab2324552c0b4" }, "recipe": { "sha256": "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150928.457", "deps": [] @@ -33453,35 +35467,37 @@ }, "recipe": { "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131210.2131", "deps": [] }, "inline-crypt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sodel-the-Vociferous/inline-crypt-el.git", - "sha256": "e6bbefa731000bdf9779889ce712d6394031e75afd95462a52621042906e374a", + "tag": "fetchFromGitHub", + "owner": "Sodel-the-Vociferous", + "repo": "inline-crypt-el", + "sha256": "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6", "rev": "497ce9dc29a8ccac0b6dd6854f5d120514350282" }, "recipe": { "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130409.707", "deps": [] }, "fsharp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rneatherway/emacs-fsharp-mode-bin.git", - "sha256": "309fbe02556433c469d88b4204b369d97c774e275fdc62e20f068f63ca69d788", + "tag": "fetchFromGitHub", + "owner": "rneatherway", + "repo": "emacs-fsharp-mode-bin", + "sha256": "126pd75673q61zi65p2z4x77fz6rd6rh8hlbv1lw8cv4al1bx7rh", "rev": "6c6111980b2bfa0664bf4032039d6dca3d00b4f4" }, "recipe": { "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.936", "deps": [ @@ -33501,7 +35517,7 @@ }, "recipe": { "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121020.151", "deps": [ @@ -33510,14 +35526,15 @@ }, "auto-complete-pcmp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/auto-complete-pcmp.git", - "sha256": "46c81ffdb423e2f7110a631ca3730bc3d85775ea4ef897a1722a79384072c2c1", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "auto-complete-pcmp", + "sha256": "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26", "rev": "2595d3dab1ef3549271ca922f212928e9d830eec" }, "recipe": { "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140227.51", "deps": [ @@ -33528,28 +35545,30 @@ }, "regex-tool": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/regex-tool.git", - "sha256": "7424939a09f4338ac4eb9a90cb868022d0ec0012bcbfde17627b3268821421f3", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "regex-tool", + "sha256": "1wr12j16hckvc8bxxgxw280frl12h23cp44sxg28lczl16d9693l", "rev": "62b292d93f29e4c4767b0800d53c656b9f626892" }, "recipe": { "sha256": "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131104.1634", "deps": [] }, "macrostep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joddie/macrostep.git", - "sha256": "29828872878cc8812c5f84f890be881cc49a7aee1cd73d41ee3e071f90f45aca", + "tag": "fetchFromGitHub", + "owner": "joddie", + "repo": "macrostep", + "sha256": "0j95lv4b01p8a5fpxnj5qs2ajg1yxnsg97vw3184dfy9r5hy7ryb", "rev": "a3338d351e18bfbacd970d371735f840e7d5fe38" }, "recipe": { "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.345", "deps": [ @@ -33558,28 +35577,30 @@ }, "keydef": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/keydef.git", - "sha256": "7b43cf0aaa3d43dd4dafd2a51528a5588cb9d1dfe671a13f438bf45857286c36", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "keydef", + "sha256": "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv", "rev": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0" }, "recipe": { "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20090428.1431", "deps": [] }, "flymake-coffee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-coffee.git", - "sha256": "afb781c703f30ebbe1216bd222ecc3b78c0e4c696d8aab5967756680d50bd3e3", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-coffee", + "sha256": "10i0rbvk6vyifgbgskdyspmw9q64x99fzi8i1h8bgv58xhfx6pm7", "rev": "325ab379592fdf9017d7c19625c7a978f6f3af3b" }, "recipe": { "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140809.524", "deps": [ @@ -33588,14 +35609,15 @@ }, "magit-svn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-svn.git", - "sha256": "daba06765907b213c286c2563ae840e8b3c057331d7406a6b4c2aa2e8e8ef43f", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-svn", + "sha256": "0gzlis72xan2njk0cx0x6dbw1cz883l3lmn2hv117ch7b5v0dfns", "rev": "04ade0b554a7c3e326860989ccc0da03ea6f9bcf" }, "recipe": { "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.257", "deps": [ @@ -33605,14 +35627,15 @@ }, "scion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nominolo/scion.git", - "sha256": "b9366874463b0236c000ce442318ddccdbf586484869a244c7b894b3f23cc52e", + "tag": "fetchFromGitHub", + "owner": "nominolo", + "repo": "scion", + "sha256": "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4", "rev": "99b4589175665687181a932cd836850205625f71" }, "recipe": { "sha256": "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130315.755", "deps": [] @@ -33625,21 +35648,22 @@ }, "recipe": { "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1620", "deps": [] }, "company-arduino": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/company-arduino.git", - "sha256": "dd6de2ec33694733b30ddd5297fed6fe3c770239e190edbcc4ab5ac72b59fd18", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "company-arduino", + "sha256": "067xb4mwfnmbqjyfv4717417fg7ysvz9flnx1nrk6iv96gnf4vfx", "rev": "fd31103ab73acd6c77e4361db86e472619903f80" }, "recipe": { "sha256": "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150614.326", "deps": [ @@ -33654,14 +35678,15 @@ }, "diffview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mgalgs/diffview-mode.git", - "sha256": "ae33123df7ab7fe60aa9690fde399e63fc5078eb76adbedb5bf360d20f423c36", + "tag": "fetchFromGitHub", + "owner": "mgalgs", + "repo": "diffview-mode", + "sha256": "0diw887x4q7kbgdvxbbnxdw51z33kqwxw3v9m45fczxbywyi4cxf", "rev": "031b70913e755c5e55222680f80185032a7d1728" }, "recipe": { "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150929.11", "deps": [] @@ -33674,35 +35699,37 @@ }, "recipe": { "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.731", "deps": [] }, "scf-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/scf-mode.git", - "sha256": "6885487ca009259dfa43dcd822e70bc383d0ba0802d481ced7756ac1ae55f054", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "scf-mode", + "sha256": "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8", "rev": "dbfcdcd89034f208d65e181af58e0d73ad09f8b2" }, "recipe": { "sha256": "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.2048", "deps": [] }, "go-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dougm/go-projectile.git", - "sha256": "e279f6bc57a0d023a8809a3cdc44c809dc58c0587768822503c60bd38246df71", + "tag": "fetchFromGitHub", + "owner": "dougm", + "repo": "go-projectile", + "sha256": "16n8655i7qidakxijymx1n84pnkn3hxpj7lsr901j03blxdrij5y", "rev": "0a974097ef74b6045585c6120309c208b002f6e6" }, "recipe": { "sha256": "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1058", "deps": [ @@ -33714,14 +35741,15 @@ }, "align-cljlet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gstamp/align-cljlet.git", - "sha256": "572b4fb3fc9aa49984bf08aff72fdb47da6e04cd74fd8cdb7c078520250e7187", + "tag": "fetchFromGitHub", + "owner": "gstamp", + "repo": "align-cljlet", + "sha256": "11vi1qjj1187gkdqrzblrl26xnj7vcpzgbq8py29k94szjrlyasp", "rev": "eb8d18058838167a13e3272ac9fd597d7c183b35" }, "recipe": { "sha256": "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.154", "deps": [ @@ -33730,14 +35758,15 @@ }, "framesize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-framesize.git", - "sha256": "b3915afb41d4f8af203c152433d272f0dc7e8e1290c9b03d53ed702b0def0986", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-framesize", + "sha256": "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk", "rev": "f2dbf5d2513b2bc45f2085370a55c1754b6025da" }, "recipe": { "sha256": "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131017.1632", "deps": [ @@ -33746,14 +35775,15 @@ }, "helm-cscope": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alpha22jp/helm-cscope.el.git", - "sha256": "1d245016c28d75f0265727aa3f359c989ede8919bb787f57d4171fc76047115a", + "tag": "fetchFromGitHub", + "owner": "alpha22jp", + "repo": "helm-cscope.el", + "sha256": "0nhi8xhcf7qpsibpyy5v364xx7lqkhskzai7awkg0xcdq8b5090x", "rev": "ddc3f750a92044d6712585e29d3dbaface2e34db" }, "recipe": { "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150609.849", "deps": [ @@ -33765,42 +35795,45 @@ }, "cil-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ForNeVeR/cil-mode.git", - "sha256": "a1119e63ab9ebe52b74ebc8e19e070626fc5c9ada1b95464781a674308501ef0", + "tag": "fetchFromGitHub", + "owner": "ForNeVeR", + "repo": "cil-mode", + "sha256": "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1", "rev": "fcd2e407aeefab9ae465b072eea33dc115506fff" }, "recipe": { "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.450", "deps": [] }, "dylan-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dylan-lang/dylan-mode.git", - "sha256": "90178b5c4796e8e9aa17840b6903119143f080e3eaa064c84d332b500746ddaf", + "tag": "fetchFromGitHub", + "owner": "dylan-lang", + "repo": "dylan-mode", + "sha256": "011423kvbfcd7jifg9425j89hlzmnw4j751s4mdz9wyr979k19ny", "rev": "2a5b8a65a3e3e9543e935dceea1a121e69e78c8e" }, "recipe": { "sha256": "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140611.37", "deps": [] }, "babel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juergenhoetzel/babel.git", - "sha256": "d8846bf882a27727e7c8a46976cf17c0b4e5e44e6bb7932745495e03de882f01", + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "babel", + "sha256": "140lbpqq4qz45ykycdn8nvcn8pv0xqfwpapgprvyg8z5fjkyc4sg", "rev": "9bc1c3cf6de50b0e34fa1a7640eb68c650e72fd6" }, "recipe": { "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131231.925", "deps": [] @@ -33813,35 +35846,37 @@ }, "recipe": { "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.1240", "deps": [] }, "todotxt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rpdillon/todotxt.el.git", - "sha256": "54bd83090c4888458e8dba884db2e32b2a0e2bc8c8d85b59bdaba627afaa4457", + "tag": "fetchFromGitHub", + "owner": "rpdillon", + "repo": "todotxt.el", + "sha256": "0ms4mapjg9mbpmcmpn68r0mhwaibwfr4v25sin74b2281h4q7gal", "rev": "fc83f954aea75065aa9788ee07027c94e76a9364" }, "recipe": { "sha256": "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150513.2129", "deps": [] }, "helm-firefox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-firefox.git", - "sha256": "c40b2b06571e657a0b81f215102dc0f35ed0aeaede97ea894350867687096c5f", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-firefox", + "sha256": "0pvc163pd1jh8f4ym5yymspd0ppkq0ni05gjh45plr8yaw32n2y4", "rev": "73d2dc49f4f3efa3f68881cf7cb5da27419d13a9" }, "recipe": { "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150720.1318", "deps": [ @@ -33859,35 +35894,37 @@ }, "recipe": { "sha256": "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.2028", "deps": [] }, "engine-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hrs/engine-mode.git", - "sha256": "93b4c36aa192ad911c3ac04aeed2597817e71d9a4ca1e39de834d5e45bf827cc", + "tag": "fetchFromGitHub", + "owner": "hrs", + "repo": "engine-mode", + "sha256": "1k17z1dy9m9lx2fy78ack8fyf5vqb79fwjn078f93bcjl5mc7d4k", "rev": "98020c5c8fcc3c675999fc6215af6a6259c5c017" }, "recipe": { "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150902.1235", "deps": [] }, "company-c-headers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/randomphrase/company-c-headers.git", - "sha256": "5a661af7448f5e67a2571a746e3025b8b997711856cda7502d649a32e74c55e9", + "tag": "fetchFromGitHub", + "owner": "randomphrase", + "repo": "company-c-headers", + "sha256": "16cva7ccc0hrc6yf659kpsznlk1bkgv525lqr4nj8a12q0avjdxf", "rev": "0b8c63cdc7864c3e3939c4b8cda314d05ae0a352" }, "recipe": { "sha256": "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150801.1101", "deps": [ @@ -33897,28 +35934,30 @@ }, "textmate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/defunkt/textmate.el.git", - "sha256": "5f4b8084d501ce9dfbd7bb356d56465c00fb857532fdc4f36b713f8f73476ec3", + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "textmate.el", + "sha256": "1b7xxz1i84azmbz8rqpxdn18avmnqlj87hfrpbngbf6pj5h9jqjh", "rev": "350918b070148f0ace6d9d3cd4ebcaf15c1a8781" }, "recipe": { "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110816.1646", "deps": [] }, "flycheck-clojure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/squiggly-clojure.git", - "sha256": "dfb00ae36fb4091db04d4a6e90ebc5b89d9910d51c3cdfad6c72e7af71059e08", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "squiggly-clojure", + "sha256": "0zldhxlbp6m2gnqbb3dgmj32hnx1lh7wvjcpw1s4gz980ncgc8k8", "rev": "308044d58c4e16567ae818cc1d1e90f29947ada3" }, "recipe": { "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150831.831", "deps": [ @@ -33930,14 +35969,15 @@ }, "sotclojure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/speed-of-thought-clojure.git", - "sha256": "ecb1f94ac96bbef1f0189da55108d830cad7367ca6b9ae44137c0fa7e9bea2b2", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "speed-of-thought-clojure", + "sha256": "19zh8gijrvggwqaxxd9w2dbxvysjdyz8zvvnvbdys2xz6xwyq2ik", "rev": "8396cdb4c479ef0c12d3786bc8356746e7ffb354" }, "recipe": { "sha256": "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.1856", "deps": [ @@ -33955,77 +35995,82 @@ }, "recipe": { "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150710.2153", "deps": [] }, "el-autoyas": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/el-autoyas.el.git", - "sha256": "9640fb6be024cc1d1dbf4cd8f739288fe3bfa88b84a1d2723d958d94fe177735", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "el-autoyas.el", + "sha256": "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n", "rev": "bde0251ecb504f585dfa27c205c8e312655310cc" }, "recipe": { "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120918.817", "deps": [] }, "px": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aaptel/preview-latex.git", - "sha256": "c352bf8aa5bc257b88a36057d0ae07e87b8b85eba74f0c8804eaecfb7a8de481", + "tag": "fetchFromGitHub", + "owner": "aaptel", + "repo": "preview-latex", + "sha256": "10g4imxgpv7a0j40qkx7xf2qnyz80ypd0mv0lf47n9dwln5byln3", "rev": "c698a650997a1d5b06b92acc8f30d620342e1f37" }, "recipe": { "sha256": "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141006.748", "deps": [] }, "osx-pseudo-daemon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/osx-pseudo-daemon.git", - "sha256": "e0e01db9b041c9f4e4cc8d26537684a1bf39810a10757082a47888a4137669cc", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "osx-pseudo-daemon", + "sha256": "1j601gzizxjsvkw6bvih4a49iq05yfkw0ni77xbc5klc7x7s80hk", "rev": "0b9f330a66b4e8d2ff9bcd57e09b8d304dfb5841" }, "recipe": { "sha256": "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131026.1930", "deps": [] }, "system-specific-settings": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/emacs-system-specific-settings.git", - "sha256": "2ffc62b6e1232bf3189693186ffc8be4943d1e116f9660bd0d05cc15642893d6", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "emacs-system-specific-settings", + "sha256": "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7", "rev": "0050d85b2175095aa5ecf580a2fe43c069b0eef3" }, "recipe": { "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140818.957", "deps": [] }, "haskell-emacs-base": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knupfer/haskell-emacs.git", - "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" }, "recipe": { "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150714.1059", "deps": [ @@ -34034,28 +36079,30 @@ }, "leerzeichen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgeller/leerzeichen.el.git", - "sha256": "7637866b4efd0378e88ffe931ec87d92ea59dabf92298f57319e87d72ba7397b", + "tag": "fetchFromGitHub", + "owner": "fgeller", + "repo": "leerzeichen.el", + "sha256": "0yrrlwmxg1wy65bqyacjpzd5ksljgp41x4zyizl7h0zx9rmqcdvn", "rev": "e67e59a0e15bc4a41006fdd9822c4b3e6d7da626" }, "recipe": { "sha256": "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151106.28", "deps": [] }, "rcirc-groups": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/rcirc-groups.git", - "sha256": "6498eafb8560e57a860437828158040a1f19890aefaca3bf6002f90846c7092c", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "rcirc-groups", + "sha256": "0b09qx30iy82c2zs7b7g1a4ij7qa0ic830ip0j37mrb0hpxym634", "rev": "af15e550339c1b8b2971eb2958e0029c353abfb2" }, "recipe": { "sha256": "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.1113", "deps": [] @@ -34068,21 +36115,22 @@ }, "recipe": { "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20080412.955", "deps": [] }, "clues-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jasonm23/emacs-clues-theme.git", - "sha256": "591dbf7fcb044674b12e64e24bac823a7a72bb0ea150a119a5e95126cc1ad43a", + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-clues-theme", + "sha256": "0fnl3b62clg9llcs2l511sxp4yishan4pqk45sqp8ih4rdzvy7ar", "rev": "69d873c90fbf24590c765309b7fb55cd14bb6bda" }, "recipe": { "sha256": "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140922.2256", "deps": [ @@ -34091,28 +36139,30 @@ }, "ert-async": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ert-async.el.git", - "sha256": "89290775f84a76ef9802584e9ee104e0afd5ed2092db9d6068123a5b0089c942", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ert-async.el", + "sha256": "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9", "rev": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526" }, "recipe": { "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151011.859", "deps": [] }, "http": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/http.el.git", - "sha256": "6c21f9ddd09225eb4ffdc2e1f5eb3d44e0b76b435e9af8daa3f3f4989174d4b3", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "http.el", + "sha256": "0k9ksbpcdx5asjcvnivm8hpkm55qjz348gb8ihx5q5448h89ksrz", "rev": "3984230ea8b413bc634fb72d097c7f3b8c92b988" }, "recipe": { "sha256": "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150716.959", "deps": [ @@ -34123,28 +36173,30 @@ }, "textmate-to-yas": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/textmate-to-yas.el.git", - "sha256": "09fde68627dab32b179dee96309479add568a6a3e3b6a3ab9fde4209ae83b0c5", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "textmate-to-yas.el", + "sha256": "1idhhfp0jhnykyms7dp3lfk6imddg6a315pfklbjpcys4y3fdz89", "rev": "74cbf0877ab6391f920d2d7a588e363423d61227" }, "recipe": { "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.746", "deps": [] }, "password-vault": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PuercoPop/password-vault.git", - "sha256": "13cb87a3852e4a4d2aea6466e7460008ba1de9e15d5e0d0c10f1e9eee8bf0425", + "tag": "fetchFromGitHub", + "owner": "PuercoPop", + "repo": "password-vault", + "sha256": "0984pzlfxsgi2060spjxw7livfh8013ffrk4x8m4sjifhniqgjqk", "rev": "e47d99bb092e150472f1989ab3ac5a4752863515" }, "recipe": { "sha256": "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.2141", "deps": [ @@ -34154,14 +36206,15 @@ }, "mustache": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/mustache.el.git", - "sha256": "b3f952149d862839c727d60bb3ffad2e9844d7caec7151c453cd9195e55d3665", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "mustache.el", + "sha256": "1n2ymd92qpvsby6ms0l3kjhdzzc47rri2aiscc6bs07hm4mjpr9q", "rev": "b0ea352813592424164520a49e86c04600242752" }, "recipe": { "sha256": "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.1607", "deps": [ @@ -34172,14 +36225,15 @@ }, "dracula-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenorocha/dracula-theme.git", - "sha256": "7b30a4c99e4d2d6d11bcf4d1ce1d9678b3ff51ca5872c8bf10c2a5888bf4f0f4", + "tag": "fetchFromGitHub", + "owner": "zenorocha", + "repo": "dracula-theme", + "sha256": "1x7hyj5qi9f222zwhwjqr98zzcvqjqfwxlglph8nsbadkv4s8c3v", "rev": "ee065fed126eecdfe33a1a578d9f1e20687d2f3a" }, "recipe": { "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.1045", "deps": [ @@ -34188,28 +36242,30 @@ }, "sibilant-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jbr/sibilant-mode.git", - "sha256": "50d7c2c154ef3853e9296c3e44657ec1f29d87f701465b8b404c7e4bb9bbea98", + "tag": "fetchFromGitHub", + "owner": "jbr", + "repo": "sibilant-mode", + "sha256": "0cjqh6qbbmgxd6zgqnikw6bh8wpjydydkkqs5wcmblpi5awqmnb6", "rev": "bc1b5d8cd597918bafc9b2880ee49024740e54ab" }, "recipe": { "sha256": "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1545", "deps": [] }, "elixir-yasnippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hisea/elixir-yasnippets.git", - "sha256": "0d1a4941cca786503235aa01a50d2fee1797833a648cdb6e6f3c8528ce20b8e9", + "tag": "fetchFromGitHub", + "owner": "hisea", + "repo": "elixir-yasnippets", + "sha256": "1sdq4372i19wdxpdp3347a1rf5zf5w6sa0da6lr511m7ri0lj6hd", "rev": "980ca7626c14ef0573bec0035ec7942796062783" }, "recipe": { "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150417.739", "deps": [ @@ -34224,21 +36280,22 @@ }, "recipe": { "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150602.1427", "deps": [] }, "drupal-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arnested/drupal-mode.git", - "sha256": "8040a65a84757b8f862263d351935cef84e15c35ae3ded8c66788361ac8ed951", + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "drupal-mode", + "sha256": "0am3n25qcfjkqfp4wjj1d2zigrmi8hg7p5sy2h91zg3blypqmpsr", "rev": "b4a66092bddc471884b2746d69fd7e8853b4b79f" }, "recipe": { "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150830.1427", "deps": [ @@ -34247,14 +36304,15 @@ }, "livid-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pandeiro/livid-mode.git", - "sha256": "d7f43c2e637a9d57f412e8cedbc2518c3d596ca7977664974a352934ef6f149d", + "tag": "fetchFromGitHub", + "owner": "pandeiro", + "repo": "livid-mode", + "sha256": "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p", "rev": "dfe5212fa64738bc4138bfebf349fbc8bc237c26" }, "recipe": { "sha256": "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131116.744", "deps": [ @@ -34264,14 +36322,15 @@ }, "company-flx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PythonNut/company-flx.git", - "sha256": "dd6d9acc81050a79010ed70f42e5849214b4670a77c61aa058d72e0b79194b1f", + "tag": "fetchFromGitHub", + "owner": "PythonNut", + "repo": "company-flx", + "sha256": "0qvscm1r7c1apj8cj8qvrqfiki7xfaxg4hpw2kynbg7v7lynj94j", "rev": "da73fc0d306fdb7335a801353b9798d1e1cfc1c1" }, "recipe": { "sha256": "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151020.1301", "deps": [ @@ -34282,30 +36341,32 @@ }, "org-pandoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/robtillotson/org-pandoc.git", - "sha256": "3e09172f6aaf2e8651bad2c8c2dfeffa20227619bede404eaebdc095389c5584", + "tag": "fetchFromGitHub", + "owner": "robtillotson", + "repo": "org-pandoc", + "sha256": "022qqas919aziq4scs5j1wdbvd0qyw8kkirn2vzfb5k2fjl8z7iq", "rev": "84b5df1f5516704540e19e048e18f437dc090a7d" }, "recipe": { "sha256": "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130729.2050", "deps": [] }, "company-jedi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-company-jedi.git", - "sha256": "919b6adf148800782f89d8e14e22aad116323b9a0bc39d81258a5ed799fcfb2a", - "rev": "5aaf08f6ed32b1d749c6f1aeb424227256fd7f51" + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-company-jedi", + "sha256": "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1", + "rev": "ad49407451c7f28fe137f9c8f3a7fc89e8693a1b" }, "recipe": { "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151021.1641", + "version": "20151216.2121", "deps": [ "cl-lib", "company", @@ -34322,21 +36383,22 @@ }, "recipe": { "sha256": "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1050", "deps": [] }, "termbright-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmastenbrook/termbright-theme-el.git", - "sha256": "e4acb7b0ffd4e4bbee976e41a4f044e32d84ae4fc9634cddbd1b0b6cbafe5426", + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "termbright-theme-el", + "sha256": "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d", "rev": "bec6ab14336c0611e85f45486276004f16d20607" }, "recipe": { "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.2135", "deps": [ @@ -34345,42 +36407,45 @@ }, "jape-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tanzoniteblack/jape-mode.git", - "sha256": "4d1ce0799ac7e614a261de0adeed0603d7079c42eb9f104b77ad7ce613075abf", + "tag": "fetchFromGitHub", + "owner": "tanzoniteblack", + "repo": "jape-mode", + "sha256": "0xmv7gw5xms6nhjcl51cw33yvjgw0c6bpnlyca3195x7g34sg1zj", "rev": "85b9182850707b5d107391f6caee5bd401507a7d" }, "recipe": { "sha256": "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140903.1006", "deps": [] }, "list-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/list-utils.git", - "sha256": "45192672fbfd9b6c54a81e18e3187e2c2866cd1914ad64cbf36ba2b747024439", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "list-utils", + "sha256": "0b6pnkhm5hnim2lpari93la08ic8qyh4nv0d7mw0cyfyk8phzzvn", "rev": "36ade42f7cac835d1b8e3dcaf6beeba55ce89832" }, "recipe": { "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] }, "helm-ack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-ack.git", - "sha256": "0548d12d2f09d331ee7cc788f7fde023ec5e04cd1e5edad94d19ae4f4c759192", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-ack", + "sha256": "04rvbafa77blps7x7cmlsciys8fgmvhfhq4v51pk8z5q3j1lrgc5", "rev": "889bc225318d14c6e3be80e73b1d9d6fb30e48c3" }, "recipe": { "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141030.726", "deps": [ @@ -34390,14 +36455,15 @@ }, "fasd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/emacs-fasd.git", - "sha256": "e5a3c3a919967d0f0ab9033473f142ace97196242a39c33d54479bd0f2b05854", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "emacs-fasd", + "sha256": "0m2qn3rd16s7ahyw6f9a4jb73sdc8bqp6d03p450yzcn36lw78z5", "rev": "8726a367048054add81ecea7543de00688056735" }, "recipe": { "sha256": "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.116", "deps": [ @@ -34406,14 +36472,15 @@ }, "packed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/packed.git", - "sha256": "ab8d3c5083ea7ad023df60592a79773b08c253c361e3e5d21cae97171ad3831c", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "packed", + "sha256": "0743scd1g5xf3k9fbqv1qd9w421vfxwjlnb0vwix0ypahd83r3db", "rev": "9d77e39c9df29c6224302cb7973b2de7e05f8bd7" }, "recipe": { "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150723.638", "deps": [ @@ -34423,14 +36490,15 @@ }, "guide-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kai2nenobu/guide-key.git", - "sha256": "6084978f3067e86f41bc1cce6fbb134be3e1a6a5ed0fd868762e100e0019c6ad", + "tag": "fetchFromGitHub", + "owner": "kai2nenobu", + "repo": "guide-key", + "sha256": "14sx5m6fpkm2q8ljkicl1yy1sw003k4rzz9hi7lm1nfqr2l4n6q0", "rev": "9236d287a7272e307fb941237390a96037c8c0a2" }, "recipe": { "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150108.35", "deps": [ @@ -34441,14 +36509,15 @@ }, "jabber-otr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/legoscia/emacs-jabber-otr.git", - "sha256": "e89d6593fc5b75ea6c641cd4738ed00c9fe8048c3d8c76a611aecb8fbcc290f7", + "tag": "fetchFromGitHub", + "owner": "legoscia", + "repo": "emacs-jabber-otr", + "sha256": "0yv86nadp6dfzl05vhk8c1kahg2pcrhfmd3mnfjrngp7ksac5lyf", "rev": "2692b1530234e0ba9a0d6c1eaa1cbe8679f193c0" }, "recipe": { "sha256": "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150918.644", "deps": [ @@ -34458,14 +36527,15 @@ }, "pip-requirements": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/pip-requirements.el.git", - "sha256": "94def724a3c7064c2d85515c25bde09e0373439fa782aba0d9632af9a1f0d51e", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "pip-requirements.el", + "sha256": "05ix3xwqhnxjvc6cr006hhcgzhrp88jz9x4iswb0sidwysidpgnx", "rev": "f8d3ecaee9090cee267476d4551c905c412d6017" }, "recipe": { "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150423.1558", "deps": [ @@ -34474,14 +36544,15 @@ }, "flx-isearch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PythonNut/flx-isearch.git", - "sha256": "a06592cd6abb9c030d2d16da1db73d5fde7103567702ac44c0e2accb04bd24f4", + "tag": "fetchFromGitHub", + "owner": "PythonNut", + "repo": "flx-isearch", + "sha256": "0ajc3vvgswqk57z7nmcx7npryi8ph9kzvw588bvqcg37a8l3nzh0", "rev": "1c44a76bb6f9af925db6cee4102c635ef8d76318" }, "recipe": { "sha256": "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.2259", "deps": [ @@ -34492,28 +36563,30 @@ }, "runner": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thamer/runner.git", - "sha256": "095fcab6fd5e78ef847e7a93c3c3d1d2033326642fa0ed4bc0222a1178c9bf9d", + "tag": "fetchFromGitHub", + "owner": "thamer", + "repo": "runner", + "sha256": "17dzr5w12ai2q15yv81gchk360yjs71w74vsgs2fyy2yznvclpq9", "rev": "f5983931899282cf8b10ad197d61860a61cf070d" }, "recipe": { "sha256": "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.416", "deps": [] }, "cliphist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/cliphist.git", - "sha256": "634ff318460a740fb524aa96349778d9a1b6c47469b20e504adff7fa8b58d1e6", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "cliphist", + "sha256": "11c0zpk8gg70d4xiiyjc7v13knwb2ihbrxnlaxzh3rdg2c12676q", "rev": "c0db2da95fa3d3a58160f465c636989bb4b251d5" }, "recipe": { "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151012.729", "deps": [ @@ -34522,14 +36595,15 @@ }, "chinese-fonts-setup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tumashu/chinese-fonts-setup.git", - "sha256": "b37f7a04811777f19d048a571a69794a6fef25e204cef73c9d1833561669022e", + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "chinese-fonts-setup", + "sha256": "08ln66kx73019klzw0rsvlz3cs4ch8wxjfljmkyswjjd179h882c", "rev": "bac9c65f7a78b0c70a6cce9658395d3bc24b02fa" }, "recipe": { "sha256": "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.259", "deps": [ @@ -34538,28 +36612,30 @@ }, "mark-multiple": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/mark-multiple.el.git", - "sha256": "6ea686792a8b34e7638bce6e376a2f9c67578550944a30db4107cb07f075adbe", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "mark-multiple.el", + "sha256": "1x3anvy3hlmydxyfzr1rhaiy502yi1yz3v54sg8wc1w7jrvwaj29", "rev": "f6a53c7c5283d640ae718f4548b0fda78877a375" }, "recipe": { "sha256": "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121118.954", "deps": [] }, "zossima": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/zossima.git", - "sha256": "6944685180d61180f934c1f5977883250be7fa3c7da1d8cf02dbfd910feffc39", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "zossima", + "sha256": "0fgwxw7r3zfv0b7xi8bx7kxff2r5hdw9gxf16kwq04fnh18nhi39", "rev": "991676635c374d2a12714dcf48c1ce2d6f97a375" }, "recipe": { "sha256": "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121123.1835", "deps": [ @@ -34568,14 +36644,15 @@ }, "haskell-emacs-text": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knupfer/haskell-emacs.git", - "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" }, "recipe": { "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150713.916", "deps": [ @@ -34584,14 +36661,15 @@ }, "flycheck-rust": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-rust.git", - "sha256": "084cb755b7121327a667134adbe0728562690bb6cf7b5621dbcc86b53c24b598", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-rust", + "sha256": "080xvb83mcg5snk3avlhppr13srd2lba73298ygy18ziizpv0zig", "rev": "e802d78a509bd8927464d29e1a8ba8ea355f6ea1" }, "recipe": { "sha256": "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.346", "deps": [ @@ -34602,28 +36680,30 @@ }, "ido-sort-mtime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pkkm/ido-sort-mtime.git", - "sha256": "6d8be4014ecb87a2f96fe7e940ec8a56f114f721211b8e1e888418e4bcc86c70", + "tag": "fetchFromGitHub", + "owner": "pkkm", + "repo": "ido-sort-mtime", + "sha256": "0w3cr2yf8644i0g8w6r147vi9wanibn41sg7dzws51yb9q0y92vd", "rev": "7b7c77f6856125a59aff99ba0ff8d2b369896b5e" }, "recipe": { "sha256": "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.730", "deps": [] }, "synosaurus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rootzlevel/synosaurus.git", - "sha256": "5a989222da909804b137ffd3e0d014d68c09692e7b292faf2b2953a6b8cde9ff", + "tag": "fetchFromGitHub", + "owner": "rootzlevel", + "repo": "synosaurus", + "sha256": "1zz9rnwaclr95fpjyabv5rlhk36n2k8f1lzz6yqh964hv8i9562s", "rev": "9be71a2df0c19ddb5e0cb8cba29ded5368a0fcae" }, "recipe": { "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1249", "deps": [ @@ -34632,28 +36712,30 @@ }, "php-boris": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomterl/php-boris.git", - "sha256": "1430f0fef09c288cf6cd9da99bcd0658b6caeb0eb34fc482bee52c0c6af37181", + "tag": "fetchFromGitHub", + "owner": "tomterl", + "repo": "php-boris", + "sha256": "10lzbyr7z95mynz885k75n2ibsy92dh3mg3s5m69n03jnf9gv1jy", "rev": "d2caaba8f42375b47389240c647c03c2a305d3fb" }, "recipe": { "sha256": "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130527.321", "deps": [] }, "flycheck-color-mode-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-color-mode-line.git", - "sha256": "3d8b41cf124b25b20620ea11b3367b8fc77a6d0ed4fe27addb54ad8e936e470f", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-color-mode-line", + "sha256": "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5", "rev": "c85319f8d2579e770c9060bfef11bedc1370d8be" }, "recipe": { "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131125.2338", "deps": [ @@ -34664,14 +36746,15 @@ }, "yaml-tomato": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/RadekMolenda/yaml-tomato.git", - "sha256": "4e00121f5fb706fb25f6762affdc59a166e69e227ba57770f6041117fc26f0b4", + "tag": "fetchFromGitHub", + "owner": "RadekMolenda", + "repo": "yaml-tomato", + "sha256": "1xgqqgg4q3hrhiap8gmr8iifdr1mg4dl0j236b6alhrgmykbhimy", "rev": "f9df1c9bdfcec629b03031b2d2032f9dc533cb14" }, "recipe": { "sha256": "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.153", "deps": [ @@ -34680,14 +36763,15 @@ }, "ph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gromnitsky/ph.git", - "sha256": "6acf0fbdc61d5541617afa9858b70ec2f6ce76e958d54309b424efb864489834", + "tag": "fetchFromGitHub", + "owner": "gromnitsky", + "repo": "ph", + "sha256": "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p", "rev": "ed45c371642e313810b56c45af08fdfbd71a7dfe" }, "recipe": { "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130312.1337", "deps": [ @@ -34696,14 +36780,15 @@ }, "auto-complete-auctex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/monsanto/auto-complete-auctex.git", - "sha256": "223f32ed236d8495abc937ef14915fcec837ad9593304560c0c15f4a0b4631f3", + "tag": "fetchFromGitHub", + "owner": "monsanto", + "repo": "auto-complete-auctex", + "sha256": "1wri8q5llpy1q1h4ac4kjnnkgj6fby8i9vrpr6mrb13d4gnk4gr2", "rev": "855633f668bcc4b9408396742a7cb84e0c4a2f77" }, "recipe": { "sha256": "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140223.1158", "deps": [ @@ -34713,14 +36798,15 @@ }, "py-smart-operator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rmuslimov/py-smart-operator.git", - "sha256": "0f24aae1ad61a5fa845f81460bc2d19f0545651a6ab032aba9644c41b73a0c97", + "tag": "fetchFromGitHub", + "owner": "rmuslimov", + "repo": "py-smart-operator", + "sha256": "05gi17n488r2n6x33nj4a23ci89c9smsbanmap4i302dy0mnmwgd", "rev": "be4e32572d4128143f46e1874eaa6f3da94fdffe" }, "recipe": { "sha256": "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150824.2110", "deps": [ @@ -34729,14 +36815,15 @@ }, "es-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dakrone/es-mode.git", - "sha256": "33491a6f2f6a38c304f0c265e4e3d8bf5b794beba1ac9beb87a40abc459982b1", + "tag": "fetchFromGitHub", + "owner": "dakrone", + "repo": "es-mode", + "sha256": "1cc2k52vq2m4hzmrpb51xd5pjnxzv3iy8rf2y02c6f3a5xpilj9k", "rev": "c5dd41e453e83da2e841894d9a51598f03318f7c" }, "recipe": { "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150916.2233", "deps": [ @@ -34745,14 +36832,15 @@ }, "flymake-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-ruby.git", - "sha256": "c97059feedb295806e47b30bec7527c1bbda4f7dafb276ac2bfd5c7ce1fcebb0", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-ruby", + "sha256": "13yk9cncp3zw6d7zkgdpgprpw6wrirk2gxgjvkr15dwcyx1g3109", "rev": "8dc4ca44ec2acfaab25f5501fca1bd687fae94f2" }, "recipe": { "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121104.1259", "deps": [ @@ -34761,14 +36849,15 @@ }, "projector": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/projector.el.git", - "sha256": "83f29b16d8e64810af54b5a9347ccb04e5744223fddba2338336251bb95f1f79", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "projector.el", + "sha256": "0y8zbywin99nhcrs5nzx4d179r84rdy39admajpi0j76v0b9pwl3", "rev": "fd9553a27d665889646b881b64a8f1577b47882b" }, "recipe": { "sha256": "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.1441", "deps": [ @@ -34779,14 +36868,15 @@ }, "font-lock-studio": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/font-lock-studio.git", - "sha256": "1388d6eaf6d895414c9e95e4b59a06260b57bf20125c14a524a29edf5e16c312", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "font-lock-studio", + "sha256": "04n32rgdz7m24jji8p0j42zmf2r60sdbbr4mkr6435fqyvmdd20k", "rev": "35d510e4b16939621d7200bf67021f773cdb4ae5" }, "recipe": { "sha256": "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141201.1858", "deps": [ @@ -34795,14 +36885,15 @@ }, "commander": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/commander.el.git", - "sha256": "fe3ba67fab270b2df01713f841072f3e91f6bb779b94be8656f8f1b423b6b1fd", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "commander.el", + "sha256": "06y7ika4781gkh94ygdaz7a760s7ahrma6af6n7cqhgjyikz7lg1", "rev": "2a4f1fd6cf9aa1798559dbdd5fbd9dcd327cd859" }, "recipe": { "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140120.1252", "deps": [ @@ -34814,28 +36905,30 @@ }, "olivetti": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rnkn/olivetti.git", - "sha256": "3019cd51f9d186f80c5cb9a60ea98d7eb488a18ae693453140d1252b9e3f49e6", + "tag": "fetchFromGitHub", + "owner": "rnkn", + "repo": "olivetti", + "sha256": "1rj97yg2n9fi80qlb4z6iahqid3yinlhx9mrbh6gi1niz58ws69h", "rev": "26f3db0bc37324444e41a1d4797056b61b56b004" }, "recipe": { "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.2129", "deps": [] }, "gmpl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/gmpl-mode.git", - "sha256": "6443d44f30b5a918ebeb76e43b698ae9669d2960318c3bdcb3cf0acd7991a621", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "gmpl-mode", + "sha256": "08d6j5wws2ngngf3p31ic0lrsrp9i9lkpr3nxgmiiadm617x8hv4", "rev": "c4cf8896aef89b4c08c0c8764c9f2330fc987f9e" }, "recipe": { "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.1349", "deps": [ @@ -34844,14 +36937,15 @@ }, "helm-ag-r": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/helm-ag-r.git", - "sha256": "8267620953548bf32fa9637019ffb7bf2595d6d0089abd47e9abdfe6006b232c", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "helm-ag-r", + "sha256": "1rifdkhzvf7xd2npban0i8v3rjcji69063dw9rs1d32w4n7fzlfa", "rev": "67de4ebafe9b088db950eefa5ef590a6d78b4ac8" }, "recipe": { "sha256": "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131123.931", "deps": [ @@ -34860,14 +36954,15 @@ }, "back-button": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/back-button.git", - "sha256": "58e1221a3f6ad4c07f86324716aa07e21f152a9d3c6a46a6c4cfc916f4c7369c", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "back-button", + "sha256": "0rj6a8rdwa0h2ckz7h4d91hnxqcin98l4ikbfyak2whfb47z909l", "rev": "98d92984a740acd1547bd7ed05cca0affdb21c3e" }, "recipe": { "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150804.1504", "deps": [ @@ -34881,14 +36976,15 @@ }, "evil-indent-plus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TheBB/evil-indent-plus.git", - "sha256": "46639181a2d738d70eccb8e99a1645732b72951d98bc1f20ac5b72a69b0fd9bc", + "tag": "fetchFromGitHub", + "owner": "TheBB", + "repo": "evil-indent-plus", + "sha256": "1g6r1ydscwjvmhh1zg4q3nap4avk8lb9msdqrh7dff6pla0r2qs6", "rev": "0c7501e6efed661242c3a20e0a6c79a6455c2c40" }, "recipe": { "sha256": "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.1306", "deps": [ @@ -34898,14 +36994,15 @@ }, "flymake-puppet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/benprew/flymake-puppet.git", - "sha256": "b5b051da20ebc85022236b274af16372cf6a52d4f8a04341a1478a173b967ee4", + "tag": "fetchFromGitHub", + "owner": "benprew", + "repo": "flymake-puppet", + "sha256": "1r3yjqxig2j7l50l787qsi96mkvjcgqll9vb4ci51j7b43d53c5m", "rev": "fc4cd25aeac37ed5722bc586d5350fd06ee3067c" }, "recipe": { "sha256": "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141006.2055", "deps": [ @@ -34914,14 +37011,15 @@ }, "nclip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/maio/nclip.el.git", - "sha256": "3a4e5e36116bf889b1f477b6887ae190d5bd543f147765494cf7243ccf960f9d", + "tag": "fetchFromGitHub", + "owner": "maio", + "repo": "nclip.el", + "sha256": "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis", "rev": "af88e38b1f04be02bf2e57affc662dbd0f828e67" }, "recipe": { "sha256": "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130617.1515", "deps": [] @@ -34935,63 +37033,67 @@ }, "recipe": { "sha256": "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120312.1525", "deps": [] }, "ox-twbs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marsmining/ox-twbs.git", - "sha256": "79a728c56477fcac5aeb19c3bb6e1c51b6f79660b2a7b60d3bb3ce79640fba5e", + "tag": "fetchFromGitHub", + "owner": "marsmining", + "repo": "ox-twbs", + "sha256": "0pms1xj7kkmk7c6vd9xjc2bggdji3ipbphqrxddarz3pck2ji9vr", "rev": "20b97120eed058a03312157c6646c4569c0168ac" }, "recipe": { "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.1248", "deps": [] }, "mediawiki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hexmode/mediawiki-el.git", - "sha256": "13da948080fde997ddf15b0f8372d514cc542f168fcf4a1e71e4b84835673f76", + "tag": "fetchFromGitHub", + "owner": "hexmode", + "repo": "mediawiki-el", + "sha256": "1cdr5p9x9bxnfy9mgz7l70zfzfwcjdhydw0jhdvs6qlqaqmm4qqq", "rev": "47875f753599e309f1c3da5beb4805487ab75636" }, "recipe": { "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150711.1934", "deps": [] }, "jknav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aculich/jknav.el.git", - "sha256": "3256a49defa4e45326cb8661fe7d38ff27ab8cffa4e1914a419cea29b3f0abc5", + "tag": "fetchFromGitHub", + "owner": "aculich", + "repo": "jknav.el", + "sha256": "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij", "rev": "861245715c728503dad6573278fdd75c271dbf8b" }, "recipe": { "sha256": "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121006.1525", "deps": [] }, "oldlace-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/oldlace-theme.git", - "sha256": "027df16abd88614e195aba6ada9735eb68f14e4ec6912bbd432584db75ee2e79", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "oldlace-theme", + "sha256": "0y9fxrsxp1158fyjp4f69r7g2s7b6nbxlsmsb8clwqc8pmmg2z82", "rev": "5c6f437203b0783b36a7aff4a578de4a0c8c4ee6" }, "recipe": { "sha256": "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150705.800", "deps": [ @@ -35000,28 +37102,30 @@ }, "0blayout": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/etu/0blayout-mode.git", - "sha256": "26ad62cd0038a2f12d6aee27ead70d041ceea772efb8c034bb9572adc4bf2ff6", + "tag": "fetchFromGitHub", + "owner": "etu", + "repo": "0blayout-mode", + "sha256": "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96", "rev": "e256da71d4e0f126a0fd8a9b8fb77f54931f4dfc" }, "recipe": { "sha256": "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.549", "deps": [] }, "afternoon-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osener/emacs-afternoon-theme.git", - "sha256": "8bfaab7f653532842259e29e8bcd10e49665553668e96c84bb95dba2b169a5a5", + "tag": "fetchFromGitHub", + "owner": "osener", + "repo": "emacs-afternoon-theme", + "sha256": "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb", "rev": "89b1d778a1f8b385775c122f2bd1c62f0fbf931a" }, "recipe": { "sha256": "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140104.1259", "deps": [ @@ -35030,14 +37134,15 @@ }, "helm-pydoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-pydoc.git", - "sha256": "fa1e182466b4e2fc880ac4f75f4afd7ade47f3da443810199b10c9e8c9a7fd4e", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-pydoc", + "sha256": "1hlbyw6jvh6pm3ivmhd6qvs9j7km322fki9g4yd4qw7w15a3wkyy", "rev": "d4f409127bc77e7c79dcc87320b2db10466caed2" }, "recipe": { "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151008.924", "deps": [ @@ -35047,14 +37152,15 @@ }, "visual-regexp-steroids": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/benma/visual-regexp-steroids.el.git", - "sha256": "150471be3a7d1586568a82fa68331ff653def23641e16ea3190cc8f2ad7e4f0e", + "tag": "fetchFromGitHub", + "owner": "benma", + "repo": "visual-regexp-steroids.el", + "sha256": "03jggsnz5j0c36inxqa16vrdwlzn3wrniyl2i9b8c5bx7az7210m", "rev": "2a50710dea5be872b31ea56f74b4cd57d6e61461" }, "recipe": { "sha256": "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150411.616", "deps": [ @@ -35063,14 +37169,15 @@ }, "org-pdfview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/markus1189/org-pdfview.git", - "sha256": "2086bb415a309d69de4784cbc3b69e4cffb846634ea7bf31af13e489ef8aac1f", + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "org-pdfview", + "sha256": "07xcibpqkr0kmwqvz9sfcd3bizscksvc7jw48zg6k79hb90vp1i0", "rev": "8f66629e883e0d490584bbf4610cc91938694889" }, "recipe": { "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.1544", "deps": [ @@ -35080,14 +37187,15 @@ }, "company-edbi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/company-edbi.git", - "sha256": "668dcf4440a6836c7150ffa6f39fb86155020e4a95e633c0652a79c057a60ac2", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-edbi", + "sha256": "1fymxqdch9qnn68h3x4gq6f5fq9i4z6blsqyry2xmdvfrp407160", "rev": "38758829b7fd9c1bb152b4d54b5317a20a96e411" }, "recipe": { "sha256": "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150525.414", "deps": [ @@ -35099,42 +37207,45 @@ }, "flyparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jiyoo/flyparens.git", - "sha256": "5a82bf6372c569887e08dcd829aefd8f5f1b86e2963b102d050eac0357c1045f", + "tag": "fetchFromGitHub", + "owner": "jiyoo", + "repo": "flyparens", + "sha256": "07hy1kyw4cbxydmhp4scsy3dcbk2s50rmdp8rch1vbcjk5lj4mvb", "rev": "af9b8cfd647d0e5f97684d613dc2eea7cfc19398" }, "recipe": { "sha256": "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140723.1346", "deps": [] }, "aozora-view": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/aozora-view.git", - "sha256": "7474aff942ce2a27f41d8a546d33c93b8d1bfceb92ecd59c78f456d9d5f84814", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "aozora-view", + "sha256": "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l", "rev": "b0390616d19e45f15f9a2f5d5688274831e721fd" }, "recipe": { "sha256": "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140310.817", "deps": [] }, "tinkerer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/tinkerer.el.git", - "sha256": "54af1856cfbbb1e056adcdc79a3501392fa3ade256b51a938ca26f2804dc115b", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "tinkerer.el", + "sha256": "0rf177kr0qfhg8g5xrpi405dhp2va1yk170zm3f8hghi2575ciy2", "rev": "1125780d1fba0330435fcbe943716032ed543a57" }, "recipe": { "sha256": "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.49", "deps": [ @@ -35143,14 +37254,15 @@ }, "readability": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/emacs-readability.git", - "sha256": "0f01cca469c74c6b957c86244c422251275e2c1fad281f5dd9b033fe9647e14d", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "emacs-readability", + "sha256": "0kg18ybgwcxhv5fiya5d3wn5w9si4914q946gjannk67d6jcq08g", "rev": "6c220ab8e0ca63946574ed892add5c8fd14002ce" }, "recipe": { "sha256": "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140715.1927", "deps": [ @@ -35161,14 +37273,15 @@ }, "pushbullet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theanalyst/revolver.git", - "sha256": "23634cf3c651f1d7e50aad79308265f1395436d059d7de95ee2b65c2e4f5ca80", + "tag": "fetchFromGitHub", + "owner": "theanalyst", + "repo": "revolver", + "sha256": "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym", "rev": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445" }, "recipe": { "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140809.732", "deps": [ @@ -35178,42 +37291,45 @@ }, "git-blame": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tsgates/git-emacs.git", - "sha256": "02d658e3799da5e2ee4b41f19742f31a949e7b10c993445b216e7a53ff81cfa3", + "tag": "fetchFromGitHub", + "owner": "tsgates", + "repo": "git-emacs", + "sha256": "0g839pzmipjlv32r0gh166jn3na5d0wh2w1sia2k4yx1w0ch1bsx", "rev": "5c7e8c546c7e99a2424d484b253c1581bfd7ff7d" }, "recipe": { "sha256": "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110509.1126", "deps": [] }, "io-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/superbobry/io-mode.git", - "sha256": "371f85a0e705c9b9b5ab360a1717ddc1e19157eef566e157a52056f857edb783", + "tag": "fetchFromGitHub", + "owner": "superbobry", + "repo": "io-mode", + "sha256": "10xpxmbzhmi0lmby2rpmxrbr3qf1vlbif2inmfsvkj85wyh8a7rp", "rev": "79f2de13d8a448892266da26642525747d048aa8" }, "recipe": { "sha256": "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140814.521", "deps": [] }, "command-log-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/command-log-mode.git", - "sha256": "956ac8c1ed5004b0f55c2f7ee5a0f6232c7365073a129706ddb552eb979ede3a", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "command-log-mode", + "sha256": "0fnyksbynlmmvl39f4is0xjp6b13yshfazigbksv012hxp0whslm", "rev": "7408c0cb96709b8449f25a58a2203ed90bb5b850" }, "recipe": { "sha256": "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150615.916", "deps": [] @@ -35226,21 +37342,22 @@ }, "recipe": { "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120108.645", "deps": [] }, "helm-wordnet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/raghavgautam/helm-wordnet.git", - "sha256": "4d5ace400079ed22ff9a20fefb2111cba833c12c93201791a475556b47285249", + "tag": "fetchFromGitHub", + "owner": "raghavgautam", + "repo": "helm-wordnet", + "sha256": "0jaj513nnmbmlj8if84k5k0k7a6b24hzpzi0kbzj5vbr010cwnjd", "rev": "71fe718cccdb172614b5e2e55192301a44f6d7d4" }, "recipe": { "sha256": "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150921.1633", "deps": [ @@ -35251,28 +37368,30 @@ }, "artbollocks-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sachac/artbollocks-mode.git", - "sha256": "40ace8470ac6dc6212023887548c9c2e9b0c8ee5558f5efc96e7560348bc510a", + "tag": "fetchFromGitHub", + "owner": "sachac", + "repo": "artbollocks-mode", + "sha256": "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91", "rev": "583c7048a1b09cd79554423d5115f5ddd129d190" }, "recipe": { "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141212.1532", "deps": [] }, "firefox-controller": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/emacs-firefox-controller.git", - "sha256": "04f4b8b21bddcd044bd471eeab5efaddfbf80f71dbb035175bc9ac7c1e4ed35f", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "emacs-firefox-controller", + "sha256": "0pyk9qg7rb69bcbkbc6vf47ziyyxz9gapvkisi5h9kfx3frbix04", "rev": "aeed30509fefc78463531b9e006a795d868d4e74" }, "recipe": { "sha256": "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.1440", "deps": [ @@ -35283,14 +37402,15 @@ }, "org-elisp-help": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/org-elisp-help.git", - "sha256": "408bb412ede61b95635f668d5f4974c3b3688ae9558020013f7cef1446e5486d", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "org-elisp-help", + "sha256": "0va8wm319vvw7w0j102mx656icy3fi4mz3b6bxira6z6xl9b92s0", "rev": "df319441e528a0cad42d29e71fc3547a61dde1c5" }, "recipe": { "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130423.1745", "deps": [ @@ -35300,29 +37420,30 @@ }, "pinboard-api": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danieroux/pinboard-api-el.git", - "sha256": "81264dcde676e3a792d12d733d601b89bfaee4aa0970a4a0d6dc11dca31d655d", + "tag": "fetchFromGitHub", + "owner": "danieroux", + "repo": "pinboard-api-el", + "sha256": "0wy9c37g6m5khchlp8qvfnjgkwq4r38659adcm5prvzjgzqhlfja", "rev": "b7b5214d0c35178f8dca08cf22d6ef3c21f0fce4" }, "recipe": { "sha256": "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140324.648", "deps": [] }, "elpy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/elpy.git", - "branchName": "release", - "sha256": "b56fa2c4336daa907c3f472b659a9544aaab06e7d028fa604fee24ff29d63edc", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "elpy", + "sha256": "0kzara7r6gvgf3p06xswxbhq01dbhmwx1pldx3mmv7knvm2mdxq8", "rev": "96fa05708629600fd79c4b0fcafe63ec97f5ce07" }, "recipe": { "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151101.601", "deps": [ @@ -35335,42 +37456,45 @@ }, "fcitx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/fcitx.el.git", - "sha256": "fffb9b725fe97058c7ccfc4500ddaed5b11c769c0d507d320543b16e665033e0", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "fcitx.el", + "sha256": "1q1ka1k6xca30lr7sl0dkiv1rcfmmvfh0igwrk3mhw79bxr9pyzz", "rev": "5c4ec4181226b9846bc227e20c61645280fc26c1" }, "recipe": { "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.901", "deps": [] }, "smart-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dryman/smart-window.el.git", - "sha256": "bac9037e58650846ff96c9cb300d8088bd045c012616ebb9ec5bc637795b46db", + "tag": "fetchFromGitHub", + "owner": "dryman", + "repo": "smart-window.el", + "sha256": "15834lnh7dq9kz31k06ifpnc0vz86rycz0ryildi5qd2nb7s3lw9", "rev": "a87e0d2007de40033deee39496f791f4b047f138" }, "recipe": { "sha256": "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130214.1342", "deps": [] }, "avy-zap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/avy-zap.git", - "sha256": "ef9a9654ac6b640179c23414710516f56c5fd39a762404f82c05e8673485f468", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "avy-zap", + "sha256": "0s7lhls6gs055kw0893nkb9myv7m2q2p251lq9wh2r3bmia9d6pg", "rev": "ee3a2ad9911384e21537bc641a2f794dd192bbe8" }, "recipe": { "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1348", "deps": [ @@ -35379,14 +37503,15 @@ }, "inf-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/inf-ruby.git", - "sha256": "90870b6e1656c52f20424eb12e2a5c19c7e8a5862dd1620a741832b448abe765", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "inf-ruby", + "sha256": "0rg7md4b8chqfh565l9dhsjyiiqrbhm2xcaf88h2zian2rp0p1wh", "rev": "24c08fca2a18b76a3a200c79bdb5e41b50e04296" }, "recipe": { "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151104.1437", "deps": [] @@ -35400,7 +37525,7 @@ }, "recipe": { "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140410.1923", "deps": [ @@ -35409,28 +37534,30 @@ }, "tea-time": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krick/tea-time.git", - "sha256": "80480aa4120996a33c303236c1327ea34edd4d4bac832109a3281236f9e48c2c", + "tag": "fetchFromGitHub", + "owner": "krick", + "repo": "tea-time", + "sha256": "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40", "rev": "1f6cf0bdd27c5eb3508989c5095427781f858eca" }, "recipe": { "sha256": "18fsbh78c5408zg5bk44gxdynp6kn8253xdg7ap2pr3mjknq9kld", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120331.320", "deps": [] }, "dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myrkr/dictionary-el.git", - "sha256": "886b331bc9ef9c9ab171a4c370c80c342417fb8fcb9793edf17baa9984c11587", + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm", "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" }, "recipe": { "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140717.2229", "deps": [ @@ -35440,14 +37567,15 @@ }, "cargo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/attichacker/cargo.el.git", - "sha256": "5b5121df1c639b32970b3f6e64936d0e97e7f8518948940fa186e74188e40dce", + "tag": "fetchFromGitHub", + "owner": "attichacker", + "repo": "cargo.el", + "sha256": "1khdwj443rw6l47r8j49a7wfg5qfdn9n8viz1fbk56v33kgj2lav", "rev": "1b28b29d641a52d23861f241c54c098d6f070e76" }, "recipe": { "sha256": "0kr8mj3i4fd2x6ymaikzmj1m4q0s4lfvnafcpi7jch0za0qixjcq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151017.1620", "deps": [ @@ -35456,14 +37584,15 @@ }, "helm-flymake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tam17aki/helm-flymake.git", - "sha256": "701cb814a924eada9ce76dc50f91d3cfe2cbf92324493a46581a7542498b2ad2", + "tag": "fetchFromGitHub", + "owner": "tam17aki", + "repo": "helm-flymake", + "sha256": "1liaid4l4x8sb133lj944gwwpqngsf8hzibdwyfdmsi4m4abh73h", "rev": "afb1089d6a0dc9a63bc2aa1df19d80830cc33c6a" }, "recipe": { "sha256": "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130717.44", "deps": [ @@ -35472,14 +37601,15 @@ }, "scratch-ext": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyanagi/scratch-ext-el.git", - "sha256": "f7d9b54045bf4952bce0147c5527d28f53fe4e6258d67d54ac89e4438c5fe059", + "tag": "fetchFromGitHub", + "owner": "kyanagi", + "repo": "scratch-ext-el", + "sha256": "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp", "rev": "388c53cddd0466b451264894667ed64a6947ad67" }, "recipe": { "sha256": "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140103.2316", "deps": [] @@ -35492,21 +37622,22 @@ }, "recipe": { "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130704.932", "deps": [] }, "cl-lib-highlight": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/cl-lib-highlight.git", - "sha256": "aac757d69220f7a8d29bd586c6ef6d0f58c00a82fd5f2b092b910b08b4b0af58", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "cl-lib-highlight", + "sha256": "1mc8kayw8fmvpl0z09v6i68s2lharlwpzff0cvcsfn0an2imj2d0", "rev": "fd1b308e6e989791d1df14438efa6b77d20f7c7e" }, "recipe": { "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140127.1512", "deps": [ @@ -35515,28 +37646,30 @@ }, "hlint-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mpickering/hlint-refactor-mode.git", - "sha256": "6e730e1af472e1a9e27fc78740d7aff41deedb19659d200d59621545ba4c506c", + "tag": "fetchFromGitHub", + "owner": "mpickering", + "repo": "hlint-refactor-mode", + "sha256": "02mkfrs55d32948x739f94v35343gw6a0f7fknbcigbz56mzsvsp", "rev": "695d39b3434a5e35fab70aa5251f824ffaa30d6b" }, "recipe": { "sha256": "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.1441", "deps": [] }, "ob-http": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/ob-http.git", - "sha256": "4d1cf942e6be6882c6de7268540fbdbe82f63c162e2e414fceb273ec9b787cde", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-http", + "sha256": "1yv1i646ll9wnmarcwcmx3nvscq3sv22rmnphvqcr0whrd9vb7rb", "rev": "d9af67c6726c50447d8cf21b9c1c25a3a07dc0ce" }, "recipe": { "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.430", "deps": [ @@ -35546,14 +37679,15 @@ }, "wiki-nav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/button-lock.git", - "sha256": "0c649aebcf12e0d1c86816154504ebc98670be8baf369f5b9f0fc78cd95c236e", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "button-lock", + "sha256": "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl", "rev": "f9082feb329432fcf2ac49a95e64bed9fda24d58" }, "recipe": { "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150223.754", "deps": [ @@ -35563,14 +37697,15 @@ }, "ac-clang": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yaruopooner/ac-clang.git", - "sha256": "edece03ab5ccc0f59c42c8cb78b56f3078b0c9ef9dcc34aa2a2d2c1be87352d1", + "tag": "fetchFromGitHub", + "owner": "yaruopooner", + "repo": "ac-clang", + "sha256": "0n9zagwh3rz7b76irj4ya8wskffns9v1c1pivsdqgpd76spvl7n5", "rev": "6b3365063ddfb88d5527618217bb56166349ad4e" }, "recipe": { "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.1208", "deps": [ @@ -35583,14 +37718,15 @@ }, "ert-modeline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/ert-modeline.git", - "sha256": "53171cf3c91db7dab2d75f8ed10ca6ed79c489ad8ab6307a0a4ddbbe8d0bbefc", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "ert-modeline", + "sha256": "08yfq3qzscxvzyxvyvdqpkrm787278yhkdd9prbvrgjj80p8n7vq", "rev": "e7be2b81191afb437b70368a819770f8f750e4af" }, "recipe": { "sha256": "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140115.415", "deps": [ @@ -35602,28 +37738,30 @@ }, "pc-bufsw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ibukanov/pc-bufsw.git", - "sha256": "35b4d02d22d3c490ce78188650b349fcdeb306a1bb21d44a4b364f85458245ca", + "tag": "fetchFromGitHub", + "owner": "ibukanov", + "repo": "pc-bufsw", + "sha256": "1jj5h92qakrn9d5d88dvl43b7ppw96rm11hqg3791i6k48nx1d1m", "rev": "a76120bca9821c355069f135b4e6978351b66bc2" }, "recipe": { "sha256": "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150923.213", "deps": [] }, "stekene-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/stekene-theme.git", - "sha256": "439286c1ec6c106e19c69798df97fba41c8cfd218250e4162cb1676b325a3870", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "stekene-theme", + "sha256": "0w1qb8r6nrxi5hbf8l4247yqq754zfbxz64pqqcnw43cxk0qd4j3", "rev": "45b643a5af7dac70997d6a60e69c2f2473337d98" }, "recipe": { "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141108.1411", "deps": [ @@ -35632,28 +37770,30 @@ }, "git-annex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/git-annex-el.git", - "sha256": "4b45cd5217d04fe0a8d800d72bc250c75e3752169baff5c8ebfaec099343cf40", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "git-annex-el", + "sha256": "0yxmrcrvl9pbwhd7w4vnrv2jqyskzvqp17sr3vzjlvv694jd4dms", "rev": "a37648ae83783bb48221ef6299aa4ef5ceccf51b" }, "recipe": { "sha256": "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131119.1645", "deps": [] }, "checkbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/camdez/checkbox.el.git", - "sha256": "27825e86446141eedde93bddc90d0d8f352fd40c96f08a82c180f63b13a871eb", + "tag": "fetchFromGitHub", + "owner": "camdez", + "repo": "checkbox.el", + "sha256": "0660ix17ksxy5a5v8yqy7adr9d4bs6p1mnkc6lpyw96k4pn62h45", "rev": "335afa4404adf72973195a580458927004664d98" }, "recipe": { "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.1858", "deps": [ @@ -35663,14 +37803,15 @@ }, "color-theme-modern": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/replace-colorthemes.git", - "sha256": "1cd3cfe06fc887baf08a4df7fcc75bfff79db3a927f64e297edf25146094773b", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "replace-colorthemes", + "sha256": "0q9ss11i31iiv0vn8238922fkic7j6d02f9ykbip04sm46p5k6kj", "rev": "0a804c611da57b2d7c02c95f26eb8a7fc305f159" }, "recipe": { "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.2106", "deps": [ @@ -35686,21 +37827,22 @@ }, "recipe": { "sha256": "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20111208.1222", "deps": [] }, "opam": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/opam.el.git", - "sha256": "85c863174ad8d64d51810c2a0340ba128a5c91378b1744c2b5ba44c662ba19fb", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "opam.el", + "sha256": "1yqrp9icci5snp1485wb6y8mr2hjp9006ahch58lvmnq98bn7j45", "rev": "4d589de5765728f56af7078fae328b6792de8600" }, "recipe": { "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150719.720", "deps": [ @@ -35709,42 +37851,45 @@ }, "jira-markup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mnuessler/jira-markup-mode.git", - "sha256": "afba107b9fdf47c473182b705dfb90417dd920a4fa322bc11dcf1ef5a51b1812", + "tag": "fetchFromGitHub", + "owner": "mnuessler", + "repo": "jira-markup-mode", + "sha256": "1ack7dmapva3wc2gm22prd5wd3cmq19sl4xl9f04a3nk2msr6ksx", "rev": "4fc534c47df26a2f402bf835ebe2ed89474a4062" }, "recipe": { "sha256": "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150601.1609", "deps": [] }, "number": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/number.git", - "sha256": "16ecaf532726a889dec3a4ae5e79ee89bbe43ce846276f20bed267dcf240b510", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "number", + "sha256": "045m83rdqryjpqh6y9s6x0yf9fw9xrwmxbm4qgg8ka164x9szv0n", "rev": "f483365c330392b3e9362481b145acf3db040baf" }, "recipe": { "sha256": "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141127.1204", "deps": [] }, "org-drill-table": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/org-drill-table.git", - "sha256": "56c12b8fcbb18bb4bd7ec0ff5b06b5d52d449e3bafc9cd83b15a8d3ef4605474", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "org-drill-table", + "sha256": "0m5c9x0vazciq6czpg5y9nr5yzjf6nl0qp5cfajv49cw2h0cwqyy", "rev": "d7b5b3743ac04f8cb1087c5c049c0520058fa89c" }, "recipe": { "sha256": "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140117.337", "deps": [ @@ -35757,42 +37902,45 @@ }, "crappy-jsp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/crappy-jsp-mode.git", - "sha256": "6bf559a5ab2c810c82ffcce4b3473e0df790e6931e4d5a301130e945bba1e689", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "crappy-jsp-mode", + "sha256": "12g6l6xlbs9h24q5lk8yjgk91xqd7r3v7r6czy10r09cmfjmkxbb", "rev": "6c45ab92b452411cc0fab9bcee2f456276b4fc40" }, "recipe": { "sha256": "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140311.431", "deps": [] }, "peep-dired": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/asok/peep-dired.git", - "sha256": "2de2a543a76434214242ef817a9f0a30fab2150178c0870cd06ae1c63d016653", + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "peep-dired", + "sha256": "1qi9qzcvclyw9wiamsw0z8q09hs0mfhaj2giny42nd6sqacvfr7m", "rev": "6c18727fc58e2a19638f133810e35bd5d918a559" }, "recipe": { "sha256": "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150518.900", "deps": [] }, "docker-tramp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/docker-tramp.el.git", - "sha256": "a24b1149809b254b96dd12b127c162cb7cfa6b40b23ea085ade084e964560d0b", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "docker-tramp.el", + "sha256": "1mh28210a85yy1b4lic3ijv7xhjk3z9nxjq55b7mqflgjna1ih3c", "rev": "8e9ae1b170fc320e38806c3957c6f01dbb46c26e" }, "recipe": { "sha256": "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150908.2155", "deps": [ @@ -35802,14 +37950,15 @@ }, "ycmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/emacs-ycmd.git", - "sha256": "a91b9027a3812e2e71525cb3a38e1c798149e0baa53d605b1551983f6c7f7e4c", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "09h7k4dir6rpcaarv8k69szssy8iyj67g44zpbgph9yp9cvfm9yx", "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" }, "recipe": { "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.625", "deps": [ @@ -35822,14 +37971,15 @@ }, "springboard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/springboard.git", - "sha256": "c8b73eb2e39d981e838cbce46c71a57fa7f000eeb77c893d865f1a03ab2afe92", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "springboard", + "sha256": "14py5amh66jzhqyqjz5pxq0g19vzlmqnrr5wij1ix64xwfr3xdy8", "rev": "d12119d9dd2b0b64f0af0ba82c273326c8c12268" }, "recipe": { "sha256": "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150505.1211", "deps": [ @@ -35838,14 +37988,15 @@ }, "zone-nyan": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/zone-nyan.git", - "sha256": "5e3e539355f66c16a3eb87c37c55e941ca9424877042add9c9716db65d8e2fd3", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "zone-nyan", + "sha256": "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy", "rev": "e36875d83ad3dce14f23864688959fa0d98ba410" }, "recipe": { "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1514", "deps": [ @@ -35860,21 +38011,22 @@ }, "recipe": { "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1539", "deps": [] }, "haste": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rlister/emacs-haste-client.git", - "sha256": "08c550a82e164424efa0ed39b216418711e1a75b3857e442703135a84a21b0be", + "tag": "fetchFromGitHub", + "owner": "rlister", + "repo": "emacs-haste-client", + "sha256": "1gmh455ahd9if11f8mrqbfky24c784bb4fgdl3pj8i0n5sl51i88", "rev": "22d05aacc3296ab50a7361222ab139fb4d447c25" }, "recipe": { "sha256": "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141030.1534", "deps": [ @@ -35883,28 +38035,30 @@ }, "gitattributes-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/git-modes.git", - "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" }, "recipe": { "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.1248", "deps": [] }, "emojify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iqbalansari/emacs-emojify.git", - "sha256": "4af68a5a18ba5940cd679b59f43f29a6089f060dda126201c422929d0f81532e", + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "emacs-emojify", + "sha256": "0zd47b4i03ypbydiaap20vpr79gybmsk26q2xh4krci311n8mmgb", "rev": "ad0bbe452c223c95a85262e16c7e0e7d2d18e2de" }, "recipe": { "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.2155", "deps": [ @@ -35915,14 +38069,15 @@ }, "sx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vermiculus/sx.el.git", - "sha256": "22b7666fa9c29a0a7140030fc9e5670e0ef878edec91254eccfbc2d2eaf57d5f", + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "sx.el", + "sha256": "0kfjaqydpm1c9l3k58zfjdy7wpqvsm7rirsnizwidg8lhca28b2b", "rev": "75db6c18ceee1e75f8be0c312c6241d359b7a28b" }, "recipe": { "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.2046", "deps": [ @@ -35935,14 +38090,15 @@ }, "mykie": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/mykie-el.git", - "sha256": "b96f795c73b1d2ee3ad2599239a338e86bb91e53bc9aaa6514951b6ef9a87059", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "mykie-el", + "sha256": "0a9a6hmv8vjmp6h9mnzin9vc0sncg79v5z72pasvbrplfxijzan0", "rev": "7676f0e883af1d1054e404e97691f3c13aba196f" }, "recipe": { "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150808.1705", "deps": [ @@ -35952,14 +38108,15 @@ }, "esup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jschaf/esup.git", - "sha256": "655878e4ba2e05c7d59fe9bb6a8bfc9d4dddcc6a5a28a1a006829a4936652211", + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "esup", + "sha256": "1hvf022ag23rmsk7whz8mnlswk5d89249pmc0p3pnaycykw8imxp", "rev": "733cec953d88657f3fcf0b3d9efe48f95821be86" }, "recipe": { "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.2111", "deps": [ @@ -35969,14 +38126,15 @@ }, "evil-rsi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/linktohack/evil-rsi.git", - "sha256": "b862cf5a63aa79e75078b534f5c8186db35d72f15e7c722221e110a49cbbf9f9", + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-rsi", + "sha256": "1ygrpffa847144i74z2yy5r5vcvd334gad5mg18ffydacddcyqmq", "rev": "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61" }, "recipe": { "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1719", "deps": [ @@ -35985,14 +38143,15 @@ }, "letcheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/letcheck.git", - "sha256": "169eba5c3fe6e9117420c91271436320a1be3e93f5d61845346e28b27c9538d1", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "letcheck", + "sha256": "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn", "rev": "e85b185993a2eaeec6490709f4c131fde2edd672" }, "recipe": { "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150726.1112", "deps": [] @@ -36005,7 +38164,7 @@ }, "recipe": { "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151101.1224", "deps": [ @@ -36015,14 +38174,15 @@ }, "ido-exit-target": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/ido-exit-target.git", - "sha256": "7d48ddbb9679a7c1cf6c5ab98d30a2007b6434029ef850b7f55635c50ec123e9", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "ido-exit-target", + "sha256": "1s93q47cadanynvm1y4y08s68yq0l8q8vfasdk7w39vrjsxxsj3x", "rev": "322520c665284ce6547eb9dcd3aa888a02a51489" }, "recipe": { "sha256": "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150904.937", "deps": [ @@ -36031,14 +38191,15 @@ }, "find-file-in-repository": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hoffstaetter/find-file-in-repository.git", - "sha256": "d1f0d5686683e034aca416bf5b7ad320bccc423859815e27eb776133cce25713", + "tag": "fetchFromGitHub", + "owner": "hoffstaetter", + "repo": "find-file-in-repository", + "sha256": "090m5647dpc8r8fwi3mszvc8kp0420ma5sv0lmqr2fpxyn9ybkjh", "rev": "8a8c84a6dbe7a2bba4564c3b58c92d157abfa3f8" }, "recipe": { "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.719", "deps": [] @@ -36051,21 +38212,22 @@ }, "recipe": { "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150418.1902", "deps": [] }, "clojure-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mpenet/clojure-snippets.git", - "sha256": "82ca6e88a1945b866e010311dadbb628608bfbcf8f2aac199e680d2133fc11f1", + "tag": "fetchFromGitHub", + "owner": "mpenet", + "repo": "clojure-snippets", + "sha256": "1w8izhrj23b8kqcsqalgrzxqnq18nvdxl48305p8cnwll646xjl2", "rev": "24ebfd34665e1a3b74aaa823f8b2e3e4a5e0b827" }, "recipe": { "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150504.344", "deps": [ @@ -36074,28 +38236,30 @@ }, "zonokai-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ZehCnaS34/zonokai-emacs.git", - "sha256": "e3d025e8aaeba351e37f2ca1b0c7b02b51c04508801890ed4de98de97a3148d5", + "tag": "fetchFromGitHub", + "owner": "ZehCnaS34", + "repo": "zonokai-emacs", + "sha256": "0ls9x2r12z9ki2fy3cbf05mp28x4ws2gk3knacvw7gvvg4sjdq5w", "rev": "b6f9eb7eb7e3f9954d786144e74dc6e392df3a69" }, "recipe": { "sha256": "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150408.2202", "deps": [] }, "helm-lobsters": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/julienXX/helm-lobste.rs.git", - "sha256": "160e558e98c65db83293115a43f87f57ce2809fd3acc5b084cc389dfbc354e07", + "tag": "fetchFromGitHub", + "owner": "julienXX", + "repo": "helm-lobste.rs", + "sha256": "0nkmc17ggyfi7iz959mvzh6q7116j44zqwi7ydm9i8z49xfpzafy", "rev": "4121b232aeded2f82ad2c8a85c7dda17ef9d97bb" }, "recipe": { "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150213.946", "deps": [ @@ -36105,42 +38269,45 @@ }, "moe-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kuanyui/moe-theme.el.git", - "sha256": "31d9d62abf6aab75207ed875b3ccfd2b44ad3330dda54737caea53e5d79de310", + "tag": "fetchFromGitHub", + "owner": "kuanyui", + "repo": "moe-theme.el", + "sha256": "0dyp8jpznb9ivzkka2cgydzcldc275238p0f1c9pcrxjf7mjglmx", "rev": "56b0833e3549e1b2f008388549972971936b053f" }, "recipe": { "sha256": "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151124.1709", "deps": [] }, "sproto-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2q1n9/sproto-mode.git", - "sha256": "ab18ef262f0274f1b946b52d21f9495ff6d69d2d5ff4a19e863833d559c6f511", + "tag": "fetchFromGitHub", + "owner": "m2q1n9", + "repo": "sproto-mode", + "sha256": "11igl9n2zwwar1xg651g5v0r0w6xl0grm8xns9wg80351ijrci7x", "rev": "0583a88273204dccd884b7edaa3590cefd31e7f7" }, "recipe": { "sha256": "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.1205", "deps": [] }, "helm-commandlinefu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/helm-commandlinefu.git", - "sha256": "32cd3f6f48226460a5d77ebbc3add0e9b22a1a51e307a3b1225b5162d6aeb93b", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-commandlinefu", + "sha256": "0fxrmvb64lav4aqs61z3a4d2mcp9s2nw7fvysyjn0r1291pkzk9j", "rev": "9ee7e018c5db23ae9c8d1c8fa969876f15b7280d" }, "recipe": { "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150611.45", "deps": [ @@ -36152,14 +38319,15 @@ }, "ac-emoji": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-emoji.git", - "sha256": "3b31df8022f3b579cfe304b22d27b88ef46f05ee26590f4b1232c2ea325c9867", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-emoji", + "sha256": "19981mzxnqqdb8dsdizy2i8byb8sx9138x3nrvi6ap2qbcsabjmz", "rev": "f4b3a5b3548dc36f69daeff742f53b5bda538bae" }, "recipe": { "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150823.211", "deps": [ @@ -36169,14 +38337,15 @@ }, "gh-md": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/gh-md.el.git", - "sha256": "114d1b331fb039fd629248239d3e71f3279c2d421f6e9aad14082d2fd148ef5b", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "gh-md.el", + "sha256": "0g3bjpnwgqczw6ddh4mv7pby0zyqzqgywjrjz2ib6hwmdqzyp1s0", "rev": "693cb0dcadff70e813e1a9d303d227aff7898557" }, "recipe": { "sha256": "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.1140", "deps": [ @@ -36185,28 +38354,30 @@ }, "badger-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ccann/badger-theme.git", - "sha256": "e113aeecc000ab243eeba530f634d6b5f41acae3cf7558d1d9988b784daf1a3d", + "tag": "fetchFromGitHub", + "owner": "ccann", + "repo": "badger-theme", + "sha256": "0g8smx6pi2wqv78mhxfgwg51mx5msqsgcc55xcz29aq0q3naw4z1", "rev": "80fb9f8ace37b2e8807da639f7da499a53ffefd4" }, "recipe": { "sha256": "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140716.2132", "deps": [] }, "ox-asciidoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yashi/org-asciidoc.git", - "sha256": "1b2e41e490cc25afc64115414275e46a8afe0ad217cef050e0287a8c71d8bb6b", + "tag": "fetchFromGitHub", + "owner": "yashi", + "repo": "org-asciidoc", + "sha256": "1q7jlz0f09mwymq8m6x9fiariww7rwiy4wkqkbbc296wm7impr75", "rev": "e34b1df9fa061d395e600660620ab6c3b7e59ac1" }, "recipe": { "sha256": "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150919.1459", "deps": [ @@ -36215,14 +38386,15 @@ }, "ember-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/madnificent/ember-mode.git", - "sha256": "5f92a80f7a1befbd853ba52dbd80a9663c0fc37acb89dc3d22268593a1f16833", + "tag": "fetchFromGitHub", + "owner": "madnificent", + "repo": "ember-mode", + "sha256": "0cv8y6hr719648yxr2fbgb1hyg36m60bsbd57f2vvvqvg87si4jz", "rev": "e82d88eee1882ac104857ec42a4fed731a99c13e" }, "recipe": { "sha256": "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151103.421", "deps": [ @@ -36231,14 +38403,15 @@ }, "ido-load-library": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/ido-load-library.git", - "sha256": "de0cb9bc7a82509b0f3a070a91b4585c9bf1eb34e05ac4e019bf6f0d7cb0ead1", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ido-load-library", + "sha256": "0l69sr3g1n2x61j6sv6hnbiyk8a2qra6y2kh413qp0sfpx4fzchv", "rev": "e03b55957c93aa1a7dd190e173e16ec59dbb2ba7" }, "recipe": { "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140611.1100", "deps": [ @@ -36248,14 +38421,15 @@ }, "therapy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/therapy.git", - "sha256": "60bf5c7fb723d4301518a0ef70047b264f850d1965077d023170222b1da85101", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "therapy", + "sha256": "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1", "rev": "775a92bb7b6b0fcc5b38c0b5198a9d0a1bef788a" }, "recipe": { "sha256": "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.1353", "deps": [ @@ -36264,42 +38438,45 @@ }, "isend-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ffevotte/isend-mode.el.git", - "sha256": "7523ce3b202af1e8fb3a436936c09b61d48a260f3cdd35f2c69d99d9439a48cd", + "tag": "fetchFromGitHub", + "owner": "ffevotte", + "repo": "isend-mode.el", + "sha256": "022j39r2vvppnh3p5rp9i4cgc3lg24ksjcmcjmbmna1vf624izn0", "rev": "274163f5c42834ce0391fcc8800e169104ad518f" }, "recipe": { "sha256": "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130419.458", "deps": [] }, "cd-compile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jamienicol/emacs-cd-compile.git", - "sha256": "8cb007eb0a52914991ad2820952ae62bed938bd81252169054ca241e6a6423a9", + "tag": "fetchFromGitHub", + "owner": "jamienicol", + "repo": "emacs-cd-compile", + "sha256": "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c", "rev": "10284ccae86afda4a37b09ba90acd1e2efedec9f" }, "recipe": { "sha256": "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141108.1357", "deps": [] }, "flycheck-irony": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sarcasm/flycheck-irony.git", - "sha256": "5038bd12912bb463145f94522adab568e386401ef79fe4c24711e1e4a02fa5ab", + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "flycheck-irony", + "sha256": "1ax55yhf9q8i8z1f97zp3r08dqv8npd2llllbwa67d1bj49bsf2h", "rev": "b92e881fdf9c9cea192bfb8fa228784af5e27ea4" }, "recipe": { "sha256": "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150728.1431", "deps": [ @@ -36310,14 +38487,15 @@ }, "tabula-rasa": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/idomagal/tabula-rasa.git", - "sha256": "d67421006dcec972da9c4b83aa91ff0c341d8cad980620a29450517127ef4a56", + "tag": "fetchFromGitHub", + "owner": "idomagal", + "repo": "tabula-rasa", + "sha256": "1dbjfq9a7a5s9c18nrp4kcda64jkg5cp8na31kxw0hjcn98dgqa8", "rev": "e85fff9de18dc31bc6a7aca726e34a95cc5459f5" }, "recipe": { "sha256": "186lph964swg7rs5gvby3p1d0znq9x3xzsmirfb3cdbazvz6hhxi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141215.2347", "deps": [ @@ -36326,14 +38504,15 @@ }, "auctex-lua": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vermiculus/auctex-lua.git", - "sha256": "5f3ffbdc324a0f27eda1ad77e3d4d3e83f2017ccfc67f63884b958aaec7eee51", + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "auctex-lua", + "sha256": "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz", "rev": "799cd8ac10c96991bb63d9aa60528ae5d8c786b5" }, "recipe": { "sha256": "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.1010", "deps": [ @@ -36343,14 +38522,15 @@ }, "elmacro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/elmacro.git", - "sha256": "3fba10e7b3a7edb6798398129619f22ed52c8e49f49e555fee56985d9e6730a0", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "elmacro", + "sha256": "181hcyg5v62nxrgmb7pl9672rm9fy8crc4lqhdwvdvd7ngki1fiz", "rev": "ff5d8a0d7f5154707f1d0a2b22894c6c0b0b9f94" }, "recipe": { "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141109.1006", "deps": [ @@ -36366,21 +38546,22 @@ }, "recipe": { "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1604", "deps": [] }, "helm-make": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/helm-make.git", - "sha256": "efac6d8b02e770237fa3b2932805ae106069ed794c104bf1d142b6c703d0e117", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "helm-make", + "sha256": "05z1s01wgdj2s7qln42cg7nnjq0hmq2ji4xjldzj6w770a5nvb7g", "rev": "0f29d09002653a2b3cb21ffdecaf33e7911747d8" }, "recipe": { "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151117.1120", "deps": [ @@ -36390,14 +38571,15 @@ }, "go-autocomplete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nsf/gocode.git", - "sha256": "74ecbb430ff799ee9f47b524b141f582f5fcf810e746687b8b39742f1ade2d6f", + "tag": "fetchFromGitHub", + "owner": "nsf", + "repo": "gocode", + "sha256": "0p3abkqllgy1b5l08wgxjywvvbcjiyjdf00azh1r1nyc81m4krni", "rev": "2b99fc4d372b017483b7596c4577bf5f15479772" }, "recipe": { "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150903.2140", "deps": [ @@ -36406,14 +38588,15 @@ }, "beeminder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sodaware/beeminder.el.git", - "sha256": "952901cfc27fa5ebdbe024952cff5561ff9b31e6ece98eb09601dd543ea26bb2", + "tag": "fetchFromGitHub", + "owner": "sodaware", + "repo": "beeminder.el", + "sha256": "1ckbl8z59p81jsq8xsgcwqqrpzv1apzjr594w3dyp9bzqb7h2acm", "rev": "92fa1a8d1df3e2fd0698192008f604b1794ee5f8" }, "recipe": { "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1634", "deps": [ @@ -36422,14 +38605,15 @@ }, "idris-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/idris-hackers/idris-mode.git", - "sha256": "5832968881992872d05b52f00e43e593afca613d6999f605bb8f49d7e6c4e71b", + "tag": "fetchFromGitHub", + "owner": "idris-hackers", + "repo": "idris-mode", + "sha256": "16gk7ry4yiaxk9dp6s2m4g79klw344yvr86d7hr0qdjkkf229m56", "rev": "f2f0a19f1a23fac618442d7d2187cc3ac5d9e445" }, "recipe": { "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.607", "deps": [ @@ -36440,14 +38624,15 @@ }, "bliss-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-bliss-theme.git", - "sha256": "b9d5cc780a8e19ccf3c71ab14999a3b65fda1ad8e19ed0d212a8e1dced88c036", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-bliss-theme", + "sha256": "0dn0i3nxrqd82b9d17p1v0ddlpxnlfclkc8sqzrwq6cf19wcrmdr", "rev": "2c6922cb24118722819bea79a981f066039d34a3" }, "recipe": { "sha256": "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.101", "deps": [ @@ -36456,28 +38641,30 @@ }, "mozc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/google/mozc.git", - "sha256": "997ca4c93dd5b903cdbe3f73bed97d3d3a4ec1e276bbe1d8ac990b3e62ae167f", + "tag": "fetchFromGitHub", + "owner": "google", + "repo": "mozc", + "sha256": "0ijx66xx0nv4xwf91403qc1s8mksnpkl5d5pv8gwck0dr2abz2nd", "rev": "b499f9e8adac54f03d310ea17c3751c321084f91" }, "recipe": { "sha256": "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150815.503", "deps": [] }, "drill-instructor-AZIK-force": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/drill-instructor-AZIK-force.el.git", - "sha256": "4704f22d81ffb676d2a4371236a3a800a2363b36a7e8c5b22f7a48086705f853", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "drill-instructor-AZIK-force.el", + "sha256": "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127", "rev": "008cea202dc31d7d6fb1e7d8e6334d516403b7a5" }, "recipe": { "sha256": "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.2314", "deps": [ @@ -36486,42 +38673,45 @@ }, "exec-path-from-shell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/exec-path-from-shell.git", - "sha256": "66a414b026f24372dc0f9fa9f49d448512d6ccbfbe671a789c72175694aca9d4", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "exec-path-from-shell", + "sha256": "085vmpxk99mvxa5k3fwr5x443434gh0iy3qp272fyks85yccrayl", "rev": "673f1fc0606ca9a30eb62cb1ac2094d15ab9377e" }, "recipe": { "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.1333", "deps": [] }, "highlight-symbol": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/highlight-symbol.el.git", - "sha256": "5ce0f39ab7e53eba8d64fd09d70eef4666d450a69e0a0bf3372f20c3790242f1", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "highlight-symbol.el", + "sha256": "0d7scpgn9wnq9r72vjv68nnk6qgk0x1bxlm070hj2iz51pdqda7x", "rev": "c2e15fee52aebf5c8e618460b8f924331d0df2a3" }, "recipe": { "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.651", "deps": [] }, "ppd-sr-speedbar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/ppd-sr-speedbar.git", - "sha256": "209984df0ae73c549afaeded5bf820a47f275068390f65ba66201d422fa3f946", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "ppd-sr-speedbar", + "sha256": "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq", "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" }, "recipe": { "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.624", "deps": [ @@ -36537,21 +38727,22 @@ }, "recipe": { "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1843", "deps": [] }, "vbasense": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-vbasense.git", - "sha256": "f631dc0c3adcf84c1d1e9e39283d86880c4e3f8c9e499f07967bf96b9cc045a6", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-vbasense", + "sha256": "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn", "rev": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db" }, "recipe": { "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140221.1753", "deps": [ @@ -36568,21 +38759,22 @@ }, "recipe": { "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120728.913", "deps": [] }, "org-redmine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/org-redmine.git", - "sha256": "05ce455f00351031f9719e331d21f19c3f67ab4073158b7830aa4bf8f6d8a422", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "org-redmine", + "sha256": "1q99b9l6y97iic46xqj7rqnkrzk8f0qq4qy81jv9wz54hq51w07v", "rev": "4289eb06c506f19ef8c467acb2a05bcf04f187c9" }, "recipe": { "sha256": "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.931", "deps": [ @@ -36591,14 +38783,15 @@ }, "creds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/emacs-creds.git", - "sha256": "e452ea4163989317d9329a19c41ad64e6b2668098e1103eb92fdcd343957d8af", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-creds", + "sha256": "0l4bvk3m355b25d7pdnhczn3fckbq0rg2l4r0a0d94004ksvylqa", "rev": "b059397a7d59481f05fbb1bb9c8d3c2c69226482" }, "recipe": { "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140510.1206", "deps": [ @@ -36608,14 +38801,15 @@ }, "helm-project-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sliim/helm-project-persist.git", - "sha256": "1bf6c5b5f3771fa295e2f1fa488d35dc6faea81f2f17d17101f949fd6760a448", + "tag": "fetchFromGitHub", + "owner": "Sliim", + "repo": "helm-project-persist", + "sha256": "0j54c1kzsjgr05qx25rg3ylawvyw6n6liypiwaas47vpyfswbxhv", "rev": "357950fbac18090985a750e40d5d8b10ee9dcd53" }, "recipe": { "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.943", "deps": [ @@ -36625,14 +38819,15 @@ }, "phabricator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ajtulloch/phabricator.el.git", - "sha256": "965b712583083b9795cafd9872c11354c52cc7a684e5c15cdd136dd2462d38b6", + "tag": "fetchFromGitHub", + "owner": "ajtulloch", + "repo": "phabricator.el", + "sha256": "0y77ld1cmfpv9p7yx2mlbvjm5ivsrf2j0g0h4zabfrahz22v39d4", "rev": "b1450350cc3c45c732252bb13860156d824ead10" }, "recipe": { "sha256": "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151115.307", "deps": [ @@ -36645,14 +38840,15 @@ }, "make-it-so": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/make-it-so.git", - "sha256": "e99805543f05dfaed127ec704caa447c04616e2655ed9f2b9911071a6fb24502", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "make-it-so", + "sha256": "00j5n9pil1qik4mrzvam4rp6213w8jm4qw7c4z8sxpq57xa0b679", "rev": "ed83b8b9787441cc6be4994d571529852a8cce4a" }, "recipe": { "sha256": "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150319.1407", "deps": [ @@ -36662,14 +38858,15 @@ }, "eval-sexp-fu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hchbaw/eval-sexp-fu.el.git", - "sha256": "82f966c5bec578bf9bf170ab733ff473fc9c78164ecefd12b6cd8fe7db54d8eb", + "tag": "fetchFromGitHub", + "owner": "hchbaw", + "repo": "eval-sexp-fu.el", + "sha256": "1syqakdyg3ydnq9gvkjf2rw9rz3kyhzp7avhy6dvyy65pv2ndyc2", "rev": "6cffd33155d10c3e58b39cbb170f42e910fd8595" }, "recipe": { "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131230.1551", "deps": [ @@ -36678,28 +38875,30 @@ }, "mustang-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/mustang-theme.git", - "sha256": "24b3b7eb16dc64e874aa5a333ab4e617e52b30fc0778728330fb6ac71a190da7", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "mustang-theme", + "sha256": "19qd34dcfspv621p4y07zhq2pr8pwss3lcssm9sfhr6w2vmvgcr4", "rev": "79c3381dd50601775402fe2fddd16fffa9218837" }, "recipe": { "sha256": "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141017.1823", "deps": [] }, "httprepl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gregsexton/httprepl.el.git", - "sha256": "968a514e736f8ea97a1e602f78ef2084abdf7a93c6df4a9591950894b6c7a6b0", + "tag": "fetchFromGitHub", + "owner": "gregsexton", + "repo": "httprepl.el", + "sha256": "0wd4wmy99mx677x4sdbp57bxxll1fsnnf8hk97r85xdmmjsmrkld", "rev": "cfa3693267a8ed1c96a86a126823f37dbfe077d8" }, "recipe": { "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141101.1234", "deps": [ @@ -36710,14 +38909,15 @@ }, "tern-auto-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marijnh/tern.git", - "sha256": "ef89363dc2e2065bed8aa4203cffa25e3f5f6b39fa1bd3c11bb225982fe7e4a8", + "tag": "fetchFromGitHub", + "owner": "marijnh", + "repo": "tern", + "sha256": "07b96yjv8jns8d18mciqchpfbhcd8w0lgy3p4msl24rk4hmv56z7", "rev": "f585fe7d6f4da28770fdd3dc7ddf88a39ad9b105" }, "recipe": { "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.853", "deps": [ @@ -36729,14 +38929,15 @@ }, "ox-ioslide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/org-ioslide.git", - "sha256": "431a9ff36e738fb5f7306d8ea1a70b67b7c5c233d9bb006806bdacade7eafc74", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "org-ioslide", + "sha256": "12c170m04yk0acllkvrbl3kpl5z91gh0z8d09hpqpdmfs2gmpbm9", "rev": "79fb2c161ded934c3a4ddf623100103212a4d2d8" }, "recipe": { "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.2352", "deps": [ @@ -36749,42 +38950,45 @@ }, "hungry-delete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nflath/hungry-delete.git", - "sha256": "d44bba87be3adab33401b31b0aa5a32554e053ae09c85b190dca042b6910c5ef", + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "hungry-delete", + "sha256": "1vy521ljn16a1lcmpj09mr9y0m15lfjhl6xk04sb7nisps3vljyl", "rev": "ed1694ca3bd1fe7d117b0176d417341915ad4f1f" }, "recipe": { "sha256": "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1514", "deps": [] }, "n3-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/doriantaylor/n3-mode-for-emacs.git", - "sha256": "304d9b0db018e0a02cbac065443fde380d3ddb456a93c4b9fc788310525fe1d2", + "tag": "fetchFromGitHub", + "owner": "doriantaylor", + "repo": "n3-mode-for-emacs", + "sha256": "1lp1bx9110vqzjww94va8pdks39qvqzl8rf0p8na1q0qn06rnk9h", "rev": "0145e7938c30183edb03a55a4f16390dabd191ec" }, "recipe": { "sha256": "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141027.1257", "deps": [] }, "quasi-monochrome-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lbolla/emacs-quasi-monochrome.git", - "sha256": "81f146dad25b69acfe6d01ab0a41a32e4c2cec7269d822f4147b489f9c457c27", + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-quasi-monochrome", + "sha256": "09vw8nf9yj3v2ks25n39fbn2qk1fld0hmaq1dpzaqsavsbd4dwc1", "rev": "b2456aaa71b51d4f9b06c5dfb529e60732574fc7" }, "recipe": { "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150801.1525", "deps": [] @@ -36797,21 +39001,22 @@ }, "recipe": { "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110405.1020", "deps": [] }, "projectile-codesearch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/codesearch.el.git", - "sha256": "2ae930b98fb21a90138b9f979ff7fc6926fc84f4d81c01afc26165d09212af80", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "codesearch.el", + "sha256": "105g2a9d0rb1qaph276qyj2gq9k9zkvrz5wzic9r06mjiywk1s9a", "rev": "9a887f8d440ba98a72a7619dd744c0a9e3892919" }, "recipe": { "sha256": "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150419.45", "deps": [ @@ -36821,14 +39026,15 @@ }, "editorconfig": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "e7a0756c60b165c328baedf6376574a79198a2086c46666ea42a02f9e307a2cd", - "rev": "44b93337549fa501b404767852a25b7a8b9af02f" + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "0af6r0qn6gy3ww5cf3cvvbwyqpvx5xv08gxkjsj92z9h2x5rfz7f", + "rev": "301d67b26098d048ff7235c0878252e80becc7e0" }, "recipe": { "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1035", "deps": [ @@ -36837,14 +39043,15 @@ }, "bbyac": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/baohaojun/bbyac.git", - "sha256": "b4094c2ed0ddc7431ac1cd19aedd038c83bd7f03d87a784b227538e94c23b5b1", + "tag": "fetchFromGitHub", + "owner": "baohaojun", + "repo": "bbyac", + "sha256": "1cdm4d6fjf3m495phynq0dzvv0wc0gfsw6fdq4d47iyxs0p4q2dl", "rev": "8dc5a7c0ada7ac729a87343149970ced139bb659" }, "recipe": { "sha256": "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150316.501", "deps": [ @@ -36854,14 +39061,15 @@ }, "evil-anzu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-evil-anzu.git", - "sha256": "7bb64bf480e4763e2c504b7cee2789a58353a28b0d936f9014fc0a7ed037ac35", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-evil-anzu", + "sha256": "0cnj91lwpmk4c8nf3xi80yvv6anvkg8h1kbzbp16glkgmy6jpmy8", "rev": "a041db15bd6e2eb353b24f6f984f6c5ee618d460" }, "recipe": { "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150124.1809", "deps": [ @@ -36871,14 +39079,15 @@ }, "cloc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cosmicexplorer/cloc-emacs.git", - "sha256": "5b98c39be6d9cb778ac8f31d80ebb81a5a4c9c54a43004ddef67adec0160d4e5", + "tag": "fetchFromGitHub", + "owner": "cosmicexplorer", + "repo": "cloc-emacs", + "sha256": "1rflc00yrbb7xzfh8c54ajf4qnhsp3mq07gkr257gjyrwsdw762v", "rev": "15e63b83dd6261f543d25aac4c72e764e3274d53" }, "recipe": { "sha256": "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151007.401", "deps": [ @@ -36887,14 +39096,15 @@ }, "hl-anything": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/boyw165/hl-anything.git", - "sha256": "e5a9ee3cb1d45a4378e67695a8b60d196d243a7c9300411cb67cafde4b201bfc", + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "hl-anything", + "sha256": "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr", "rev": "018da4cdf891529b4769d59c0400b6cf3456b9c4" }, "recipe": { "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150219.731", "deps": [ @@ -36903,14 +39113,15 @@ }, "restart-emacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iqbalansari/restart-emacs.git", - "sha256": "565e0567e2dd390743441e29c90a4cc93e56a66c52210bd9af89b2ecb43d7609", + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "restart-emacs", + "sha256": "0gbm208hmmmpjyj0x3z0cszphawkgvjqzi5idbdca3gikyiqw80n", "rev": "f0e8e1ae1bb5f4e50a99d220c39913ef300f44c8" }, "recipe": { "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.1035", "deps": [] @@ -36923,49 +39134,52 @@ }, "recipe": { "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.707", "deps": [] }, "dummyparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/snosov1/dummyparens.git", - "sha256": "f07750f1d3e7a87b02c00e786f88d7e79ab7c3078267df3da5bb1909beb5e23c", + "tag": "fetchFromGitHub", + "owner": "snosov1", + "repo": "dummyparens", + "sha256": "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh", "rev": "9798ef1d0eaa24e4fe66f8aa6022a8c62714cc89" }, "recipe": { "sha256": "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141009.524", "deps": [] }, "clean-aindent-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pmarinov/clean-aindent-mode.git", - "sha256": "e00e581ef09d5ca7056c9394e7bbab2bdd38e697f8fe19fc41eb871aff34d3c0", + "tag": "fetchFromGitHub", + "owner": "pmarinov", + "repo": "clean-aindent-mode", + "sha256": "1h6k6kzim1zb87y1kzpqjzk3ip9bmfxyg54kdh2sfp4xy0g5h3p0", "rev": "9ae15997cd75c5625a4f759a3aff39bf202fc36f" }, "recipe": { "sha256": "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150816.2229", "deps": [] }, "passthword": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/passthword.git", - "sha256": "784a88bd7bfe8653a08e1370cd69306b409052faa2a3e9ef43e9a8b483819379", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "passthword", + "sha256": "0yckh61v9a798gpyk8x2z9990h3b61lwsw0kish571pygfyqhjkq", "rev": "30bace842eaaa6b48cb2251fb84868ebca0467d6" }, "recipe": { "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141201.323", "deps": [ @@ -36974,14 +39188,15 @@ }, "tab-jump-out": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/tab-jump-out.git", - "sha256": "d589f85e264f9aa70dfba028f450a7b673237d11f71fcaa997ecdba0d872fa40", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "tab-jump-out", + "sha256": "0h7sfbca1nzcjylwl7zp25yj6wxnlx8g8a50zc6sg6jg4rggi2fm", "rev": "1c3fec1826d2891177ea78e4e7cce1dc67e83e51" }, "recipe": { "sha256": "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.2030", "deps": [ @@ -36991,28 +39206,30 @@ }, "smyx-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tacit7/smyx.git", - "sha256": "bd24cd4e4bc8170012fe6e5b9ce4ca7f2848b43b6fe599c38705f2109c6d5afc", + "tag": "fetchFromGitHub", + "owner": "tacit7", + "repo": "smyx", + "sha256": "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x", "rev": "6263f6b401bbabaed388c8efcfc0be2e58c51401" }, "recipe": { "sha256": "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141127.228", "deps": [] }, "evil-cleverparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/luxbock/evil-cleverparens.git", - "sha256": "a6a293c2e0dc06c9831a72970f2629e6eca71a247a9c705147e2862a025efedf", + "tag": "fetchFromGitHub", + "owner": "luxbock", + "repo": "evil-cleverparens", + "sha256": "1pzybq12m1p28x8p173s4hdagv7654k0z5vj3a1wj1nww31978m6", "rev": "28fc9a9b465b908cb01bf99b538d50069bda8107" }, "recipe": { "sha256": "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151201.2238", "deps": [ @@ -37025,28 +39242,30 @@ }, "s": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/s.el.git", - "sha256": "d0208102b6938f071af8892b5830d5eec739eb2e6eae2688d04c47b0ebb0c8fe", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "s.el", + "sha256": "1zn8n3mv0iscs242dbkf5vmkkizfslq5haw9z0d0g3wknq18286h", "rev": "372e94c1a28031686d75d6c52bfbe833a118a72a" }, "recipe": { "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150924.606", "deps": [] }, "sweetgreen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CestDiego/sweetgreen.el.git", - "sha256": "977fead7e3cadfc0059f24a35863c2eb9fb3ee0ca0a94ccd119dec2589a71ffc", + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "sweetgreen.el", + "sha256": "10blwlwg1ry9jznf1a6iss5s0z8sj9gc02ayf5qv92mgxvjhrhdn", "rev": "a456dd7948a25da8ff007a142cf1325b4855d908" }, "recipe": { "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.1116", "deps": [ @@ -37058,28 +39277,30 @@ }, "transpose-mark": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/attichacker/transpose-mark.git", - "sha256": "5dd4326870e169ae20e0fd734e50cfe28aab2ebf0668f8bf7db9ce6037288c0f", + "tag": "fetchFromGitHub", + "owner": "attichacker", + "repo": "transpose-mark", + "sha256": "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x", "rev": "667327602004794de97214cf336ac61650ef75b7" }, "recipe": { "sha256": "16xn9d33nylbb4pr65i8x4rbf5ncd4vxhmcbd136k5b6hj62mg7i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150405.216", "deps": [] }, "javadoc-lookup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/javadoc-lookup.git", - "sha256": "7b48944fdc982187daaf648054540901d502b454fca5c62f4638f7e0936c6b32", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "javadoc-lookup", + "sha256": "10x10d0y8lr2a4kxq6pmvl5a1nzkfayg9qlzwh5v5is17wxr7399", "rev": "e580d85b2ae37900672b6b2fd3381919b47a5a2f" }, "recipe": { "sha256": "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150425.1203", "deps": [ @@ -37088,42 +39309,45 @@ }, "immutant-server": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/immutant-server.el.git", - "sha256": "9048d80fe6fc2ac76a3c8fb1cc9f3e92adb6f269e1a1673bd7efc68d53ad6a65", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "immutant-server.el", + "sha256": "0rbamm9qvipgswxng8g1d7rbdbcj7sgwrccg7imcfapwwq7xhj4h", "rev": "2a21e65588acb6a976f2998e30b21fdabdba4dbb" }, "recipe": { "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140311.1708", "deps": [] }, "git-ps1-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/10sr/git-ps1-mode-el.git", - "sha256": "cefb41d9e6822b0ae55a31d19c9a33c383a97d67edbeeb18250d2d663b0a8994", + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "git-ps1-mode-el", + "sha256": "1hbpcsyivvdjf16znbhzykn9hci73jl77n4wrxy4v8vhkdajgkd1", "rev": "18f143cfcc7163606daefdaae8ab6b8d81536aa0" }, "recipe": { "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150421.2301", "deps": [] }, "evil-textobj-anyblock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/noctuid/evil-textobj-anyblock.git", - "sha256": "1c7a29cc075d83167ef3edf55822cf67c55401ed67d3873c13e33d4aad169fec", + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "evil-textobj-anyblock", + "sha256": "1v4z2snllgg32cy8glv7xl0m9ib7rwi5ixgdydz1d0sx0z62jyhw", "rev": "a9e1fdd546312fa787cd0a0acc7ca5e0253de945" }, "recipe": { "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151017.1617", "deps": [ @@ -37133,42 +39357,45 @@ }, "osx-plist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/osx-plist.git", - "sha256": "db5963b9f18431b1c1cd7aaaa67c771dd6a3cb91e373879f3f5a0fb6eb9c6020", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "osx-plist", + "sha256": "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv", "rev": "5e6de2622fdfe552d4902904f05ea03bc5a6ebd0" }, "recipe": { "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20101130.648", "deps": [] }, "cyberpunk-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/n3mo/cyberpunk-theme.el.git", - "sha256": "e4433626668568daa8f52040923c910a9518f33d3529df869322ca81161ea9ff", + "tag": "fetchFromGitHub", + "owner": "n3mo", + "repo": "cyberpunk-theme.el", + "sha256": "1zx93qb83ji2jf3dya9m7prii58aj4y94h10ynldls45cqk3chz4", "rev": "5fee81bccb07d40ff1d41aa2342ca29639b057b0" }, "recipe": { "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1153", "deps": [] }, "ido-migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/ido-migemo.el.git", - "sha256": "f9bb01ac8ab702d7222ae740d9fbc589c43c41c955b4486d044f84eacf717f8e", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ido-migemo.el", + "sha256": "15iajhrgy989pn91ijcd1mq2015bkaacaplm79rmb0ggxhh8vq38", "rev": "e71114a92dd69cb46abf3fb71a09ce27506fcf77" }, "recipe": { "sha256": "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150921.1744", "deps": [ @@ -37177,14 +39404,15 @@ }, "elwm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/elwm.git", - "sha256": "a2a32a6ad854864c032fbfc7a1e2a377e37ff3a31ff5030cd6b9ae3e92bbf6cc", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "elwm", + "sha256": "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2", "rev": "c33b183f006ad476c3a44dab316f580f8b369930" }, "recipe": { "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150817.507", "deps": [ @@ -37193,14 +39421,15 @@ }, "airline-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AnthonyDiGirolamo/airline-themes.git", - "sha256": "dda2dfbe91fa63cd36078ef02ec903dfc1206f7809a4146abd64c04a417f4902", + "tag": "fetchFromGitHub", + "owner": "AnthonyDiGirolamo", + "repo": "airline-themes", + "sha256": "00j9gx0lmh34pmm19909g1pj1hfz0g4jxw4f0wvcsqzsj6zdz8nx", "rev": "8355460678b95a2ef38d6ef6c046b451e4a0255e" }, "recipe": { "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.2135", "deps": [ @@ -37209,14 +39438,15 @@ }, "shackle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/shackle.git", - "sha256": "543bdf111a1221da53e2eaf19b4ba0ac7f62203a2a0be922eacb4dec32aa17ed", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "shackle", + "sha256": "1v8pm8rfqkfbx8ifj2ra78h64zxcl15rpwgaw99xl88j388xyfsl", "rev": "7542039876325d9b2051b77a0cbe15986154ac1a" }, "recipe": { "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.816", "deps": [ @@ -37225,14 +39455,15 @@ }, "scpaste": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/scpaste.git", - "sha256": "319a5b8ba780cbe8dd61ed14070e8141fa93238ab8e667332efa41984d08efc9", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "scpaste", + "sha256": "1jgg116rhhgs5qrngrmqi8ir7yj1h470f57dc7fyijw0ly5mp6ii", "rev": "677f9b7c5a1b533bef44747d6331b671ffcb8a9c" }, "recipe": { "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1935", "deps": [ @@ -37241,14 +39472,15 @@ }, "helm-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-themes.git", - "sha256": "dca8123a0044b5c8b1d4a448a6b854001fbd7d34836fc0043de27169e44f85a3", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-themes", + "sha256": "0a9h6rmjc6c6krkvxbgrzv35if260d9ma9a2k47jzm9psnyp9s2w", "rev": "a6449a40c5a219b43a92c975917a07337f864b4f" }, "recipe": { "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.121", "deps": [ @@ -37257,28 +39489,30 @@ }, "gnuplot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bruceravel/gnuplot-mode.git", - "sha256": "b9633b84408a5c3d50c9123714f4b8108147d0af7d8836d5729a32dedfa5b5a4", + "tag": "fetchFromGitHub", + "owner": "bruceravel", + "repo": "gnuplot-mode", + "sha256": "1gm116479gdwc4hr3nyv1id692dcd1sx7w2a80pvmgr35ybccn7c", "rev": "21f9046e3f5caad41b750b5c9cee02fa4fd20fb9" }, "recipe": { "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141231.1537", "deps": [] }, "brainfuck-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tom-tan/brainfuck-mode.git", - "sha256": "4d027c217051f8c46bc7a1549b6b266b735eda8c165149b4a337fb16ff93efdb", + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "brainfuck-mode", + "sha256": "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd", "rev": "36e69552bb3b97a4f888d362c59845651bd0d492" }, "recipe": { "sha256": "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150113.242", "deps": [ @@ -37287,14 +39521,15 @@ }, "auto-complete-rst": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/auto-complete-rst.git", - "sha256": "68b91f7b40baa692522c7f4d29d0096829660a84c3d7cc66d2d63d26d0dafa80", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "auto-complete-rst", + "sha256": "107svb82cgfns9kcrmy3hh56cab81782jkbz5i9959ms81xizfb8", "rev": "4803ce41a96224e6fa54e6741a5b5f40ebed7351" }, "recipe": { "sha256": "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140225.344", "deps": [ @@ -37303,14 +39538,15 @@ }, "ess-smart-equals": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/genovese/ess-smart-equals.git", - "sha256": "c672236d29a2a2a4f6823862f82bb39fb7804c4f2b358f3b5dce250e202e23af", + "tag": "fetchFromGitHub", + "owner": "genovese", + "repo": "ess-smart-equals", + "sha256": "0ici253mllqyzcbhxrazfj2kl50brr8qid99fk9nlyfgh516ms1x", "rev": "e0f5f18f01ed252fde50d051adf1fa6254a254c9" }, "recipe": { "sha256": "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.1", "deps": [ @@ -37320,28 +39556,30 @@ }, "gom-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-gom-mode.git", - "sha256": "6bad1cebc66b599bbf4d2eb07280820da6f991ef0baac6a4c34dce511efdd2aa", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-gom-mode", + "sha256": "1anjzlg53kjdqfjcdahbxy8zk9hdha075c1f9nzrnnbbqvmirbbb", "rev": "972e33df1d38ff323bc97de87477305826013701" }, "recipe": { "sha256": "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131007.2153", "deps": [] }, "ac-etags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-etags.git", - "sha256": "d1fc417efe657d1ee4f78b3d8a2aa10e01016766c42005dc1a3334b4297ebd3e", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-etags", + "sha256": "140i02b2ipyfmki945l1xd1nsqdpganhmi3bmwj1h9w8cg078bd4", "rev": "e53cb3a8dd44e41fba3d2b737f90a8cfc529e2a6" }, "recipe": { "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.2121", "deps": [ @@ -37350,28 +39588,30 @@ }, "rect+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-rectplus.git", - "sha256": "0fca6cf13046301f9ed9897304687e4bb71141dcc2fbbc49aeb7c33d10202183", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-rectplus", + "sha256": "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj", "rev": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc" }, "recipe": { "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150620.1944", "deps": [] }, "flymake-hlint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-hlint.git", - "sha256": "5870a86cd25ea7c2312700d7ee731a39bc75bbae999496a2d9b150f5f6c4b104", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-hlint", + "sha256": "003fdrgxlyhs595ndcdzhmdkcpsf9bpw53hrlrrrh07qlnqxwrvp", "rev": "fae0c16f938129fb933e4c4625287816e8e160f0" }, "recipe": { "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130309.345", "deps": [ @@ -37380,14 +39620,15 @@ }, "flycheck-ycmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/emacs-ycmd.git", - "sha256": "a91b9027a3812e2e71525cb3a38e1c798149e0baa53d605b1551983f6c7f7e4c", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "09h7k4dir6rpcaarv8k69szssy8iyj67g44zpbgph9yp9cvfm9yx", "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" }, "recipe": { "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150727.231", "deps": [ @@ -37399,14 +39640,15 @@ }, "ansible-doc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/ansible-doc.el.git", - "sha256": "cdfd044552a6cdb91bd6c27f229c9b605ad8f0acbb673dbc1993976461d5d9df", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "ansible-doc.el", + "sha256": "1h3rqrjrl8wx7xvvd631jkbbczq3srd4mgz7y9wh3cvz1njdpy62", "rev": "d0ce210674b5bee9836e6773c4e823747a6f1946" }, "recipe": { "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150524.1205", "deps": [ @@ -37415,56 +39657,60 @@ }, "ido-vertical-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/creichert/ido-vertical-mode.el.git", - "sha256": "6a017b0155077192e96f459b6d7ac234f9134b0f073cfe43a76c4cc0cdff7529", + "tag": "fetchFromGitHub", + "owner": "creichert", + "repo": "ido-vertical-mode.el", + "sha256": "1vl87phswkciijq0j07lqlgmha5dmff8yd4j4jn7cfrkrdjp6jbx", "rev": "0beaf1eaa8509bece9419b663826665322b22b4c" }, "recipe": { "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151003.2033", "deps": [] }, "hemisu-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andrzejsliwa/hemisu-theme.git", - "sha256": "2799f06f193aadfbe5c1656e1a0a5ec30a1e8cbba8b6d303a8c2041e5fdc0d9d", + "tag": "fetchFromGitHub", + "owner": "andrzejsliwa", + "repo": "hemisu-theme", + "sha256": "178dvigiw162m01x7dm8pf61w2n3bq51lvk5q7jzpb9s35pz1697", "rev": "5c206561aa2c844ecdf3e3b672c3235e559ddd7f" }, "recipe": { "sha256": "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130508.1344", "deps": [] }, "naquadah-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jd/naquadah-theme.git", - "sha256": "02fbc2274fa388a04e11fb255af0a471d67bdb32f348d2b0c8a7b5e06730ae57", + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "naquadah-theme", + "sha256": "0mxf61ky1dd7r2qd4j7k6bdppmkilkq5l9gv257a12539wkw5yq2", "rev": "f6308bb7d110f1e6d6a91db901f8fb3f99da12ac" }, "recipe": { "sha256": "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150923.341", "deps": [] }, "stan-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stan-dev/stan-mode.git", - "sha256": "71e11b48e374c1868b6aee957858ceff5598ba3c55b21c6cd654a0eaaa3ababd", + "tag": "fetchFromGitHub", + "owner": "stan-dev", + "repo": "stan-mode", + "sha256": "09xgwrgb4a348fchcn24k51lh8cq1sj6lzfx8v76gkkhp7sn3l1r", "rev": "58826c65f3351eb69bf999f3364afe50dc31645e" }, "recipe": { "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150728.2254", "deps": [ @@ -37474,14 +39720,15 @@ }, "emacsql-mysql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "d69aa7b1f8d1355baa81fb775daa6708b3201677592f1e6ae02b5980e5d3112f", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad", "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" }, "recipe": { "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151004.915", "deps": [ @@ -37492,42 +39739,45 @@ }, "cdlatex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cdominik/cdlatex.git", - "sha256": "2d45f8847aaaacfd72dfebc80cc40d3fa0c8bb60a1ca8500647e68c260dd49ca", + "tag": "fetchFromGitHub", + "owner": "cdominik", + "repo": "cdlatex", + "sha256": "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d", "rev": "b7183c2200392b6d85fca69390f4a65fac7a7b19" }, "recipe": { "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140707.626", "deps": [] }, "yalinum": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tm8st/emacs-yalinum.git", - "sha256": "e05a95dde79375acfce71d3ad689d6c682def579893481d24824b8f4a022ad89", + "tag": "fetchFromGitHub", + "owner": "tm8st", + "repo": "emacs-yalinum", + "sha256": "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0", "rev": "d3e0cbe3f4f5ca311e3298e684901d6fea3ad973" }, "recipe": { "sha256": "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130217.443", "deps": [] }, "org-download": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/org-download.git", - "sha256": "61a7b3a24caef7e76f3d8b8bb14fbf9c92d8cd923862e64b9220725ca0ad3d81", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "org-download", + "sha256": "12k3iqzmj92cvi0d99mn3ylxj00p2f2f8049dd2nxnp1gxs2k4dq", "rev": "501920e273b32f96dfbafcf769d330296a612847" }, "recipe": { "sha256": "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.916", "deps": [ @@ -37536,42 +39786,45 @@ }, "oberon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/oberon.git", - "sha256": "c659c89cc8b2116d1109f51ddf5e9f58f05db4fe801078523c4f86841f138698", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "oberon", + "sha256": "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6", "rev": "fb57d18ce13835a8a69b6bafecdd9193ca9a59a3" }, "recipe": { "sha256": "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120715.409", "deps": [] }, "inkpot-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/siovan/emacs24-inkpot.git", - "sha256": "bb32504ecf392f0c424464f90df96041550c8cd6dadb2c517425ea818e1a7b18", + "tag": "fetchFromGitHub", + "owner": "siovan", + "repo": "emacs24-inkpot", + "sha256": "063v3a783si5fi8jrnysss60qma1c3whvyb48i10qbrrrx750cmv", "rev": "374a72794ebcb92bd7b50b5578d4c2ffa6049966" }, "recipe": { "sha256": "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120505.908", "deps": [] }, "pixie-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/johnwalker/pixie-mode.git", - "sha256": "a704c62dbfc02babde9ca45980e91e7e002ab11436570f7230736cb4f486aa8b", + "tag": "fetchFromGitHub", + "owner": "johnwalker", + "repo": "pixie-mode", + "sha256": "0nnvf2p593gn8sbyrvczyll030xgnkxn900a2hy7ia7xh0wmvddp", "rev": "f32d5d812c7b5b72d7ff7bad52b41035f9ef6e96" }, "recipe": { "sha256": "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150121.2324", "deps": [ @@ -37581,14 +39834,15 @@ }, "sourcekit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nathankot/company-sourcekit.git", - "sha256": "5ef13118b89257ac54da5dc9c45d76269a8bfdf2c8393684cadae9b7ea853c7b", + "tag": "fetchFromGitHub", + "owner": "nathankot", + "repo": "company-sourcekit", + "sha256": "1xzwalchl9lnq9848dlvhhbzyh1wkwbciz20d1iw0fsigj5g156c", "rev": "5e1adf8d201fd94a942b40983415db1b28b6eef1" }, "recipe": { "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.714", "deps": [ @@ -37599,42 +39853,45 @@ }, "gandalf-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ptrv/gandalf-theme-emacs.git", - "sha256": "3b157a72098054008153d71bd4c3c006e1bf6ffc1507925e15a3bc4563f0c36a", + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "gandalf-theme-emacs", + "sha256": "0sn3y1ilbg532mg941qmzipvzq86q31x86ypaf0h0m4015r7l59v", "rev": "4e472fc851431458537d458d09c1f5895e338536" }, "recipe": { "sha256": "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130809.447", "deps": [] }, "guru-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/guru-mode.git", - "sha256": "591ee650a45f760a8906bf3e9ee8e8a2969d639fa14ec9ba3ee360e2117a019a", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "guru-mode", + "sha256": "16h1g88y4q737sxcjkm1kxirv5m2x3l9wgmz0s4hlxjzli8fc7jr", "rev": "062a41794431d5e263f9f0e6ae1ec4a8d79980dd" }, "recipe": { "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151028.28", "deps": [] }, "msvc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yaruopooner/msvc.git", - "sha256": "03213023196270362c218b8028bd984b942730766f546b64ce2438498f00bb6c", + "tag": "fetchFromGitHub", + "owner": "yaruopooner", + "repo": "msvc", + "sha256": "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3", "rev": "e7a61fa5b98a129637f970ac6db9163e330b3d02" }, "recipe": { "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150530.351", "deps": [ @@ -37646,14 +39903,15 @@ }, "phi-search-migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/phi-search-migemo.git", - "sha256": "704658d8fd9ea2dc370bad805411d95aa86b8ddc5e37da71f2bd7d1ba79510cd", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-search-migemo", + "sha256": "1k8hjnkinzdxy9qxldsyvj6npa2sv48m905d1cvxr8lyzpc5hikh", "rev": "57623e4b67ee766cbb299da00a212f3ebf7d6fb0" }, "recipe": { "sha256": "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150116.706", "deps": [ @@ -37663,14 +39921,15 @@ }, "describe-number": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/netromdk/describe-number.git", - "sha256": "98792e2a86cdf48b5102e108451186a6bcb574a9af08cf06948471d9e0d2ca8d", + "tag": "fetchFromGitHub", + "owner": "netromdk", + "repo": "describe-number", + "sha256": "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq", "rev": "40618345a37831804b29589849a785ef5aa5ac24" }, "recipe": { "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.1955", "deps": [ @@ -37679,14 +39938,15 @@ }, "smex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/smex.git", - "sha256": "4654e7c87e8fb95d227b53254fbad534be72ee65c90418e56dca1f3ed89d2b77", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "smex", + "sha256": "0xrbkpc3w7yadpjih169cpp75gilsnx4y9akgci5vfcggv4ffm26", "rev": "55aaebe3d793c2c990b39a302eb26c184281c42c" }, "recipe": { "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151212.1609", "deps": [ @@ -37695,14 +39955,15 @@ }, "fancy-battery": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/fancy-battery.el.git", - "sha256": "8895443fa449b64087aee747a5bd6ae74877ba2d62ca963c817a77b2e29de420", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "fancy-battery.el", + "sha256": "0m7rjzl9js2gjfcaqp2n5pn5ykpqnv8qfv35l5m5kpfigsi9cbb0", "rev": "bcc2d7960ba207b5b4db96fe40f7d72670fdbb68" }, "recipe": { "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150101.604", "deps": [ @@ -37711,28 +39972,30 @@ }, "erc-track-score": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jd/erc-track-score.el.git", - "sha256": "a2835be9868e92ca7fa9edcf4d3648c4ac398b09c2c2a3ae878a807f4e3b2058", + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "erc-track-score.el", + "sha256": "0n107d77z04ahypa7hn2165kkb6490v4vkzdm5zwm4lfhvlmp0x2", "rev": "5b27531ea6b1a4c4b703b270dfa9128cb5bfdaa3" }, "recipe": { "sha256": "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130328.715", "deps": [] }, "wgrep-ack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", - "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" }, "recipe": { "sha256": "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141012.511", "deps": [ @@ -37741,14 +40004,15 @@ }, "nameframe-perspective": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/john2x/nameframe.git", - "sha256": "855f462993a0e81d7e903a249446b96e373801ac1c424b2f5a7e08adb3e7ef1f", + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "nameframe", + "sha256": "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5", "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" }, "recipe": { "sha256": "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.407", "deps": [ @@ -37758,14 +40022,15 @@ }, "nrepl-eval-sexp-fu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/samaaron/nrepl-eval-sexp-fu.git", - "sha256": "6cd78dee4be926b45d2b29ad0c1a11a46178953c0bcc48c952b4562cba0a92db", + "tag": "fetchFromGitHub", + "owner": "samaaron", + "repo": "nrepl-eval-sexp-fu", + "sha256": "1nwj1ax2qmmlab4lik0b7japhqd424d0rb995dfv89p99gp8vmvc", "rev": "3a24b7d4bca13e87c987a4ddd212da914ff59191" }, "recipe": { "sha256": "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140311.541", "deps": [ @@ -37776,14 +40041,15 @@ }, "org-trello": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/org-trello/org-trello.git", - "sha256": "d72c3558d0f69429802002f34352aea065217d9aee0a0fec04afdba42034906f", + "tag": "fetchFromGitHub", + "owner": "org-trello", + "repo": "org-trello", + "sha256": "0w0gw3varx8qrcfh3iwg6qqxavprm25bjv9ada34xqjdhsv537xc", "rev": "ae291d19752d86d01bb21cec6fb410c1eb9145d7" }, "recipe": { "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.936", "deps": [ @@ -37797,14 +40063,15 @@ }, "codesearch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/codesearch.el.git", - "sha256": "2ae930b98fb21a90138b9f979ff7fc6926fc84f4d81c01afc26165d09212af80", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "codesearch.el", + "sha256": "105g2a9d0rb1qaph276qyj2gq9k9zkvrz5wzic9r06mjiywk1s9a", "rev": "9a887f8d440ba98a72a7619dd744c0a9e3892919" }, "recipe": { "sha256": "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.754", "deps": [ @@ -37813,28 +40080,30 @@ }, "know-your-http-well": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/for-GET/know-your-http-well.git", - "sha256": "8fcadb6272122913db6a834fdf012dc5545373032989c7a126412f6b58e9ccf1", + "tag": "fetchFromGitHub", + "owner": "for-GET", + "repo": "know-your-http-well", + "sha256": "0hkjdmaab50dk07g1825w4x9dpavyqvkm7kp4fvgi3lk2j2a67q7", "rev": "139fe4e1c2d2a43f500366b8ed61d613330ec438" }, "recipe": { "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1331", "deps": [] }, "homebrew-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dunn/homebrew-mode.git", - "sha256": "2a2bff3881e8e61e0b5ffb26fad0d44943353e413652a1b2db5fa17577991f37", + "tag": "fetchFromGitHub", + "owner": "dunn", + "repo": "homebrew-mode", + "sha256": "1sj8pz48cilk8l6zn47fv1wkv833wrkvrf2mrmbdkvj3lqjrz0b3", "rev": "767b4934c02c7b4117b6bd6cae8224848bc49db2" }, "recipe": { "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.851", "deps": [ @@ -37845,14 +40114,15 @@ }, "erc-social-graph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vibhavp/erc-social-graph.git", - "sha256": "4a5ff1a6599d6b064639bc19f89e4dc5ed36fc35ebd3b4cfe4aa3c7218b96f4c", + "tag": "fetchFromGitHub", + "owner": "vibhavp", + "repo": "erc-social-graph", + "sha256": "0k3gp4c74g5awk7v9lzb6py3dvf59nggh6dw7530cswxb6kg2psa", "rev": "e6ef3416a1c5064054bf054d9f0c1c7bf54a9cd0" }, "recipe": { "sha256": "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.704", "deps": [] @@ -37866,21 +40136,22 @@ }, "recipe": { "sha256": "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151009.1045", "deps": [] }, "indent-guide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/indent-guide.git", - "sha256": "2739eaf3c2c863af9a62faf3d014b9bd2d02295009834ad8b6e6b0c95be2a4dc", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "indent-guide", + "sha256": "1p54w9dwkc76nvc4m0q9a0lh4bdxp4ad1wzscadayqy8qbrylf97", "rev": "0ef4813c538d5afba210681a8e81848b0927d421" }, "recipe": { "sha256": "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.917", "deps": [] @@ -37894,35 +40165,37 @@ }, "recipe": { "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151008.1022", "deps": [] }, "autodisass-java-bytecode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gbalats/autodisass-java-bytecode.git", - "sha256": "3f3637a5af9850efb764e3a02dae38b6eb66af0b49c6d9d3f7857c0089315f04", + "tag": "fetchFromGitHub", + "owner": "gbalats", + "repo": "autodisass-java-bytecode", + "sha256": "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s", "rev": "3d61dbe266133c950b39e880f78d142751c7dc4c" }, "recipe": { "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151005.1112", "deps": [] }, "projmake-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ericbmerritt/projmake-mode.git", - "sha256": "c4bc2f7c8a8de41c2b19242383e79955b7f88b3ee275f2e580c4d6d2f01060cd", + "tag": "fetchFromGitHub", + "owner": "ericbmerritt", + "repo": "projmake-mode", + "sha256": "1sxxy0s96sgm6i743qwjs0qjpsdr03gqc1cddvvpxbryh42vw9jn", "rev": "25e2f28ca2c528e42c6422735829fc77bab8b451" }, "recipe": { "sha256": "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150619.1620", "deps": [ @@ -37932,14 +40205,15 @@ }, "nm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tjim/nevermore.git", - "sha256": "53591bdf6757c95c174fa6fe8d6a19b900fdded4cf6a70088bd1ff197d956bea", + "tag": "fetchFromGitHub", + "owner": "tjim", + "repo": "nevermore", + "sha256": "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak", "rev": "5a3f29174b3a4b2b2e7a700a862f3b16a942687e" }, "recipe": { "sha256": "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151110.1310", "deps": [ @@ -37951,14 +40225,15 @@ }, "helm-bundle-show": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/emacs-helm-bundle-show.git", - "sha256": "b2b31cc89c0d2f6d88515e27704cc8a4616484e9aa1219f469d7849eec221df0", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-bundle-show", + "sha256": "1w0x4bn9x16pd7s1j4max6268qd4r16709sya646sbqdkk41rcxj", "rev": "6dffd602a4cc5d85eade7de3be99a22b246fc437" }, "recipe": { "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151207.241", "deps": [ @@ -37967,16 +40242,17 @@ }, "irony": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sarcasm/irony-mode.git", - "sha256": "78dc00c2fb295482e8c691a8812a8a5043b7ca74857415d1fb570859992f5ab4", - "rev": "8a4b1019a36c08a2158a83af3ec29dcae63f699f" + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "irony-mode", + "sha256": "00zb52qhyfzpn180x6m2ds8gfcxgcn4jiqb2kvdcrsmrv2w40fgc", + "rev": "eb4bf86f5984b399ccc000ad635d1de8915b179d" }, "recipe": { "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151130.1201", + "version": "20151217.1258", "deps": [ "cl-lib", "json" @@ -37984,42 +40260,60 @@ }, "elein": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remvee/elein.git", - "sha256": "fcbaf920371415f5c65fd60d12035c0554de42a05ea59c03e505febc538559c6", + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "elein", + "sha256": "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw", "rev": "d4c0c0491dbb7c90e953d7a16172107c37103605" }, "recipe": { "sha256": "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120120.516", "deps": [] }, "ruby-interpolation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoc/ruby-interpolation.el.git", - "sha256": "05e3cbd3f06c0c1d9eb480613cdcee5bbe9322d40f6fad43aed37213bb2c4ee4", + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "ruby-interpolation.el", + "sha256": "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5", "rev": "1978e337601222cedf00e117bf4b5cac15d1f203" }, "recipe": { "sha256": "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131112.1052", "deps": [] }, + "elisp-sandbox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joelmccracken", + "repo": "elisp-sandbox", + "sha256": "1pwx0cksgf9qyd6nl1540jmp3p0adgz2sk38r5s8gbli3x109hy3", + "rev": "ddd669266ca36d7e4ebba73eb1ab42523787e042" + }, + "recipe": { + "sha256": "1bazm1cf9ghh9b7jzqqgyfcalnrfg7vmxqbn4fiy2c76gbzlr2bp", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20131116.1242", + "deps": [] + }, "swiper-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/swiper-helm.git", - "sha256": "4b28889617d39430b9a91134a149233dc39164b5453484701de9915380de29bb", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper-helm", + "sha256": "1fr9vs0574g93mq88d25nmj93hrx4d4s2d0im6wk156k2yb8ha2b", "rev": "57012ab626486fcb3dfba0ee6720b0625e489b8c" }, "recipe": { "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.530", "deps": [ @@ -38030,14 +40324,15 @@ }, "cal-china-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xwl/cal-china-x.git", - "sha256": "9abf50b719fca3d93ca280ec58f6ee0c1851a888df303646814e7562d908290d", + "tag": "fetchFromGitHub", + "owner": "xwl", + "repo": "cal-china-x", + "sha256": "039913cn4xafh533cc6zi2l5260cxvv5iv40l8ydk8zw36vm1gws", "rev": "b6186a729899ae141c546dd3efde461160d8b172" }, "recipe": { "sha256": "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.1547", "deps": [ @@ -38046,28 +40341,30 @@ }, "chinese-wbim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zilongshanren/chinese-wbim.git", - "sha256": "8f5f05647c2cb66d1f535954f5c0c08bf57c3991c7c9de30f60fe5999b79a133", + "tag": "fetchFromGitHub", + "owner": "zilongshanren", + "repo": "chinese-wbim", + "sha256": "0cx1g6drkr8gyqqdxjf7j4wprxcbq30gam2racgnvdicgij0apwg", "rev": "57ff61ff3895d77335709d24b40cefc4d10b0095" }, "recipe": { "sha256": "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150623.2250", "deps": [] }, "n4js": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tmtxt/n4js.el.git", - "sha256": "97a194366ffbdf39af380d3f9998461607d7dee90d9369471cbdffc02460a6dd", + "tag": "fetchFromGitHub", + "owner": "tmtxt", + "repo": "n4js.el", + "sha256": "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp", "rev": "3991ed8975151d5e8d568e952362df810f7ffab7" }, "recipe": { "sha256": "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150713.2131", "deps": [ @@ -38077,28 +40374,30 @@ }, "emoji-display": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ikazuhiro/emoji-display.git", - "sha256": "49085a0601b8dfefd73e48692df6fb36269f993e5dd3bab7cfa848b234c1046a", + "tag": "fetchFromGitHub", + "owner": "ikazuhiro", + "repo": "emoji-display", + "sha256": "0sh4q4sb4j58ryvvmlsx7scry9inzgv2ssa87vbyzpxq0435l229", "rev": "bb4217f6400151a9cfa6d4524b8427f01feb5193" }, "recipe": { "sha256": "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140117.413", "deps": [] }, "e2wm-sww": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-sww.git", - "sha256": "af8ccce28cf07e4a8d641a50b8ba1555f6d6a5a5ce9e956e6281f9c7781de457", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-sww", + "sha256": "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g", "rev": "1063f9854bd34db5ac771cd1036cecc89834729d" }, "recipe": { "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140524.358", "deps": [ @@ -38107,14 +40406,15 @@ }, "pomodoro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/baudtack/pomodoro.el.git", - "sha256": "3fec04ad6e3f28afaeef31334483673cfca8b63b57fcb3f6db260cc4af0793b6", + "tag": "fetchFromGitHub", + "owner": "baudtack", + "repo": "pomodoro.el", + "sha256": "1dlk0ypw8316vgvb7z2p7fvaiz1wcy1l8crixypaya1zdsnh9v1z", "rev": "4a299b8f5e6623010224dcb3e524ff288c6a082c" }, "recipe": { "sha256": "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150716.1246", "deps": [] @@ -38128,21 +40428,22 @@ }, "recipe": { "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150623.1234", "deps": [] }, "syntactic-sugar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/syntactic-sugar.git", - "sha256": "54019635be28de99a32aa8c5f3ea837c101f5b1226ac96eb7f1826568e0b473b", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "syntactic-sugar", + "sha256": "0zi11540wwcl93xcgd2yf6b72zv01zkaqbf1jfbksg82k9038m2d", "rev": "7ddc4502c831abe1c4ad4c7d1ca628a2c9e13968" }, "recipe": { "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140508.1541", "deps": [] @@ -38155,21 +40456,22 @@ }, "recipe": { "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140417.2134", "deps": [] }, "ido-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/katspaugh/ido-at-point.git", - "sha256": "f7e6544b19bfb654c7bad5ffd3cc3c3a2ae227d3410dbc2f93b1d68be43e31ae", + "tag": "fetchFromGitHub", + "owner": "katspaugh", + "repo": "ido-at-point", + "sha256": "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp", "rev": "e5907bbe8a3d148d07698b76bd994dc3076e16ee" }, "recipe": { "sha256": "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.257", "deps": [ @@ -38178,28 +40480,30 @@ }, "smartrep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/smartrep.el.git", - "sha256": "26126f625e696cc7ad900f1b233cf82afc5cf906ff5456318c1d0fc451c45cea", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "smartrep.el", + "sha256": "1sjwqi8w83qxihqmcm7z0vwmrz1az0y266qgj2nwfv39bri6y4i6", "rev": "f0ff5a6d7b8603603598ae3045c98b011e58d86e" }, "recipe": { "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.2130", "deps": [] }, "prodigy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/prodigy.el.git", - "sha256": "e8f9aa96f7eb852872f687f70676cfdbba019ba37d80bc4bceaf751e311eed67", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "prodigy.el", + "sha256": "18j0jwp8z4ff7xfiijyh09cvb14mbjfaygin2qjp6bxgx3c1mpin", "rev": "1f3b5a3309122bae01150738c3d8da910ffbee71" }, "recipe": { "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141109.452", "deps": [ @@ -38211,72 +40515,77 @@ }, "toggle-quotes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/toctan/toggle-quotes.el.git", - "sha256": "6f9ea8c72f843aec3da6d656f724c4668ee201daf4269f602a7725fb1fae34f0", + "tag": "fetchFromGitHub", + "owner": "toctan", + "repo": "toggle-quotes.el", + "sha256": "1w1lmqgzn9bp59h9y9plv80y53k6qhjgfmnnlqyyqfl45z3si7kg", "rev": "33abc221d6887f0518337851318065cd86c34b03" }, "recipe": { "sha256": "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140710.426", "deps": [] }, "scss-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antonj/scss-mode.git", - "sha256": "0d099c4937f65aaed5632f4a1a025f99d909b13fedc86a9655ff3773bba70b20", + "tag": "fetchFromGitHub", + "owner": "antonj", + "repo": "scss-mode", + "sha256": "113pi7nsaksaacy74ngbvrvr6qcl7199xy662nj58bz5307yi9q0", "rev": "b010d134f499c4b4ad33fe8a669a81e9a531b0b2" }, "recipe": { "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150107.1600", "deps": [] }, "unipoint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/apgwoz/unipoint.git", - "sha256": "00ee1616c866d51f051d85382356e8712bdda1f1a7c402036122ffa0fdcf89f2", + "tag": "fetchFromGitHub", + "owner": "apgwoz", + "repo": "unipoint", + "sha256": "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0", "rev": "5da04aebac35a5c9e1d8704f2231808d42f4b36a" }, "recipe": { "sha256": "1nym2wlr50wk62cbagq1qyjczzf56nb6i9dfzcwikdck8p4p2dr7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140113.1624", "deps": [] }, "buttercup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/emacs-buttercup.git", - "sha256": "33cf135dcbf36e8afd56ba30b51973a68314fa18f7b78e3c230e16b1d4e5160c", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "emacs-buttercup", + "sha256": "03zmxfql9hb31n2qf3vs4kv69kffrazlmzji8hkcf86i2wa4hqrf", "rev": "14718c0087b7b2b5e0ff8a1a377a9e4d9f310c60" }, "recipe": { "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150927.506", "deps": [] }, "jdee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jdee-emacs/jdee.git", - "sha256": "00cbd306417e79c1421d36296dfe000bcfa40e7522ef67e5b4ba0a148d9d28f2", - "rev": "0fde60adf8ca805fec23e82d393bd39d0b45598d" + "tag": "fetchFromGitHub", + "owner": "jdee-emacs", + "repo": "jdee", + "sha256": "1p8dzsxlm3rd425ahkjdpv1gbxiw8bg22lakgq8lfdv4mxi389ap", + "rev": "f3d1204c448d5406c3c51c01518afcf914d8f1fa" }, "recipe": { "sha256": "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151005.1437", + "version": "20151218.1443", "deps": [ "emacs" ] @@ -38290,21 +40599,22 @@ }, "recipe": { "sha256": "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140212.502", "deps": [] }, "display-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/emacs-display-theme.git", - "sha256": "4a7bf5dc48af1930a52b9ed036840b3bdf15eea599bdf998bbe216feee02a664", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "emacs-display-theme", + "sha256": "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa", "rev": "b180b3be7a74ae4799a14e7e4bc2fe10e3ff7a15" }, "recipe": { "sha256": "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140115.956", "deps": [ @@ -38319,21 +40629,22 @@ }, "recipe": { "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] }, "scratch-pop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/scratch-pop.git", - "sha256": "217712d2ed13e6aaad7aca5cb5e8386d18b146cfbeafdf990479201d767475fb", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "scratch-pop", + "sha256": "1yvmfiv1s83r0jcxzbxyrx3b263d73lbap6agansmrhkxp914xr1", "rev": "2c9648a669ce8e3a9e35e8e1e3c808531d20c549" }, "recipe": { "sha256": "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150820.339", "deps": [ @@ -38342,14 +40653,15 @@ }, "erc-image": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kidd/erc-image.el.git", - "sha256": "2e21234a666016b185ade6c53a24e9d9a19b51a3bcc40c2c9890f80e451f210f", + "tag": "fetchFromGitHub", + "owner": "kidd", + "repo": "erc-image.el", + "sha256": "03r13x2hxy4hk0n0ri5wld8rp8frx4j3mig6mn2v25k0cr52689f", "rev": "270a60706e3e0669350bb7aaea465570ef5074cf" }, "recipe": { "sha256": "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.514", "deps": [] @@ -38362,21 +40674,22 @@ }, "recipe": { "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150823.1911", "deps": [] }, "mysql2sqlite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/echosa/emacs-mysql2sqlite.git", - "sha256": "31407a4da86f248cbb1b74cd3adca57840391ce750e45e7aff1e0a816102a860", + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacs-mysql2sqlite", + "sha256": "0q5809hq22hyzxx5xr2hwwf3jh3qlpf3mkbl3fxqq93gm16plh1i", "rev": "07415c5fcd895ebccf1b774d0eab175f2700652f" }, "recipe": { "sha256": "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.1539", "deps": [] @@ -38389,21 +40702,22 @@ }, "recipe": { "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150801.1120", "deps": [] }, "emms-player-mpv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dochang/emms-player-mpv.git", - "sha256": "a3e7b955d60dd0b71e08dfe538148eb7717e6317a0fa17c74eed43ca6537cf19", + "tag": "fetchFromGitHub", + "owner": "dochang", + "repo": "emms-player-mpv", + "sha256": "1yy4dmjp53l2df5qix31g4vizhv80wm88vjqq6qqa9p822732n0m", "rev": "a1be1d266530ede3780dd69a7243d898f1016127" }, "recipe": { "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.102", "deps": [ @@ -38412,14 +40726,15 @@ }, "decl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/preetpalS/decl.el.git", - "sha256": "017f4ac9a942df293dcea653b060de37ef4b06785a370f1e21e8dbf95fd355da", + "tag": "fetchFromGitHub", + "owner": "preetpalS", + "repo": "decl.el", + "sha256": "1njmsdgzknz844g0ydssg034pvrpvrhb0lx6rqyjkps2m74llzq1", "rev": "75cca6bb1203f4d00cf10f7c4e87400f7c456e75" }, "recipe": { "sha256": "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151204.2249", "deps": [ @@ -38430,14 +40745,15 @@ }, "flatland-black-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-flatland-black-theme.git", - "sha256": "419f17824d1220fbe28c7c4f4c4d98b03376ba2da269fc78eb732e4eb0c96645", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-flatland-black-theme", + "sha256": "0ib6r6q4wbkkxdwgqsd25nx7ccxhk16lqkvwikign80j9n11g7s1", "rev": "75fc4f1815feb23563a60477c02d70326b45c59e" }, "recipe": { "sha256": "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.30", "deps": [ @@ -38446,14 +40762,15 @@ }, "kibit-helper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brunchboy/kibit-helper.git", - "sha256": "d9122972365cb1f84ae0a78194f891e706e6948a8b3c17eca89b55b7a9585068", + "tag": "fetchFromGitHub", + "owner": "brunchboy", + "repo": "kibit-helper", + "sha256": "0s2hb2lvfmcvm3n1fg4biaafc1p7j7w990d7w15gicaw6rr2j4nr", "rev": "16bdfff785ee05d8e74a5780f6808506d990cef7" }, "recipe": { "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.1033", "deps": [ @@ -38463,14 +40780,15 @@ }, "recompile-on-save": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/maio/recompile-on-save.el.git", - "sha256": "31d350b682b235ff5279a83b62b136df764bdac5e302bfe241494f67e9426272", + "tag": "fetchFromGitHub", + "owner": "maio", + "repo": "recompile-on-save.el", + "sha256": "0wk28blnfks987iby0p3qpd4nxnz6sqn4fx8g59gyddjhav51lri", "rev": "92e11446869d878803d4f3dec5d2101380c12bb2" }, "recipe": { "sha256": "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.846", "deps": [ @@ -38480,14 +40798,15 @@ }, "slime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/slime/slime.git", - "sha256": "c2a4ee139ede4a3fed4f2f66fe38cce4459efa9987cb5c4be03057c6ba4ff093", + "tag": "fetchFromGitHub", + "owner": "slime", + "repo": "slime", + "sha256": "18iz4cn209xri420hrsl7dmaf0mqr87rc870kwn63pddrqffzqa8", "rev": "137a6bf990c5a9db72716ee15aa2bd86b77ba0cb" }, "recipe": { "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.1342", "deps": [ @@ -38496,44 +40815,61 @@ }, "audio-notes-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/audio-notes-mode.git", - "sha256": "950dac86137c7460b4e4bcce5d9b3fe6089002bb3b1107e4a7bbfcc5e89ae960", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "audio-notes-mode", + "sha256": "0q79kblcbz5vlzj0f49vpc1902767ydmvkmwwjs60x3w2f3aq3cm", "rev": "2158b2e8d20df3184bbe273a7fd5aa693e98baa9" }, "recipe": { "sha256": "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140204.1354", "deps": [] }, "define-word": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/define-word.git", - "sha256": "0df72fb7ff8224867a3ebf29b6e1393bdf40e4f411295bcffd0046817d10260a", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "define-word", + "sha256": "02i621yq2ih0zp7mna8iykj41prv77hvcadz7rx8c942zyvjzxqd", "rev": "64d98b7748686c51261fe6e8d42078c6284feb13" }, "recipe": { "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150709.1423", "deps": [ "emacs" ] }, + "zeitgeist": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:zeitgeist-datasources", + "sha256": "0f80fxh0y9lfa08fnic7ln0jn8vngfbiygy6sizdmrcxz67559vc", + "rev": "181" + }, + "recipe": { + "sha256": "0gzmiwxmzcrl5mf0s7vs09p2wl7slq8xbl6ynl76iwzwjxjizahk", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20131228.1209", + "deps": [] + }, "ecukes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ecukes/ecukes.git", - "sha256": "1136d15d6b498e4541bf8bd806dece1ffa737b65d08ef0b462e8059eea112a7f", + "tag": "fetchFromGitHub", + "owner": "ecukes", + "repo": "ecukes", + "sha256": "0h6vh719ai0cxyja6wpfi6m76d42vskj56wg666j0h6j0qw6h3i2", "rev": "7dad2da09da33d8540f25bf7bb7dd62900669b80" }, "recipe": { "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150717.848", "deps": [ @@ -38547,42 +40883,45 @@ }, "shell-switcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/shell-switcher.git", - "sha256": "8b6b97c3572256493ee03e2fbba3da156562eb55cff7f0d4fab9018c39f533d9", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "shell-switcher", + "sha256": "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria", "rev": "2c5575ae859a82041a4bacd1793b844bfc24c34f" }, "recipe": { "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151011.815", "deps": [] }, "dash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/dash.el.git", - "sha256": "2caeefc9b4ee58818efc2a76d3e17c39f4a2b60dbc023cf343ac376067ddff91", - "rev": "6484fb5e77140d7028ac2a96f356385b40d81197" + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "dash.el", + "sha256": "1g7vrfhafmkqwdpfllfiwirl4pi437pyaws38jsd8laxmsa4m4wb", + "rev": "8a46d3c7c126d3e979f7f9b36867a413694cd8df" }, "recipe": { "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151021.313", + "version": "20151216.1515", "deps": [] }, "haml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/haml-mode.git", - "sha256": "767f2692968ee2b2f20d20722d1ea342e825a67e240677fe85a564d4bfaa5f23", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "haml-mode", + "sha256": "0fmcm4pcivigz9xhf7z9wsxz9pg1yfx9qv8na2dxj426bibk0a6w", "rev": "7717db6fa4a90d618b4a5e3fef2ac1d24ce39be3" }, "recipe": { "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.2211", "deps": [ @@ -38591,14 +40930,15 @@ }, "sentence-navigation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/noctuid/emacs-sentence-navigation.git", - "sha256": "66e2dbd8c2d31bff2ab60e6a3677684872a72ac55eb59b7899bb59a844d87146", + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "emacs-sentence-navigation", + "sha256": "0ikiv12ahndvk5w9pdayqlmafwj8d1vkcshfnqmgy6ykqbcdpqk6", "rev": "8b6bf8af180c95f516bda9285da3fe940a2ab740" }, "recipe": { "sha256": "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.2346", "deps": [ @@ -38608,14 +40948,15 @@ }, "helm-github-stars": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sliim/helm-github-stars.git", - "sha256": "2f40b37d4bb7865819714459e72c10ab9165872f984b9c8c018fdce62daf85dc", + "tag": "fetchFromGitHub", + "owner": "Sliim", + "repo": "helm-github-stars", + "sha256": "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn", "rev": "9211be3fbb65ca8819e0d1a54524ed8abbfaa4fa" }, "recipe": { "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150625.1723", "deps": [ @@ -38625,14 +40966,15 @@ }, "elmine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoc/elmine.git", - "sha256": "1341bd6eb23ce3a8c535a5f6b9c0960e85aa00f7062033c1684b79c33ef1c390", + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "elmine", + "sha256": "1463y4zc6yabd30k6806yw0am18fjv0bkxm56p2siqrwn9pbsh8k", "rev": "60639f46a5f45653f490cdd30732beb2dca47ada" }, "recipe": { "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.623", "deps": [ @@ -38641,14 +40983,15 @@ }, "ace-jump-zap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/ace-jump-zap.git", - "sha256": "043e5268dc95a3b53eee348e9cbb8b024d0b0a672ec12716a124e540325d197c", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "ace-jump-zap", + "sha256": "0z0rblr41r94l4b2gh9fcw50nk82ifxrr3ilxqzbb8wmvil54gh4", "rev": "c60af83a857955b68c568c274a3c80cbe93f3150" }, "recipe": { "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150330.1542", "deps": [ @@ -38664,7 +41007,7 @@ }, "recipe": { "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20080905.54", "deps": [] @@ -38678,7 +41021,7 @@ }, "recipe": { "sha256": "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130418.1439", "deps": [ @@ -38687,58 +41030,62 @@ }, "pyfmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aheaume/pyfmt.el.git", - "sha256": "a7d44d913ff67bcc1c7fc347527beefad4146aec85ca89d5ba78c6195aab35df", + "tag": "fetchFromGitHub", + "owner": "aheaume", + "repo": "pyfmt.el", + "sha256": "1rp8zchvclh29rl9a1i82pcqghnhpaqnppaydxc2qx23y9pdgz9i", "rev": "cb92be2cf0804cc53142dc5edb36f8e0ef5cec32" }, "recipe": { "sha256": "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150521.1556", "deps": [] }, "ruby-dev": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Mon-Ouie/ruby-dev.el.git", - "sha256": "a193aa397540765bb2847806ccdd1167e75d59a8b257a4a8445c6aee5afdc5b3", + "tag": "fetchFromGitHub", + "owner": "Mon-Ouie", + "repo": "ruby-dev.el", + "sha256": "1cy5zmdfwsjw8jla8mxjm1cmvrv727fwq1kqhjr5nxj0flwsm4x1", "rev": "3a6f6e489697916dd554852492bd325879be2e44" }, "recipe": { "sha256": "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130811.351", "deps": [] }, "flappymacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/taksatou/flappymacs.git", - "sha256": "a51e0deaa94e804f7b8fd8e84237068b68a59155d79950bfc620a80910351b1e", + "tag": "fetchFromGitHub", + "owner": "taksatou", + "repo": "flappymacs", + "sha256": "07hv6l80ka10qszm16fpan8sas4b0qvl5s6qixxlz02fm7m0s7m5", "rev": "bbc69405f62e1bc488533709d4ab0b5eba919dbd" }, "recipe": { "sha256": "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140715.1101", "deps": [] }, "helm-company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/manuel-uberti/helm-company.git", - "sha256": "dd7f5d0872a74755fc65fa862bfa91fa719ffefb595b02c32993422ef6f26c39", - "rev": "4feea2d9df12a82ffc36ac63ec512f0cb95596ad" + "tag": "fetchFromGitHub", + "owner": "manuel-uberti", + "repo": "helm-company", + "sha256": "189qmc6fdj5a01a7w45r0qpn9qjf2q9g83qic9sgnrccc841zpyg", + "rev": "13f87befb1a427295eeeeb49f0c2e4847bc81e10" }, "recipe": { "sha256": "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20150917.608", + "version": "20151216.209", "deps": [ "company", "helm" @@ -38746,14 +41093,15 @@ }, "smeargle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-smeargle.git", - "sha256": "dd8c124aaeb67ee8b6e67c4cab08a428e94ebb5a46f17cf67a55bac7f46289e3", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-smeargle", + "sha256": "1smv91ggvaw37597ilvhra8cnj4p71n6v5pfazii8k85kvs6x460", "rev": "67466d5214a681430db8cb59a2a1bca771ff0024" }, "recipe": { "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.42", "deps": [ @@ -38763,28 +41111,30 @@ }, "table": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/byplayer/table.el.git", - "sha256": "ac3e02b5a3d40a2316a3b58b39dc0eee7fc202cdbdd830d9dfdea7cb6bf05a19", + "tag": "fetchFromGitHub", + "owner": "byplayer", + "repo": "table.el", + "sha256": "06asy1mwp9yyvzck1n5xrl1c4zzf1vf3k2xmlcb262nllfsh4gmc", "rev": "d3718985d1103490c140690ead37d65b0e427c63" }, "recipe": { "sha256": "0jayhjvs5pkacw8r7z7fy0i732a1zpkcmirkzjpx3wqk0bs5fga6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140722.15", "deps": [] }, "epc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-epc.git", - "sha256": "0e10ca8ad594123f926a961c7084c9afecc23ad79b32319712e934f8076f51b6", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-epc", + "sha256": "1ayhknqv1wmar2j2r4n7nqcp69i7k222qx524x4wv61ys324d004", "rev": "dbae585622fa7b556945cc7475f354976d26b065" }, "recipe": { "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140610.34", "deps": [ @@ -38794,28 +41144,30 @@ }, "suomalainen-kalenteri": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tlikonen/suomalainen-kalenteri.git", - "sha256": "d6aac951f59bcb326e8178fa2f8c4360c25f95276aedb4f1400a31cfc43dc3ac", + "tag": "fetchFromGitHub", + "owner": "tlikonen", + "repo": "suomalainen-kalenteri", + "sha256": "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann", "rev": "b7991cb35624ebc04a89bbe759d40f186c9c097e" }, "recipe": { "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151129.504", "deps": [] }, "init-loader": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/init-loader.git", - "sha256": "20fdbb2f17e8cad103436513f4d848436e6790a43ab6acd2cfc53e984304d69e", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "init-loader", + "sha256": "1zykh80k2sy0as1rn7qaa2hyvkagcvzzmxik4jpb0apw0ha1bf6s", "rev": "1f28a0b801cbb08aa9b47fd15ceab243a2bc064c" }, "recipe": { "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141031.133", "deps": [] @@ -38828,35 +41180,37 @@ }, "recipe": { "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1605", "deps": [] }, "session": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/session.git", - "sha256": "3b4dab2c1569f54f111cb995ae7f09bce069b9adffcf8916c2b39dbf9428e96a", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "session", + "sha256": "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v", "rev": "19ea0806873daac3539a4b956e15655e99e3dd6c" }, "recipe": { "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120510.1900", "deps": [] }, "bundler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tobiassvn/bundler.el.git", - "sha256": "689a70113ac361be29aea093344cf19433826a6a0d8fe82f3207f7800b8c5f29", + "tag": "fetchFromGitHub", + "owner": "tobiassvn", + "repo": "bundler.el", + "sha256": "0cldbyc7qsyxszzfbdcw8n8a15hvj343acsjir29n6d9nnpmvjgp", "rev": "9be0c4601a4d1a35de22f818637ce029830272d3" }, "recipe": { "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.912", "deps": [ @@ -38866,14 +41220,15 @@ }, "undohist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/undohist-el.git", - "sha256": "9d274e64fba8b57510a1888c19269637d09b4e2f05a2557a58c74f4304570db0", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "undohist-el", + "sha256": "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx", "rev": "d2239a5f736724ceb9e3b6bcaa86f4064805cda0" }, "recipe": { "sha256": "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150315.742", "deps": [ @@ -38882,56 +41237,60 @@ }, "jsfmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brettlangdon/jsfmt.el.git", - "sha256": "0c523fd245c380531d767cb9d6e2f70dd50ad6f7695f64c1845ad14159e92f41", + "tag": "fetchFromGitHub", + "owner": "brettlangdon", + "repo": "jsfmt.el", + "sha256": "0h9gx5cl3lashk0n8pv9yzb0mm8dyziddfbwfqfm70638p93ylhc", "rev": "68109120f553fbc651fafb6fc35ed83c3e79f8a6" }, "recipe": { "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150727.1725", "deps": [] }, "rdp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/rdp.git", - "sha256": "0d7bf1cfb82bb188863c39f8556fd58a3eac59924e9948b29acc56f8e0328922", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "rdp", + "sha256": "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd", "rev": "b620192afada04aec33b38cc130fef0765f41ca9" }, "recipe": { "sha256": "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120928.2054", "deps": [] }, "go-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dominikh/go-mode.el.git", - "sha256": "b2443f2f9a7a928c6adb19464c7f350cc7237447df20b82bb3404206f98651d0", + "tag": "fetchFromGitHub", + "owner": "dominikh", + "repo": "go-mode.el", + "sha256": "14h5fgh4bksll4h61pkximydddpww1pq7kr9j2f8akr06gmwcdfl", "rev": "15d227ae1cf8d55ae4395108bccc8ad6ca7d1eba" }, "recipe": { "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1129", "deps": [] }, "xtest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/promethial/xtest.git", - "sha256": "be4328cc0beb6097793212bb41ebb68f65f991a1a8d1a9e7d1afffff8e46b626", + "tag": "fetchFromGitHub", + "owner": "promethial", + "repo": "xtest", + "sha256": "09mn8s7gzzxgs7kskld8l68zjrcgnvml3fqj69wrfq7b1g62hhxy", "rev": "2c2bdf32667506dd9ddf6eb311832add616bdf1c" }, "recipe": { "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141214.1106", "deps": [ @@ -38940,14 +41299,15 @@ }, "noccur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/noccur.el.git", - "sha256": "b455a68e120488e1d22c66c4fbb69747ebf2357467cca252493a46e39caa9214", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "noccur.el", + "sha256": "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7", "rev": "6cc02ce07178a61ae38a849f80472c01969272bc" }, "recipe": { "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150514.1620", "deps": [] @@ -38960,37 +41320,39 @@ }, "recipe": { "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140901.1335", "deps": [] }, "lispyscript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/lispyscript-mode.git", - "sha256": "8987ff24f5bdf25def7ff14ea831279bc94dcc481e0614243d3ed4fac5e85538", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "lispyscript-mode", + "sha256": "0n0mk01h9c3f24gzpws5xf6syrdwkq4kzs9mgwl74x9l0x904rgf", "rev": "d0e67ee734919d7ff14c72712e909149cb9604bd" }, "recipe": { "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130828.919", "deps": [] }, "pacmacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/codingteam/pacmacs.el.git", - "sha256": "0da75b7f472f8fd23eac727a0cbc643e5a3fe41915fb6573e2760e7abef60f91", - "rev": "c7a3a4cbacc7c6961fcfd7b35e3ff4c07d14a126" + "tag": "fetchFromGitHub", + "owner": "codingteam", + "repo": "pacmacs.el", + "sha256": "07w3w3ms18kas637z6n86nnd9xqi73c6cbrmni99jbwqq7jhgi29", + "rev": "98816141d5d47db8d5c9c04aaf1c9a30a045a88f" }, "recipe": { "sha256": "13pgxwwigb0h709xrs2h1l957n4vcjz59qkrs8aa12czcg291599", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151214.1315", + "version": "20151217.803", "deps": [ "cl-lib", "dash", @@ -39008,21 +41370,22 @@ }, "recipe": { "sha256": "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.1741", "deps": [] }, "ac-anaconda": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/ac-anaconda.git", - "sha256": "6ff3ad3795ee08f407fab18e737e4244d8789c58f6203e257c9e48d3b5e5ffe9", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "ac-anaconda", + "sha256": "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44", "rev": "d0dec5c026235f65f9fd6594540df8886ed1b6a8" }, "recipe": { "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150912.308", "deps": [ @@ -39039,35 +41402,37 @@ }, "recipe": { "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131113.2018", "deps": [] }, "cljsbuild-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kototama/cljsbuild-mode.git", - "sha256": "849c0edb0a6e1e13b46bfd83306be73a222dc69b268246efbb4cc2d2fa9fad10", + "tag": "fetchFromGitHub", + "owner": "kototama", + "repo": "cljsbuild-mode", + "sha256": "1cdim8fancrsrm9avzv4m2v384i7n4632nibyfnxkhq03bj00j1z", "rev": "7edfc199b5daf972f6b2110d13a96e0bd974cd65" }, "recipe": { "sha256": "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140619.326", "deps": [] }, "magit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v", "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1708", "deps": [ @@ -39081,44 +41446,47 @@ }, "sly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/sly.git", - "sha256": "fd46ff9f20f2389532c2054134d2a37572ee995479632e78d5c281d905626356", - "rev": "341fde694b11b72678fd991beaaf4ebd2bface69" + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly", + "sha256": "0qmayk1691wpa8bczxaarp17q3g1rpkkh12v90814h9kjnd05wx6", + "rev": "247c4125ec42e75cbcf0e680bb3c975302ad266e" }, "recipe": { "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.854", + "version": "20151217.522", "deps": [ "emacs" ] }, "delim-kill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thomas11/delim-kill.git", - "sha256": "ce4b3ee90a8e35e3168e7256dd2b4e7be3e5020544c197bf1a47308b9a064219", + "tag": "fetchFromGitHub", + "owner": "thomas11", + "repo": "delim-kill", + "sha256": "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf", "rev": "1dbe47344f2d2cbc8c54beedf0cf0bf10fd203c1" }, "recipe": { "sha256": "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100517.120", "deps": [] }, "magit-stgit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-stgit.git", - "sha256": "cb5bc9a005e41bcf3ddef010343685361cf6d01d43ea5a4195c8ed94337a68d6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-stgit", + "sha256": "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb", "rev": "d1793345a8d32b2c509077d634ca73148a68de4b" }, "recipe": { "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151120.1744", "deps": [ @@ -39128,28 +41496,30 @@ }, "shelltest-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rtrn/shelltest-mode.git", - "sha256": "d9e8c2a12033bb2635f527ccb819c4cfca834232fa571adf5026c505ffe142db", + "tag": "fetchFromGitHub", + "owner": "rtrn", + "repo": "shelltest-mode", + "sha256": "1ns2w7zhbi96a3gilmzs69187jngqhcvik17ylsjdfrk42hw5s6r", "rev": "e2513832ce6b994631335be299736cabe291d0f7" }, "recipe": { "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141227.448", "deps": [] }, "maker-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fommil/maker-mode.git", - "sha256": "b0ae8995d993581ff3be331ed7abcc333fdf34f1ed4d3d41bc50f2ae7a3eee8c", + "tag": "fetchFromGitHub", + "owner": "fommil", + "repo": "maker-mode", + "sha256": "0w3kar52yf8clf9801c4jzfrixi10clc8fs8ni2d4pzhdwwca2zw", "rev": "335c43b08eff589040129dae1ea13c88793b069e" }, "recipe": { "sha256": "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150116.554", "deps": [ @@ -39159,14 +41529,15 @@ }, "tagedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/tagedit.git", - "sha256": "9a332974306aeb0f5d31231bee316c098899a47a576de46c9a7d01b39cb8f9c8", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "tagedit", + "sha256": "00hjc6ax4659ww6vygpzzsb3zzr2ddz2z33mkp5j6hmj2s4g2viy", "rev": "458ff5bb23aa4816a2d5ff5d66c4e95996b4a4e1" }, "recipe": { "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150727.424", "deps": [ @@ -39176,28 +41547,30 @@ }, "lorem-ipsum": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jschaf/emacs-lorem-ipsum.git", - "sha256": "545958594376b8adc9b814134c73a5f7503ea0582fe4f25eee64457937ff3da7", + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "emacs-lorem-ipsum", + "sha256": "0grzl4kqpc1x6569yfh9xdzzbgmhcskxwk6f7scjpl32acr88cmx", "rev": "893a27505734a1497b79bc26e0736a78221b35d9" }, "recipe": { "sha256": "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140911.1608", "deps": [] }, "db": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nicferrier/emacs-db.git", - "sha256": "b3f82ca0fd211476470d1d91d03617c2fb02255ac16012b127a3a530f224db6b", + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-db", + "sha256": "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k", "rev": "b3a423fb8e72f9013009cbe033d654df2ce31438" }, "recipe": { "sha256": "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140421.1611", "deps": [ @@ -39206,30 +41579,54 @@ }, "tinysegmenter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/tinysegmenter.el.git", - "sha256": "12b50fdd8a7a070b1e5132a2ab2e68c1ec66f42b72cd2aaaae0f1a91abb10cd9", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "tinysegmenter.el", + "sha256": "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j", "rev": "872134704bd25c13a4c59552433da4c6881b5230" }, "recipe": { "sha256": "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141124.413", "deps": [ "cl-lib" ] }, + "org-ref": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jkitchin", + "repo": "org-ref", + "sha256": "0clz78kcvibiic3igy0dik5bv0jvmngr7jnq2g93lq0dbxcy1d3f", + "rev": "d7bee0742f4f2807e5a464120cac4ae4d7768aff" + }, + "recipe": { + "sha256": "0sxhq603zq55lfq2z7jdfka7d5jphgnn2xfhw8n6ihzynx0lsjzx", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "20151218.503", + "deps": [ + "dash", + "emacs", + "helm", + "helm-bibtex", + "hydra", + "key-chord" + ] + }, "flymake-jshint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/flymake-jshint.el.git", - "sha256": "6a6cb6bbfa90056936c4f00ef593f427e140944be1204f9df0f9b4b3ae4b957b", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "flymake-jshint.el", + "sha256": "0ywm9fpb7d7ry2fly8719fa41q97yj9za3phqhv6j1chzaxvcv3a", "rev": "79dd554c227883c487db38ac111306c8d5382c95" }, "recipe": { "sha256": "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140319.1700", "deps": [ @@ -39238,14 +41635,15 @@ }, "navi-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/navi.git", - "sha256": "f72f816f248fdb8f37c20b332016af3727080ee83cd45625b6870fe26916a83c", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "navi", + "sha256": "1yywbfa0syhb8zmn2qjjw2hxy7vz9ky3xd7kv3nz3gd2x989nb9a", "rev": "78c0c227d06254d1aec9d8a1301b9a5a785b8b31" }, "recipe": { "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.957", "deps": [ @@ -39255,28 +41653,30 @@ }, "smarty-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/smarty-mode.git", - "sha256": "5d4690171b338286c8f079d90911faa6d59af9607577bca2466b6ae141b783ee", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "smarty-mode", + "sha256": "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx", "rev": "3dfdfe1571f5e9ef55a29c51e5a80046d4cb7568" }, "recipe": { "sha256": "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20100703.658", "deps": [] }, "flymake-sass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-sass.git", - "sha256": "7d3ed7cfd2887817ce371fc57efb0175e4bce05f03152f77df6424bf0240de4e", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-sass", + "sha256": "0rwjiplpqw3rrh76llnx2fn78f6avxsg0la5br46q1rgw4n8r1w1", "rev": "748f13caa399c27c41ba797da9e214b814f5a30f" }, "recipe": { "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140308.525", "deps": [ @@ -39285,42 +41685,45 @@ }, "shimbun": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/w3m.git", - "sha256": "9a25153b7bf7aded2bd68b4583c0752bbc2f8c03da2a7311fc2ec80f9f6afbd1", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "w3m", + "sha256": "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs", "rev": "5986b51c7c77500fee3349fb0b3f4764d3fc727b" }, "recipe": { "sha256": "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120718.2238", "deps": [] }, "sackspace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/sackspace.el.git", - "sha256": "8d1bf7aa2247b9954f411cb894593693f1f0a99cda09e1d06db2e58c8320bb28", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "sackspace.el", + "sha256": "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl", "rev": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708" }, "recipe": { "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130719.456", "deps": [] }, "bind-chord": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/use-package-chords.git", - "sha256": "5fc2ca3cbffb50e5190796767ecdf3e7558bd4e587d18328e0a859103af11780", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "use-package-chords", + "sha256": "100py4x10nd8w0l87lc7wpa8nmg7yg6pwxln0wcyal7vpwycmhjz", "rev": "e5f7a43fd0a63a4a0bf7dabc2c223f615ea71eca" }, "recipe": { "sha256": "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.1007", "deps": [ @@ -39330,14 +41733,15 @@ }, "org2blog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/punchagan/org2blog.git", - "sha256": "5dda51e79a81733df44dfb8d5f56404328ae6b619eba483e8f07e1eee85bc4b3", + "tag": "fetchFromGitHub", + "owner": "punchagan", + "repo": "org2blog", + "sha256": "1cy4bglfxq87iwz4iflyc5mswa2381b5z3gv9ps3sww1kbkm3njx", "rev": "c97bb3d0f3e3816581b04394c6d9c55a2c2cfc5c" }, "recipe": { "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151208.1028", "deps": [ @@ -39348,28 +41752,30 @@ }, "ample-regexps": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/immerrr/ample-regexps.el.git", - "sha256": "b668190ee591c7bbf552edcb184d981bb9eb838b911d77d82d6f443acb8a8b49", + "tag": "fetchFromGitHub", + "owner": "immerrr", + "repo": "ample-regexps.el", + "sha256": "18cicz11i19cpabrq6khnl9ks1khn6gw5a4ckaq4y65r40x0cr6g", "rev": "884c712a82773d3af500e71d20bebe52340352c5" }, "recipe": { "sha256": "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.500", "deps": [] }, "mhc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshinari-nomura/mhc.git", - "sha256": "c8a0f274ed6cfd7398cef685ec59b5aa4a3522216d03c8a0aa2e0511e2b6736b", + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "mhc", + "sha256": "0z34x254z79acslxzn35mg9nsxh0cpmb540k90vlp7am7g4d4sra", "rev": "0204160474bdb01e62c89364b5f720b2c42afb0d" }, "recipe": { "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.238", "deps": [ @@ -39378,16 +41784,17 @@ }, "company-ghc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/company-ghc.git", - "sha256": "0de87f418110d0dafddad28fdfb4eb95c1f97b2a6080dd483b496e6091906912", - "rev": "e7be2b13b3ca3e9de63e8a66d0444e4750cbf22c" + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-ghc", + "sha256": "06ljm0ysz8czdr32gfq1y3nm3jcywihdszgnc2alx1hcgqiq0ds6", + "rev": "d78fcee6c8fa4f786a1e15a3bb78d2dd2c56b6af" }, "recipe": { "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151126.639", + "version": "20151217.859", "deps": [ "cl-lib", "company", @@ -39404,7 +41811,7 @@ }, "recipe": { "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151128.1302", "deps": [ @@ -39414,14 +41821,15 @@ }, "flycheck-css-colorguard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Simplify/flycheck-css-colorguard.git", - "sha256": "beacbde63ff31170cc238a7d6c8b2a9209b6709ce04c3d332ca25ffa9379d3a6", + "tag": "fetchFromGitHub", + "owner": "Simplify", + "repo": "flycheck-css-colorguard", + "sha256": "073vkjgcyqp8frsi05s6x8ml3ar6hwjmn2c7ryfab5b35kp9gmdi", "rev": "8c2061c11d5465eec77ad471bef413eb14d122da" }, "recipe": { "sha256": "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151122.347", "deps": [ @@ -39431,42 +41839,45 @@ }, "ruby-end": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ruby-end.git", - "sha256": "68812f31857a9568c6c7a90e9f3654317675ae4d81e1ae228c963b4c86da778e", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ruby-end", + "sha256": "1x4nvrq5nk50c1l3b5wcr4g1n5nmwafcz1zzc12qzsl5sya7si55", "rev": "ea453f5ac6259f09667fa26b865b6afacd06aa97" }, "recipe": { "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141215.623", "deps": [] }, "openstack-cgit-browse-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chmouel/openstack-cgit-browse-file.git", - "sha256": "e0e025db91c9560e5d9a39308ce965f33fc9607482a833edacdde04ba6bb0601", + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "openstack-cgit-browse-file", + "sha256": "0086pfk4pq6xmknk7a42fihcjgzkcplqqc1rk9fhwmn9j7djbq70", "rev": "244219288b9aef41155044697bb114b7af83ab8f" }, "recipe": { "sha256": "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130819.427", "deps": [] }, "addressbook-bookmark": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/addressbook-bookmark.git", - "sha256": "2d116f542a4e1016c85fed955c3d5031227400554d53a2c05c3e23142246ef2f", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "addressbook-bookmark", + "sha256": "0bzg8qi188rybk0a4lsdal0788iia0ymr5gdbz41c42f59a6y49d", "rev": "784df4fa06f90214ddba127391ef4fcb6b699468" }, "recipe": { "sha256": "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141205.2308", "deps": [ @@ -39475,14 +41886,15 @@ }, "magnatune": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eikek/magnatune.el.git", - "sha256": "1e410e567deb5d46c13cf46bdb52f844dba1a24f9228bb152fbf2d52bf111fc3", + "tag": "fetchFromGitHub", + "owner": "eikek", + "repo": "magnatune.el", + "sha256": "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y", "rev": "605b01505ba30589c77ebb4c96834b5072ccbdd4" }, "recipe": { "sha256": "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1435", "deps": [ @@ -39492,14 +41904,15 @@ }, "f": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/f.el.git", - "sha256": "fc9228dbe65b1f31b023ccf71eb8716b07536322d751c8307215f51cc1ee9b19", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "f.el", + "sha256": "0lzqfr5xgc3qvpbs6vf63yiw7pc2mybfvsrhczf9ghlmlawqa6k1", "rev": "e0259ee060ff9a3f12204adcc8630869080acd68" }, "recipe": { "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151113.323", "deps": [ @@ -39509,14 +41922,15 @@ }, "fortpy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rosenbrockc/fortpy-el.git", - "sha256": "6f0759e05ef3ef67a0f500208aca2783633d1e7113ecac9d1d38139acb3288dc", + "tag": "fetchFromGitHub", + "owner": "rosenbrockc", + "repo": "fortpy-el", + "sha256": "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y", "rev": "c614517e9396ef7a78be3b8786fbf303879cf43b" }, "recipe": { "sha256": "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150715.1532", "deps": [ @@ -39528,14 +41942,15 @@ }, "dired-ranger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150819.1148", "deps": [ @@ -39545,14 +41960,15 @@ }, "ac-cider": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/ac-cider.git", - "sha256": "858ace2f7d2919deaee62e666b8b69da0bcf720afd83c7b973acf6fd8f989fcc", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "ac-cider", + "sha256": "1k4zk27zvxmcffwwg0zx19rcy2ysd65nnrifwspdw699glpwx2l5", "rev": "eeb4b3ae1e91d03d765f6c39994792e4f05f6600" }, "recipe": { "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151012.508", "deps": [ @@ -39570,49 +41986,52 @@ }, "recipe": { "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110206.1430", "deps": [] }, "heroku": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/heroku.el.git", - "sha256": "12eec40d8876008498f76053872b32f8c363b56dadbc7044f68f5f8c56bc8530", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "heroku.el", + "sha256": "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj", "rev": "92af1c073b593c4def99c8777c869992aa4d0b3a" }, "recipe": { "sha256": "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120629.1313", "deps": [] }, "otter-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/scvalex/script-fu.git", - "sha256": "da5aaa3d6acc7bfd9d58a9432f6a02155dce6c6897631739a54edfdab01cd128", + "tag": "fetchFromGitHub", + "owner": "scvalex", + "repo": "script-fu", + "sha256": "0a6i3jqdmpsfllwifqwpd1ncwp8m09m2yhx9b2fzsyycd8yslnns", "rev": "da9438b58b6b95bb75fcd5f55a48b8a53eed368b" }, "recipe": { "sha256": "197r0sfbmwygvzsiv0bjjfsngwp79qi365z762y8gbf8f3hjp45i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121202.1103", "deps": [] }, "zombie": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/zombie.git", - "sha256": "8f9563efe5a1080efde2929962a8c6c2756bbc04a552cd7ade84afcf8ca7a3be", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "zombie", + "sha256": "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg", "rev": "ff8cd1b4cdbb4b0b9b8fd1ec8f6fb93eba249345" }, "recipe": { "sha256": "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141222.1016", "deps": [] @@ -39625,21 +42044,22 @@ }, "recipe": { "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.707", "deps": [] }, "basic-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgeller/basic-theme.el.git", - "sha256": "e8d897ca1f114425587715a8a374b8633ce6e441e61166e1b2bec3cb98e176dd", + "tag": "fetchFromGitHub", + "owner": "fgeller", + "repo": "basic-theme.el", + "sha256": "1pbnw6ccphxynbhnc4g687jfcg33p1sa7a0mfxc2ai0i3z59gn78", "rev": "e3c32e1285749b4135d4d593f06566c631c26456" }, "recipe": { "sha256": "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151010.307", "deps": [ @@ -39654,7 +42074,7 @@ }, "recipe": { "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130607.514", "deps": [ @@ -39663,28 +42083,30 @@ }, "ibuffer-tramp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/svend/ibuffer-tramp.git", - "sha256": "b84a5a9b59eba44b339f83a2af3d3ab9dd802aec07765bf4b847dc224e5ed9d5", + "tag": "fetchFromGitHub", + "owner": "svend", + "repo": "ibuffer-tramp", + "sha256": "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq", "rev": "41fab2ad174f53a4cf5ef7d2ebef518dede82ab4" }, "recipe": { "sha256": "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.1139", "deps": [] }, "sound-wav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-sound-wav.git", - "sha256": "871e0c0443ac09df8f4c860874719c5028426503264cd8ac0e8ccc35520b1dac", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-sound-wav", + "sha256": "1h6h65gwxb07pscyhhhdn11h3lx3jgyfw8v1kw5m2qfrv5kh6ylq", "rev": "254d3a7180a65cb33a808c43b70d4e6daa121ac9" }, "recipe": { "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140303.657", "deps": [ @@ -39694,14 +42116,15 @@ }, "psession": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/psession.git", - "sha256": "eb5c0636e3329a9a4089b7e4a9b09e23207471faf00e52ec13924c9e2d4f1cad", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "psession", + "sha256": "1b8w9wnrwk4j2gn543phz9qp8813ksqakr5pi509m6ijwcv0cp7b", "rev": "e46ddd05c8d3a6e4cbcc11b62aa275e5de66f475" }, "recipe": { "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151114.1306", "deps": [ @@ -39711,14 +42134,15 @@ }, "elfeed-web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elfeed.git", - "sha256": "17534484c8de20792785b622ce008d1ee2f4b75e31885db83d2ea3c1a7529dc3", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elfeed", + "sha256": "1z0i4cb09xq37y77zdans29lsqwk2asc9ix6cca9bf8rdwiq665b", "rev": "8a38a4c81496d40d3b7c45a6df5e41258a52843c" }, "recipe": { "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.1724", "deps": [ @@ -39729,14 +42153,15 @@ }, "osx-lib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/raghavgautam/osx-lib.git", - "sha256": "c6732025bdcdd8793bfab73a84a1898314750aef4620f564655e39f3f38d52e3", + "tag": "fetchFromGitHub", + "owner": "raghavgautam", + "repo": "osx-lib", + "sha256": "1s2bv4sypf910wq62d5nfzdlmp54y1igqx8l7gzm1c6fnaz4fway", "rev": "ca4b85dbebff97c3a0630d7f1140b1418cec2671" }, "recipe": { "sha256": "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1857", "deps": [ @@ -39745,14 +42170,15 @@ }, "wgrep-pt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-wgrep.git", - "sha256": "7aea0401a86de7e03efd935428a5edbce7c0c4bd0a108f5072e60f7c468ce74d", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" }, "recipe": { "sha256": "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140510.1731", "deps": [ @@ -39761,14 +42187,15 @@ }, "cljr-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/philjackson/cljr-helm.git", - "sha256": "961681015da836a63eb9117c94b9965300b123b1d80d316da943066ef315bb79", + "tag": "fetchFromGitHub", + "owner": "philjackson", + "repo": "cljr-helm", + "sha256": "0ydv2prnw1j3m5nk23fqn4iv202kjswr8z0ip4zacdm8bl0q25ln", "rev": "99c6dcc5228ecd2fe9e6e28a9512cbc3df0770ef" }, "recipe": { "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150425.1507", "deps": [ @@ -39778,28 +42205,30 @@ }, "tt-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davorg/tt-mode.git", - "sha256": "c50c4fa214d58140d6c4a7fc52c83f8efe9a858ad6fcab3273be4ec48d5c9d55", + "tag": "fetchFromGitHub", + "owner": "davorg", + "repo": "tt-mode", + "sha256": "1gvqxk67cf779szyg907815i4m9jzrpmn5cnsmnwd62k3r3z4nxm", "rev": "85ed3832e7eef391f7879d9990d59c7a3493c15e" }, "recipe": { "sha256": "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130804.610", "deps": [] }, "ansible": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-ansible.git", - "sha256": "1c29ec9e88727a7dd25e691b7d7a3d9b7af907c753e56ee58593a12e51fadb2c", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ansible", + "sha256": "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2", "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" }, "recipe": { "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.1953", "deps": [ @@ -39809,42 +42238,45 @@ }, "japanlaw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/japanlaw.el.git", - "sha256": "27bac59678cc9b4e59e965bde09d819531ecc77c2acb26ec1c83761bd01cdf22", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "japanlaw.el", + "sha256": "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h", "rev": "d90b204b018893d5d75286c92948c0bddf94cce2" }, "recipe": { "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150621.2341", "deps": [] }, "smart-cursor-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/7696122/smart-cursor-color.git", - "sha256": "71fd6791e87857a7ac853b7375abffe0c59a9574f11b6a55e7b4f46ac1c3f7f9", - "rev": "b0b71f5e14d867aac7e5afdb53e8bd4b338c625b" + "tag": "fetchFromGitHub", + "owner": "7696122", + "repo": "smart-cursor-color", + "sha256": "1xbd42q60pmg0hw4bn2fndjwgrfgj6ggm757fyp8m08jqh0zkarn", + "rev": "1d190f49ca77734b55ac58f1b6276e42ada967b0" }, "recipe": { "sha256": "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141124.1119", "deps": [] }, "link-hint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/noctuid/link-hint.el.git", - "sha256": "16770038227a4e6d9e04a088c46c700fa1ea866aa99fbb9e5fdc18bcb29b9a3a", + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "link-hint.el", + "sha256": "0flskfrbq66wbygbp7x9da3fm88gf1nc92500jg6skks48w00xqn", "rev": "cec4e90ffc9794fc9e25cbfcde9b5e1dd8328d09" }, "recipe": { "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.1845", "deps": [ @@ -39854,70 +42286,75 @@ }, "ox-gfm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/larstvei/ox-gfm.git", - "sha256": "36dabdc845cd829ba38d17251390b52bc021edb04d24b17b3815109b4558d33d", + "tag": "fetchFromGitHub", + "owner": "larstvei", + "repo": "ox-gfm", + "sha256": "0gfkb12rn40m71xv292dn3nj3h1bnn81698pinirp0nd8p4bvnin", "rev": "dc324f0f4239e151744d59e784da748d4db4f6b8" }, "recipe": { "sha256": "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150604.226", "deps": [] }, "ibuffer-git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jrockway/ibuffer-git.git", - "sha256": "d4d0c2bed89c90cf46a631314c3a6f28df70309972f10ee9d6204fac7be92661", + "tag": "fetchFromGitHub", + "owner": "jrockway", + "repo": "ibuffer-git", + "sha256": "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd", "rev": "d326319c05ddb8280885b31f9094040c1b365876" }, "recipe": { "sha256": "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20110508.231", "deps": [] }, "golden-ratio-scroll-screen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jixiuf/golden-ratio-scroll-screen.git", - "sha256": "fc1a7db020e0ca461678c553679c7b29159ca36e1f667dd1569c9d6b7e975c20", - "rev": "ce39ddedd764a94bce92c642931727562a0e8150" + "tag": "fetchFromGitHub", + "owner": "jixiuf", + "repo": "golden-ratio-scroll-screen", + "sha256": "18a7dv8yshspyq4bi30j0l4ap9qp696syfc29mgvly4xyqh9x4qm", + "rev": "585ca16851ac543da75d6ff61872565fb851a118" }, "recipe": { "sha256": "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.430", "deps": [] }, "ewmctrl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flexibeast/ewmctrl.git", - "sha256": "1b2fcb6d0ea29733f1e7263a9e391a99ae670765bf44cd68c617681fe76330bb", + "tag": "fetchFromGitHub", + "owner": "flexibeast", + "repo": "ewmctrl", + "sha256": "1frhcgkiys0pqrlcsi5zcl3ngblr38wrwfi6wzqk75x21rnwnbqv", "rev": "4e1ad0d54bccf2eddb7844eefb8253440aa80f28" }, "recipe": { "sha256": "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150630.338", "deps": [] }, "git-commit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v", "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.618", "deps": [ @@ -39928,14 +42365,15 @@ }, "flycheck-dedukti": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rafoo/flycheck-dedukti.git", - "sha256": "c67a68906929c8a4bfbaa6a63bc5cdf5874ccbbcb2dfc0ff0e04fc1c5b3988c3", + "tag": "fetchFromGitHub", + "owner": "rafoo", + "repo": "flycheck-dedukti", + "sha256": "1hw875dirz041vzw1pxjpk5lr1zmrp2kp9m6pazs9j19d686hyn6", "rev": "717977c0ead0dc6e267ba2164781d92ee016b7b2" }, "recipe": { "sha256": "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150106.851", "deps": [ @@ -39945,14 +42383,15 @@ }, "json-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joshwnj/json-mode.git", - "sha256": "23b6fcf9caef54ed9b6790d314ac8bcf165e50d754a2bc1a726e67646abab36b", + "tag": "fetchFromGitHub", + "owner": "joshwnj", + "repo": "json-mode", + "sha256": "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3", "rev": "ce275e004dc7265047a80dec68b24eb058b200f0" }, "recipe": { "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.2200", "deps": [ @@ -39962,14 +42401,15 @@ }, "tbx2org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/tbx2org.git", - "sha256": "a4f1cebbe3f2fdba0b7e3061c317e099bb862911d991f66ca0185ec63d06e8ca", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "tbx2org", + "sha256": "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4", "rev": "08e9816ba6066f56936050b58d07ceb2187ae6f7" }, "recipe": { "sha256": "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140224.959", "deps": [ @@ -39980,14 +42420,15 @@ }, "edbi-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/edbi-minor-mode.git", - "sha256": "1a99f7d988d006d5fcbc0c108ec0a55d6a39fbfac131e80bbdea4b73571eec5e", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "edbi-minor-mode", + "sha256": "1lndz0qlmjvi9r2f1yzw217b971ym5jzfrddcd6rind1asrzl32a", "rev": "afcbaf9e8264278e8526ca7509e6fc6bfd0d7937" }, "recipe": { "sha256": "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150421.703", "deps": [ @@ -39996,14 +42437,15 @@ }, "fountain-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rnkn/fountain-mode.git", - "sha256": "990506a09c8f48c76bf827ff62b1f87563e36e9c47480db2d1bcc34d527a351f", + "tag": "fetchFromGitHub", + "owner": "rnkn", + "repo": "fountain-mode", + "sha256": "07rmg994vhxws6r0sj27kipf6qvmz2qn5zr7z1mwfj4gkjh0c1cr", "rev": "934243afbfa042643a973af1b6f26d7353517526" }, "recipe": { "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.2321", "deps": [ @@ -40013,56 +42455,60 @@ }, "erc-tweet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kidd/erc-tweet.el.git", - "sha256": "16f0287af6b5a54bd814415cf0316a0c52778b4c4244cd6ab4bdc096e4271885", + "tag": "fetchFromGitHub", + "owner": "kidd", + "repo": "erc-tweet.el", + "sha256": "118q4zj9dh5xnimcsi229j5pflhcd8qz0p212kc4p9dmyrx2iw0n", "rev": "91fed61e139fa788d66a7358f0d50acc896414b8" }, "recipe": { "sha256": "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150920.758", "deps": [] }, "ace-jump-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/winterTTr/ace-jump-mode.git", - "sha256": "e6fbd567ce1ff08f097bc705c2023839376ce95f0b875731283905d0c2ea5b4a", + "tag": "fetchFromGitHub", + "owner": "winterTTr", + "repo": "ace-jump-mode", + "sha256": "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6", "rev": "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac" }, "recipe": { "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140616.315", "deps": [] }, "tommyh-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wglass/tommyh-theme.git", - "sha256": "5eedc65cdf5cc30a2d38202401460ac714603838080d02849626dffa5f698b5f", + "tag": "fetchFromGitHub", + "owner": "wglass", + "repo": "tommyh-theme", + "sha256": "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay", "rev": "46d1c69ee0a1ca7c67b569b891a2f28fed89e7d5" }, "recipe": { "sha256": "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131004.1830", "deps": [] }, "ob-translate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/ob-translate.git", - "sha256": "6cc83a0b5fb5177680727c7f935330a7c104f0d5322d33553c4593a8a237c69c", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "ob-translate", + "sha256": "1yaqs6zcx8228pwzsm19h6272bw9lhib6xz5xzzq8x8n54l81225", "rev": "c068f8710ec3019a345b7dc5a5433bee23c87afb" }, "recipe": { "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130718.929", "deps": [ @@ -40072,14 +42518,15 @@ }, "lush-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andre-richter/emacs-lush-theme.git", - "sha256": "5981e6b1865c2def98ed12300aba2efe9682b941e00cf6352135159b901e6757", + "tag": "fetchFromGitHub", + "owner": "andre-richter", + "repo": "emacs-lush-theme", + "sha256": "0mv73s89n59m44szc37086wq55py5sx0lc0jxncfybawhsqyd0ar", "rev": "3b80004f33cdce9f4db69e9ccf2041561e98985d" }, "recipe": { "sha256": "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141107.1006", "deps": [ @@ -40095,21 +42542,22 @@ }, "recipe": { "sha256": "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151027.1717", "deps": [] }, "jumblr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkmcc/jumblr.git", - "sha256": "c7f8f8cd5b5400b756eb7de8be4150b44acd9e00245aa944180a325834f05277", + "tag": "fetchFromGitHub", + "owner": "mkmcc", + "repo": "jumblr", + "sha256": "1f0kai4cz3r25fqlnryyvnyf80cf57xa655dvv1rx8si3xd20x4j", "rev": "705c7286e09a307b2b7f60072a12ed45325657c0" }, "recipe": { "sha256": "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140908.1552", "deps": [ @@ -40119,14 +42567,15 @@ }, "ox-trac": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/JalapenoGremlin/ox-trac.git", - "sha256": "1a653957bfc3ef9cc12292b192e9fcf3980485a9b82df12e60d4049c984039f0", + "tag": "fetchFromGitHub", + "owner": "JalapenoGremlin", + "repo": "ox-trac", + "sha256": "0w6963jvz1sk732nh18735dxivd6nl59jd4m26ps6l4wqhqby0db", "rev": "2f2f70eefb9679025ae5812e221f0c118da36012" }, "recipe": { "sha256": "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151102.1155", "deps": [ @@ -40135,42 +42584,45 @@ }, "plim-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dongweiming/plim-mode.git", - "sha256": "e69be159b6391b3d0e5a43920a620e879d23f5ac54793b56ea881df1aa6a03f0", + "tag": "fetchFromGitHub", + "owner": "dongweiming", + "repo": "plim-mode", + "sha256": "07hspp4bkb3f5dm0l1arm0w1m04cq4glg81x4a9kf7bl601wzki2", "rev": "92e39190286f172567ceb02c80e1df3b81abfa2d" }, "recipe": { "sha256": "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140812.1913", "deps": [] }, "default-text-scale": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/default-text-scale.git", - "sha256": "a86ac67e81724f78c76e4b1f613a2db47bae6aaf9fc2d3512754cc630f0e5bfb", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "default-text-scale", + "sha256": "1ysv1q7n7k2l4x8x7hlzmxmawyxl5lx627sbdv3phkvjh5zccsm8", "rev": "c680861a459e5a1b4cea0da1b99d2a22f08fdcd2" }, "recipe": { "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150227.1156", "deps": [] }, "shm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/structured-haskell-mode.git", - "sha256": "cc544d7dd55f0fc67b943705a8d69ce84cda5edca22a180b8866f47ba9ec4900", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "structured-haskell-mode", + "sha256": "1cr83az4xm20i2v8bd5dbqll3d8vhjb3m2ypzwbxlizjcxpa638c", "rev": "a305ca94059d31c60d549494756d5b4eabec20b0" }, "recipe": { "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.133", "deps": [] @@ -40183,21 +42635,22 @@ }, "recipe": { "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150805.1752", "deps": [] }, "ssh-tunnels": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/death/ssh-tunnels.git", - "sha256": "9007e048fdbe7e66fd6f2d8197952584eebc78930fceef2ed4d29327b7824581", + "tag": "fetchFromGitHub", + "owner": "death", + "repo": "ssh-tunnels", + "sha256": "10a5havjg4yjshpfzkhgjdwbrvl44narg09ddzynczmyzm4f01wh", "rev": "b08ba7a560ba5b16aa95c3cc17ed6fea59529cc4" }, "recipe": { "sha256": "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141219.518", "deps": [ @@ -40207,28 +42660,30 @@ }, "tramp-hdfs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/raghavgautam/tramp-hdfs.git", - "sha256": "d44ea26732c9c60d3003f30c47f0267cb9e729f82e76bf1e255420c4545c3170", + "tag": "fetchFromGitHub", + "owner": "raghavgautam", + "repo": "tramp-hdfs", + "sha256": "057a3z42j4s0npl35p5rl6n767s2wq0a3c49wii3f1w8p40fh7qc", "rev": "4a3ccaf931ecffeae283cb1766425afbc0f81101" }, "recipe": { "sha256": "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151028.2236", "deps": [] }, "handlebars-sgml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jacott/handlebars-sgml-mode.git", - "sha256": "101bde20236d764466179e86041228010ba1eb59f2c10e68aca32f8db7520078", + "tag": "fetchFromGitHub", + "owner": "jacott", + "repo": "handlebars-sgml-mode", + "sha256": "1z37di9vk1l35my8kl8jnyqlkr1rnp0iz13hpc0r065mib67v58k", "rev": "c76df93a9a8c1b1b3efdcc4add32bf93304192a4" }, "recipe": { "sha256": "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130623.1833", "deps": [] @@ -40241,21 +42696,22 @@ }, "recipe": { "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141029.1049", "deps": [] }, "git-gutter-fringe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-git-gutter-fringe.git", - "sha256": "3b09931a7279b23e5d4abec5e49b832f1fd2e05ddc87947e7405539d56f2b5ab", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-gutter-fringe", + "sha256": "0vc1da72vwlys723xi7xvv4ii43sjxgsywb2ss0l0kcm0rays6lv", "rev": "62accbd227b17073d623faa4cc472280fc45f53e" }, "recipe": { "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150331.2339", "deps": [ @@ -40267,14 +42723,15 @@ }, "flim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wanderlust/flim.git", - "sha256": "17d2d1bb32e96611b137c51867f3053221dae521e89862b9bab18d45f81c21f1", + "tag": "fetchFromGitHub", + "owner": "wanderlust", + "repo": "flim", + "sha256": "1w913kw4b3dipawn567847jxl89j0prnf6656yqi2rp96axx3lhp", "rev": "60fa2c74a72358658603480addc75b1d23f6431a" }, "recipe": { "sha256": "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151213.150", "deps": [ @@ -40283,14 +42740,15 @@ }, "molokai-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alloy-d/color-theme-molokai.git", - "sha256": "624b09625482f1050f3830d7fdbc1ec109b8dc4599a242fdf48edbdc6e2a0ac3", + "tag": "fetchFromGitHub", + "owner": "alloy-d", + "repo": "color-theme-molokai", + "sha256": "1hqa59pdrnwfykyl58lr8pfbh2f13sygvmrh707hbwc2aii0jjv2", "rev": "04a44f21184b6a26caae4f2c92db9019d883309c" }, "recipe": { "sha256": "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151016.1045", "deps": [] @@ -40304,63 +42762,67 @@ }, "recipe": { "sha256": "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1353", "deps": [] }, "diffscuss-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hut8labs/diffscuss.git", - "sha256": "0fa6f697661b1c6a3ef12715dc5bcbf4614e5dcbc66af55a4db30ba5f5c220bf", + "tag": "fetchFromGitHub", + "owner": "hut8labs", + "repo": "diffscuss", + "sha256": "14ccak3cmv36pd085188lypal9gd3flyikcrxn0wi6hn60w2dgvr", "rev": "e0aacd8b3d9f886f27222c1397f0655e849e0af7" }, "recipe": { "sha256": "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141014.1857", "deps": [] }, "flyspell-lazy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/flyspell-lazy.git", - "sha256": "68cfd8c5dbf3c4908acb905abe1319717d582eb69b92512573fe66d589c65e05", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "flyspell-lazy", + "sha256": "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm", "rev": "31786fe04a4732d2f845e1c7e96fcb030182ef10" }, "recipe": { "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141222.852", "deps": [] }, "insert-shebang": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/psachin/insert-shebang.git", - "sha256": "8de74d3b85c868f7548e5273e8fd0a804f62c6714f54d8f8fda8079c04a86b5d", + "tag": "fetchFromGitHub", + "owner": "psachin", + "repo": "insert-shebang", + "sha256": "1np3ih2bz9831p97rx5bssq78grjxj7f9241z372l6ggimrqhkbx", "rev": "a6e520280b1cb64d70adba2ba38dd9b728960b36" }, "recipe": { "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141119.627", "deps": [] }, "anything-exuberant-ctags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/anything-exuberant-ctags.git", - "sha256": "bec52c9067cacf96a5e81a680ae6d3a7994e49063056a5430a1534f640286e35", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "anything-exuberant-ctags", + "sha256": "0dbf510gcd0m191samih0r4lx6d7sgk0ls0sx2jrdkyacy82ridy", "rev": "8ed688fd526751e044435bb77135f5315c8167e5" }, "recipe": { "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140316.1837", "deps": [ @@ -40369,14 +42831,15 @@ }, "py-autopep8": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/py-autopep8.el.git", - "sha256": "3f5910d49d95da08ec0a2f4ed37ea9555ea5e487b2afd5ad9a92a4cc9bddb500", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-autopep8.el", + "sha256": "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd", "rev": "685414b19106b99a4384fa0c9ce4817c659e0e81" }, "recipe": { "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150420.621", "deps": [] @@ -40390,35 +42853,37 @@ }, "recipe": { "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150415.1426", "deps": [] }, "nyan-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TeMPOraL/nyan-mode.git", - "sha256": "9e302b81a1f383311576b68c92fcfcdb46b2098cb76ff866fa82a695e2b849c6", + "tag": "fetchFromGitHub", + "owner": "TeMPOraL", + "repo": "nyan-mode", + "sha256": "1v8ndr8hdbqhd7nca8882g05y36pigv6lj7hpxl50lr1lvp1kmmf", "rev": "eb940664cbca6165644d97989f402c8c5bd0e384" }, "recipe": { "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.35", "deps": [] }, "repeatable-motion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/willghatch/emacs-repeatable-motion.git", - "sha256": "93fd887f3023694c58de430142cd27e89010f07acecc889ff7e6c525a1c2f400", + "tag": "fetchFromGitHub", + "owner": "willghatch", + "repo": "emacs-repeatable-motion", + "sha256": "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck", "rev": "e664b0a4a3e39c4085378a28b5136b349a0afb22" }, "recipe": { "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150629.1312", "deps": [ @@ -40427,56 +42892,60 @@ }, "libmpdee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andyetitmoves/libmpdee.git", - "sha256": "560570c1acb4d2938ad48af17e6e0405459fc256dd74a5154b5332647f645f41", + "tag": "fetchFromGitHub", + "owner": "andyetitmoves", + "repo": "libmpdee", + "sha256": "0hazcizn8cjk9casax6xav19yi850ip7xwcasj597lmlmk0p01an", "rev": "3f057bf21f5d2e4b70ee551a970aa49d67042db8" }, "recipe": { "sha256": "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150131.1557", "deps": [] }, "abc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkjunker/abc-mode.git", - "sha256": "da45712c3900fbf2bae6207fbe60ac905608fffa212ab4e6829234ffc4e58fc0", + "tag": "fetchFromGitHub", + "owner": "mkjunker", + "repo": "abc-mode", + "sha256": "1h4gwp2gyd4jhbkb8ai1zbzhhmlhmihbwzr0wsxg5yq074n72ifs", "rev": "1dd6e1217136a6f986917a3e5f41c1007bac908d" }, "recipe": { "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140225.1144", "deps": [] }, "enotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/enotify.git", - "sha256": "9a00191fd5fcc695ee6ef277eef8dafbb6ae20d2f0e21aef840ce0b1969971c4", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "enotify", + "sha256": "0v5p97dvzrk3j59yjc6iny71j3fdw9bb8737wnnzm098ff42dfmd", "rev": "7fd2f48ef4ff32c8f013c634ea2dd6b1d1409f80" }, "recipe": { "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130407.848", "deps": [] }, "unidecode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sindikat/unidecode.git", - "sha256": "fca560a403812cb7077bd8a203174392e4ddc26ff1f7ca770e1590f6d10c79cb", + "tag": "fetchFromGitHub", + "owner": "sindikat", + "repo": "unidecode", + "sha256": "1jvr1k8zd40m1rvwmxzidz1dvr4j8cbh78nqgc3vfb410fj619gw", "rev": "9e279e88a689584027d5a1b088fe5def25d0f75c" }, "recipe": { "sha256": "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140317.2318", "deps": [ @@ -40485,28 +42954,30 @@ }, "org-outlook": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/org-outlook.el.git", - "sha256": "c8136b0207a6c4a74a99ebd83af9a8c674d03ae45fd8ac662e7e18f6ca28fbc4", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-outlook.el", + "sha256": "10dddbs9jppqqzwwv5y6pj2szdkw3223gvzzd4pzn9biv5d9kzsb", "rev": "b7978fedb0d50c1a3e499bf7e98b5cc526028cd4" }, "recipe": { "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150914.747", "deps": [] }, "highlight2clipboard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Lindydancer/highlight2clipboard.git", - "sha256": "a60abc5d16130a78efcc24a8e4de1e93af543061dba3f61d539859337cc6d61a", + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "highlight2clipboard", + "sha256": "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6", "rev": "6ce58a060d9c5843ccb8c79ec2bba7858c68ac15" }, "recipe": { "sha256": "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151020.1340", "deps": [ @@ -40515,42 +42986,45 @@ }, "orgtbl-ascii-plot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tbanel/orgtblasciiplot.git", - "sha256": "d9812e1fab02a35ae1a49ee2144a49bee0c0e32a8954a91bc1a4bbe5c1c9b241", + "tag": "fetchFromGitHub", + "owner": "tbanel", + "repo": "orgtblasciiplot", + "sha256": "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z", "rev": "cd91f6ae26a7402e192a1f4fd6248f5797edf19e" }, "recipe": { "sha256": "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1551", "deps": [] }, "kill-ring-search": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/kill-ring-search.el.git", - "sha256": "56b6547f92c3516b6071d664e2cc2fb854998b269147b52589dd72f6f1bf4b75", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "kill-ring-search.el", + "sha256": "0yrc09k64rv5is4wvss938mkj2pkvbr98lr3ahsi7p0aqn7s444v", "rev": "23535b4a01a1cb1574604e36c49614e84e85c883" }, "recipe": { "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140422.1055", "deps": [] }, "soothe-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jasonm23/emacs-soothe-theme.git", - "sha256": "1c7720d44f7eafed61149fc038893dad45b98fda967e6c7212f525dc370cf081", + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-soothe-theme", + "sha256": "10gh1hvxq9gm29r6qzlnva7vjidd7n4kih4z2ihyvbvy9za20xqw", "rev": "0786fe70c6c1b4ddcfb932fdc6862b9611cfc09b" }, "recipe": { "sha256": "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141027.941", "deps": [ @@ -40559,14 +43033,15 @@ }, "cider-spy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jonpither/cider-spy.git", - "sha256": "9deee0ae8dcf561dc3d3308b2d053def4ddbd1815f89adb571242f163e11fa6c", + "tag": "fetchFromGitHub", + "owner": "jonpither", + "repo": "cider-spy", + "sha256": "1hvvfp58x269yapnayxwyclgqy52azf76rb703mlfqivj1gzd7p3", "rev": "6913a52c4ee781c5325074af05fcdfab864d6c41" }, "recipe": { "sha256": "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.946", "deps": [ @@ -40577,42 +43052,45 @@ }, "plan9-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/john2x/plan9-theme.el.git", - "sha256": "cd776d9c8fa1f7bf0f1cde94eae61167273adb518e599ddeabee9dc335bfa3eb", + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "plan9-theme.el", + "sha256": "18i8n0v1a3z82dbn29m2h1vb5anvpbvzd9zwn7ffaq01pi0fj2p9", "rev": "0136d0bf1074cf64f305b4396edcf0f54a90436f" }, "recipe": { "sha256": "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.745", "deps": [] }, "visual-ascii-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Dewdrops/visual-ascii-mode.git", - "sha256": "16d0d917bfb7b4b524c982fb271e8cc20594c78437ba5931ba49894487ab68b3", + "tag": "fetchFromGitHub", + "owner": "Dewdrops", + "repo": "visual-ascii-mode", + "sha256": "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n", "rev": "99285a099a17472ddd9f1b4f74e9d092dd8c5947" }, "recipe": { "sha256": "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150129.446", "deps": [] }, "helm-go-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-go-package.git", - "sha256": "2c722e82af5e73013800d8c7ab46f33363a2145e75661204384bca3403b501e4", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-go-package", + "sha256": "1r01nl1k9jjb70214rkmbqaa4qrkyd3apiyq00w02wsymy12wwic", "rev": "1909156510a4e73697a86b8c040d38e4d352851a" }, "recipe": { "sha256": "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150603.804", "deps": [ @@ -40623,14 +43101,15 @@ }, "scala-outline-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ancane/scala-outline-popup.git", - "sha256": "a4be5cdf917369a1b037084c5b0719812298899e667c92a61b6d61f967cec695", + "tag": "fetchFromGitHub", + "owner": "ancane", + "repo": "scala-outline-popup", + "sha256": "1wf3d5spvi9kr4q2w7f18g1bm10fh2zbh4sdbqkf78afv6sbqzrz", "rev": "47e92a1a7738738164d7657ee324bc382a383985" }, "recipe": { "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150702.1137", "deps": [ @@ -40642,28 +43121,30 @@ }, "http-twiddle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hassy/http-twiddle.git", - "sha256": "c294a23e60fa805b620b2c387b9b8a0d61ec5850a7102a389d98700d5dc11101", + "tag": "fetchFromGitHub", + "owner": "hassy", + "repo": "http-twiddle", + "sha256": "008iq5fhsw4qklw2l457a1cfqq8diadpnf1c1di5p07sc0za5562", "rev": "bbf025b0f57068fe0fb3f1fbc2f6fd7bf0d65992" }, "recipe": { "sha256": "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151121.744", "deps": [] }, "vagrant-tramp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dougm/vagrant-tramp.git", - "sha256": "fe39cc7502b30ba978710c8b2097382f7c6d1cac959305cf20604e1d561cb81c", + "tag": "fetchFromGitHub", + "owner": "dougm", + "repo": "vagrant-tramp", + "sha256": "075q3ib1skk0437hb4wmmhf6sz1g72bj12qcf5waj2xk09swqfgy", "rev": "dc9202c1420d5d6eaf0efde4a9b548248ce42d33" }, "recipe": { "sha256": "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.1723", "deps": [ @@ -40672,42 +43153,45 @@ }, "typing-game": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lujun9972/el-typing-game.git", - "sha256": "88a077585cb992f85dc39e412e99a24f963d97373f761b8764866a1ed98db744", + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "el-typing-game", + "sha256": "0i5pipciwsl6cj3inxiz6ybkv5jglacjwhcyqdfzi4mrbic7g848", "rev": "b58c19a4a14895cc24ce01a73cf624b5c54a12b8" }, "recipe": { "sha256": "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.940", "deps": [] }, "symon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/symon.git", - "sha256": "78caec6e78442cc413d1019b7c2e1f8c2f920e330dcade16906b01f7363260d5", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "symon", + "sha256": "1mb068vgf0bbj0bdxjhd6c794bwc3wp7r6q1s49w8b24g1pfrjkq", "rev": "48dfbd86981e709ebcf055832bb48a7f212ac842" }, "recipe": { "sha256": "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.300", "deps": [] }, "edbi-django": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/edbi-django.git", - "sha256": "58c12575d394b5cfa5e0bc4d559ac18625ea531a41f4706159253cd4b1b0916d", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "edbi-django", + "sha256": "0jlr1da26jkrgadaznxjynjqbg4cpnq7gda3qab2qqrjzzi8cfia", "rev": "9cdf6d7a45402d41551c1e17edd7a29a8520f102" }, "recipe": { "sha256": "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150115.1301", "deps": [ @@ -40718,28 +43202,30 @@ }, "smart-tabs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jcsalomon/smarttabs.git", - "sha256": "cb4c5eb94abc6d2b7737c459f71e8d780669fe9df399185adbef29b44e86c5e8", + "tag": "fetchFromGitHub", + "owner": "jcsalomon", + "repo": "smarttabs", + "sha256": "1s65hr7b8aggvdd1i6gkkpz6j1kqilggfnf46xvjnvdw9awmwk6b", "rev": "cd19892677ec9a2c378c828aa7cef9a2b2bd1c0e" }, "recipe": { "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140331.1829", "deps": [] }, "amd-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/amd-mode.el.git", - "sha256": "317fd55a4e4ea25811e188b5a7584f6b41e9160d55278453a5a602c356cd5cab", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "amd-mode.el", + "sha256": "12vjjdyxmm6ky8d7xbsg0pmfam12vzghzzr3j6klji01i8lxmh74", "rev": "17eefc009e26769fa0e81936bcbea9d9ea42954f" }, "recipe": { "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.318", "deps": [ @@ -40754,28 +43240,30 @@ }, "lua-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/immerrr/lua-mode.git", - "sha256": "986d196c800b9b677ca410032e1589c1a328a51235d07de07a4e307582b0c6b7", + "tag": "fetchFromGitHub", + "owner": "immerrr", + "repo": "lua-mode", + "sha256": "1psk4202rmkkfy1ir1ax4x4djfngd5pfry7x30ybq2ifqzymb9qb", "rev": "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45" }, "recipe": { "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.730", "deps": [] }, "ace-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/ace-window.git", - "sha256": "8ae8f85b0a8e43d141226ee77d862e13aef6637d4e863cbf5023dbe825396014", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ace-window", + "sha256": "053074jyinr3a2zkr1jfgmizdbhk5s37vrvf490x2hwf19dzis4a", "rev": "f6653fb5d8bfe8d7bcad94fc72ca9561e28180f0" }, "recipe": { "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150803.1037", "deps": [ @@ -40784,14 +43272,15 @@ }, "origami": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gregsexton/origami.el.git", - "sha256": "88781a830861e18a35b9ed7d804d98cc1e4b5796782039cfd928f78c34a0a35c", + "tag": "fetchFromGitHub", + "owner": "gregsexton", + "repo": "origami.el", + "sha256": "0p53l0s8rxr8v77kj83qjrbln7nck16q0zgdp4sqmqb1121ily48", "rev": "56140b4d3f9f2694ab1e8869972a19bd7f3e12e1" }, "recipe": { "sha256": "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150822.650", "deps": [ @@ -40802,14 +43291,15 @@ }, "ace-popup-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/ace-popup-menu.git", - "sha256": "35dc81c6d33012dd595ab24c0c192c95b18536589a64105065b2bf40b1e1c50c", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "ace-popup-menu", + "sha256": "0ffkdq94slfy8w73bznc7bcy4amylhsh2nk2vvdwwqmxmviirlnq", "rev": "92cac2f656b5000d2f267ffaa92a275f40a2719d" }, "recipe": { "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150910.727", "deps": [ @@ -40820,42 +43310,45 @@ }, "zoom-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-zoom-window.git", - "sha256": "df810d2e922e7e00ba9858c25f28b93148f9c7ae891fa5ece914de8c284c12b0", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-zoom-window", + "sha256": "1kl01dlggsrffvakmwixw9j8cncdmlsw805wvzls6l1711r1zjwj", "rev": "45ae8d0f47af351d73daeb6cecc366ea7eb49a88" }, "recipe": { "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151206.2305", "deps": [] }, "shell-current-directory": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/metaperl/shell-current-directory.git", - "sha256": "2c7ac90b90b4821c45a2a1fd26530cc7a5587ee403cb1e7ecc20b7d6589182f0", + "tag": "fetchFromGitHub", + "owner": "metaperl", + "repo": "shell-current-directory", + "sha256": "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic", "rev": "bf843771bf9a4aa05e054ade799eb8862f3be89a" }, "recipe": { "sha256": "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140101.1754", "deps": [] }, "ghc-imported-from": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/ghc-imported-from-el.git", - "sha256": "321a56135157ba7c6f969d8b32255de291b5022180a68ae16e51a25761e2b0d8", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "ghc-imported-from-el", + "sha256": "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi", "rev": "fcff08628a19f5d26151564659218cc677779b79" }, "recipe": { "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141124.1332", "deps": [ @@ -40864,14 +43357,15 @@ }, "elhome": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/demyanrogozhin/elhome.git", - "sha256": "13e42ace869b8f48ed169931d7b733176b10cc3cb37b249148dec850fe7f3ce4", + "tag": "fetchFromGitHub", + "owner": "demyanrogozhin", + "repo": "elhome", + "sha256": "0rdhnnyn0xsmnshnf289kxk974r57i6nx0vii1w36j6p6q0b7f9h", "rev": "af112592fbc41a625d1d17828db78357df23c127" }, "recipe": { "sha256": "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131202.1308", "deps": [ @@ -40880,14 +43374,15 @@ }, "company-emoji": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dunn/company-emoji.git", - "sha256": "a2cd0076231cf80a7ee8b360355079bb639e531132212ae35161be5acfc1f523", + "tag": "fetchFromGitHub", + "owner": "dunn", + "repo": "company-emoji", + "sha256": "1lm26av6z18p70gxz23h87l25airawljr5lm7hw6krg706cp3aq6", "rev": "c3665bf150c43a1c9830e817cf6de950be8c0fde" }, "recipe": { "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.20", "deps": [ @@ -40897,14 +43392,15 @@ }, "stickyfunc-enhance": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tuhdo/semantic-stickyfunc-enhance.git", - "sha256": "0ff8489cbae9d6f61e08686d6e03fc3f5ff9be24ed76c2395d40485bb296bd99", + "tag": "fetchFromGitHub", + "owner": "tuhdo", + "repo": "semantic-stickyfunc-enhance", + "sha256": "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g", "rev": "13bdba51fcd83ccbc3267959d23afc94d458dcb0" }, "recipe": { "sha256": "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150429.1314", "deps": [ @@ -40920,21 +43416,22 @@ }, "recipe": { "sha256": "1y8xz04spn7a4fjnfv82hamk1mrc3a1iilf5nrl40nlg2xgp1h63", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150123.1800", "deps": [] }, "org-password-manager": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leafac/org-password-manager.git", - "sha256": "88dde057c1117f56f9dd07a5212d9a7ddc7b19406d24b59dbb649b92fd3a4b6c", + "tag": "fetchFromGitHub", + "owner": "leafac", + "repo": "org-password-manager", + "sha256": "0v2b7byr56v4pffva93d80cppp3xk8nj3987vpwmczqiq5by1pc8", "rev": "b13f63aa4efca47e92cfe52865e99f230851fa03" }, "recipe": { "sha256": "1l3h0qhv0ad9l933d47as8y3h9x94zw315ax4qsgiw3046nzkdwv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150729.1715", "deps": [ @@ -40944,28 +43441,30 @@ }, "graphene-meta-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/graphene-meta-theme.git", - "sha256": "274caee80b5b99b32b4305c43ad093670a4a5e01ce3705a96f66d1d289752dae", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "graphene-meta-theme", + "sha256": "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17", "rev": "5d848233ac91c1e3560160a4eba60944f5837d35" }, "recipe": { "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.400", "deps": [] }, "e2wm-term": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-term.git", - "sha256": "fc4b601344d34c3e5b6cddca3b9b49d78df814ea4574d4b47bfbe0810d9c6363", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-term", + "sha256": "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw", "rev": "65b5ac88043d5c4048920a048f3599904ca55981" }, "recipe": { "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141009.808", "deps": [ @@ -40982,21 +43481,22 @@ }, "recipe": { "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.858", "deps": [] }, "tracwiki-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/merickson/tracwiki-mode.git", - "sha256": "aecc7be6814b922522a26f6f4ac5c35b23b778fc9a65b909049038e769a045d4", + "tag": "fetchFromGitHub", + "owner": "merickson", + "repo": "tracwiki-mode", + "sha256": "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f", "rev": "6a620444d59b438f42383b48cd4c19c03105dba6" }, "recipe": { "sha256": "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150119.1021", "deps": [ @@ -41005,14 +43505,15 @@ }, "x86-lookup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/x86-lookup.git", - "sha256": "18caaa766347837d28de5476e6a7507909f9047ed54038f904ec8154dc0e2d8e", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "x86-lookup", + "sha256": "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq", "rev": "cac42bd9f27bff92e0b1cf6fb20563061885239f" }, "recipe": { "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.732", "deps": [ @@ -41022,14 +43523,15 @@ }, "badwolf-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bkruczyk/badwolf-emacs.git", - "sha256": "b230a774f1aa5f7eeeeb6b73fbc742f6eb59b3b3f4dcb3273eb768f8493c90de", + "tag": "fetchFromGitHub", + "owner": "bkruczyk", + "repo": "badwolf-emacs", + "sha256": "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j", "rev": "24a557f92a702f632901a5b7bee59945a0a8cde9" }, "recipe": { "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151215.1125", "deps": [ @@ -41038,14 +43540,15 @@ }, "cursor-test": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ainame/cursor-test.el.git", - "sha256": "34916c1ad9f5836377893fd8ca77a9aff36e5c6f9ea89f78a0cc49b27f84b672", + "tag": "fetchFromGitHub", + "owner": "ainame", + "repo": "cursor-test.el", + "sha256": "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l", "rev": "e09956e048b88fd2ee8dd90b5678baed8b04d31b" }, "recipe": { "sha256": "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131207.1132", "deps": [ @@ -41054,14 +43557,15 @@ }, "sunshine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aaronbieber/sunshine.el.git", - "sha256": "945a75ef40851184916dbf3456d3d559b614855da3aae7c73ebc5fe539dc71f4", + "tag": "fetchFromGitHub", + "owner": "aaronbieber", + "repo": "sunshine.el", + "sha256": "1x3ivhwyapxw7v3ygam3bn2i9djrsp9mcd5zdn8q84c583ppanll", "rev": "8783923f0aa4b835b90359443b941b10758c28d7" }, "recipe": { "sha256": "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.814", "deps": [ @@ -41070,44 +43574,47 @@ }, "smart-mark": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/smart-mark.git", - "sha256": "0f3a45c6efc6ff7b824e4566d5208e2f8623b9f993b4c8dd2960cac6e3a91b6b", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "smart-mark", + "sha256": "0sqvm7iwdjk057fwid4kz6wj71igiqhdarj59s17pzy6xz34afhg", "rev": "04b522a23e3aae8381c6a976fc978532fcb2e7d0" }, "recipe": { "sha256": "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150911.2110", "deps": [] }, "region-bindings-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/region-bindings-mode.git", - "sha256": "fe13e5656aca50c9c7966ea7dc0ce2857ae9a631938560783fd9366fd8886e0a", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "region-bindings-mode", + "sha256": "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy", "rev": "3fa5dbdbd7c000bebff6d9d14a4be326ec24b6fc" }, "recipe": { "sha256": "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140407.1714", "deps": [] }, "rspec-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pezra/rspec-mode.git", - "sha256": "aa6b1ffd7579260d8bf40d08788cb5c93668e444b2cfe343399c710a82ffc50e", - "rev": "7b0a900d4b525abc683de5900efd484f4a44f063" + "tag": "fetchFromGitHub", + "owner": "pezra", + "repo": "rspec-mode", + "sha256": "1rgy4jp1ydvwxb83qmbn1wwscgdqn9pfjw8788n4rg1l2ypb8w0s", + "rev": "fc3bb819136966b1d1bd31335724d702132fff0b" }, "recipe": { "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151003.515", + "version": "20151217.2046", "deps": [ "cl-lib", "ruby-mode" @@ -41115,14 +43622,15 @@ }, "mb-url": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dochang/mb-url.git", - "sha256": "664b387cd5a270522e09e329a2c767c335f22cd27e7c93d0bb063a39e1b38400", + "tag": "fetchFromGitHub", + "owner": "dochang", + "repo": "mb-url", + "sha256": "1qd4vya49sy7iwcpnyd91d0zx3niwsavhdcq6387rsb0j64hwybl", "rev": "e1d9af92f8f3c4fc96760558ee1a4df7bbbc537c" }, "recipe": { "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151210.1216", "deps": [ @@ -41131,56 +43639,60 @@ }, "shell-toggle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/shell-toggle.el.git", - "sha256": "29bf2bb7c627ef67940397f86355a495bbf75047197e6c93927729a61a634a6b", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "shell-toggle.el", + "sha256": "0ssaccdacabpja9nqzhr8x8ggfwmlian7y4p0fa6gvr7qsvjpgr9", "rev": "0d01bd9a780fdb7fe6609c552523f4498649a3b9" }, "recipe": { "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150226.811", "deps": [] }, "idomenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/birkenfeld/idomenu.git", - "sha256": "7344f4bb7b747877a21ac3ebaeccafa759fea0a69ccac205cc31eb47614cf0d6", + "tag": "fetchFromGitHub", + "owner": "birkenfeld", + "repo": "idomenu", + "sha256": "1vx2g1xgxpcabr49mkl6ggzrpa3k2zhm479j6262vb64swzx33jw", "rev": "4b0152d606360c70204fb4c27f68de79ca885386" }, "recipe": { "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141123.1520", "deps": [] }, "unicode-troll-stopper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/camsaul/emacs-unicode-troll-stopper.git", - "sha256": "578fd61aadec15df8d62a2d413e8cd7277a379f2dde56d76145ee0fcc59554b7", + "tag": "fetchFromGitHub", + "owner": "camsaul", + "repo": "emacs-unicode-troll-stopper", + "sha256": "0ny260mr1h810fvqsfj2hpd3zql4g309m60qj4vk6kmd83p5b60f", "rev": "15e4b57b78bf643bb56e5000078030cbb5c66e2a" }, "recipe": { "sha256": "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151023.2031", "deps": [] }, "ein-mumamo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/millejoh/ein-mumamo.git", - "sha256": "b48745dd493598d76094bef497d764abbd9c6a8aea0fdfb6df722f2cb403371c", + "tag": "fetchFromGitHub", + "owner": "millejoh", + "repo": "ein-mumamo", + "sha256": "1w0b3giy9ca35pp2ni4afnqas64a2vriilab7jiw9anp3ryh6570", "rev": "028fefec499598add1a87b92ed991891f38f0c7b" }, "recipe": { "sha256": "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150301.1828", "deps": [ @@ -41189,14 +43701,15 @@ }, "omni-quotes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-quotes.el.git", - "sha256": "9887e844a4d67ae13f074407cbf2017635640f3ea700eafcf9e11a37767246ed", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-quotes.el", + "sha256": "1x8af8jv4n83sl4rgj0d2rpmw9g78rknm1h523f3b1a5x4kdvsz6", "rev": "537f7191bede7156dae94622e92cec04c6cd4bdf" }, "recipe": { "sha256": "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150604.1257", "deps": [ @@ -41206,14 +43719,15 @@ }, "helm-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-dictionary.git", - "sha256": "c8f07faee3e507cba65395613eb650fa4391dabd61949c38807f9e4ed63cab16", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-dictionary", + "sha256": "05mb7kb4x7kzh0w9r531ppd92hzsa2v3wqcmafkcn1z5wfp7zw68", "rev": "2aeafba1556c76cc5ff949ca50f341fc2aa687b0" }, "recipe": { "sha256": "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141226.1336", "deps": [ @@ -41222,14 +43736,15 @@ }, "auto-complete-clang": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianjcj/auto-complete-clang.git", - "sha256": "21d6a3404563cb1b0c3fc292d361367417af23e5c50949827f84cad50f71c68b", + "tag": "fetchFromGitHub", + "owner": "brianjcj", + "repo": "auto-complete-clang", + "sha256": "12y6f47xbjl4gy14j2f5wlisy5vl6rhx74n27w61pjv38m0a7mi1", "rev": "a195db1d0593b4fb97efe50885e12aa6764d998c" }, "recipe": { "sha256": "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140409.252", "deps": [ @@ -41238,28 +43753,30 @@ }, "ob-prolog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ljos/ob-prolog.git", - "sha256": "36946686ea4f411b6f136c18a93d3eea551e32d0237f104589b1d21c745b4c93", + "tag": "fetchFromGitHub", + "owner": "ljos", + "repo": "ob-prolog", + "sha256": "14scbds1rlmii52i0zr3s0r1wmga7qysj63c2dpinhagxa36d51n", "rev": "548986d0e6f678789216a882f0a19daf1b89ab93" }, "recipe": { "sha256": "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150530.1137", "deps": [] }, "goto-gem": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/goto-gem.git", - "sha256": "29bd83767742bef804819fbe8e4aedc4ee6aae3d9c711a5103d545ed706f5048", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "goto-gem", + "sha256": "0j2hdxqfsifm0d8ilwcw7np6mvn4xm58xglzh42gigj2fxv87g99", "rev": "e3206f11f48bb7e798514a4ca2c2f60649613e5e" }, "recipe": { "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140729.1345", "deps": [ @@ -41268,14 +43785,15 @@ }, "minibuffer-cua": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/minibuffer-cua.el.git", - "sha256": "7f7b4f9c5c52e4b89207cc3f5ae1b680825ba93ccc3efb44840e92fccd793304", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "minibuffer-cua.el", + "sha256": "011kg76zr4hfhi2gngnc7jlmp0l0nvhmlgyc0y9bir2jbjf4yyvz", "rev": "adc4979a64f8b36e05960e9afa0746dfa9e2e4c7" }, "recipe": { "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130906.634", "deps": [] @@ -41285,11 +43803,11 @@ "tag": "fetchsvn", "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format", "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr", - "rev": "255720" + "rev": "256039" }, "recipe": { "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.638", "deps": [ @@ -41298,28 +43816,30 @@ }, "autotest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenspider/elisp.git", - "sha256": "36b9fbc06db84522223509ec5732ec87bf5f62ed24520f42a9ca595fb4a03181", + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "elisp", + "sha256": "109il2s5ynfam510yli4xmi5zgw7xhr5gv096li24idqdp0gpf9n", "rev": "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36" }, "recipe": { "sha256": "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150130.425", "deps": [] }, "yagist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/yagist.el.git", - "sha256": "c46ab90d8e605cbd1f8fcf2e9a4d76fcc1ea125ee6a27bd119ec56e3cff81c6b", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "yagist.el", + "sha256": "0sqwz37y6mpc378pp8p6bq9fmhgwfr6rlbngiwgvsp30iq6vjsn4", "rev": "ab19ce3607873a6c523f87fffd653a1e7fbb66c2" }, "recipe": { "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150425.751", "deps": [ @@ -41328,14 +43848,15 @@ }, "magma-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ThibautVerron/magma-mode.git", - "sha256": "12cde4cead2c2e6d0f49727d9f19d4c51e620fd29c0d75a1defb8947506e8c2a", + "tag": "fetchFromGitHub", + "owner": "ThibautVerron", + "repo": "magma-mode", + "sha256": "0alcdr84g2gvvshpa3cws87n47n5shcryzbj947nsbicmp7f9k8j", "rev": "b6ccdeb774348ef3e87cc877de9fc90405872760" }, "recipe": { "sha256": "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150923.340", "deps": [ @@ -41346,28 +43867,30 @@ }, "maxframe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rmm5t/maxframe.el.git", - "sha256": "e1377985a896a32a12aac6635c675ebe8b9226c28948a86daf7608639ebe333d", + "tag": "fetchFromGitHub", + "owner": "rmm5t", + "repo": "maxframe.el", + "sha256": "0g9kpsg6623nmxnshj49q8k952xybrkmqqy6m892m8wnm22pjdz1", "rev": "174e3a0f3a716e904eba15e659096a99976ee39a" }, "recipe": { "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140916.954", "deps": [] }, "company-irony": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sarcasm/company-irony.git", - "sha256": "d46d28c5f55569223f0486b5c0fa8c5cdbf9f1fb78c273029952f0343b4f2a78", + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "company-irony", + "sha256": "0y1a9wxk9w2jk4177hkqzgqzknswikxc1dc60hzj4samyp2jhvfl", "rev": "09f16eade551201548455285a2d977a0889761da" }, "recipe": { "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150810.439", "deps": [ @@ -41379,28 +43902,30 @@ }, "dactyl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/luxbock/dactyl-mode.git", - "sha256": "b519c4dcf0fa9292bfac863c66c7457a9beb077efdae5d304e0cb2aa3c03e43a", + "tag": "fetchFromGitHub", + "owner": "luxbock", + "repo": "dactyl-mode", + "sha256": "0fp40cyamchc9qq5vbpxgq3yp6vs8p3ncg46mjzr54psy3fc86dm", "rev": "cc55fe6b987271d9647492b8df4c812d884f661f" }, "recipe": { "sha256": "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140906.1225", "deps": [] }, "easy-kill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoliu/easy-kill.git", - "sha256": "075b6543fa291efc7b3fa77c507b9018546458a6c5fabcf5e85751a5f6a25744", + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "easy-kill", + "sha256": "0i2plbvaalapx3svryn5lrc68m0qj1xm0z577xxzq7i9z91nanq7", "rev": "e2b667f651a3531164d24ea4cbcd8c34fba0e17f" }, "recipe": { "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151031.29", "deps": [ @@ -41410,70 +43935,75 @@ }, "dired-imenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/dired-imenu.git", - "sha256": "580f918fcfb2580be25b9313f07ddaa2d114343b3c12f018d7b57fde81b956c9", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "dired-imenu", + "sha256": "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid", "rev": "610e21fe0988c85931d34894d3eee2442c79ab0a" }, "recipe": { "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140109.1010", "deps": [] }, "soft-morning-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mswift42/soft-morning-theme.git", - "sha256": "ae8b6d0cab0f784f56235ecd626a7accc3fe76cfd264f0b0b67f370bc316081b", + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "soft-morning-theme", + "sha256": "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf", "rev": "c0f9c70c97ef2be2a093cf839c4bfe27740a111c" }, "recipe": { "sha256": "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150918.1541", "deps": [] }, "escreen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/escreen.git", - "sha256": "ac3af5e4feec05dbad3c96f07ad002a06f39a987de1199efa5f92eb98140a745", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "escreen", + "sha256": "0id7820vjbprlpprj4fyhylkjvx00b87mw4n7jnxn1gczvjgafmc", "rev": "e3fd46225fec70943024d950c6b6c2eb88e00b96" }, "recipe": { "sha256": "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091203.1213", "deps": [] }, "nix-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NixOS/nix.git", - "sha256": "abe1ecca47d35a017bad8eeb08519166ba8587ce1b1904bd7d4b8c4c604fdce2", - "rev": "338880ee6fc2d8f55dcbe0f0b7313cd69dc866d0" + "tag": "fetchFromGitHub", + "owner": "NixOS", + "repo": "nix", + "sha256": "0nfwz0p5jakf0nfxmvnqwny38cfh92nx0n7l42bj22m8hcr1gb5d", + "rev": "a9faa7bbce963ddb894699a7cc6ea8a3876e4d9f" }, "recipe": { "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151026.515", "deps": [] }, "angular-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/angular-snippets.el.git", - "sha256": "36bbc6861cbc9d8c42bb95a116843324ccd6d48819797a9b93fdd721860ab541", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "angular-snippets.el", + "sha256": "0hdm1a323mzxjfdply8ri3addk146f21d8cmpd18r7dw3j3cdfrn", "rev": "af5ae0a4a8603b040446c28afcf6ca01a8b4bd7b" }, "recipe": { "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140514.23", "deps": [ @@ -41483,14 +44013,15 @@ }, "helm-rubygems-local": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/f-kubotar/helm-rubygems-local.git", - "sha256": "6d00ab846ea88997eb3e3c9567fef35ee20467e045a33f5f513f65be5d589068", + "tag": "fetchFromGitHub", + "owner": "f-kubotar", + "repo": "helm-rubygems-local", + "sha256": "0s4hb1fvwr9za5gkz8s5w1kh9qjyygz6g59w7vmrg2d8ds2an03d", "rev": "289cb33d41c703af9791d6da46b55f070013c2e3" }, "recipe": { "sha256": "18p18bly15a8xjc34k11jbvxlmr127sll0vh5ma2p787x6a3mc7c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130711.2011", "deps": [ @@ -41499,14 +44030,15 @@ }, "emacsagist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/echosa/emacsagist.git", - "sha256": "3782e44a49a577a414d3e0e5de7832ab665754e074193100fa37f9592aeeb3c0", + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacsagist", + "sha256": "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2", "rev": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83" }, "recipe": { "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140331.1330", "deps": [ @@ -41515,56 +44047,60 @@ }, "yafolding": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenozeng/yafolding.el.git", - "sha256": "e7d32e200506a93b41bec4570a1b628a8951a1354fbd0be52a6f96b54f15452c", + "tag": "fetchFromGitHub", + "owner": "zenozeng", + "repo": "yafolding.el", + "sha256": "0b252m7vb5kg5bjhpgag6nhm32cac8dhlmy4pr0kpa860lh2xlz7", "rev": "0dc48073f429112b51a888e8e9285739435d3c7f" }, "recipe": { "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141202.2256", "deps": [] }, "term-cmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CallumCameron/term-cmd.git", - "sha256": "469b1b735724729abd7c94e20a56efbf599814e476f3bcb819dd4627c0196d88", + "tag": "fetchFromGitHub", + "owner": "CallumCameron", + "repo": "term-cmd", + "sha256": "11xk11i99d17x5bl7glrwj2dhvl3f54slipj034dbf07dd5b2jih", "rev": "fc2ae638409af99c4788563ef54847636f2e23e0" }, "recipe": { "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141114.1514", "deps": [] }, "shell-split-string": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/10sr/shell-split-string-el.git", - "sha256": "af10741767ef03d0732cec18e27b8f5c34e163f61a15ec00f8b71e4a628d5cff", + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "shell-split-string-el", + "sha256": "00c06y5c9iscgddrqgd1fh0y53xvjz07ylwzaaa9x0dbvx386ihl", "rev": "4ad4caaea6b1c247df2f3171569d633c0d8fdefe" }, "recipe": { "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.2236", "deps": [] }, "evil-visual-mark-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/evil-visual-mark-mode.git", - "sha256": "ffbdb57265ad39695ed4913e1f664b8978b596c7e3568121c3e163fd11c5951d", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "evil-visual-mark-mode", + "sha256": "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz", "rev": "094ee37599492885ff3144918fcdd9b74dadaaa0" }, "recipe": { "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150202.1200", "deps": [ @@ -41574,28 +44110,30 @@ }, "package+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenspider/package.git", - "sha256": "27c9894e816000b9d58a6c1677e6397832b0edd5d792889f9ee0613082ca60f7", + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "package", + "sha256": "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97", "rev": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b" }, "recipe": { "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150319.1655", "deps": [] }, "helm-itunes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/daschwa/helm-itunes.git", - "sha256": "7372324be25d95b35ca71a09254a62985a02a95c4953e4a04f19d0bfa1769a9b", + "tag": "fetchFromGitHub", + "owner": "daschwa", + "repo": "helm-itunes", + "sha256": "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w", "rev": "966de755a5aadbe02311a6cef77bd4790e84c263" }, "recipe": { "sha256": "15z5lgh5x1ykz5p31i994fig8v05s7ckkgw6p9jifn11sn1a39nb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151013.148", "deps": [ @@ -41604,14 +44142,15 @@ }, "xterm-frobs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/xterm-frobs.git", - "sha256": "c3e9560263b20d9f7b5ce3845eaf473b8432dd7b7c16e6ff971b4bf9a870ba81", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "xterm-frobs", + "sha256": "10dsf2lgjjqvjzzyc5kwggfk511v8ypmx173bixry3djcc15dsf3", "rev": "58fb0de21e4d1963d1398a38e1b803446fb41320" }, "recipe": { "sha256": "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20091211.1755", "deps": [] @@ -41624,21 +44163,22 @@ }, "recipe": { "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1600", "deps": [] }, "purple-haze-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jasonm23/emacs-purple-haze-theme.git", - "sha256": "6cb2268ab36551a50855a91b0321dad57fcf08eda5de18ef7fd7da3573e1be96", + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-purple-haze-theme", + "sha256": "15myw5rkbnnpgzpiipm5xl4cyzymv8hh66x9al4aalb5nf52dckc", "rev": "3e245cbef7cd09e6b3ee124963e372a04e9a6485" }, "recipe": { "sha256": "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141014.2129", "deps": [ @@ -41647,14 +44187,15 @@ }, "dired-subtree": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150908.1233", "deps": [ @@ -41664,42 +44205,45 @@ }, "rvm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senny/rvm.el.git", - "sha256": "0ec861813dfc9c9d9e8728d96254cf9fadf2c4668177e3d8d152b5bc82d0dc01", + "tag": "fetchFromGitHub", + "owner": "senny", + "repo": "rvm.el", + "sha256": "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm", "rev": "8e45a9bad8e317ff195f384dab14d3402497dc79" }, "recipe": { "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150402.942", "deps": [] }, "isgd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chmouel/isgd.el.git", - "sha256": "90a9804710de3eea82c9ed06f3c76d2e8116c9e8182821faf8a7365a29121d26", + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "isgd.el", + "sha256": "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach", "rev": "764306dadd5a9213799081a48aba22f7c75cca9a" }, "recipe": { "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150414.436", "deps": [] }, "redis": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-pe/redis.el.git", - "sha256": "79dc71c1464ddc25188e749564185b0e08c1d9a73d920b47fb081440d15e5b4c", + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "redis.el", + "sha256": "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57", "rev": "2c33f3397bc14e7a8192867b55920492d4eead8c" }, "recipe": { "sha256": "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150531.1448", "deps": [ @@ -41709,14 +44253,15 @@ }, "swift-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/swift-mode.git", - "sha256": "50348b785d1a2bb6093118c270cbcdbc4acc73af13fa317da63de53841518965", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "swift-mode", + "sha256": "03pxizbw02bp9mp0b0vwiys4vncna73ymmbbmxpw9m6mn1ql2fjv", "rev": "a5e1acf5826ccd489617f9255da0aab7e5e920ee" }, "recipe": { "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151018.120", "deps": [ @@ -41725,14 +44270,15 @@ }, "logview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/doublep/logview.git", - "sha256": "c79269973ed43c2ad6071a505925ca5ea543901fbbbb9c0f0e550a7cc7052a30", + "tag": "fetchFromGitHub", + "owner": "doublep", + "repo": "logview", + "sha256": "1wglgjf45rl4rl5zp1p1z318p2d1hy1w77m65wwg35v6pkl1mikr", "rev": "03b2f0fc325a557ccee0dbcb9226a1d733f21c84" }, "recipe": { "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.1649", "deps": [ @@ -41747,49 +44293,52 @@ }, "recipe": { "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150816.2153", "deps": [] }, "sicp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/webframp/sicp-info.git", - "sha256": "d8b911128ef2dd87c13a6803af875d9284c1508ac8c7a04d40fe5c4d7ed45a80", + "tag": "fetchFromGitHub", + "owner": "webframp", + "repo": "sicp-info", + "sha256": "102ssiz4sp7y816s1iy8i98c314jbn3sy0v87b0qgpgjiq913ffq", "rev": "7d060136bf4582fa74e4aa7cb924d856eea270f4" }, "recipe": { "sha256": "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.957", "deps": [] }, "dired-toggle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fasheng/dired-toggle.git", - "sha256": "aa7687379baa0dfc1e6d609578b0e50f2309a2ed19626d27012b30680204a2fb", + "tag": "fetchFromGitHub", + "owner": "fasheng", + "repo": "dired-toggle", + "sha256": "1yx20h16hc1b04knsqhrxni0j8qgwnq7i5b0dlggq3dakcvqfxma", "rev": "84efb9ec9c327e4da53cdb7cda5b51dcd0ede0e5" }, "recipe": { "sha256": "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140907.1549", "deps": [] }, "narrow-reindent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emallson/narrow-reindent.el.git", - "sha256": "239069b6cbe9808b2c4c90b6f12cfd4583a6e7d409cb10eae25d61e5141f7718", + "tag": "fetchFromGitHub", + "owner": "emallson", + "repo": "narrow-reindent.el", + "sha256": "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh", "rev": "87466aac4dbeb79597124dd077bf5c704872fd3d" }, "recipe": { "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150722.1406", "deps": [ @@ -41798,28 +44347,30 @@ }, "xah-elisp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xah-elisp-mode.git", - "sha256": "2b34fd930462c33997f0dc8f794d1acaaf74c3de0de063134657c66962e38640", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-elisp-mode", + "sha256": "0h46wdi6kijp8q9n7q0dvv1p9bya396pk3ywy2bkkhv20j9zsd1b", "rev": "003d1dbb1edd692fee317d1852bf6bf03662bdd3" }, "recipe": { "sha256": "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151116.1612", "deps": [] }, "epl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cask/epl.git", - "sha256": "5c82459f02af5caa0fd7ccf43ad34a6e7f770b60860ac2c94d0139ab70aecf24", + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "epl", + "sha256": "0s4k2grikhibd075435giv3bmba1mx71ndxlr0k1i0q0xawpyyb4", "rev": "a5ad061d0a5eb42f66c384e55d102da7d52c96b0" }, "recipe": { "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150517.633", "deps": [ @@ -41828,28 +44379,30 @@ }, "control-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stephendavidmarsh/control-mode.git", - "sha256": "1b14dfa5cd7cee3987ebac73df45785082eb7202e7089dad66acda3ea78e75b8", + "tag": "fetchFromGitHub", + "owner": "stephendavidmarsh", + "repo": "control-mode", + "sha256": "1qsq543rb0z2fq716a2khs8zqyh13npzmbj58f00s8b3w3andpbh", "rev": "52c43d198f423eb00e5de6e44f2f3dd70893a6bc" }, "recipe": { "sha256": "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140218.807", "deps": [] }, "paradox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/paradox.git", - "sha256": "bbaf29868a8c1d89eda4117eaa051daf9f1fe71ae5c9708b28dd09c22f3c6a0c", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "paradox", + "sha256": "1kvyfsf4dy7gss5jg2hb5hn51llq0jza9nkdxgsf7mh07v6kj9ap", "rev": "6fd7161475ab3580f2113e569ef4df7431d0b1b5" }, "recipe": { "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1517", "deps": [ @@ -41864,14 +44417,15 @@ }, "ix": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theanalyst/ix.el.git", - "sha256": "91b0dd70643ea5c8b55be57191586935618c5eca7c75be361c3a1abd13a42a19", + "tag": "fetchFromGitHub", + "owner": "theanalyst", + "repo": "ix.el", + "sha256": "069alh9vs6is3hvbwxbwr9g8qq9md5c92wg5bfswi99yciqdvc4i", "rev": "aea4c54a5cc5a6f26637353c16a3a0e70fc76963" }, "recipe": { "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131027.1129", "deps": [ @@ -41880,28 +44434,30 @@ }, "dired-toggle-sudo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/renard/dired-toggle-sudo.git", - "sha256": "d177e94e36a68263fbbeacec179e963d593c85949386a831877111d46e31ae85", + "tag": "fetchFromGitHub", + "owner": "renard", + "repo": "dired-toggle-sudo", + "sha256": "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2", "rev": "02449dbda4e168f99fe5352c9628df5d39e11483" }, "recipe": { "sha256": "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.406", "deps": [] }, "req-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/edvorg/req-package.git", - "sha256": "d8dbafa72e53435d5775130600c9c5cfb828db0af60b66aa080f21b517ec3e04", + "tag": "fetchFromGitHub", + "owner": "edvorg", + "repo": "req-package", + "sha256": "13hglddg4x0l5kmqplxb1ygqa4k4vxgabvjk8q8zjvkm8rwylwjh", "rev": "ad4cff69412abb3ecc1ebd15946943c0cab6529a" }, "recipe": { "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151205.1042", "deps": [ @@ -41913,14 +44469,15 @@ }, "esh-buf-stack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tom-tan/esh-buf-stack.git", - "sha256": "98d86975fea970134704b5025c89e96951e119018fa73e78c372939a284c13cd", + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "esh-buf-stack", + "sha256": "1k8k9hl9m4vjqdw3x9wg04cy2lb9x64mq0mm0i3i6w59zrsnkn4q", "rev": "ce0ea5aadca3150eaa9d2e6ec20296add4e99176" }, "recipe": { "sha256": "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140107.418", "deps": [] @@ -41934,21 +44491,22 @@ }, "recipe": { "sha256": "1hqv2xqnhwnbj4sqcbdial4987yj1y3ry7niaaz2hh0f5qzrzwa8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121025.601", "deps": [] }, "cmake-project": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alamaison/emacs-cmake-project.git", - "sha256": "26f7fbcadc742239f1a08c0a1c1bb1e1dd7dbb373254ce2db41c20a63a8adf3b", + "tag": "fetchFromGitHub", + "owner": "alamaison", + "repo": "emacs-cmake-project", + "sha256": "0fyzi8xac80wnhnwwm1j6yxpvpg1n4diq2lcl3qkj8klvk5gpxr6", "rev": "5212063b6276f8b9af8b48b4052e5ec97721c08b" }, "recipe": { "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150720.1559", "deps": [] @@ -41962,21 +44520,22 @@ }, "recipe": { "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141227.1244", "deps": [] }, "org-time-budgets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoc/org-time-budgets.git", - "sha256": "ab3bce9909f05a88bde0c98cc267c9d74e8dad4586a836fcf77c6f50d29f4d11", + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "org-time-budgets", + "sha256": "04adkz950vvwyzy3da468nnqsknpr5kw5369w2yqhnph16cwwfxb", "rev": "baa1ce6333157fed3b3799a80e6cf8c73c9e2c18" }, "recipe": { "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151111.201", "deps": [ @@ -41986,43 +44545,45 @@ }, "fancy-narrow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/fancy-narrow.git", - "sha256": "c518bbb9cb1f2e87cfc62ab6a4e28d3a93b96bd18d49473354ce4de806c0ddc4", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "fancy-narrow", + "sha256": "1i6xq03fhkffahrlfjcds5mvk4rsipia9diaqv7qfbhzrfwvn665", "rev": "5196dc6066d354883fa21090266b6cebccc9f6fd" }, "recipe": { "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151021.533", "deps": [] }, "rhtml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/rhtml.git", - "sha256": "6022f2fafba7ea161df78a7e6b36d84ea8f984501c9e5af95ad94c033a0f3887", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rhtml", + "sha256": "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x", "rev": "a6d71b38a3db867ccf82999c99805db1a3a33c33" }, "recipe": { "sha256": "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130422.811", "deps": [] }, "insfactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/duelinmarkers/insfactor.el.git", - "branchName": "release", - "sha256": "3ea2c69120fcca67505df1137c4b5a70d02b1a16350a49b761f2a318011b5a84", + "tag": "fetchFromGitHub", + "owner": "duelinmarkers", + "repo": "insfactor.el", + "sha256": "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy", "rev": "7ef5446cebb08a17d4106d2e6f3c053e49e1e829" }, "recipe": { "sha256": "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141116.1802", "deps": [] @@ -42035,7 +44596,7 @@ }, "recipe": { "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140129.232", "deps": [ @@ -42045,28 +44606,30 @@ }, "osx-org-clock-menubar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jordonbiondo/osx-org-clock-menubar.git", - "sha256": "c4abd89b4057513ac1c3dd66d85ade17a65b9f1a028cf846522b65e956d7366e", + "tag": "fetchFromGitHub", + "owner": "jordonbiondo", + "repo": "osx-org-clock-menubar", + "sha256": "1rgykby1ysbapq53lnk9yy04r9q4qirnzs2abgvz7g2qjq5fyzag", "rev": "9964d2a97cc2fb6570dc4116da44f73bd8eb7cb3" }, "recipe": { "sha256": "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150205.1511", "deps": [] }, "test-case-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ieure/test-case-mode.git", - "sha256": "e3d323a58036496d56fefcde74000e30fbba80b236b6071f2148e1d4f941ca88", + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "test-case-mode", + "sha256": "1r3fmb8cshgh9pppdvydfcrzlmb9cgz4m04rgv69c5xv8clwcmbr", "rev": "6074df10ebc97ddfcc228c71c73db179e672dac3" }, "recipe": { "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130525.934", "deps": [ @@ -42075,14 +44638,15 @@ }, "take-off": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tburette/take-off.git", - "sha256": "6e331769369f81faf5659bea15c1a2e7d1ccc82ad29dbc2ed8971580caa2fc8f", + "tag": "fetchFromGitHub", + "owner": "tburette", + "repo": "take-off", + "sha256": "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf", "rev": "aa9ea45566fc74febbb6ee9c409ecc4b59246215" }, "recipe": { "sha256": "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140531.417", "deps": [ @@ -42092,14 +44656,15 @@ }, "fiplr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d11wtq/fiplr.git", - "sha256": "15ec6113e59c4c1ba22bd779c5b37f6f47432a21669730aa9c9a3890c96e1a6b", + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "fiplr", + "sha256": "14yy7kr2iv549xaf5gkav48lk2hzmvipwbs0rzljzw60il6k05hk", "rev": "bb6b90ba3c558988c195048c4c40140b2ee17530" }, "recipe": { "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140724.145", "deps": [ @@ -42109,14 +44674,15 @@ }, "rainbow-blocks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/rainbow-blocks.git", - "sha256": "4e847677bcfeb865edc73399c7370d4c22a649f78584d5fa676f0f74f3b9dc66", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "rainbow-blocks", + "sha256": "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c", "rev": "8335993563aadd4290c5fa09dd7a6a81691b0690" }, "recipe": { "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140306.1233", "deps": [] @@ -42129,21 +44695,22 @@ }, "recipe": { "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.1745", "deps": [] }, "password-generator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zargener/emacs-password-genarator.git", - "sha256": "1dc6ddeb2a24ab454906e6f358e547e63f508d1d1bde15bdba9c8490550084df", + "tag": "fetchFromGitHub", + "owner": "zargener", + "repo": "emacs-password-genarator", + "sha256": "1pw401ar114wpayibphv3n6m0gz68zjmiwz60r4lbar45bmxvihx", "rev": "c8193d5e963bda0a2f8e51fd4a94dcf37c76f282" }, "recipe": { "sha256": "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150222.1440", "deps": [] @@ -42156,21 +44723,22 @@ }, "recipe": { "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151029.855", "deps": [] }, "ido-grid-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/larkery/ido-grid-mode.el.git", - "sha256": "43580916bdd11935e4c17470a2ec4b2cfc0be84a83135be755088e33bbfc3914", + "tag": "fetchFromGitHub", + "owner": "larkery", + "repo": "ido-grid-mode.el", + "sha256": "051rzjxk73h8apkmn4w39bl0pz1c9gna4w3lq7j3a6fiplb0jn23", "rev": "34a7412c30840c1131464781dddfb1602355766b" }, "recipe": { "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151127.1135", "deps": [ @@ -42179,14 +44747,15 @@ }, "anything-prosjekt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/prosjekt.git", - "sha256": "26c8a168519aadc4ff394a635388509f33bfc10e8c45d9c85bf7a3fb9b4ffd5d", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "prosjekt", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3", "rev": "a864a8be5842223043702395f311e3350c28e9db" }, "recipe": { "sha256": "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140129.204", "deps": [ @@ -42196,14 +44765,15 @@ }, "company-sourcekit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nathankot/company-sourcekit.git", - "sha256": "5ef13118b89257ac54da5dc9c45d76269a8bfdf2c8393684cadae9b7ea853c7b", + "tag": "fetchFromGitHub", + "owner": "nathankot", + "repo": "company-sourcekit", + "sha256": "1xzwalchl9lnq9848dlvhhbzyh1wkwbciz20d1iw0fsigj5g156c", "rev": "5e1adf8d201fd94a942b40983415db1b28b6eef1" }, "recipe": { "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.714", "deps": [ @@ -42216,14 +44786,15 @@ }, "kaesar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "b9bf421152125c46447ba4f4e8700dd13de079572150558294b4c29b4f3c82bd", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "1maab8iaf2wcjj02ibl21jlfzmi9gmcl167cgdlwj50wkig74s23", "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" }, "recipe": { "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150220.505", "deps": [ @@ -42233,14 +44804,15 @@ }, "e2wm-pkgex4pl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-pkgex4pl.git", - "sha256": "0dbc18c29f6cd1c0a43e9fd3c826360d4f7f6adc88de53493fd57a1efc7734ef", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-pkgex4pl", + "sha256": "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d", "rev": "7ea994450727190c4f3cb46cb429ba41b692ecc0" }, "recipe": { "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140525.547", "deps": [ @@ -42250,14 +44822,15 @@ }, "org-linkany": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/org-linkany.git", - "sha256": "77d478ac162504ad503a7c10d89979057e57d7f4a16c73b8321f4426d0f9efad", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-linkany", + "sha256": "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p", "rev": "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2" }, "recipe": { "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140314.1308", "deps": [ @@ -42274,77 +44847,82 @@ }, "recipe": { "sha256": "1nam7xzw8hrykz73q9x24szpjv2kpkp48lcmzf02kzj3cg6l76qm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130220.603", "deps": [] }, "zen-and-art-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/developernotes/zen-and-art-theme.git", - "sha256": "d4de7c40505d3b955c09ec7b77e3fbf112baf0a9cdbf0a24293391c235ecca36", + "tag": "fetchFromGitHub", + "owner": "developernotes", + "repo": "zen-and-art-theme", + "sha256": "0dnaxhsw549k54j0mgydm7qbl4pizgipfyzc15f9afsxa107rpnl", "rev": "a7226cbce0bca2501d69a620cb2aeabfc396c232" }, "recipe": { "sha256": "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120622.937", "deps": [] }, "modtime-skip-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jordonbiondo/modtime-skip-mode.git", - "sha256": "b49c63a72802504c67a535082204604d7bdbab8b1b52506246bd8ace59202866", + "tag": "fetchFromGitHub", + "owner": "jordonbiondo", + "repo": "modtime-skip-mode", + "sha256": "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l", "rev": "c0e49523aa26b2263a8693691ac775988015f592" }, "recipe": { "sha256": "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140128.1601", "deps": [] }, "autumn-light-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aalpern/emacs-color-theme-autumn-light.git", - "sha256": "c6a5d2132f58c614b429868547cb90e514477b7fdf938e975032aa4164ac4a7a", + "tag": "fetchFromGitHub", + "owner": "aalpern", + "repo": "emacs-color-theme-autumn-light", + "sha256": "1lip7282g41ghn64dvx2ab437s83cj9l8ps1rd8rbhqyz4bx5wb9", "rev": "1e3b2a43a3001e4a97a5ff073ba3f0d2ea3888f9" }, "recipe": { "sha256": "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150515.947", "deps": [] }, "powershell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jschaf/powershell.el.git", - "sha256": "e2e60483f0e4fb1bed2b0625b896efd79bf1e9795573fd777a47762f6906f0b5", + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "powershell.el", + "sha256": "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn", "rev": "7316f44d0b528552f5a0692f778e5f0efd964299" }, "recipe": { "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150428.1621", "deps": [] }, "underwater-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jmdeldin/underwater-theme.el.git", - "sha256": "6adf3eedc58ae859a866578f37074e4283691afd03671e4f399a0abecbbefdfa", + "tag": "fetchFromGitHub", + "owner": "jmdeldin", + "repo": "underwater-theme.el", + "sha256": "1ypxpv5vw2ls757iwrq3zld6k0s29q3kg3spcsl5ks4aqpnkxpva", "rev": "4eb9ef014f580adc135d91d1cd68d37a310640b6" }, "recipe": { "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131117.1802", "deps": [] @@ -42357,21 +44935,22 @@ }, "recipe": { "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20121128.243", "deps": [] }, "magit-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "2f6f8ba5a19d853dd7bb95112d3f791839d7d4d5f6b5b2a71f222faa6490db90", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "0hy9a1rjl3vs6ysb2913li1zim7wcziaiv609g7dadfyl89c2d4v", "rev": "6b595ac224f512cf672c56600e136714875a940f" }, "recipe": { "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.705", "deps": [ @@ -42382,28 +44961,30 @@ }, "rotate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/daic-h/emacs-rotate.git", - "sha256": "99eda2ebe96d05a2714d4b213262fb1b31c31fc4bf40a4a2892ae4aa43bab4cc", + "tag": "fetchFromGitHub", + "owner": "daic-h", + "repo": "emacs-rotate", + "sha256": "0spgpq2cmckpl7j2193axy5yqws5dwrhik69d0bv0ylwzxp3npvg", "rev": "04b64c6e20c465102ecafe0e099986b0808582bf" }, "recipe": { "sha256": "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140123.316", "deps": [] }, "bbdb-vcard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tohojo/bbdb-vcard.git", - "sha256": "fde87c10a589d999d9dc66a3e28e5a52941fc6c9cb8cbeacea1d3336e399cd2a", + "tag": "fetchFromGitHub", + "owner": "tohojo", + "repo": "bbdb-vcard", + "sha256": "1zlf9xhpirln72xr7v6kgndkg5wyz5ipsl4gpq9lbmp92jlgbwlj", "rev": "c3aafd4160854a38fd92afcdade32b9a13abe82c" }, "recipe": { "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150713.1550", "deps": [ @@ -42412,14 +44993,15 @@ }, "package-build": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/melpa.git", - "sha256": "61b1735be10059ec6180f95d7cb0228605a82f28a30c83772ea80f7f3b33219d", - "rev": "7f766319c3e18a41017684ea503b0382e96ab31b" + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "melpa", + "sha256": "0mcxx69bspym4i9ky2ms9alj3a2015853s8qg86gwzyr49v0xfvz", + "rev": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "recipe": { "sha256": "1m245q81c2jifgqxwd2fi35jrcbf6v9a1a5zy815861avq3fg9g0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151211.1644", "deps": [ @@ -42428,28 +45010,30 @@ }, "lusty-explorer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sjbach/lusty-emacs.git", - "sha256": "0a07a3a62e118cadf37d6dbc75e7302713cb2f34363d6240229530df80753de4", + "tag": "fetchFromGitHub", + "owner": "sjbach", + "repo": "lusty-emacs", + "sha256": "1r1xfn0dyc4m49064g9n6hpwn4r763kpbg3dgprsv30i5ska61qa", "rev": "a6e78cafc193050a493d16d07eae107a2436c293" }, "recipe": { "sha256": "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150508.1757", "deps": [] }, "helm-hayoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/markus1189/helm-hayoo.git", - "sha256": "2bc02b76bb4ef37d5734d26829d48681b6ffa17ccd7e9a984d4c27f2b01314e0", + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "helm-hayoo", + "sha256": "08pfzs030d8g5s7vkpgicz4srp5cr3xpd84lhrr24ncrhbszxar9", "rev": "dd4c0c8c87521026edf1b808c4de01fa19b7c693" }, "recipe": { "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151014.151", "deps": [ @@ -42460,14 +45044,15 @@ }, "dpaste_de": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theju/dpaste_de.el.git", - "sha256": "6c23c7fe2d681ab0c58aae1cbc199667bc70355140a817e0e01a11bf39d03ace", + "tag": "fetchFromGitHub", + "owner": "theju", + "repo": "dpaste_de.el", + "sha256": "1avpg0cgzk8d6g1q0ryx41lkcdgkm0mkzr5xr32xm28dzrfmgd4z", "rev": "f0c39e8864299f735642f7d9fa490689398ce39d" }, "recipe": { "sha256": "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131015.725", "deps": [ @@ -42476,14 +45061,15 @@ }, "evil-terminal-cursor-changer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/7696122/evil-terminal-cursor-changer.git", - "sha256": "2bf055f52d6af6cd13e445ba45ba0d152894d64804e7d8f316b7aecbc998544c", + "tag": "fetchFromGitHub", + "owner": "7696122", + "repo": "evil-terminal-cursor-changer", + "sha256": "10aic2r1akk38hh761hr5vp9fjlh1m5nimag0nzdq5x9g9467cc8", "rev": "2735a11a2a0c8d327b730cefef2794834263c413" }, "recipe": { "sha256": "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150827.2151", "deps": [ @@ -42498,49 +45084,52 @@ }, "recipe": { "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.707", "deps": [] }, "bdo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/bdo.git", - "sha256": "7cf67bea9079fea3b102872965375976e808c8bb2af0fd727673a972fb40851f", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "bdo", + "sha256": "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm", "rev": "c96cb6aa9e97fa3491185c50dee0f77a13241010" }, "recipe": { "sha256": "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140126.301", "deps": [] }, "gnome-calendar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/gnome-calendar.el.git", - "sha256": "cc5a30c42299dece6663f9ca37384fefeeb2e0f40c5d51d6f3f079e03aaa1898", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "gnome-calendar.el", + "sha256": "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc", "rev": "58c3a3c32aff9901c679bdf9091ed934897b84a0" }, "recipe": { "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140112.559", "deps": [] }, "linum-off": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/linum-off.git", - "sha256": "e589b4f5e9a51c296eb6376e5800c22e256ef17d1b7f0ff3a65358654f251374", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "linum-off", + "sha256": "0x0k4m7nan2klvrhyzqvgpqnw99fq805hvipnrp2j755x7sv92g5", "rev": "e16826e9a4cfe104d55884dc3cc4b4b1ced364ca" }, "recipe": { "sha256": "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130419.2254", "deps": [] @@ -42554,35 +45143,37 @@ }, "recipe": { "sha256": "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150314.944", "deps": [] }, "diredful": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thamer/diredful.git", - "sha256": "178406bf35315ce545d5c084e719d1e2a4bdc25a9f6973565d6e20ea0ddea7e7", + "tag": "fetchFromGitHub", + "owner": "thamer", + "repo": "diredful", + "sha256": "1rx7vq6yl83fbmb76sczbb1bv972s4cyg160sm2yap1i6nzhd10p", "rev": "e814fa3ffc7ec7b2455112c3d98e905674a6006b" }, "recipe": { "sha256": "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151118.1500", "deps": [] }, "evil-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/edwtjo/evil-org-mode.git", - "sha256": "a36027bdd6d607504606b03a85425f17c5db6e3623de84872b97adde873a395e", + "tag": "fetchFromGitHub", + "owner": "edwtjo", + "repo": "evil-org-mode", + "sha256": "0pir7a3xxbcp5f3q9pi36rpdpi8pbx18afmh0r3501ynssyjfq53", "rev": "61319f85979e8768c930983595caa2483c0fb319" }, "recipe": { "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151203.147", "deps": [ @@ -42593,14 +45184,15 @@ }, "modalka": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/modalka.git", - "sha256": "bd4cb2466fc44710001ec63b450740a08f44b65005670f6d0d6a3344cb42b73d", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "modalka", + "sha256": "04c7js9jfhzcak9rgzqh1lq56i2b1g4phwjncsxkirvx97rnz4ac", "rev": "67e08b9d315cfa6a2ca3b3dc3954214c68a90cf5" }, "recipe": { "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150924.1111", "deps": [ @@ -42609,14 +45201,15 @@ }, "ac-sly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/qoocku/ac-sly.git", - "sha256": "6d67693837c7df45073729de7054f8459482b78f5049c55386d66e3657565af6", + "tag": "fetchFromGitHub", + "owner": "qoocku", + "repo": "ac-sly", + "sha256": "0mif35chyj4ai1bj4gq8qi38dyfsp72yi1xchhzy9zi2plpvqa7a", "rev": "b37a1ecfaab10a6d81c6d894417176d3bb4c5285" }, "recipe": { "sha256": "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150421.1522", "deps": [ @@ -42627,42 +45220,45 @@ }, "subshell-proc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andrewmains12/subshell-proc.git", - "sha256": "e4b57a3e60c3c228eccfc0b3ac7abdc6ef275f0fcd9b9d0c91cafd2c91a83f26", + "tag": "fetchFromGitHub", + "owner": "andrewmains12", + "repo": "subshell-proc", + "sha256": "09izm28jrzfaj469v6yd1xgjgvy6pmxarcy0rzn2ihn3c0z7mdg4", "rev": "d18b20e03fc89ee08e8c6a968aba31a16b53287f" }, "recipe": { "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130122.1522", "deps": [] }, "highlight-thing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgeller/highlight-thing.el.git", - "sha256": "99b7db9cef314e4276b0228fb71757e07dc0985b1bc7c85abb0cea3c5b019d05", + "tag": "fetchFromGitHub", + "owner": "fgeller", + "repo": "highlight-thing.el", + "sha256": "01cx05dkrshcpddciiqvbfcc0zg0awbvg3r2n1v44kiixyfdpdwr", "rev": "eaf817d61d13fc97142996211222f8d54b48d3aa" }, "recipe": { "sha256": "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151001.221", "deps": [] }, "helm-bibtex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tmalsburg/helm-bibtex.git", - "sha256": "91374e29f763a83ea8af82edc45a440a79797bd8abc1f3f021b2489e14246cdb", + "tag": "fetchFromGitHub", + "owner": "tmalsburg", + "repo": "helm-bibtex", + "sha256": "1nvc4ha9wj5j47qg7hdbv1xpjy8a8idc9vc2myl3xa33ywllwdwi", "rev": "bfcd5064dcc7c0ac62c46985832b2a73082f96e0" }, "recipe": { "sha256": "1rsplnh18w1fqr6da79vj8x9q2lyss9sssy8pfz3hfw7p6qi6zkg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151125.1758", "deps": [ @@ -42676,14 +45272,15 @@ }, "ssh-config-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jhgorrell/ssh-config-mode-el.git", - "sha256": "66b94bf558dac42c9f452826676a457a3614c47d6e8e467894ba178c23cedaec", + "tag": "fetchFromGitHub", + "owner": "jhgorrell", + "repo": "ssh-config-mode-el", + "sha256": "1v6srqiqq5xsjiw4d3kfgp218dks8mm6f9i88ngjri6sb3slpfb6", "rev": "3d194c772d428144acd84c85be560ca96fb323ba" }, "recipe": { "sha256": "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141219.1046", "deps": [] @@ -42696,21 +45293,22 @@ }, "recipe": { "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150104.1748", "deps": [] }, "phi-search-mc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/phi-search-mc.el.git", - "sha256": "5b2fb5c9bc162e7d036b37c6161281e85670a39a547a5dbce64607f26ca0cc64", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "phi-search-mc.el", + "sha256": "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv", "rev": "4c6d2d39feb502febb81fc98b7b5854d88150c69" }, "recipe": { "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150218.55", "deps": [ @@ -42720,14 +45318,15 @@ }, "phi-search-dired": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/phi-search-dired.git", - "sha256": "d609c5b2e8597bde7a32055c7fc9fd4bc120aa333ff7ee04c184330b0f4984ac", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-search-dired", + "sha256": "1b44947hncw4q42fxxrz6fm21habzp4pyp0569xdwysrx2rca2fn", "rev": "162a5e4507c72512affae22744bb606a906d4193" }, "recipe": { "sha256": "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150405.214", "deps": [ @@ -42736,42 +45335,45 @@ }, "rcirc-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kensanata/rcirc-color.git", - "sha256": "27911c6fc04d5da732943e32dacbb71a0d9718833bbe2acf4cd7f1864884749c", + "tag": "fetchFromGitHub", + "owner": "kensanata", + "repo": "rcirc-color", + "sha256": "173lhi48dwfp9k7jmgivhcc9f38snz5xlciyjhrafpadq1pir497", "rev": "a94c7811e6ab578a138eb582f7ce31d3568b5c4d" }, "recipe": { "sha256": "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151130.958", "deps": [] }, "bury-successful-compilation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/EricCrosson/bury-successful-compilation.git", - "sha256": "925c14e42c19c58903b654662a08cad84dd06542ff1f59fe49d2fb15e5a5f1af", + "tag": "fetchFromGitHub", + "owner": "EricCrosson", + "repo": "bury-successful-compilation", + "sha256": "1bzilpjibyyj97z5j7zz89jx0kfqr842lrjlnq1qki8r5kj18p4j", "rev": "0c05c006ab5d0a7262701d003aed5cf5fc9dd621" }, "recipe": { "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150328.1928", "deps": [] }, "html-to-markdown": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/html-to-markdown.git", - "sha256": "f1a1a85e77bda03a54ebaa20136d2943d6043fe7bb6c07d0b3c8d21d53fdc326", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "html-to-markdown", + "sha256": "09n3zm9ivln8ng80fv5vwwzh9mj355ni685axda3m85xfxgai8gi", "rev": "60c5498c801be186478cf7c05be05b4430c4a144" }, "recipe": { "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151105.240", "deps": [ @@ -42780,42 +45382,45 @@ }, "emacsshot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marcowahl/emacsshot.git", - "sha256": "2bf9d03dfe6e5d93d5f33c98eaf84b7f73d39fcdecd1b9de2cb0450384ecc44a", + "tag": "fetchFromGitHub", + "owner": "marcowahl", + "repo": "emacsshot", + "sha256": "0jn4xj206idh5kgbklgcrngx6wvz9gwfm61wygar6pbfzqyx1y9b", "rev": "8615aa841a37c20f8cc0f0efdc89c8d79acbb84b" }, "recipe": { "sha256": "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150516.1633", "deps": [] }, "folding": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jaalto/project-emacs--folding-mode.git", - "sha256": "de1a7073e89b83fa7507a2702baff4c321078888900ec6d27d03bf20bf9f4dfc", + "tag": "fetchFromGitHub", + "owner": "jaalto", + "repo": "project-emacs--folding-mode", + "sha256": "1z2dkyzj1gq3gp9cc3lhi240f8f3yjpjnw520xszm0wvx1rp06ny", "rev": "f738e28cd90d794aff698bcd44bf4f5027c92839" }, "recipe": { "sha256": "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140401.203", "deps": [] }, "srefactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tuhdo/semantic-refactor.git", - "sha256": "eb4007d738fefbd52c1f5f80e55f2e7a4970ef008cce0ead03e6a7e36328b7d8", + "tag": "fetchFromGitHub", + "owner": "tuhdo", + "repo": "semantic-refactor", + "sha256": "1n5p51iy79z60fnhxklc03pp0jbs5rgyb02z3wndbyzy73bhfh7b", "rev": "e0482b08425894431fa67109615d4f0c971471c8" }, "recipe": { "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151202.2204", "deps": [ @@ -42824,14 +45429,15 @@ }, "dired-avfs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/dired-hacks.git", - "sha256": "bd41f11395ad00cfd8503731348457b29dd6226a3f0e419c1bf9c922598a5996", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", "rev": "6647825dbca4269afa76302e345d6bd15b222e42" }, "recipe": { "sha256": "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141203.932", "deps": [ @@ -42841,14 +45447,15 @@ }, "dircmp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/matthewlmcclure/dircmp-mode.git", - "sha256": "6d28ddbecb95a498e13347fe12f6235df6f860a2fa222bf93130371caefe8921", + "tag": "fetchFromGitHub", + "owner": "matthewlmcclure", + "repo": "dircmp-mode", + "sha256": "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s", "rev": "558ee0b601c2de9d247612085aafe2926f56a09f" }, "recipe": { "sha256": "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141204.1156", "deps": [] @@ -42862,21 +45469,22 @@ }, "recipe": { "sha256": "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150930.1117", "deps": [] }, "wacspace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shosti/wacspace.el.git", - "sha256": "de0f12cf4931c77b520f4ed8e8a1574906662975cfee4cacbd5eb3469d75e952", + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "wacspace.el", + "sha256": "0nvlni3iy2sq76z8d4kj5492m0w7qv96shjqkynvlj0avf528hv4", "rev": "4a11168d58c9c129cfcd04a1c9581962565eca4a" }, "recipe": { "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140827.32", "deps": [ @@ -42886,14 +45494,15 @@ }, "helm-pages": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/helm-pages.git", - "sha256": "747b16bd0267db2b368778ffc81c24f1013320902f811648779a33b1e740844a", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "helm-pages", + "sha256": "0yngs3q6142g2nn1wwdaifylyfjjs3gmmy0jck5zh8mhmdgdqr06", "rev": "60f52edb11e54f553251234f4d336c0947ca0a2b" }, "recipe": { "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151209.1400", "deps": [ @@ -42904,14 +45513,15 @@ }, "php-auto-yasnippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/php-auto-yasnippets.git", - "sha256": "a07ec2ad1a349ae81816288f2dfe1929b884eb811d6dfedc6bdc669ed4ccc4d0", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "php-auto-yasnippets", + "sha256": "1l64rka9wrnwdgfgwv8xh7mq9f1937z2v3r82qcfi6il3anw4zm0", "rev": "7da250a0d40f3ec44c7249997436ee8c5cae04ef" }, "recipe": { "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141128.1611", "deps": [ @@ -42927,21 +45537,22 @@ }, "recipe": { "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130328.527", "deps": [] }, "helm-ls-git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-ls-git.git", - "sha256": "85e33236e83fe8ec839e1f61d068e35567bfd0b499669c65f03a7e2701d6cb4e", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-ls-git", + "sha256": "129mlpx5vqxyg2scrdiajxp71phxamrvijpc054k1q1an8vgn0kv", "rev": "8cddd84ee4361b9d21f800adbaeeacf72645ab62" }, "recipe": { "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151101.56", "deps": [ @@ -42950,56 +45561,60 @@ }, "hl-todo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/hl-todo.git", - "sha256": "6db370f442de1c8f5174ad5c120c5d1d6d48ed29d2613245e2f2ba352ddf8c53", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "hl-todo", + "sha256": "0lwcvwnkbfpjw92k4qfj57nlhv8xbl614p5dfi8qy76y8bs71cvd", "rev": "4a5958b90d35c0ba368778274c2a3ab9df941d1c" }, "recipe": { "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025.1420", "deps": [] }, "cython-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cython/cython.git", - "sha256": "aa480da59924dc12732c8dfdf18bec567450e3e8df32904fc305596f067c23ee", + "tag": "fetchFromGitHub", + "owner": "cython", + "repo": "cython", + "sha256": "1kz96n6p4kspzhgaa30l3hzv5b37vf32ww715r30g68188ngcjmg", "rev": "0c62e665c02b438be331e445bbde2f1c6bd9dff0" }, "recipe": { "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140705.1429", "deps": [] }, "google": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/google-el.git", - "sha256": "51685fee9007cd823ca652906aeb7c5927873026809d179c6b909e57ed6de11a", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "google-el", + "sha256": "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i", "rev": "1ec11138bdd237e668ced1470c54f740e6c629a4" }, "recipe": { "sha256": "15z8l3adw8il0simk8phjgksh0v88cffb6gg3hv8a7nf5bla43my", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140330.1056", "deps": [] }, "midje-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dnaumov/midje-mode.git", - "sha256": "efe687a8f178b9a85b9d7789fdee209c48c31d9262a2c1814121ae0941d62fb2", + "tag": "fetchFromGitHub", + "owner": "dnaumov", + "repo": "midje-mode", + "sha256": "1cigsr0hkbi1860w38k2j8fw6j4w43pgv2bpkmdsifbqy6l8grpg", "rev": "07fc6cee4f5d6aa4187636266b9681a3e455ab6b" }, "recipe": { "sha256": "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150921.1950", "deps": [ @@ -43009,30 +45624,32 @@ }, "toggle-test": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rags/toggle-test.git", - "sha256": "7ec974881a980d17e796c8cff49dfc127d5cf12dd000d8a25f0620d931d5ea69", + "tag": "fetchFromGitHub", + "owner": "rags", + "repo": "toggle-test", + "sha256": "0sgaslqxj806byidh06h5pqmqz8jzjfz9ky8jvkif3cq3a479jby", "rev": "e969321f274903d705995a7d0345a257576ec5ff" }, "recipe": { "sha256": "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140723.37", "deps": [] }, "cider": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/cider.git", - "sha256": "f7db3f7de53ea4fd2b8d33574b9dbf352a2eca91ecfd9a76d110497f7d3a3fe5", - "rev": "492e8ab16c3e69d2850e1dbeb2e2f7224ce8a58a" + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider", + "sha256": "0gm9pqxi9jz615ws6vic58fq0620pa1zr3xgvx6mh7k1y2jfbljz", + "rev": "a80215f160c2243722039a2b484823042dfab63d" }, "recipe": { "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151214.1527", + "version": "20151217.1352", "deps": [ "clojure-mode", "emacs", @@ -43050,7 +45667,7 @@ }, "recipe": { "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130130.1551", "deps": [] @@ -43063,21 +45680,22 @@ }, "recipe": { "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20051013.1256", "deps": [] }, "ox-pukiwiki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yashi/org-pukiwiki.git", - "sha256": "6a5019c6ce3b6d2bb74d227c1bdb07f6efb3e0f0e4fe9562aa2a5951e7a4feec", + "tag": "fetchFromGitHub", + "owner": "yashi", + "repo": "org-pukiwiki", + "sha256": "0adj6gm39qw4ivb7csfh21qqqipcnw1sgm1xdqvrk86kbs9k1b2g", "rev": "bdbde2c294f5d3de11f08a3fe19f01175d2e011a" }, "recipe": { "sha256": "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150124.1116", "deps": [ @@ -43086,14 +45704,15 @@ }, "ac-slime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ac-slime.git", - "sha256": "7cf66d36d9dac4e2e297cd858072ffc813e85f62f67ddcadc61fff101c276f54", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-slime", + "sha256": "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88", "rev": "df6c4e88b5ba2d15d47a651ecf7edc0986624112" }, "recipe": { "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150729.2235", "deps": [ @@ -43104,14 +45723,15 @@ }, "fastnav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gleber/fastnav.el.git", - "sha256": "234a6c248fb9f44d9d99022ca7697d0ea1de91b89642f15cc5e3bfe1750ea5fb", + "tag": "fetchFromGitHub", + "owner": "gleber", + "repo": "fastnav.el", + "sha256": "0y95lrdqd9i2kbb266s1wdiim4m8vrn3br19d8s55ib6xlywf8cx", "rev": "1019ba2b61d1a070204099b23da347278a61bc89" }, "recipe": { "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20120211.857", "deps": [] @@ -43124,21 +45744,22 @@ }, "recipe": { "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.700", "deps": [] }, "myterminal-controls": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myTerminal/myterminal-controls.git", - "sha256": "0675c64b274cc140498b5fb800fd3a95b145725df4dc9f5777315b83c485d356", + "tag": "fetchFromGitHub", + "owner": "myTerminal", + "repo": "myterminal-controls", + "sha256": "0mnkhp286nrifxbrzp7lbmr4bccm7byh1f2zid4l1hac4x5wcx86", "rev": "6b40d5f606dd402b80b7c93775bece1063cbf826" }, "recipe": { "sha256": "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150427.547", "deps": [ @@ -43148,14 +45769,15 @@ }, "traad-autocomplete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/traad.git", - "sha256": "c088c0534c81446b4f1632d74f784cbfa2d07d8bd2782121c30323dd401db3bf", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "traad", + "sha256": "06pvsa6m8h9j6mrq10dm6zj5jqibcm1xf3s1wkh7l6sr6hziz8rz", "rev": "022cda646ec9b7102c73899e6305bfdfc0402ba5" }, "recipe": { "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140817.611", "deps": [ @@ -43165,28 +45787,30 @@ }, "xah-find": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xahlee/xah-find.git", - "sha256": "1bf37853c6d374c57d911bee6e5ad84e34cc1790ffd1fd4ca160d880e0aebb15", + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-find", + "sha256": "05dvmvh81n30l56gvlgzj0bwqd2fv1d6xvhvj5ywax6kqr9piwqv", "rev": "e25eb9343fca71523ea6bf76741e6c5aab8004a4" }, "recipe": { "sha256": "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151214.1257", "deps": [] }, "wandbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kosh04/emacs-wandbox.git", - "sha256": "ba97faf09d7091a7d5c315da01223453fdd9aef4f02abe7ba6e2074ccf1b7976", + "tag": "fetchFromGitHub", + "owner": "kosh04", + "repo": "emacs-wandbox", + "sha256": "00qzgabanmy4nkpnbc1m45j86k29plyyn408n1l0j8505fy9l7ca", "rev": "cea03dec67e90a4c87eb9b6d69d1b3c68af541d0" }, "recipe": { "sha256": "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150905.1024", "deps": [ @@ -43197,28 +45821,30 @@ }, "paredit-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/phil-emacs-packages.git", - "sha256": "c5244e721eb12bb17ad2680853bb102ef0675b291ab6b275b599eb83a49aec79", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "phil-emacs-packages", + "sha256": "0ygckaj87swrnmsv5dhs55dngw1f22xm6238s9xb2axi3rr4w965", "rev": "6e0142bae9cc3bfbea2fa134b6385af1c99ee782" }, "recipe": { "sha256": "17l05m1lg0vmahh53b2lvw316y4z7jz3nmy0zyiyiygax313y42l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130923.1454", "deps": [] }, "el-init-viewer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HKey/el-init-viewer.git", - "sha256": "d4cc72a44b9fde5bc7f2a9abd60cf3b77349edc01e4e38da77e9c76ae9e14967", + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "el-init-viewer", + "sha256": "13cc7nnslij28fa1469s9pfmnz8j0m6bayhrqxckd0xplvwwipnx", "rev": "6e1aaab3e49d87253763e5b437d4f43f445b7774" }, "recipe": { "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150303.228", "deps": [ @@ -43232,14 +45858,15 @@ }, "gist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/defunkt/gist.el.git", - "sha256": "e89b2f4a41a7b682f95aed343c35f445991f2a839a076c8df330e56a5cd17760", + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "gist.el", + "sha256": "0q3ps5f6mr9hyf6nq1wshcm1z6a5yhskqd7dbbwq5dm78552z6z8", "rev": "144280f5353bceb902d5278fa64078337e99fa4d" }, "recipe": { "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150906.1154", "deps": [ @@ -43249,14 +45876,15 @@ }, "clojure-mode-extra-font-locking": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clojure-mode.git", - "sha256": "e0c41c3eea190a76c23e91687151e81becdf025e19838aa69999832318170abe", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-mode", + "sha256": "0mc5g44vfb8w0mhj518yxik6dg55w17vrldcw86ajhw05fww3h3n", "rev": "802c1dbf3529da5a09f97cb21833e0a27ccf41d7" }, "recipe": { "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150110.705", "deps": [ @@ -43265,44 +45893,47 @@ }, "ggo-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkjunker/ggo-mode.git", - "sha256": "172e069d377e934941f52d28877fb2284e75e6ac74b0fd2c78b738a2088e922f", + "tag": "fetchFromGitHub", + "owner": "mkjunker", + "repo": "ggo-mode", + "sha256": "0bwjiq4a4f5pg0ngvc3lmkk7aki8n9zqfa1dym0lk4vy6yfhcbhp", "rev": "e326899d9ed8217c7a4ea6cfdc4dd7aea61d6c1b" }, "recipe": { "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130524.643", "deps": [] }, "auctex-latexmk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tom-tan/auctex-latexmk.git", - "sha256": "5e42753cbb4be334590244d289ee77073e06d8cb942da154ab65c2a6a09fe4eb", - "rev": "12318b945c3a68a593d90ef2a4461707523d46c0" + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "auctex-latexmk", + "sha256": "1h0044zfzklc9sy0a02vcdr75ly6wlhjx3n5bvq7yiicqd012316", + "rev": "b7d36658c8a9102055a720e9102e1d3514089659" }, "recipe": { "sha256": "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151212.1843", + "version": "20151217.757", "deps": [ "auctex" ] }, "clojure-cheatsheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clojure-cheatsheet.git", - "sha256": "b9ed4258522f5e04b4a59f4548d55b2b15dea8a06aa0aed6e1173bc7cbb008d4", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-cheatsheet", + "sha256": "1ljb0g4yvrqgjqgmz8qz0c0swbx1m6gldmcdqnmxd72bs3w9p0k8", "rev": "7f1ee3facf131609ac1b987439b9b14daa4d7402" }, "recipe": { "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151112.717", "deps": [ @@ -43312,42 +45943,45 @@ }, "ioccur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/ioccur.git", - "sha256": "2a2f60f6254253899cf0eac6bbcf4c890dbac182d68f0341b5343c9a82e3e5e7", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "ioccur", + "sha256": "1rz5wf19lg1lnm0h73ynhb0vl3c99k7vpipay2f8jls24pv60bra", "rev": "4c0ef992a6fcd2aed62e3866d56650463108ab5a" }, "recipe": { "sha256": "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130822.48", "deps": [] }, "shell-here": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ieure/shell-here.git", - "sha256": "d4794f6c76035e1bc955d683b99a7850208f883e434d057f01b7dc930ff8047c", + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "shell-here", + "sha256": "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl", "rev": "251309141e18978d2b8014345acc6f5afcd4d509" }, "recipe": { "sha256": "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150728.1204", "deps": [] }, "org-gnome": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/org-gnome.el.git", - "sha256": "41ea1129cd5ee91e363516b4a514edb5433297f6d32499ed80a2ab58c08ca72c", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "org-gnome.el", + "sha256": "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1", "rev": "1012d47886cfd30eed25b73d9f18e475e0155f88" }, "recipe": { "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150614.957", "deps": [ @@ -43358,28 +45992,30 @@ }, "buster-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/buster-mode.git", - "sha256": "10c1dd9f7d2c6d66bdaf6beb97f0130f6b5a7743161a62c1a86de2245dba0438", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "buster-mode", + "sha256": "1viq7cb41r8klr8i38c5zjrhdnww31gh4j51xdgy4v2lc3z321zi", "rev": "de6958ef8369400922618b8d1e99abfa91b97ac5" }, "recipe": { "sha256": "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140928.713", "deps": [] }, "osx-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/osx-dictionary.el.git", - "sha256": "e11de28a2d272ad48c6aefc9f82427699c839ffd0039febe5c2ec97ca2483b3b", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "osx-dictionary.el", + "sha256": "0frv92i7rj9fbjzgwf80zngq77394wjgijggda6d8ai75n5f47g1", "rev": "ffbc358a4c686ea77e8bb88319ad192b4ff1aa55" }, "recipe": { "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151108.2352", "deps": [ @@ -43388,28 +46024,30 @@ }, "phoenix-dark-pink-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/j0ni/phoenix-dark-pink.git", - "sha256": "8f2148b45ccc437c5cee1560f8fd09aeb0dc1210b0e973029d9edfd208e15e10", + "tag": "fetchFromGitHub", + "owner": "j0ni", + "repo": "phoenix-dark-pink", + "sha256": "042yw44d5pwykl177sdh209drc5f17yzhq0mxrf7qhycbjs4h8cg", "rev": "314602b2e68c4054159ab3f0f6f6b658f232ada5" }, "recipe": { "sha256": "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150406.2202", "deps": [] }, "zzz-to-char": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/zzz-to-char.git", - "sha256": "d5628735f6e63840f377c60dd5709be93ff08a12c6195ea85799acf5276aaffd", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "zzz-to-char", + "sha256": "1ai0a9r1xdz1jcr071ivm49wl906a0jqnhfaznw37jw9j2db58zn", "rev": "5d3465122342265b6ff8495c60d9a7cb457be42a" }, "recipe": { "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151030.232", "deps": [ @@ -43420,28 +46058,30 @@ }, "automargin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zk-phi/automargin.git", - "sha256": "c2a47141718908e08135edd9190a99dc5ea8823848f1e37fece019e898f5d60a", + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "automargin", + "sha256": "02nnyncfh6g0xizy7wa8721ahpnwk451kngd6n0y0249f50p3962", "rev": "4901d969ad69f5244e6300baab4ba04efed800c3" }, "recipe": { "sha256": "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20131112.214", "deps": [] }, "pass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/pass.git", - "sha256": "2bdc4cdef81888617af26dc73cfa1a131d2d550b38ebe29878f9327c80d012c6", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "pass", + "sha256": "14zpkxnwvwdi7wnjw4827lzzn6kw8wmwr2whavpi4rlkq8ix6dv2", "rev": "f43f6ada151a81f0bca4397b78382e4f6160d0ad" }, "recipe": { "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151109.603", "deps": [ @@ -43452,42 +46092,45 @@ }, "jaunte": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawaguchi/jaunte.el.git", - "sha256": "6e948daccc050d512881f951d6a37df012b435e4b66b05d7d88d539e105560af", + "tag": "fetchFromGitHub", + "owner": "kawaguchi", + "repo": "jaunte.el", + "sha256": "1bv0al89wlwdv3bhasxnwhsv84phgnixclgrh4l52385rjn8v53f", "rev": "b719c2d4d5d70640d70978b661863d10d6be06fc" }, "recipe": { "sha256": "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130413.419", "deps": [] }, "monochrome-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fxn/monochrome-theme.el.git", - "sha256": "ce5b5d2a79f2bd8cd6386faf0c73f9ccd57b47fbe7cd15ffe6f9fdabfabeb0eb", + "tag": "fetchFromGitHub", + "owner": "fxn", + "repo": "monochrome-theme.el", + "sha256": "1sxhpvxapzgrwvzibkg7zd3ppmfcz5rhrbvg73b8rggjg4m5snyf", "rev": "58fb4cf28c407f059b78bfd72c4dbced07638dd6" }, "recipe": { "sha256": "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140326.550", "deps": [] }, "ez-query-replace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/ez-query-replace.el.git", - "sha256": "f1938f7565cde65fead56b0a3b568306361f2da63a97316bcf471b207a020a97", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ez-query-replace.el", + "sha256": "15qa09x206s7rxmk35rslqniydh6hdb3n2kbspm5zrndcmsqz4zi", "rev": "1c0cab96d65105b780e32fdd29d2c6933be72ef6" }, "recipe": { "sha256": "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140810.717", "deps": [ @@ -43496,14 +46139,15 @@ }, "request": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-request.git", - "sha256": "7ba9a68d6b0a117510a409f8fba2281dc33d6beb5336d92eff0cb462adf31dcc", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-request", + "sha256": "0dja4g43zfjbxqvz2cgivgq5sfm6fz1563qgrp4yxknl7bdggb92", "rev": "adf7de452f9914406bfb693541f1d280093c4efd" }, "recipe": { "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140316.617", "deps": [] @@ -43512,26 +46156,27 @@ "fetch": { "tag": "fetchgit", "url": "git://jblevins.org/git/markdown-mode.git", - "sha256": "9598cac1aec72eb4133bde780488cab417bd0158cb91d5368f619f62d743676f", - "rev": "23113fa13292712899ad66c355dcd44c0ee9055c" + "sha256": "b74db7308411036038e060cca7dbf6e1a6b839cc81b40dc439cfee54540f9c67", + "rev": "1c76d45ae30bba1e8d68b2500d0531c69dd1472d" }, "recipe": { "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151215.1502", + "version": "20151218.1349", "deps": [] }, "sphinx-doc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/naiquevin/sphinx-doc.el.git", - "sha256": "d48f3f8dfaf8b6048be35276b913d5ee7e079b0784ecced5888a3c8a5374e692", + "tag": "fetchFromGitHub", + "owner": "naiquevin", + "repo": "sphinx-doc.el", + "sha256": "0smxpv1i9nsaam4qc683491c4jwv3vqb7wpiyvjy2p9giqr3csjh", "rev": "c6f3053b83eab029c13e680b8200c704880727b1" }, "recipe": { "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150616.1350", "deps": [ @@ -43542,14 +46187,15 @@ }, "evil-smartparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/expez/evil-smartparens.git", - "sha256": "374996f077315860970eebf4dac6b392be7bcf4db5d099a2982de083ebf2a6dc", + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "evil-smartparens", + "sha256": "0xwrg03w40pncdy5ppn7f77ravcbimj1ylc1r4clpqiha1d4xkhi", "rev": "0e89b23924b2e0baa0d11841ea5126967a072fa8" }, "recipe": { "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151126.324", "deps": [ @@ -43560,14 +46206,15 @@ }, "org-protocol-jekyll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vonavi/org-protocol-jekyll.git", - "sha256": "5e5f0f1b8f514fff887035742fb7f55412688cf9e1cd31cabfa6aae07431f7cb", + "tag": "fetchFromGitHub", + "owner": "vonavi", + "repo": "org-protocol-jekyll", + "sha256": "1jzp65sf1am6pz533kg1z666h4jlynvjyx1mf24gyksiiwdhypsy", "rev": "f41902baaa62c8de3f81ad67a5f36d6aa5781578" }, "recipe": { "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151119.1038", "deps": [ @@ -43576,28 +46223,30 @@ }, "autodisass-llvm-bitcode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gbalats/autodisass-llvm-bitcode.git", - "sha256": "3a1301b29c857b080187407b4e99e8dcf5eb2e70fe4869d177ec1639ba13ef1c", + "tag": "fetchFromGitHub", + "owner": "gbalats", + "repo": "autodisass-llvm-bitcode", + "sha256": "1fq4h5fmamyh7z8nq6pigx74p5v8k3qfm64k66vwsm8bl5jdkw17", "rev": "d2579e3a1427af2dc947c343e49eb3434078bf04" }, "recipe": { "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150410.2025", "deps": [] }, "sourcemap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-sourcemap.git", - "sha256": "551a9489ade4a1f2ccda8aecc91f84532f16e37ea0ec9756d973a15b0d125370", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-sourcemap", + "sha256": "085xd5fqxgv9bam9k4aa3w0sa9q41cg275i60c8njy3bkbqcalh5", "rev": "d50fd8d169f2d347b24276a0d28bb197400fc657" }, "recipe": { "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150418.900", "deps": [ @@ -43607,14 +46256,15 @@ }, "json-snatcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sterlingg/json-snatcher.git", - "sha256": "3fcbfd635ecf0e873c0d94261acd2a3147eb1f2f10576379fc085b08964d5d3e", + "tag": "fetchFromGitHub", + "owner": "Sterlingg", + "repo": "json-snatcher", + "sha256": "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw", "rev": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c" }, "recipe": { "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150511.2247", "deps": [ @@ -43629,21 +46279,22 @@ }, "recipe": { "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130824.658", "deps": [] }, "gore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sergey-pashaev/gore-mode.git", - "sha256": "9f0db205ff0f9f254bf424e07e2897d49d1c58eeebe2f6a6c1682c7bb1120250", + "tag": "fetchFromGitHub", + "owner": "sergey-pashaev", + "repo": "gore-mode", + "sha256": "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz", "rev": "94d7f3e99104e06167967c98fdc201049c433c2d" }, "recipe": { "sha256": "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151123.1327", "deps": [ @@ -43652,14 +46303,15 @@ }, "org-link-travis": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/org-link-travis.git", - "sha256": "089627b60fc04ccaf038234777333f4a4c7e0df72eda91e64fc17e6244bb279d", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-link-travis", + "sha256": "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8", "rev": "596615ad8373d9090bd4138da683524f0ad0bda5" }, "recipe": { "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140405.1827", "deps": [ @@ -43668,28 +46320,30 @@ }, "cryptol-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thoughtpolice/cryptol-mode.git", - "sha256": "470781cb9844aaabd2ebb4cbf737b4736e60d00b0c81449487bab9575cc04dfd", + "tag": "fetchFromGitHub", + "owner": "thoughtpolice", + "repo": "cryptol-mode", + "sha256": "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w", "rev": "a54d000d24757fad2a91ae2853b16a97ebe52771" }, "recipe": { "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140426.1204", "deps": [] }, "company-ycmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/emacs-ycmd.git", - "sha256": "a91b9027a3812e2e71525cb3a38e1c798149e0baa53d605b1551983f6c7f7e4c", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "09h7k4dir6rpcaarv8k69szssy8iyj67g44zpbgph9yp9cvfm9yx", "rev": "b801275e0cc9e0a70d78c61e3fb8ed6b3bbb0c93" }, "recipe": { "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151022.1210", "deps": [ @@ -43702,28 +46356,30 @@ }, "unicode-emoticons": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hagleitn/unicode-emoticons.git", - "sha256": "1066b355a253c180f0715106945e65a0b240e6d4352b0fbf4ad034c89093af04", + "tag": "fetchFromGitHub", + "owner": "hagleitn", + "repo": "unicode-emoticons", + "sha256": "015gjf8chd6h9azhyarmskk41cm0cmg981jif7q81hakl9av6rhh", "rev": "fb18631f342b0243cf77cf59ed2067c47aae5233" }, "recipe": { "sha256": "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150204.508", "deps": [] }, "literate-coffee-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-literate-coffee-mode.git", - "sha256": "7f19490b6a8b82aa556dc72537d74bd864d3a621299f985fcbb2188ed6342784", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-literate-coffee-mode", + "sha256": "16xy6251ba0ca7r3wbjdng8i7pmcsh48lziczhrs5zx5y0b2j4zr", "rev": "c55d0bec31438f15e986c5ad031dff853cfd1178" }, "recipe": { "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20141216.1719", "deps": [ From df4a984c6085d2516d4667ca1dbc7a2a03683ff5 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 18 Dec 2015 17:06:59 -0600 Subject: [PATCH 126/289] melpa-stable-packages 2015-12-18 --- .../emacs-modes/melpa-stable-packages.json | 11565 +++++++++------- 1 file changed, 6525 insertions(+), 5040 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json index e4e1755be3d..50e11182e44 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json @@ -1,42 +1,59 @@ { "qiita": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/qiita-el.git", - "sha256": "6e2c9eceaf4d87eff3c4c56508ee71cccd2806da163a16a9f2e21e38ec111f84", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "qiita-el", + "sha256": "110z27n3h7p2yalicfhnv832ikfcf7p0hrf5qkryz1sdmz79wb3f", "rev": "33b6d3450bb4b3d0186c2475f6c78269c71fd1ff" }, "recipe": { "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [] }, "outorg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/outorg.git", - "sha256": "65b7e7c7e43a8828aa452ed5ccdc8d9909fce69b76bc30d175f5d252e1445ed8", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outorg", + "sha256": "1v9kx5xr7xcr6i664h2g6j8824yjsjdn5pvgmawvxrrplbjmiqnp", "rev": "e946cda497bae53fca6fa1579910237e216170bf" }, "recipe": { "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, + "cg": { + "fetch": { + "tag": "fetchsvn", + "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs", + "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1", + "rev": "11156" + }, + "recipe": { + "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "helm-ls-hg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-ls-hg.git", - "sha256": "aa2dfcc9e42b1215aba74b541f32dec2783b26fe68113af2a411d164623aaac2", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-ls-hg", + "sha256": "1hma79i69l8ilkr3l4b8zqk3ny62vqr1ym2blymia4ibwk4zqbda", "rev": "fa709b6354d84e1c88ccef096d29410fa16f7f5f" }, "recipe": { "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.7.8", "deps": [ @@ -45,28 +62,30 @@ }, "color-theme-sanityinc-tomorrow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/color-theme-sanityinc-tomorrow.git", - "sha256": "620d71141c0eab505c328b3bb75f7d8c4dd6c80c37c78a72eab81842f8d69b6c", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "color-theme-sanityinc-tomorrow", + "sha256": "0w99ypq048xldl1mrgc7qr4n2770dm48aknhp7q0176l43nvxnqf", "rev": "55db9979397bd66446eb1927e08c5a22df9f0eea" }, "recipe": { "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.16", "deps": [] }, "focus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/larstvei/Focus.git", - "sha256": "0cae0122b49cf478025cb3c8df81fc22fa92e35e894777c43fb777477fc7452a", + "tag": "fetchFromGitHub", + "owner": "larstvei", + "repo": "Focus", + "sha256": "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc", "rev": "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9" }, "recipe": { "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -76,28 +95,30 @@ }, "buffer-move": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lukhas/buffer-move.git", - "sha256": "eb96887c75c9c8c67890d1c201a1b63fae91cde3de16bfddfadf82449650572f", + "tag": "fetchFromGitHub", + "owner": "lukhas", + "repo": "buffer-move", + "sha256": "0xdks4jfqyhkh34y48iq3gz8swp0f526kwnaai5mhgvazvs4za8c", "rev": "9bf3ff940011c7af3fdd172fa3ea2511c7a8a190" }, "recipe": { "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.2", "deps": [] }, "youdao-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/youdao-dictionary.el.git", - "sha256": "d9baf0a7bc4c45c05de784ed7bff9d9c72a6ff775375e86707cd36789cc32600", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "youdao-dictionary.el", + "sha256": "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr", "rev": "5b4f716ca41fa0cdb18a4949ac5cdcd470182c57" }, "recipe": { "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -109,14 +130,15 @@ }, "emacsql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i", "rev": "03d478870834a683f433e7f0e288476748eec624" }, "recipe": { "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [ @@ -133,21 +155,22 @@ }, "recipe": { "sha256": "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "cmake-ide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atilaneves/cmake-ide.git", - "sha256": "12d3d757ef71a4ea5fa4d5418bb3a673c3410eb441365e3910427d619875c73b", + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "cmake-ide", + "sha256": "14z5izpgby7lak6hzjwsph31awg5126hcjzld21ihknhlg09sw7q", "rev": "b6953102d022adb60678eb5c4186008de987cdce" }, "recipe": { "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -156,14 +179,15 @@ }, "jammer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/jammer.git", - "sha256": "70957c1467eb108ac2125f2be1ff5dd6130431eab8e58da312ebd899eaf91b74", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "jammer", + "sha256": "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh", "rev": "1ba232b71507b468c60dc53c2bc8888bef36c858" }, "recipe": { "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] @@ -176,7 +200,7 @@ }, "recipe": { "sha256": "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -185,14 +209,15 @@ }, "go-eldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-go-eldoc.git", - "sha256": "e9e7523e506148c056950b9a4930b2fb00618ece42ef380332692a6f3fb14ef7", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-go-eldoc", + "sha256": "0ha07nhd2g43l84r1r5dz6c8m3fmmn4bx5mhvi6as33achhip7bn", "rev": "af6bfdcbcf12c240da46412efb381a5ee6c3aec5" }, "recipe": { "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.26", "deps": [ @@ -208,21 +233,22 @@ }, "recipe": { "sha256": "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "cerbere": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/cerbere.git", - "sha256": "1fd732afc839f500571fb33db2f078d56b8fd8e79fc6b40a8bd39c5347c23dc8", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "cerbere", + "sha256": "08hqgsjvs62l1cfzshbpj80xd8365qmx2b5r5jq20d5cj68s36wl", "rev": "11de1e7ec5126083ae697f5a9993facdb9895f9d" }, "recipe": { "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -234,14 +260,15 @@ }, "grandshell-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/grandshell-theme.git", - "sha256": "7a1b3d42d1730ac8618324d08254aec9125c7705366c59b4c1e4e4c639770288", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "grandshell-theme", + "sha256": "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs", "rev": "6bf34fb1a3117244629a7fb23daf610f50854bed" }, "recipe": { "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] @@ -254,21 +281,22 @@ }, "recipe": { "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "mmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/mmt.git", - "sha256": "6ab354377fbdff7d2b1542bea4e62b613c6543850b8bd373d7b48043bcd67583", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "mmt", + "sha256": "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc", "rev": "e77b809e39b9ab437b662ee759e990163bc89377" }, "recipe": { "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -278,14 +306,15 @@ }, "vimish-fold": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/vimish-fold.git", - "sha256": "6822b3e8e067af5e3713bd68f2946c5c1e2c2bc4f12607d9058c6efdadaefe72", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "vimish-fold", + "sha256": "082qrbljlahkq1fz2dfl434f1xv47jc1v9k0srh7lrm14616dzq3", "rev": "bf10662ff5d2ac2c0d0d84a87577c5425cff7639" }, "recipe": { "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -296,14 +325,15 @@ }, "stripe-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/stripe-buffer.git", - "sha256": "b3253e702365c2e5df7dc40346240d81b93c1bf9a88866b584e6fd1d58a8be0c", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "stripe-buffer", + "sha256": "035ym1c1vzg6hjsnd258z4dkrfc11lj4c0y4gpgybhk54dq3w9dk", "rev": "d9f009b92cf16fe2c40cd92b8f842a3872e6c190" }, "recipe": { "sha256": "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.5", "deps": [ @@ -312,28 +342,30 @@ }, "web-completion-data": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/web-completion-data.git", - "sha256": "12ff6411fde08135c84c2e4342c2289ca2a398b78e660be4a4997e6a98b6f2f0", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "web-completion-data", + "sha256": "1w7jnsc6lzlrlkj0nrlfnyca78lw53144hrf9k43b0g0zl8n9zqj", "rev": "3685b8c7eff06a2064b4f4304e7faf00a22a920a" }, "recipe": { "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "slime-company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/anwyn/slime-company.git", - "sha256": "a427294d72206521d40e787fe3e361334b1544b6c3f766129bf0afeaa769b065", + "tag": "fetchFromGitHub", + "owner": "anwyn", + "repo": "slime-company", + "sha256": "0rdhd6kymbzhkc96dxy3nr21ajrkc7iy6zvq1va22r90f96jj9x4", "rev": "b4a770b1c1e9638f13e339e7debbdb3b25217e39" }, "recipe": { "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.1", "deps": [ @@ -343,14 +375,15 @@ }, "flymake-php": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-php.git", - "sha256": "470df53714287ec33633235b41bd674cb5ca38b12c0b8a5bce117cf86fc20068", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-php", + "sha256": "0dzyid0av9icp77wv0zcsygpw46z24qibq1ra0iwnkzl3kqvkyzh", "rev": "91f867e209011af31a2ca2d8f6874b994403bcb2" }, "recipe": { "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [ @@ -359,28 +392,30 @@ }, "jade-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianc/jade-mode.git", - "sha256": "7690294b61606fc289fc7f0c8c07153674d4c17687427c4f520810a170682b4f", + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n", "rev": "4e7a20db492719062f40b225ed730ed50be5db56" }, "recipe": { "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "smart-mode-line-powerline-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/smart-mode-line.git", - "sha256": "e1e035913c85c579f28e30a9ee8c0c201dca5a045fa29482c405de062daf747b", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "smart-mode-line", + "sha256": "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71", "rev": "d98b985c44b2c771cac1eea758f21e16e169a8a0" }, "recipe": { "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.9", "deps": [ @@ -391,28 +426,30 @@ }, "unfill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/unfill.git", - "sha256": "b1b4d0c819d8c18d21c9d5670e163a111d906e81f3b42d5b28942fc838cc2255", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "unfill", + "sha256": "1qy0q1fp7cmvmxynqrb086dkb727lmk5h1k98y14j75b94ilpy0w", "rev": "99388d79f971db70c5d18dab4257301f750ed907" }, "recipe": { "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "org-page": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kelvinh/org-page.git", - "sha256": "3e3afa4ce7646ee5238f624ab0ecacb13793ad0a20da52b6bbbc5be97cecc5f2", + "tag": "fetchFromGitHub", + "owner": "kelvinh", + "repo": "org-page", + "sha256": "0zc20m63a1iz9aziid5jsvcbl86k9dg9js4k3almchh55az4a0i3", "rev": "09febf89d8dcb226aeedf8164169b31937b64439" }, "recipe": { "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.41", "deps": [ @@ -424,14 +461,15 @@ }, "grails-projectile-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yveszoundi/grails-projectile-mode.git", - "sha256": "344865da2d968d540b042c11ad0342c0d7dff4a4bff17918d4e0f854209d66e7", + "tag": "fetchFromGitHub", + "owner": "yveszoundi", + "repo": "grails-projectile-mode", + "sha256": "1rv6klh59y70shc7kwdzlksdzmy0881ss49c0h5m93cn5pd6aj1l", "rev": "e6667dc737cdb224bbadc70a5fcfb82d0fce6f8f" }, "recipe": { "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [ @@ -442,14 +480,15 @@ }, "inf-clojure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/inf-clojure.git", - "sha256": "60b7dd9e60f99ad342d9cf8bc8017a540b2a562f3ee3f539a42a52d61d68dd52", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "inf-clojure", + "sha256": "0lnxd0fxclialhwzbqry5xb2l2slg80wi2ygv51d76prc2gdvdv0", "rev": "286b935b90123d5e2dd3c36c804d796413864256" }, "recipe": { "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [ @@ -459,14 +498,15 @@ }, "git-wip-timemachine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/itsjeyd/git-wip-timemachine.git", - "sha256": "36e2bd2df46cfd280d99c67d879b721c87ae0a68f8e409863adb373cbc77dd56", + "tag": "fetchFromGitHub", + "owner": "itsjeyd", + "repo": "git-wip-timemachine", + "sha256": "0igawn43i81icshimj5agv33ab120hd6182knlrn3i46p7lcs3lx", "rev": "7da7f2acec0b1d1252d7474b13190ae88e5b205d" }, "recipe": { "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -475,14 +515,15 @@ }, "shell-pop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyagi/shell-pop-el.git", - "sha256": "85f3f9f2b424025ab6f5af3f36d30c1b65f0a10e760444d96a7beba89ae3fe3b", + "tag": "fetchFromGitHub", + "owner": "kyagi", + "repo": "shell-pop-el", + "sha256": "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5", "rev": "4531d234ca471ed80458252cba0ed005a0720b27" }, "recipe": { "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.63", "deps": [ @@ -491,28 +532,30 @@ }, "j-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zellio/j-mode.git", - "sha256": "710589fed69de40fd735eb9f0cfc1bf40d447cca00b596cdb73864e1e1ba95c4", + "tag": "fetchFromGitHub", + "owner": "zellio", + "repo": "j-mode", + "sha256": "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9", "rev": "caa55dfaae01d1875380929826952c2b3ef8a653" }, "recipe": { "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [] }, "persistent-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/persistent-scratch.git", - "sha256": "ef823eb46c4790edc8e61afc835a59419cf5196928e9ac21a95722f0464b15f9", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "persistent-scratch", + "sha256": "0vzifam1a3gy27phvhgi081v99pim669xymfwd9f96pnh0pwsqbh", "rev": "52be8e41fe1e23a1f2b912fc119af06cc051bd28" }, "recipe": { "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [ @@ -521,14 +564,15 @@ }, "map-regexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/map-regexp.git", - "sha256": "2c08cb7762b19d08e6ae7c11ec974cb691e0da44b47e4ef0abab91ccc6d4614e", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "map-regexp", + "sha256": "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c", "rev": "b8e06284ec1c593d7d2bda5f35597a63de46333f" }, "recipe": { "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -537,28 +581,30 @@ }, "sauron": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/djcb/sauron.git", - "sha256": "38535e28a9d72f049c66aaf8d3e7931483f847d325560128b9eace38d699ecb9", + "tag": "fetchFromGitHub", + "owner": "djcb", + "repo": "sauron", + "sha256": "1mcag7qad1npjn096byakb8pmmi2g64nlf2vcc12irzmwia85fml", "rev": "a9877f0efa9418c41d25002b58d1c2f8c69ec975" }, "recipe": { "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10", "deps": [] }, "company-ansible": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krzysztof-magosa/company-ansible.git", - "sha256": "8a28dd2adf97e939723841075054e1124d8a6c28abfb6b4a561a6dd5957a03bf", + "tag": "fetchFromGitHub", + "owner": "krzysztof-magosa", + "repo": "company-ansible", + "sha256": "1dds3fynbd6yb0874aw6g4qk5zmq3pgl3jmcp38md027qalgqmym", "rev": "b9b4b22bc8c109de3ae3a5bb4c6b2be89bd644db" }, "recipe": { "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -568,14 +614,15 @@ }, "flycheck-ocaml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-ocaml.git", - "sha256": "db31d73b64e42358db30d40c1b2973e39b25578139637d2c08abac6e9516a9df", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-ocaml", + "sha256": "1phfarws2aajkgcl96hqa4ydmb1yncg10q2ldzf8ff6yd6mvk51l", "rev": "9b4cd83ad2a87cc94b5d4e1ac26ac235475f1e6c" }, "recipe": { "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -587,14 +634,15 @@ }, "eshell-z": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/eshell-z.git", - "sha256": "91c05b97cd3fdd6867661e30429f7bb8978b89d7e93dff066883239d01c43d9d", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "eshell-z", + "sha256": "179xqh0rs8w3d03gygg9sy4qp5xqgfgl4c0ycrknip9zrnbmph4i", "rev": "cc9a4b505953a9b56222896a6f973145aeb154b9" }, "recipe": { "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -603,14 +651,15 @@ }, "fix-word": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/fix-word.git", - "sha256": "e715bb0d7c1720b52cb8f4ba8e1a07b1bcd059963c57b8df0f1ad531b65c34ad", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "fix-word", + "sha256": "1hj5jp4vbkcmnc8l2hqsvjc76f7c9zcsq8znwcwv2nv9xj9hlbkr", "rev": "256a87d4b871ead0975fa0e7f76a1ecbaa074582" }, "recipe": { "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -620,14 +669,15 @@ }, "celery": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/emacs-celery.git", - "sha256": "618ec6d27f983c85cfb2326ae004f994d70293080ca55c00cca5f59dd260f7ff", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-celery", + "sha256": "07h5g905i1jglsryl0dnqxz8yya5kkyjjggzbk4nl3rcj41lyas7", "rev": "163ebede3f6a7f59202ff319675b0873dd1de365" }, "recipe": { "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [ @@ -645,35 +695,37 @@ }, "recipe": { "sha256": "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "charmap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lateau/charmap.git", - "sha256": "86733a013abf430f73ac97dfd583ea55d91c9806b814cf6a91ca6acb88693633", + "tag": "fetchFromGitHub", + "owner": "lateau", + "repo": "charmap", + "sha256": "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6", "rev": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2" }, "recipe": { "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [] }, "parsebib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/parsebib.git", - "sha256": "b4a61e2678a4055f78d9725ff12f8fab6c5e9f0fc04587575ab0652b3de42159", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "parsebib", + "sha256": "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml", "rev": "9a1f60bed2814dfb5cec2b92efb5951a4b465cce" }, "recipe": { "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.5", "deps": [ @@ -682,14 +734,15 @@ }, "hindent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/hindent.git", - "sha256": "db93ecbe7d46e8efb4bb663c30855d180c14902d3c467bf550bf0c59898eb8db", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "hindent", + "sha256": "0hb74j5137yj3rm2si16xzwmcvkiwx8ywh1qrlnrzv5gl4viyjzb", "rev": "726c692d234581c853495165472c78f4c7fb9297" }, "recipe": { "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "5.4.3", "deps": [ @@ -698,28 +751,30 @@ }, "sudden-death": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yewton/sudden-death.el.git", - "sha256": "4b6e884b62cfa51cb5cc051fb1b2c668de9ccec95e6b33a658cfe4eef58ebece", + "tag": "fetchFromGitHub", + "owner": "yewton", + "repo": "sudden-death.el", + "sha256": "1kmyivsyxr6gb2k36ssyr779rpk8qsrb27q5rjsir9fgc95qhvjb", "rev": "c58fb9a672f306604dde4fbb0ff079e65a5e40be" }, "recipe": { "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "simplenote2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alpha22jp/simplenote2.el.git", - "sha256": "0362bf75d2f0d9b85864826721e9e771f60af1de89336060f9d8cf091f08bc09", + "tag": "fetchFromGitHub", + "owner": "alpha22jp", + "repo": "simplenote2.el", + "sha256": "04giklbd1fsw2zysr7aqg17h6cpyn4i9jbknm4d4v6581f2pcl93", "rev": "9984ad77e63ae8d40e863cf1b0d8339ede986792" }, "recipe": { "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2.2", "deps": [ @@ -728,14 +783,15 @@ }, "cake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-cake.git", - "sha256": "ea8f3ad857b3397a2f70046ea4f35a306ae676b16fad09d7c9cf5593e92df200", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake", + "sha256": "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg", "rev": "a7c9f3bee71eb3865060123d4d98e5397c2f967e" }, "recipe": { "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.3", "deps": [ @@ -746,14 +802,15 @@ }, "realgud": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocky/emacs-dbgr.git", - "sha256": "94539ca9d46ecb5ff33ba5c5aa2ed659be06d026bb3aa5dd08db0a4b567bc9e7", + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-dbgr", + "sha256": "07j1grdbqv3iv5ghmgsjw678bxjajcxi27clz4krcz3ys5b1h70v", "rev": "0dd37e233f315a5666eefc6a3e9fc088fcc6561f" }, "recipe": { "sha256": "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [ @@ -765,14 +822,15 @@ }, "js2-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/js2-refactor.el.git", - "sha256": "75404b9b8a9856510931416c8b93c400979ee257b1e833c4ebb1e11439eecd4c", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "js2-refactor.el", + "sha256": "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly", "rev": "ac3da94a33b714d44d4f0adc670a829fdc522e34" }, "recipe": { "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.1", "deps": [ @@ -785,28 +843,30 @@ }, "ecb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alexott/ecb.git", - "sha256": "6cffee0f53869780992d5be254f3ba1da5e28d73d2df06efde524b76240e39e9", + "tag": "fetchFromGitHub", + "owner": "alexott", + "repo": "ecb", + "sha256": "1s9r1qj7cjsjvvphdpyjff6y598xpbrm9qjv5ncq15w6ac7yxzvc", "rev": "1e9ddf472d7b6006dc92684b82de22e6148f38b4" }, "recipe": { "sha256": "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2_24", "deps": [] }, "quickrun": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-quickrun.git", - "sha256": "bdfc73494b00fae2e5ece54c8d5312fc497e28010190a6d97166634a124a300e", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-quickrun", + "sha256": "09sdv5lf5k347415r9fzljm374rb29gq6kldx2awd164fkdnm8ds", "rev": "31c61de338c7b689bbb78e0aa691bd68f7c20941" }, "recipe": { "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2.6", "deps": [ @@ -816,28 +876,30 @@ }, "rsense": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/rsense.git", - "sha256": "307f3a3cc652476eff7b12d4a583798f678e3e8d609bcb31255451242cc2d355", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "rsense", + "sha256": "0mfkq8n28lal4lqwp6v0ilz8wrwgg61sbm0jggznwisjqqy3lzrh", "rev": "e4297052ef32d06237e8bd1534a0caf70a34ad28" }, "recipe": { "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "ocodo-svg-modelines": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ocodo/ocodo-svg-modelines.git", - "sha256": "5cac1b9f8779c32491152339b735615c6cebc3ff91682d9de04d1a66532a5e15", + "tag": "fetchFromGitHub", + "owner": "ocodo", + "repo": "ocodo-svg-modelines", + "sha256": "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w", "rev": "a6c5b9a7536c7a8fa3bd9d9dafdebc8d99903018" }, "recipe": { "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [ @@ -846,14 +908,15 @@ }, "jedi-core": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi", + "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.7", "deps": [ @@ -865,14 +928,15 @@ }, "dim-autoload": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/dim-autoload.git", - "sha256": "daaabcff114b24356d94278a78b0a686063a3f7f662865e9137b2de6d57c812f", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "dim-autoload", + "sha256": "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans", "rev": "d68ef0d2f9204ffe0d521e2647e6d8f473588fd3" }, "recipe": { "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.4", "deps": [] @@ -885,35 +949,37 @@ }, "recipe": { "sha256": "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "pkgbuild-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juergenhoetzel/pkgbuild-mode.git", - "sha256": "194f60a181b339e59157f58543a133049f564172b9bf7eddd17299d968581829", + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "pkgbuild-mode", + "sha256": "0a8qb1ldk6bjs7fpxgxrf90md7q46fhl71gmay8yafdkh6hn0kqr", "rev": "6bb7cb3b0599ac0ae3c1d8d5014aefc1ecff7965" }, "recipe": { "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.14", "deps": [] }, "erc-youtube": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kidd/erc-youtube.el.git", - "sha256": "6d9bbb44731019e23321a00ad847b7a96448845a08a2ffd19a15eb963302325c", + "tag": "fetchFromGitHub", + "owner": "kidd", + "repo": "erc-youtube.el", + "sha256": "0p1j08rrdsqmkb8zz8h8ba24hr59nx3xh2m044ry468hfd2bp6vd", "rev": "3629583031f3a59797a01e29abe9cc061e337294" }, "recipe": { "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0Alpha", "deps": [ @@ -922,14 +988,15 @@ }, "roguel-ike": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stevenremot/roguel-ike.git", - "sha256": "87ce21c416a8f589770b8548106aabb48cdd654784f62db6241d23a39a493cc0", + "tag": "fetchFromGitHub", + "owner": "stevenremot", + "repo": "roguel-ike", + "sha256": "108j3106n9anas07mj26xlrvscsl5irshd39czkippla84gwmgyc", "rev": "6d9322ad9d43d0c7465f125c8e08b222866e6923" }, "recipe": { "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -938,14 +1005,15 @@ }, "name-this-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knl/name-this-color.el.git", - "sha256": "3d9cb5a99a184fa8081a9dccd5ba3403987925c86d908aaf0287448a56ed7c9b", + "tag": "fetchFromGitHub", + "owner": "knl", + "repo": "name-this-color.el", + "sha256": "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n", "rev": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa" }, "recipe": { "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -956,14 +1024,15 @@ }, "git-messenger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-git-messenger.git", - "sha256": "78a2ecc97301370c162bbccdf8787686241451b207cba75927fcc8114053dfa5", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-messenger", + "sha256": "139yivbxdpmv8j6qz406769b040nbmj3j8r28n9gqy54zlwblgv8", "rev": "c45cdd9805d52a82bdd23907bd0f91dc7760d78d" }, "recipe": { "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.16", "deps": [ @@ -973,14 +1042,15 @@ }, "maven-test-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rranelli/maven-test-mode.git", - "sha256": "18ee821471b857620e3045ad4e925ea44b93101d5267aa52557146e471385db5", + "tag": "fetchFromGitHub", + "owner": "rranelli", + "repo": "maven-test-mode", + "sha256": "0x92b1qrhyrdh0z0xriyjc12h0wpk16x4yawj5i828ca6mz0qh5g", "rev": "f79409907375591283291eb96af4754b1ccc0e6f" }, "recipe": { "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.5", "deps": [ @@ -996,21 +1066,22 @@ }, "recipe": { "sha256": "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "discover-my-major": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/steckerhalter/discover-my-major.git", - "sha256": "3617d6b327669a1f461b7c2afae734a0ae61765865e52bf20f0b53cbe9750bb1", + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "discover-my-major", + "sha256": "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4", "rev": "57d76fd21ec54706289cf9396fc871250569951e" }, "recipe": { "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -1019,14 +1090,15 @@ }, "helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm.git", - "sha256": "6e2d8f6da0794c20011078721bd99d7c6d781913bb41631d9801539bcff038a2", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm", + "sha256": "1cl01rprns989k5gr89qjpa6sg0s2ndrsdcmcyszrnaisvz7im53", "rev": "97e8ffaed3c5959e9c16e7a0e45cc0702218b2cc" }, "recipe": { "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.9.0", "deps": [ @@ -1038,14 +1110,15 @@ }, "pastelmac-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmastenbrook/pastelmac-theme-el.git", - "sha256": "fbaa77eb1c048c220b3a2d4d452704fc820a34c515f53b17a6b19dc0272544f3", + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "pastelmac-theme-el", + "sha256": "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly", "rev": "bead21741e3f46f6506e8aef4469d4240a819389" }, "recipe": { "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -1054,28 +1127,30 @@ }, "omni-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-scratch.el.git", - "sha256": "9b94338cc888b0d568f185edf63640235d09eff61f57e863de5162b87a2dab77", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-scratch.el", + "sha256": "1rfs6z56pnacy6m7yvm2hrb0ykfvaiyichivcmb9ssdgqp92cbxx", "rev": "517b340427d5906002234832a01d0bc1ad27bac5" }, "recipe": { "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "flycheck-hdevtools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-hdevtools.git", - "sha256": "63a24a61e5f085f5ea331720572d204b9f7c22bd5b4b2d23ec582315c46bd58c", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-hdevtools", + "sha256": "136mdg21a8sqxhijsjsvpli7r7sb40nmf80p6gmgb1ghwmhlm8k3", "rev": "fbf90b9a7d2d90f69ac55b57d18f0f4a47afed61" }, "recipe": { "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -1090,21 +1165,22 @@ }, "recipe": { "sha256": "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "sly-company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/sly-company.git", - "sha256": "8b18fdc2924a4db9174903c50194c22f5b208ea0d75bfd6a796cc27e9d4fdda6", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly-company", + "sha256": "11p89pz6zmnjng5177w31ilcmifvnhv9mfjy79ic7amg01h09hsr", "rev": "930e14fee9cdc837ae26299c7f5e379c53cee1af" }, "recipe": { "sha256": "034gnxmcdn1f9b08gs9r8ycbam4212ip1z4kmmpwgpl9zcq9z5kj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -1115,28 +1191,30 @@ }, "ht": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/ht.el.git", - "sha256": "1023cef7c2bea2f7fdbcb7d3ae0fea049025163110bde867390c21b0d629c498", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ht.el", + "sha256": "0k09n66jar0prq9aal2h3izp1y67jibdx0gjr0g4jx1p1yxig1dg", "rev": "285c8752b7d3ab4b3d0c53bab6ba05d328577960" }, "recipe": { "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "elisp-slime-nav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/elisp-slime-nav.git", - "sha256": "190432d15eb8f247c2f70494ec6c5e3be322acf3cf37ab1d87abde884f43157d", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "elisp-slime-nav", + "sha256": "1k7kprdknqm18dc0nwl7gachm0rivcpa8ng7p7ximalja3nsg2j1", "rev": "551a6045969756d4aaee9e82b44cfbcdd0670cea" }, "recipe": { "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -1145,42 +1223,45 @@ }, "vlf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/vlfi.git", - "sha256": "28905e61d18364dad24c84cdb6e16f8b8629f1943246db810c99bd55f2b05450", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "vlfi", + "sha256": "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng", "rev": "4eaf763cadac62d7a74f7b2d2436d7793c8f7b43" }, "recipe": { "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.7", "deps": [] }, "recover-buffers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tripleee/recover-buffers.git", - "sha256": "8261f36205282759cc5ce1a53360921ef6c78e025b0d00d9707479a61f49b274", + "tag": "fetchFromGitHub", + "owner": "tripleee", + "repo": "recover-buffers", + "sha256": "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q", "rev": "a1db7f084977697081da3497628e3514e032b966" }, "recipe": { "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "evil-args": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wcsmith/evil-args.git", - "sha256": "f8ab4dd53906d144dcd7f9b4ea8bff321e5835fef68bd105b1f464eb89e207da", + "tag": "fetchFromGitHub", + "owner": "wcsmith", + "repo": "evil-args", + "sha256": "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq", "rev": "2a88b4d19953a11227cc1e91973b92149116f44c" }, "recipe": { "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -1195,35 +1276,37 @@ }, "recipe": { "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "real-auto-save": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chillaranand/real-auto-save.git", - "sha256": "b503ad1809b4e47696453f2733ba25780511122204585f283ff04114b0c045cd", + "tag": "fetchFromGitHub", + "owner": "chillaranand", + "repo": "real-auto-save", + "sha256": "1ka5q2q18hgh7wl5yn04489121bq4nx369rz8nb7dr5l14cas0xm", "rev": "879144ca7e9bfa09a4fb57d5fe92a80250311f1e" }, "recipe": { "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "ebib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/ebib.git", - "sha256": "52070bc8cc4dee4afe52cf317ce9618a7971fa7a74e2477210257eb636d9fb4b", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "ebib", + "sha256": "159w19hx3gmhv8n2amkm6i999vdrz5132bjwk28qpiq37v1v7dd5", "rev": "e9f92df575d747992e9ada768b18dee475cfee55" }, "recipe": { "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.5.2", "deps": [ @@ -1234,28 +1317,30 @@ }, "multiple-cursors": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/multiple-cursors.el.git", - "sha256": "55cf8411e303ac0aa66fb79b064515007764ce6b334e2570cfcef747bb4c976a", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "multiple-cursors.el", + "sha256": "10k4c9vl0bfidrry0msyqamijizjghg54g26yaqbr2vi0mbbz22k", "rev": "d17c89e41847cf9292004590ba5b1c8cec0b1c50" }, "recipe": { "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [] }, "tss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-tss.git", - "sha256": "2f494cd01294af2b7cf5ac4ebc7121cf0a56c97286b9964afacb4fe895facc9e", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-tss", + "sha256": "1ma3k9bbw427cj1n2gjajbqii482jhs2lgjggz9clpc21bn5wqfb", "rev": "1f302deea3d74462c71a9c62031f48b753e8915f" }, "recipe": { "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.0", "deps": [ @@ -1273,21 +1358,22 @@ }, "recipe": { "sha256": "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "espuds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ecukes/espuds.git", - "sha256": "4f911064d51a6c3b2e83a9dbf1dee68d3d82c861462b0bd7b0025dac9a303f2b", + "tag": "fetchFromGitHub", + "owner": "ecukes", + "repo": "espuds", + "sha256": "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg", "rev": "1405972873339e056517217136de4ad3202d744a" }, "recipe": { "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.3", "deps": [ @@ -1298,28 +1384,30 @@ }, "nav-flash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/nav-flash.git", - "sha256": "e9e1539e0cdf380336e1fef5262861cd030c1e485da712159c1b865bc04b2187", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "nav-flash", + "sha256": "119hy8rs83f17d6zizdaxn2ck3sylxbyz7adszbznjc8zrbaw0ic", "rev": "9054a0f9b51da9e5207672efc029ba265ba28f34" }, "recipe": { "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] }, "persp-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/projectile.git", - "sha256": "eb88b89c18ca127127e1f2692cfd4fe5670a8058635bc06f3ebd241f78a5f8e8", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf", "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" }, "recipe": { "sha256": "0bqq13rr1hc7rhmw37rbrwaz9flcv3hw3hx0k5b7y9zd3qndy2cj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13.0", "deps": [ @@ -1330,28 +1418,30 @@ }, "osx-location": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/osx-location.git", - "sha256": "45887a5fb8868effa5ec922e8b6e2e6e1eae8ab8d5a20fc8070cbaa10d0de36d", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "osx-location", + "sha256": "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x", "rev": "110aee945b53ea550e4debe69bf3c077d940ec8c" }, "recipe": { "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "unify-opening": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/unify-opening.git", - "sha256": "a0cc3b3d75245449d11d248393559309a8128b325765c26065df04c6b4a9174b", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "unify-opening", + "sha256": "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p", "rev": "2812e43029cab7183197ce5e3c9577856bfd22c5" }, "recipe": { "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [ @@ -1360,14 +1450,15 @@ }, "ghc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kazu-yamamoto/ghc-mod.git", - "sha256": "0e7502f6d4f53fbbe726defd908ecb56d19e51e8de05f9584a933f9c8900f4a1", + "tag": "fetchFromGitHub", + "owner": "kazu-yamamoto", + "repo": "ghc-mod", + "sha256": "1wiwkp4qcgdwnr4h1bn27hh1kyl2wjlrz2bbfv638y9gzc06rgch", "rev": "edfce196107dbd43958d72c174ad66e4a7d30643" }, "recipe": { "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "5.4.0.0", "deps": [ @@ -1376,14 +1467,15 @@ }, "ninja-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/martine/ninja.git", - "sha256": "682b909572969af73598fef130057939dda7edaa050598004ce5c1e15a31587e", + "tag": "fetchFromGitHub", + "owner": "martine", + "repo": "ninja", + "sha256": "1wc0cvmfhpvfzdy127d1n812q93dd9sp3mmqnc8jzy8i3frqqqq6", "rev": "484c16336f19bd8970bb6e75322d61b92a229899" }, "recipe": { "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.0", "deps": [ @@ -1392,28 +1484,30 @@ }, "el-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/el-x.git", - "sha256": "be3e1fd3fdecf88972e5a39699e0cc32be17d15d63c9be3066ff7335cc13b04b", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "el-x", + "sha256": "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5", "rev": "e96541c1f32e0a3aca4ad0a0eb382bd898250163" }, "recipe": { "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [] }, "migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/migemo.git", - "sha256": "54bf4e6497259bccc4328198dc61dfc9fe59899f9aaaa9baae9c485e3d2c6bb2", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "migemo", + "sha256": "1ckb5hymwj4wmsxakalsky4mkzn9vxhxr6416b2cr6r5jxj4xgsl", "rev": "97e07796573c4c47f286bfe8eeb6428cb474526e" }, "recipe": { "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.9.1", "deps": [] @@ -1426,21 +1520,22 @@ }, "recipe": { "sha256": "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "easy-repeat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/easy-repeat.el.git", - "sha256": "d83ec91b67193972bc80ec2c5303ac7e726132d4d4ebf47306b8671cb42d75a1", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "easy-repeat.el", + "sha256": "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq", "rev": "060f0e6801c82c40c06961dc0528a00e18947a8c" }, "recipe": { "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -1455,7 +1550,7 @@ }, "recipe": { "sha256": "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -1465,16 +1560,33 @@ "hexrgb" ] }, + "weblogger": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:weblogger-el", + "sha256": "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv", + "rev": "38" + }, + "recipe": { + "sha256": "17ccj602cp0lrs30rcp45g7fqb7k1l1hr9h8z4gh7rqs0n7z1jad", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [ + "xml-rpc" + ] + }, "pophint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-pophint.git", - "sha256": "052d51374b546e3c41b3776490c6bd7e65f377f4c197a708a53dd50e24d644ee", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-pophint", + "sha256": "18i0kivn6prh5pwdr7b4pxfxqsc8l4mks1h6cfs7iwnfn15g5k19", "rev": "28dc6a76e726f371bcca3160c27ae2017324399c" }, "recipe": { "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.3", "deps": [ @@ -1491,7 +1603,7 @@ }, "recipe": { "sha256": "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -1504,23 +1616,24 @@ }, "recipe": { "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "find-file-in-project": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/find-file-in-project.git", - "sha256": "9825101aa84dbe21ac8e32a3da663deb6f938cbf4d21ff32dace55ecde45b9c6", - "rev": "cb809569bf299663b2dce8501d9faa321484e5c4" + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "find-file-in-project", + "sha256": "0bf32nhpmjvvgnr6g9xqh8pqnhr3dl24y3g40lsv4pc8ffs70ydm", + "rev": "908cc56c0fd715001da4d97b30cba5eb7af3a609" }, "recipe": { "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "4.4", + "version": "4.5", "deps": [ "emacs", "swiper" @@ -1528,28 +1641,30 @@ }, "paren-face": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/paren-face.git", - "sha256": "d8eb61608b21ddcaa6248c91eaab5e993c842aedcb567bd59ce41a77946f6f0c", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "paren-face", + "sha256": "033gdya7f6p4kkapnmnbxlm88g4rbsmym4cc4jkcmp91idh63syq", "rev": "835d817295d81e2a6def9beb37f05aaf97870e86" }, "recipe": { "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "writeroom-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/writeroom-mode.git", - "sha256": "79ba5d92c52f0177173ab77bea25d31be1e8451a260074f4138ad0fe8c198f17", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "writeroom-mode", + "sha256": "0f554h834p12255mhwjnxbh1ls65476k60cwddqyl844ph75w8jv", "rev": "48b179879c6614afcae3fc4386fd88b52b2bcc17" }, "recipe": { "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.1", "deps": [ @@ -1559,14 +1674,15 @@ }, "use-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/use-package.git", - "sha256": "9c0497e725200d62ddde6b5a78f3de03a401c218aad860295a2f85f316787c1f", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "use-package", + "sha256": "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w", "rev": "2b077f6e485e8c5c167413c03246068022b6bc71" }, "recipe": { "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1", "deps": [ @@ -1576,14 +1692,15 @@ }, "highlight-defined": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-defined.git", - "sha256": "f9d8003c5d13a502e43a8486319b1e8697f88f6dad71dec02fcde66282e29f21", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-defined", + "sha256": "08czwa165rnd5z0dwwdddn7zi5w63sdk31l47bj0598kbly01n7r", "rev": "9cc03c7136b56c04ea053fbe08a3a4a6af26b90e" }, "recipe": { "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.5", "deps": [ @@ -1592,28 +1709,30 @@ }, "historyf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-historyf.git", - "sha256": "aab86167c113a0a62554782106f3f0379edfa905996f27155aad6338695cffe7", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-historyf", + "sha256": "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z", "rev": "64ab6c9d2cd6dec6982622bf675326e011373cd2" }, "recipe": { "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.9", "deps": [] }, "ess-smart-underscore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/ess-smart-underscore.el.git", - "sha256": "e4409ae5fe34272139df497b4795119e6843393012f075ee1afc75f26c336bab", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "ess-smart-underscore.el", + "sha256": "1avb6dng4xgw3bp7bw0j60wl6s4y26alfys9vwwj29rlzvjrlh74", "rev": "ef18a160aeb3b1a7ae5fe93759f8e92147da8746" }, "recipe": { "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.79", "deps": [] @@ -1626,7 +1745,7 @@ }, "recipe": { "sha256": "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -1635,14 +1754,15 @@ }, "narrowed-page-navigation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/narrowed-page-navigation.git", - "sha256": "2ad758a65a6aefe32afd4d81f085f34819321ab851978986cb513e5bb64ab3d3", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "narrowed-page-navigation", + "sha256": "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax", "rev": "b215adbac4873f56fbab65772062f0f5be8058a1" }, "recipe": { "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -1652,28 +1772,30 @@ }, "conkeror-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/conkeror-minor-mode.git", - "sha256": "1daa70ef6be34ddadcd1f2d1d952940691b20875dc50a126949c02bb42c7e36b", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "conkeror-minor-mode", + "sha256": "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx", "rev": "476e81c27b056e21c192391fe674a2bf875466b0" }, "recipe": { "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.2", "deps": [] }, "pycarddavel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/pycarddavel.git", - "sha256": "21ddbbcb4570eab716489a06f3f117fa22d194f8071c33b463d4abb117a52432", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "pycarddavel", + "sha256": "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11", "rev": "6ead921066fa0156f20155b7126e5875ce11c328" }, "recipe": { "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -1689,7 +1811,7 @@ }, "recipe": { "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -1702,7 +1824,7 @@ }, "recipe": { "sha256": "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -1715,21 +1837,22 @@ }, "recipe": { "sha256": "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "emoji-cheat-sheet-plus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/emacs-emoji-cheat-sheet-plus.git", - "sha256": "b37b411b274dae0044b547b6262c69d59c023de5c2a8133d4adbdedd415567e6", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "emacs-emoji-cheat-sheet-plus", + "sha256": "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk", "rev": "96a003127d646a2683d81ca906a17eace0a6413e" }, "recipe": { "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.1", "deps": [ @@ -1739,14 +1862,15 @@ }, "helm-proc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/markus1189/helm-proc.git", - "sha256": "3cee3afc60d00121b9816f6ff9b750edc14df3464764d113d12fda62554dd52d", + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "helm-proc", + "sha256": "0y0a18bj2k459fk51z7svnnasqkl78bx61y5ha1yv3sqnppgdw2h", "rev": "babf86d7d0e1f325f18095a51116c49cda2c5fec" }, "recipe": { "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -1755,14 +1879,15 @@ }, "evil-lisp-state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-lisp-state.git", - "sha256": "7e4b29c5af8da8ddf3c81ae4de191464584aefad3019199b7aab445e45f9c52f", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-lisp-state", + "sha256": "12l3gnhirq8jz0dqyj9m02l1fg5rh78fdyskslprxp5vfa4ngzkh", "rev": "e5792ec68a5615bd07bf2c6e9eb3f49d1bc7810d" }, "recipe": { "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "7.1", "deps": [ @@ -1773,28 +1898,30 @@ }, "popwin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/popwin-el.git", - "sha256": "fae0e823054c93634d9c9b066ee34b2527057ba6e329670b4b8c68f8725bd718", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "popwin-el", + "sha256": "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp", "rev": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304" }, "recipe": { "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "py-isort": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/py-isort.el.git", - "sha256": "9811dcb72ebdcc395c509b4cf461e43c428bda95839c844198983979c4bd9d3e", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-isort.el", + "sha256": "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr", "rev": "cfbb576784fe4501909c15299607ce2a2d0bf164" }, "recipe": { "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [] @@ -1808,21 +1935,22 @@ }, "recipe": { "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "24", "deps": [] }, "gh": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/gh.el.git", - "sha256": "04c1aee9517fe7168658623019e2692c39d59e12a100b29637746c73003525ac", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "gh.el", + "sha256": "0a5v91k9gm9vv15d3m8czicv8n39f0hvqhcr6lfw0w82n26xwsms", "rev": "33b88251e8989069cc08f3f5d6886635f276f42e" }, "recipe": { "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.2", "deps": [ @@ -1833,14 +1961,15 @@ }, "lispy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/lispy.git", - "sha256": "d531a0386bd43cf9dc07fefba888e123efc5f76191dbc3cdeb402fca03dc4cd4", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "lispy", + "sha256": "05iqhnhj61f30yk4ih63rimmyp134gyq18frc8qgrnwym64dsm6l", "rev": "7756a8fbbadbebbd5e20768569ed92ad6c402c5c" }, "recipe": { "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.26.0", "deps": [ @@ -1854,14 +1983,15 @@ }, "request-deferred": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-request.git", - "sha256": "cca4b7bc7720b98b805698b572dbae58b44b960313fc01c70e5eac3591cb6a68", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-request", + "sha256": "0j7nakxj750rhdnm0nk075s7rx38rc9npbb55kg7r9vb2qilnvmr", "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff" }, "recipe": { "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] @@ -1874,21 +2004,22 @@ }, "recipe": { "sha256": "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ace-flyspell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/ace-flyspell.git", - "sha256": "5b874784db3c741cd4b8011412faa2fd16038c73cb9622e9ab392fdf102df0df", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-flyspell", + "sha256": "1pzh5l8dybrrmglj55nbff6065pxlbx14501p3a1qx1wvf24g1sv", "rev": "a850fa913b3d1bab4c00bacee41da934929cef52" }, "recipe": { "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -1897,14 +2028,15 @@ }, "list-unicode-display": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/list-unicode-display.git", - "sha256": "9cabc1843adc47260f747119a772c0747b1542509ac3ee86ad04228d5623d616", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "list-unicode-display", + "sha256": "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww", "rev": "59770cf3572bd36c3e9ba044846dc420c0dca09b" }, "recipe": { "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -1913,14 +2045,15 @@ }, "import-popwin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-import-popwin.git", - "sha256": "3c80d5bde60376a0288f8114b70cde44052255e85112bf5441ef88e5386f9a79", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-import-popwin", + "sha256": "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w", "rev": "34c3b34ffcadafea71600acb8f4e5ba385e6da19" }, "recipe": { "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.09", "deps": [ @@ -1930,14 +2063,15 @@ }, "company-tern": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/company-tern.git", - "sha256": "eb6238510b90a088c6274cbbfb3ac89252a6595babbac827311397d97fac34ca", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-tern", + "sha256": "11cinjsyf24d4a682ikniprxd1vkwn6mynsp5dzab6yzq09np78i", "rev": "9a2cb8427a1a93c9c5021c01df1b47c69d79e176" }, "recipe": { "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -1951,14 +2085,15 @@ }, "lit-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HectorAE/lit-mode.git", - "sha256": "8d8763461bf259d7b73e787c061d0208b2a49ded5f5fe6db0642b6f26c9c2057", + "tag": "fetchFromGitHub", + "owner": "HectorAE", + "repo": "lit-mode", + "sha256": "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd", "rev": "c61c403afc8333a5649c5421ab1a6341dc1c7d92" }, "recipe": { "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] @@ -1971,35 +2106,37 @@ }, "recipe": { "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "miniedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/miniedit.git", - "sha256": "7881377b008565aab55a6b080b7256f8e7163e6e511c024ab61278fa4cfaa0a0", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "miniedit", + "sha256": "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq", "rev": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3" }, "recipe": { "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "magit-gh-pulls": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/magit-gh-pulls.git", - "sha256": "5f48eec8bab6112027e780147909eabf1d1ffcdd1892e17b39ea66f5a75038a6", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "magit-gh-pulls", + "sha256": "19iqa2kzarpa75xy34hqvpy1y7dzx84pj540wwkj04dnpb4fwj2z", "rev": "e4a73781e3c1c7e4a09232b25e3474463cdf77b6" }, "recipe": { "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.2", "deps": [ @@ -2018,7 +2155,7 @@ }, "recipe": { "sha256": "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -2031,35 +2168,37 @@ }, "recipe": { "sha256": "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "firestarter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/firestarter.git", - "sha256": "a5440aa9844cb4da97f0cae46f74f405c24e1ddee76214afb47bead50bad1969", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "firestarter", + "sha256": "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55", "rev": "4b7428477980e12578ebbbb121115696b352d6b2" }, "recipe": { "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.4", "deps": [] }, "adoc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sensorflo/adoc-mode.git", - "sha256": "ef489ede62f3ab9872e3f0d46476d4bc7465eb329794504cf60570a95498d4ef", + "tag": "fetchFromGitHub", + "owner": "sensorflo", + "repo": "adoc-mode", + "sha256": "1mb7dlyd5w161xagwn6w5h4q660dppkd50m71vz0w3zmxsc9a0vq", "rev": "b6d54d9007b97f2553c238e0c36586079b666f4f" }, "recipe": { "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.4", "deps": [ @@ -2068,14 +2207,15 @@ }, "racer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/racer-rust/emacs-racer.git", - "sha256": "ecbbfd283aaa4b9a9b4c1ef0b70f360f9438aa5203c7a7ace375588500df3df5", + "tag": "fetchFromGitHub", + "owner": "racer-rust", + "repo": "emacs-racer", + "sha256": "0pbswxzgfqcp6vjlwhvnablj91kxq588j2fmcjzhf0aigkj7dxfb", "rev": "9b7b4b1e8b04f630d29f771ad268025ff9380236" }, "recipe": { "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -2087,56 +2227,60 @@ }, "simplezen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/simplezen.el.git", - "sha256": "0b9b25303f7f9249cfab0cfba666d163c5906d056f274fb405ad410a7cfe277e", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "simplezen.el", + "sha256": "1p1771qm3jndnf4rdhb1bri5cjiksvxizagi7vfb7mjmsmx18w61", "rev": "c0ddaefbb38fcc1c9775434f734f89227d246a30" }, "recipe": { "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "geiser": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jaor/geiser.git", - "sha256": "6797b8641ea3db9c0ba9b1a813b854c4d985c981627ceed24e6ea6d7d895e13d", + "tag": "fetchFromGitHub", + "owner": "jaor", + "repo": "geiser", + "sha256": "1667zln7bav0bdhrc4b5z36n8rn36xvwh4y9ffgns67zfgwi64kk", "rev": "c6f17b25200e36f80d812684a2127b451fc11817" }, "recipe": { "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.1", "deps": [] }, "tup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/tup-mode.git", - "sha256": "1e1d0b7e88d251cac0cc92dc15d4781c9982bfd6a9a4f074e343ec6289004d2b", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "tup-mode", + "sha256": "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y", "rev": "945af9c8e6c402e10cd3bf8e28a9591174023d6d" }, "recipe": { "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [] }, "voca-builder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yitang/voca-builder.git", - "sha256": "99e71a4a4830c50e16a9b7fba589e88ed7eb02fbefe03cde47fac7547e9cb809", + "tag": "fetchFromGitHub", + "owner": "yitang", + "repo": "voca-builder", + "sha256": "0q1rwqjwqcnsr57s531pwlm464q8wx5vvdm5rj2xy9b3yi6phis1", "rev": "224402532da28e45edd398fda61ecbddb97d22d3" }, "recipe": { "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] @@ -2149,35 +2293,37 @@ }, "recipe": { "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "zotelo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vitoshka/zotelo.git", - "sha256": "59e3b6235b3aa83f5c15cf44047a438c5a1f744d4ba5d620abad5514dd5f8d63", + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "zotelo", + "sha256": "0qwdbzfi8mddmchdd9ab9ms1ynlc8dx08i6g2mf3za1sbcivdqsr", "rev": "56eaaa76f80bd15710e68af4a1e585394af987d3" }, "recipe": { "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "helm-dash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/areina/helm-dash.git", - "sha256": "1173196e72b346f6c8ccad84aaf2ae9afa7641e4d2d009124d6aee642e81e1b3", + "tag": "fetchFromGitHub", + "owner": "areina", + "repo": "helm-dash", + "sha256": "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai", "rev": "a0f5d6539da873cd0c51d8ef714930c970a66aa0" }, "recipe": { "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [ @@ -2187,28 +2333,30 @@ }, "vcomp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/vcomp.git", - "sha256": "5d60359b2ac0fb802252a6d0e721ce4477d728e89248b31eb091f1b97d1bbd1d", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "vcomp", + "sha256": "07dx3dyvkwcin0gb6j4jx0ldfxs4rqhygl56a8i81yy05adkaq2x", "rev": "a12363c3a66576b68955abcadf7280de32eaa051" }, "recipe": { "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [] }, "jsx-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jsx/jsx-mode.el.git", - "sha256": "6642871575e4dc2b620102e6adb3ea6b2945fc97e5e1b8d0c473cf8739e80cd8", + "tag": "fetchFromGitHub", + "owner": "jsx", + "repo": "jsx-mode.el", + "sha256": "1wx28rr5dk238yz07xn95v88qmv10c1gz9pcxard2kszpnmrn6dx", "rev": "1ca260b76f6e6251c528ed89501597a5b456c179" }, "recipe": { "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.10", "deps": [] @@ -2221,7 +2369,7 @@ }, "recipe": { "sha256": "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -2234,21 +2382,22 @@ }, "recipe": { "sha256": "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "gradle-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jacobono/emacs-gradle-mode.git", - "sha256": "0a1924a9b90be4ce1c8ab2299c575e97b69e1a708f2642a055d15c1d0ca7cefb", + "tag": "fetchFromGitHub", + "owner": "jacobono", + "repo": "emacs-gradle-mode", + "sha256": "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782", "rev": "579de06674551919cddac9cfe42129f4fb0155c9" }, "recipe": { "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.5", "deps": [ @@ -2263,21 +2412,22 @@ }, "recipe": { "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ess-R-data-view": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/ess-R-data-view.el.git", - "sha256": "bd0ca4fdc08c39091bbf7efec921fcf6f5399155ab105e6f182dcf278a5742f9", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ess-R-data-view.el", + "sha256": "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x", "rev": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9" }, "recipe": { "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -2288,28 +2438,30 @@ }, "keyfreq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dacap/keyfreq.git", - "sha256": "a9033ddc9e79f5cb19423299a4a31c8b0ab815a6fb645b7d452c3ac2f4ebd9ea", + "tag": "fetchFromGitHub", + "owner": "dacap", + "repo": "keyfreq", + "sha256": "0ways4ksb9pk2kkpgclsxgc0ycfwcr8vghlbv5ic4y0c4ycmlb2d", "rev": "0c0a36a895a34d802614d34d7a3cc986e502ea35" }, "recipe": { "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.7", "deps": [] }, "sourcetalk": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/malroc/sourcetalk_emacs.git", - "sha256": "db4aedbdd1c170ef5535037faa3f6439514314306cd0f5c32c69c17c7ca89848", + "tag": "fetchFromGitHub", + "owner": "malroc", + "repo": "sourcetalk_emacs", + "sha256": "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv", "rev": "aced89fa8776e6d5e42dad4a863e159959f08de6" }, "recipe": { "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [ @@ -2324,21 +2476,22 @@ }, "recipe": { "sha256": "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "kaesar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "aea707d4ea0911a3232dfa42b704381f3a96b8584faec048acafd32ff0afa108", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8", "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" }, "recipe": { "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0", "deps": [ @@ -2347,14 +2500,15 @@ }, "image-dired+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-image-diredx.git", - "sha256": "49545268e75f114af06c9a47f7610ffa8b0f7e034dfa1c913a45340a74525ed8", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-image-diredx", + "sha256": "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29", "rev": "b68094625d963056ad64e0e44af0e2266b2eadc7" }, "recipe": { "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.2", "deps": [ @@ -2363,14 +2517,15 @@ }, "anything-sage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/anything-sage.git", - "sha256": "6008694aeeaecbfe1e34dcc9d092272bf4e9c45f73b94c9022aa6cfc6e54e903", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "anything-sage", + "sha256": "1bcvin2694ypqgiw0mqk82riq7gw6ra10vbkzng1yp9jp2qr6wmm", "rev": "8335657d3f0611bd5fc8858160bbe87dfdbaf0f2" }, "recipe": { "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -2381,28 +2536,30 @@ }, "ignoramus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/ignoramus.git", - "sha256": "f22b83d6fa7e6a7ea0141829aebecf77b68b11e8e8ae17471af01c1324380c25", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ignoramus", + "sha256": "1j40ldvgd7nr7pabi8mhzdvi0ml9n62m8mfjlh9nrbnkcsifs9rk", "rev": "37536286eb1da6d7bb9590e039485c456fdfd245" }, "recipe": { "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [] }, "telephone-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dbordak/telephone-line.git", - "sha256": "f469dfcafb19dfbf0a4abf8eb665b543e92fb6ff807816ed289622f5e3d2b405", + "tag": "fetchFromGitHub", + "owner": "dbordak", + "repo": "telephone-line", + "sha256": "0smdlzrcbmip6c6c3rd0871wv5xyagavwsxhhgvki6ybyzdj9a19", "rev": "70c113bea37719c83961023afd893044398e681d" }, "recipe": { "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -2415,21 +2572,25 @@ }, "ac-php": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xcwen/ac-php.git", - "sha256": "5422b6878294e4887152670078cac5c74583464f88b4916674f6d08bb6a9ec25", - "rev": "64cfba5b405edb864e4146dd7e00aa8c070a544a" + "tag": "fetchFromGitHub", + "owner": "xcwen", + "repo": "ac-php", + "sha256": "1rpp6njgqpi7sq4iyh65glhnbfw414w7srz90whadhkz5pzawr7z", + "rev": "1f606698934a7d60d0d60f6f15240a2bf78c8b9f" }, "recipe": { "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "1.6.0", + "version": "1.7.0", "deps": [ "auto-complete", + "company", + "dash", "emacs", "f", "php-mode", + "popup", "s", "xcscope", "yasnippet" @@ -2437,14 +2598,15 @@ }, "helm-ghq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/emacs-helm-ghq.git", - "sha256": "5f78b84edc5f65d423f4c58205a800d7392832a5009f16a393bd95c724a8ad2a", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-ghq", + "sha256": "0amdm0jcg5dxjfiid7q0llr2hffp02l0b0n5yhix8razvi7bhy2z", "rev": "15621d1b2cd37c2ff0f73666c38acf7aae46bbc4" }, "recipe": { "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.0", "deps": [ @@ -2460,21 +2622,22 @@ }, "recipe": { "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "helm-gtags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-gtags.git", - "sha256": "92377d12e8acc34107729331986dcf4d2c1fe635a8a982a446724e1731ebf6ab", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-gtags", + "sha256": "0gd158ymj0rpm3qmz17ky4lfhvw15cnq0xvhg6q1imjjay2md62q", "rev": "9131a1439860198d51a9dfa6955c586da4bb60bd" }, "recipe": { "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.1", "deps": [ @@ -2484,14 +2647,15 @@ }, "company-cabal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/company-cabal.git", - "sha256": "bc468b71cbf701e60ac939f3612bd919bf598f2b0b5c6265a73824cc6832ef14", + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-cabal", + "sha256": "1pja44g15d11kl47abzykrp28j782nkbmb0db0ilpc96xf1fjlsw", "rev": "a570559ff92522598b5ed40e21c4539fffb3e976" }, "recipe": { "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -2502,28 +2666,30 @@ }, "idle-highlight-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/idle-highlight-mode.git", - "sha256": "3bb28e320531ef6fec9425bd64956fe298c73469c4dd4f1065b11d9ef50c9c74", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "idle-highlight-mode", + "sha256": "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv", "rev": "c466f2a9e291f9da1167dc879577b2e1a7880482" }, "recipe": { "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.3", "deps": [] }, "highlight-blocks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-blocks.git", - "sha256": "859b45be7a7870c6eb72c1323ef5cf2259f39287083d11a7eb182109c094c530", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-blocks", + "sha256": "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5", "rev": "9c4240a5d16008db430d1a81c76dad474d3deb0c" }, "recipe": { "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.16", "deps": [ @@ -2532,14 +2698,15 @@ }, "simple-httpd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacs-http-server.git", - "sha256": "557c431a225d03402c88b9092f8e0690f4f8f1a6b9dbffa9d823ec63fdeb15e2", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacs-http-server", + "sha256": "1qmkc0w28l53zzf5yd2grrk1sq222g5qnsm35ph25s1cfvc1qb2g", "rev": "b191b07c942e44c946a22a826c4d9c9a0475fd7e" }, "recipe": { "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.6", "deps": [ @@ -2548,28 +2715,30 @@ }, "actionscript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/austinhaas/actionscript-mode.git", - "sha256": "637d66175853b07020244a3bb28e67987b731a59d6f70be230b28e0f1164cb7f", + "tag": "fetchFromGitHub", + "owner": "austinhaas", + "repo": "actionscript-mode", + "sha256": "0zybch8hz3mj63i0pxynb4d76ywqcy7b4fsa4hh71c2kb0bnczb3", "rev": "fddd7220342d29e7eca734f6b798b7a2849717a5" }, "recipe": { "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "7.2.2", "deps": [] }, "sos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omouse/emacs-sos.git", - "sha256": "fefd31f120c54f8bda92c8bda463860029506364412a7cfe4eacf978c06fae61", + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "emacs-sos", + "sha256": "0b5w3vdr8llg3hqd22gnc6b6y089lq6vfk0ajkws6gfldz2gg2v1", "rev": "c3906ca6872f460c0bdd276410519308626313f1" }, "recipe": { "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -2578,14 +2747,15 @@ }, "nasm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/nasm-mode.git", - "sha256": "54fadf6d2f216bb99c902b4e7829f25c48ad48a6c65fa4ee6d5e0d2b40c4e068", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "nasm-mode", + "sha256": "1l7asqwi5gcvb2mn8608025lwypf2vqzrkc3a9phdfjp0qn2apdn", "rev": "6e208d54eabe3339f22cd775f7e6237757f5eb36" }, "recipe": { "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -2594,14 +2764,15 @@ }, "markup-faces": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sensorflo/markup-faces.git", - "sha256": "d39e729436905b3bdc0555149e201a0f7d4d6906a8feae548099334642cd625a", + "tag": "fetchFromGitHub", + "owner": "sensorflo", + "repo": "markup-faces", + "sha256": "0nk2rm14ccwrh1aaxzm80rllsz8g38h9w52m0pf3nnwh6sa757nk", "rev": "c43612633c6c161857a3bab5752ae192bb03f5f3" }, "recipe": { "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] @@ -2614,21 +2785,22 @@ }, "recipe": { "sha256": "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "calfw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-calfw.git", - "sha256": "1618583208d86e37c63f378a4e49c7abf6d55f9d54ea6802168a1d3526d566e7", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-calfw", + "sha256": "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n", "rev": "50e0e0261568f84f31fe7f87c9f863e21d30132f" }, "recipe": { "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5", "deps": [ @@ -2637,14 +2809,15 @@ }, "tabbar-ruler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/tabbar-ruler.el.git", - "sha256": "ecabc3fcfdaf5dbf1ee44140ac109f0b10a6e162271f39ce4e24fb27923ea6f5", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "tabbar-ruler.el", + "sha256": "1xd67s92gyr49v73j7r7cbhsc40bkw8aqh21whgbypdgzpyc7azc", "rev": "7df2e4814018e84ef9261d04a2ade8168a44e3d7" }, "recipe": { "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.45", "deps": [ @@ -2653,28 +2826,30 @@ }, "gruber-darker-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rexim/gruber-darker-theme.git", - "sha256": "6d66ed9cda0e2f29dd13e5951b67c389fe6c2e103772897abd834f3b1acb0092", + "tag": "fetchFromGitHub", + "owner": "rexim", + "repo": "gruber-darker-theme", + "sha256": "14h0rcd3nkw3pmx8jwip20p6rzl9qdkip5g52gfjjbqfvaffsrkd", "rev": "0c08d77e615aceb9e6e1ca66b1fbde275200cfe4" }, "recipe": { "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [] }, "orgbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuhito/orgbox.git", - "sha256": "d645666197b200f73a261b9bcde0462a9b83966da279ffb3b2ba561f300b52af", + "tag": "fetchFromGitHub", + "owner": "yasuhito", + "repo": "orgbox", + "sha256": "02mxp17p7bj4xamg0m6zk832hmpqcgzc7bjbjcnvbvrawhc255hy", "rev": "ecaf5a064431cf92922338c974df8fce1a8f1734" }, "recipe": { "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [ @@ -2684,28 +2859,30 @@ }, "mew": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kazu-yamamoto/Mew.git", - "sha256": "472471d59703eeead8b196ff50bdabdb4bdd9a74719131cc936dc1dbb22880dc", + "tag": "fetchFromGitHub", + "owner": "kazu-yamamoto", + "repo": "Mew", + "sha256": "1dhws4a298zrm88cdn66sikdk06n0p60d32cxsgybakkhg5c5wgr", "rev": "08289430ce14780a03789b71d2060ff4392fbae6" }, "recipe": { "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "6.7", "deps": [] }, "helm-circe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lesharris/helm-circe.git", - "sha256": "c015b68f0753bedd6fac4c4973624ec808edb758e177d5e54719977f4b6012c7", + "tag": "fetchFromGitHub", + "owner": "lesharris", + "repo": "helm-circe", + "sha256": "1iqjc15pz5qr8zjxaxz1b2vys2689ri76jacmipxvgjk0y7vc5f0", "rev": "0b7ecf5380971ee7b6291fca6a2805c320638238" }, "recipe": { "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -2717,42 +2894,45 @@ }, "ruby-hash-syntax": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ruby-hash-syntax.git", - "sha256": "0620b9025720546eb6d9c3ecba6807400016d06384b892174d43c09cab7b100a", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ruby-hash-syntax", + "sha256": "01n9j7sag49m4bdl6065jklnxnc5kck51izg884s1is459qgy86k", "rev": "a0362c2dc449a1e67ef75ad736bcf8b03b083226" }, "recipe": { "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "nodejs-repl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abicky/nodejs-repl.el.git", - "sha256": "6c3c0ab8b9e009eb895de250afec27cd9f0040c5d039420c80351c77164ed504", + "tag": "fetchFromGitHub", + "owner": "abicky", + "repo": "nodejs-repl.el", + "sha256": "1qvs73nimqzhcjgw77vaipqbmnvailc1q6w8rb5vc9c425xsi7an", "rev": "53a0d00d5854ac67d50dcf495e66f49a68e152e7" }, "recipe": { "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [] }, "ido-completing-read+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", - "sha256": "2164bd3a82ddc9ec354f3f663139e004fa76cc5298756825acf044d78043ac3b", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-ubiquitous", + "sha256": "1fgg2l9fvg3iay9wgkfacbc0kl6hx7sbwxgmbl8j47vr6yzkgnd7", "rev": "2e826e3f209cb5d2bc92bdbfd3b189d2c06ff51c" }, "recipe": { "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.9", "deps": [ @@ -2762,14 +2942,15 @@ }, "sekka": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiyoka/sekka.git", - "sha256": "a05a8b13447eb5df360340af354ba5d9ecbb0448e8ec0b819b9eda5d242dff1d", + "tag": "fetchFromGitHub", + "owner": "kiyoka", + "repo": "sekka", + "sha256": "0nsm7z056rh32sq7abgdwyaz4dbz8v9pgbha5jvpk7y0zmnabrgs", "rev": "2b0facc87e743e21534672aadac6db3164e38daf" }, "recipe": { "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.4", "deps": [ @@ -2780,14 +2961,15 @@ }, "auto-complete-exuberant-ctags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/auto-complete-exuberant-ctags.git", - "sha256": "20f7e9df1ebceaf947bed6656c166ecd5581fa3a49f1c2d46fe13983d2f30fbb", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "auto-complete-exuberant-ctags", + "sha256": "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0", "rev": "ff6121ff8b71beb5aa606d28fd389c484ed49765" }, "recipe": { "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.7", "deps": [ @@ -2796,28 +2978,30 @@ }, "full-ack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/full-ack.git", - "sha256": "47b06985e251b76ccb3ce19a8723ae12e003c00d829d6b9e9011c98ed5a1c3a9", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "full-ack", + "sha256": "0c3w3xs2jbdqgsqw0qmdbwii6p395qfznird4gg0hfr7lby2kmjq", "rev": "0aef4be1686535f83217cafb1524818071bd8325" }, "recipe": { "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "helm-nixos-options": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/travisbhartwell/nix-emacs.git", - "sha256": "8d6225321be7a659bcbeaa9dd350b4fcb60e97d3aa866da224afe0e3decca7d2", + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld", "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" }, "recipe": { "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -2827,14 +3011,15 @@ }, "magit-annex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-annex.git", - "sha256": "3ff04fa5497c6f8f330408112edc4d3de9932224d2b73bc7b751118edea9c661", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-annex", + "sha256": "0d7dick96g1vj6c9wh10rgwhwv5j3ixgw1m3z45szszswlrp1bih", "rev": "b51962dcc1080a35a91e2667f7c26fb33960c711" }, "recipe": { "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [ @@ -2851,7 +3036,7 @@ }, "recipe": { "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -2861,14 +3046,15 @@ }, "helm-hatena-bookmark": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/emacs-helm-hatena-bookmark.git", - "sha256": "baf5f298936fe6184dbad3f7a002ec23e4efe149badc69e930f52c663c93a408", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-hatena-bookmark", + "sha256": "0254jcy6cb7m63lnkp5s97hyzr13xh1a1xykp96iirkgjfcg5xds", "rev": "497d33632f195354eaa24670db0804c846b7261b" }, "recipe": { "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.4", "deps": [ @@ -2877,14 +3063,15 @@ }, "emacsql-psql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i", "rev": "03d478870834a683f433e7f0e288476748eec624" }, "recipe": { "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [ @@ -2896,28 +3083,30 @@ }, "yaml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshiki/yaml-mode.git", - "sha256": "0d05b3b1e342c2caf3360a6fb67b3c537c3b015d81dcad8bacf5086a0b8837ee", + "tag": "fetchFromGitHub", + "owner": "yoshiki", + "repo": "yaml-mode", + "sha256": "1mj1gwrflpdlmc7wl1axygn1jqlrjys1dh3cpdh27zrgsjvhd6c1", "rev": "a817e46cc55eb90b7e1dd7cff74e43e080f0f690" }, "recipe": { "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.12", "deps": [] }, "ncl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/ncl-mode.git", - "sha256": "ee518f4a920fa5aca844f3a11ee55a2110d7458a31e9f8a2e52dad3ad29aa868", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "ncl-mode", + "sha256": "16i1k1zr6ng1dlxb1b73mxjf25f4kvf3x5vfffsi3qnfm960bg3q", "rev": "4a1a3f133c8c74a01b5c527496b56052bacac2ab" }, "recipe": { "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.99a", "deps": [ @@ -2926,14 +3115,15 @@ }, "go-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-go-direx.git", - "sha256": "29c5386d7a7b39db97a068c7cf6f51971836bf430015d379b597499da9c5a9e4", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-go-direx", + "sha256": "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln", "rev": "aecb9fef4d56d04d230d37c75c260c8392b5ad9f" }, "recipe": { "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.04", "deps": [ @@ -2949,7 +3139,7 @@ }, "recipe": { "sha256": "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -2958,28 +3148,30 @@ }, "shampoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dmatveev/shampoo-emacs.git", - "sha256": "cf57006de03c3c8d00fad29cba4ba0125113b1c02e839a295ef17ae2ed51e6e1", + "tag": "fetchFromGitHub", + "owner": "dmatveev", + "repo": "shampoo-emacs", + "sha256": "11g9lsgakq8nf689k49p9l536ffi62g3bh11mh9ix1l058xamqw2", "rev": "9bf488ad4025beef6eef63d2d5b72bc1c9b9e142" }, "recipe": { "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [] }, "window-purpose": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmag/emacs-purpose.git", - "sha256": "603dd34a67b16a333909e9184156154e7c71e58bcec8ee4f4be6be6b268c6452", + "tag": "fetchFromGitHub", + "owner": "bmag", + "repo": "emacs-purpose", + "sha256": "08j0akwjp4arkw3zm0lazb13f6dq0m8y9k9nmypd7xk0m77byymd", "rev": "7e492cbdd4259a177625a3f47001d7281f295349" }, "recipe": { "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4", "deps": [ @@ -2991,14 +3183,15 @@ }, "boxquote": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davep/boxquote.el.git", - "sha256": "0863767f68628f52ebddc7b7abe921b672554c2ec30178d47845b01b2d9dc7e7", + "tag": "fetchFromGitHub", + "owner": "davep", + "repo": "boxquote.el", + "sha256": "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73", "rev": "4c49b2046647ed187920c885e175ed388f4833dc" }, "recipe": { "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.22", "deps": [] @@ -3011,21 +3204,22 @@ }, "recipe": { "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ein": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/millejoh/emacs-ipython-notebook.git", - "sha256": "abb0443563ccd529f0eb1fdc52addd8c996671c0c60522dd027717662044abb9", + "tag": "fetchFromGitHub", + "owner": "millejoh", + "repo": "emacs-ipython-notebook", + "sha256": "055hyvdcnbbzxs66v06d5flylhsz1qnmff758736f84cyxm76ayy", "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" }, "recipe": { "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -3035,14 +3229,15 @@ }, "magic-filetype": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/magic-filetype.el.git", - "sha256": "e22ae243e841ddb4381ebf7e6cf5ce9e179e62d22769ba8687ff350c0cf18df5", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "magic-filetype.el", + "sha256": "128dqgh7kvjywiq0wq6ipnr1l1v2dzrz5j0rd3n2783r9nz0i7r5", "rev": "1a3e425ab5b7b6614b7ece5885d23f12f45572f0" }, "recipe": { "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -3052,28 +3247,30 @@ }, "py-yapf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/py-yapf.el.git", - "sha256": "cb180d0d36b3b1568a741ea252fc8f942351d2554fd83a9b11fb5f8cf2d6c27e", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-yapf.el", + "sha256": "03hki4v61340x0xp47lckxabz51abcazcahmr6wfn9n4bvfqjr9x", "rev": "766e57448639ff95eeb018f6d8bdf09170094218" }, "recipe": { "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "paper-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cadadr/paper-theme.git", - "sha256": "83f357c3044453c03633c7967a905c75d9abb3670a218a18fa59382ad01312ba", + "tag": "fetchFromGitHub", + "owner": "cadadr", + "repo": "paper-theme", + "sha256": "1fhj2g82lf2rz8c8l88acyrspnbmbj87m5n76cvc0ls40k1mgww3", "rev": "551859066afe926380b6fcdc95851db45599944e" }, "recipe": { "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] @@ -3086,21 +3283,22 @@ }, "recipe": { "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "finalize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elisp-finalize.git", - "sha256": "2512e83da6a4bff10f56408acc58880743e05d69b03f002874a7da4512440436", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elisp-finalize", + "sha256": "1r9y9zschavi28c5ysrlh56vxszjfyhh5r36fhn74i0b5iiy15rx", "rev": "72c8eaab3deb150ee2cf7f1473114cecffb5204a" }, "recipe": { "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -3111,14 +3309,15 @@ }, "paredit-everywhere": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/paredit-everywhere.git", - "sha256": "878c101b8f9164f21156cf1926f382fc00454b4b77f2bb265b3e340813c52a4b", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "paredit-everywhere", + "sha256": "0jbjwjl92pf0kih3p2x20ms2kpyzzam8fir661nimpmk802ahgkj", "rev": "72b7cd5dcdc02233a32e9f1a6c2d21dc30532170" }, "recipe": { "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -3127,14 +3326,15 @@ }, "eval-in-repl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaz-yos/eval-in-repl.git", - "sha256": "94a9ce1251a57a407f77fc7f1590b510a35101bced6dceb32e80bf04451310e9", + "tag": "fetchFromGitHub", + "owner": "kaz-yos", + "repo": "eval-in-repl", + "sha256": "1s8h2d2h9gw05srwwvgdph0m38qhnn81azzwfxzl0ym5a49cxacl", "rev": "c79ba77bdd6f1534f379953fc6e0ec0e1c866151" }, "recipe": { "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -3144,14 +3344,15 @@ }, "helm-perldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-perldoc.git", - "sha256": "dbcef6a645dbb2820af730d2c7929059064efd97e2cff72993eab8ee2e742afe", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-perldoc", + "sha256": "01cj2897hqz02mfz32nxlyyp59iwm0gz1zj11s8ll7pwy9q3r90g", "rev": "18645f2065a07acce2c6b50a2f9d7a2554e532a3" }, "recipe": { "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.07", "deps": [ @@ -3162,14 +3363,15 @@ }, "ttrss": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pedros/ttrss.el.git", - "sha256": "cfec017bb5627cffe0aa80fb295166c76916c94e6b014a6ce8b82a959a9e1218", + "tag": "fetchFromGitHub", + "owner": "pedros", + "repo": "ttrss.el", + "sha256": "060jksd9aamqx1n4l0bb9v4icsf7cr8jkyw0mbhgyz32nmxh3v6g", "rev": "3b1e34518294a1fa6fa29355fd4e141f3fcaf3b6" }, "recipe": { "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.7.5", "deps": [ @@ -3178,42 +3380,45 @@ }, "term-run": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/10sr/term-run-el.git", - "sha256": "63dab270c988b49df7b24b1fd72e486a0f27f876f738cbbf39bdc1f238936e03", + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "term-run-el", + "sha256": "1lwkm1mnnwhwrnali7ljxw7gvyhrnas200bvfcirngvfjv1q0xzl", "rev": "9b20497bec2537ca6b36a66322a2d99107030679" }, "recipe": { "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [] }, "smooth-scrolling": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aspiers/smooth-scrolling.git", - "sha256": "73eb1acf3991d1ee88c4bb7f3a019117b8e1e84e5f2850f897622c3b161c6e16", + "tag": "fetchFromGitHub", + "owner": "aspiers", + "repo": "smooth-scrolling", + "sha256": "05kf3hb3nb32jzw50a2z9vlf3f0pj40klzxvqj4fxlci777imsvk", "rev": "0d9b228f952c53ad456f98e2c761dda70ed72174" }, "recipe": { "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.4", "deps": [] }, "flymake-python-pyflakes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-python-pyflakes.git", - "sha256": "30c9c615b19605954b73955c05c2a92e18922109e0ec01cdff4f84766344174b", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-python-pyflakes", + "sha256": "0l8qpcbzfi32h3vy7iwydx3hg2w60x9l3v3rabzjx412m5d00gsh", "rev": "78806a25b0f01f03df4210a79a6eaeec59511d7a" }, "recipe": { "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -3228,21 +3433,22 @@ }, "recipe": { "sha256": "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "flycheck-cask": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-cask.git", - "sha256": "940783353a872ac592bf73616d863889858dec5e1abb1c93db859dc178093245", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-cask", + "sha256": "1c3igqfd42dm42kfjm2q2xgr673vws10n9jn2jjlsk4g33brc7h4", "rev": "bad0b7bc25fdfc200ec383db852120aa0fcdba4b" }, "recipe": { "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -3253,28 +3459,30 @@ }, "el-get": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/el-get.git", - "sha256": "eebdbebb3a1e8a4e20d36c60c3b027caa1a18f94b7182f84d9e57847fc16b99b", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "el-get", + "sha256": "1awyh9ffd6a4cia239s89asb88ddqlnrv757d76vcb701pq412bz", "rev": "bfffd553f4c72b818e9ee94f05458eae7a16056b" }, "recipe": { "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "5.1", "deps": [] }, "markdown-mode+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/markdown-mode-plus.git", - "sha256": "d9246f2221a8b4f7540e2400e37773d7abd3f47fea3e40b87bd380229d19b4a9", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "markdown-mode-plus", + "sha256": "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r", "rev": "f35e63284c5caed19b29501730e134018a78e441" }, "recipe": { "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -3283,14 +3491,15 @@ }, "feature-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/michaelklishin/cucumber.el.git", - "sha256": "87bf498a2b320331753bb41d7d1e8f4a9241e198f49a8f98491aed02def3b2b3", + "tag": "fetchFromGitHub", + "owner": "michaelklishin", + "repo": "cucumber.el", + "sha256": "1cxjygg05v8s96c8z6plk3hl34jaiwg7s7dl7dsk20rj5f54kgw7", "rev": "4bd8f19da816115094beb4b0e085822eb298ac37" }, "recipe": { "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] @@ -3303,7 +3512,7 @@ }, "recipe": { "sha256": "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -3318,49 +3527,52 @@ }, "recipe": { "sha256": "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "unkillable-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/EricCrosson/unkillable-scratch.git", - "sha256": "15e57c8ed17a82e1838a6dc119e23347d59e2018b2d1b127c2cb82eceb035cf0", + "tag": "fetchFromGitHub", + "owner": "EricCrosson", + "repo": "unkillable-scratch", + "sha256": "1w2w0gmyr0nbq8kv3ldj30h9xma76gi1khbdia1y30kss677rr8m", "rev": "4451f82eb98f9b159745ca1a79ac60b9d224fd5b" }, "recipe": { "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "crm-custom": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/crm-custom.git", - "sha256": "7273029e19913ed73b54f1d645101f1981d5fc546dd433ec80c82d81292f643d", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "crm-custom", + "sha256": "1fhjz2x9jpz53g9j83kznhy2nhfap3jaf6i69k62243kcw31qyz0", "rev": "fbcf8bf3c87f56cb872d840dd79b6727b886e90d" }, "recipe": { "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "ace-link": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/ace-link.git", - "sha256": "fffd40fc00e63aa64906c179f4860b674a3743fa6c551ddf32c13e021a3d22ec", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ace-link", + "sha256": "1v127ld04gn16bgismbcz91kfjk71f3g8yf10r4scfp603y41zgz", "rev": "f88b70fda761c235afe8d3f7735ef14bc82226f5" }, "recipe": { "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -3369,14 +3581,15 @@ }, "anaphora": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/anaphora.git", - "sha256": "4d48342cc1ec113a33c08097e7b0a1fda2b6f1baf6d8e9c90951087dcdafcc13", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "anaphora", + "sha256": "0fnxxvw81c34zhmiyr5awl92wr5941n4gklvzjc4jphaf2nhkg4w", "rev": "20bf7dcfa502538d23525f0905b4f845d97993d3" }, "recipe": { "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] @@ -3389,7 +3602,7 @@ }, "recipe": { "sha256": "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -3402,7 +3615,7 @@ }, "recipe": { "sha256": "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -3416,7 +3629,7 @@ }, "recipe": { "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -3426,14 +3639,15 @@ }, "fish-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wwwjfy/emacs-fish.git", - "sha256": "168c82e9499894fdd9aac5067e162b3de7b48adcee47062a505a2b8f100498ef", + "tag": "fetchFromGitHub", + "owner": "wwwjfy", + "repo": "emacs-fish", + "sha256": "1vwq0h88yassa0m0cizfvj5b9rrx5cb7w1n5mbczv54q97lq530n", "rev": "ac38e249dc260790ae32a24e101311990d9a84df" }, "recipe": { "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -3442,28 +3656,30 @@ }, "ercn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/ercn.git", - "sha256": "0011ce6ec929f164be91bca53aa03e1b3c3a6b5f683462e7e00d36e0968d56a6", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "ercn", + "sha256": "19jninbf0dhdw3kn4d38bxmklg0v7sh3m9dwj6z69w99r5pcw480", "rev": "73b00dadf83b97dd9edd8381a4b27f583c08b7f6" }, "recipe": { "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [] }, "jump": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/jump.el.git", - "sha256": "02af5e8dc6e34432999b12a9cb6045a489192892191d6ec3af372db2a69f1aae", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "jump.el", + "sha256": "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j", "rev": "fb7355615276f00397b15182076bf472336448a9" }, "recipe": { "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3", "deps": [ @@ -3473,14 +3689,15 @@ }, "list-packages-ext": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/list-packages-ext.git", - "sha256": "98cf61b610d9ba668484977d3eaf7783525999480422b6b88355bdcee3c4eca4", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "list-packages-ext", + "sha256": "197cqkiwxgamhfwbc8h492cmjll3fypkwzcphj26dfnr22v63kwq", "rev": "344719b313c208c644490f8f1130e21405402f05" }, "recipe": { "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -3498,7 +3715,7 @@ }, "recipe": { "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -3507,14 +3724,15 @@ }, "clj-refactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clj-refactor.el.git", - "sha256": "4f83a8dfec5cffa881549e6809f3790cc3a83fd7f9b4a24f6d7160c256636525", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clj-refactor.el", + "sha256": "1w0lv2d916wxfakcy11avmn9f6nsmxff02dpyih5kx6ncgqv1bnd", "rev": "a0a35b6fb0a2f31973d5e5b711f0aac0314d7168" }, "recipe": { "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [ @@ -3530,28 +3748,30 @@ }, "org-autolist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/calvinwyoung/org-autolist.git", - "sha256": "d12aa1c4b5fe20505b1c8a276cf917da774e00c05df3d7006c7bd7b5ffc3ce48", + "tag": "fetchFromGitHub", + "owner": "calvinwyoung", + "repo": "org-autolist", + "sha256": "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani", "rev": "da332fadcd9be4c5eb21c5e98c392b89743750b2" }, "recipe": { "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13", "deps": [] }, "evil-escape": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-escape.git", - "sha256": "c81e8fac620edf194bafe61a644a3eaa0c13bf8248adce22cae5545a001ad58e", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-escape", + "sha256": "0cj17gk7cxia2p9xzqnlnmqqbw2afd3x61gfw9fpf65j9wik5hbz", "rev": "befb07d03c0c06ff5c40eb9cdd436c97fc49f394" }, "recipe": { "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.12", "deps": [ @@ -3562,14 +3782,15 @@ }, "camcorder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/camcorder.el.git", - "sha256": "a6a12faf8631c81462a70aa31648d2bd56cc212fd359a03390c0b142473d226d", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "camcorder.el", + "sha256": "0v927m3l5cf0j0rs0nfk5whwqmmxs941d8qalxi19j1ihspjz8d6", "rev": "a2b5e0629ee3c01ead684e148965ac68e533efbd" }, "recipe": { "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -3580,84 +3801,90 @@ }, "make-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/make-color.el.git", - "sha256": "bbef730fb994e9db2bd09d90373d19dc17b1bf002ea1da8a146700e90ff90ffa", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "make-color.el", + "sha256": "0fp5gbin1sgsdz39spk74vadkzig3ydwhpzx9vg7f231kk5f6wzx", "rev": "b19cb40c0619e267f2948ed37aff67b712a6deed" }, "recipe": { "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "german-holidays": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rudolfochrist/german-holidays.git", - "sha256": "019c482e07a935dd513147977c37e43671f921d8c30439027d949bb634e1840c", + "tag": "fetchFromGitHub", + "owner": "rudolfochrist", + "repo": "german-holidays", + "sha256": "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701", "rev": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc" }, "recipe": { "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "traad": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/traad.git", - "sha256": "1d4f3a933f0200f939ccd2f05fc5f417dbd9856f56ba293be05a849c01202048", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "traad", + "sha256": "1w2haj7grs4h9wiqkcpb28kl7zqlyba4pcgc07n1mvgksvnj729m", "rev": "8852b4dc2b2113a1597301c0b03712b65f50747f" }, "recipe": { "sha256": "1ca965pjglbbi56m1s0hl8zxhbkaxa6ms51vvidzldvmzp8n7mw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "save-sexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/save-sexp.git", - "sha256": "8b3f7a809e341c5a676c952eb4c2d1f712e7d9008c592d4755972151583e09be", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "save-sexp", + "sha256": "1gh97rc528cpam3jsncc03cyf4pps71b8blmdikml71lks07lgwb", "rev": "dce78d8630af6b2e29e3ec83b819a3d688d37dfc" }, "recipe": { "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "fringe-helper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/fringe-helper.el.git", - "sha256": "afbb216b3f16c9ddd88ebb1446871f85d9bca0121e5a27e41d988b5d37586313", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "fringe-helper.el", + "sha256": "1c3yx9j3q8fkfiay4nzcabsq9i4ydqf6vxk8vv80h78gg9afrzrj", "rev": "0f10a196c6e57222b8d4c94eafc40a96e7b20f1b" }, "recipe": { "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [] }, "bufshow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pjones/bufshow.git", - "sha256": "41c9aec30bd62fc5e3f6b64b3ced3b9065cfcfdef5db071664f6d5d3b5769451", + "tag": "fetchFromGitHub", + "owner": "pjones", + "repo": "bufshow", + "sha256": "0x9q4amsmawi8jqj9xxg81khvb3gyyf9hjvb0w6vhrgjwpxiq8sy", "rev": "d8424e412d63dcc721c64fbd2ddd2420a03b4e8b" }, "recipe": { "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] @@ -3670,21 +3897,22 @@ }, "recipe": { "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ebal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/ebal.git", - "sha256": "2084ec30b161f996b19f5f8d5be6479e757424bfb2fa55398bfb802292b04c9a", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "ebal", + "sha256": "0nb0p82fx1qp1q9id88wlfqfvfbqqr20541s59snln1pa25s2agm", "rev": "bd8bca3a57d390c22862179db0afca7008831dd7" }, "recipe": { "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -3695,14 +3923,15 @@ }, "coffee-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/defunkt/coffee-mode.git", - "sha256": "e8ab4c5468b7eedbc5953ca77879e830e96187630df33ad0ec9a7079ef0e2b9f", + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "coffee-mode", + "sha256": "1axp9hixp4vgaqjd3ii9xwb32jhb964zclmpg3zpsl4rp8b9bdz5", "rev": "d19075264dc1f662e2282ca42ce70be0eae61b2a" }, "recipe": { "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.2", "deps": [ @@ -3718,21 +3947,22 @@ }, "recipe": { "sha256": "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "smartparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/smartparens.git", - "sha256": "b64e03b27e05b8c67d6912f31dfdaf7d67810a1fbc49170a9035612b9328df35", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "smartparens", + "sha256": "1mx4hdbrk6v52y5r47fbd6kgqyk3lvqgq8lw3hkww0pqfwwp4x6h", "rev": "6b9b415b3655ac92631c8c5ca1247eebc68b7110" }, "recipe": { "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.3", "deps": [ @@ -3742,14 +3972,15 @@ }, "grunt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gempesaw/grunt.el.git", - "sha256": "fc191985f898438a6128abaedeb60871f70c623ecbf03a36bb879a848960ea6b", + "tag": "fetchFromGitHub", + "owner": "gempesaw", + "repo": "grunt.el", + "sha256": "0zpmhjwj64s72iv3dgsy07pfh20f25ngsy3pszmlrfkxk0926d8k", "rev": "e27dbb6b3de9b36c7fb28f69aa06b4b2ea32d4b9" }, "recipe": { "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.2", "deps": [ @@ -3759,30 +3990,32 @@ }, "buffer-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/buffer-utils.git", - "sha256": "be3edaa95e32fa7196e64eebe4c659ed63f038a204497fe637f4a4cbb44c0b2a", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "buffer-utils", + "sha256": "0rp9hiysy13c4in7b420r7yjza2knlmvphj7l01xbxphbilplqk5", "rev": "b4d325543e25518d725a2122b49cd72a0d6a079a" }, "recipe": { "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "elscreen-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/robario/elscreen-persist.git", - "sha256": "67b1cd5f0daadc0bed867eb4446872c0b4d306dd2eff5a9514ac6dfdd11fc83d", - "rev": "2d7c6c2934e4b5c6f4b125eb5fdfc888c4b647dc" + "tag": "fetchFromGitHub", + "owner": "robario", + "repo": "elscreen-persist", + "sha256": "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf", + "rev": "652b4c738f92c518ead69343ebfcf66bc2a0254c" }, "recipe": { "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "0.1.1", + "version": "0.2.0", "deps": [ "elscreen", "revive" @@ -3790,14 +4023,15 @@ }, "pyenv-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/pyenv-mode.git", - "sha256": "f6d072de53846a738cfbd07a1e38c8f073eecfaedd6d0bd766064ef064d5860b", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "pyenv-mode", + "sha256": "1y3q1k195wp2kgp00a1y34i20zm80wdv2kxigh6gbn2r6qzkqrar", "rev": "b96c15fa1b83cad855e472eda06319ad35e34513" }, "recipe": { "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -3806,28 +4040,30 @@ }, "iplayer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/csrhodes/iplayer-el.git", - "sha256": "660f0f7dc828a941c7ae9e3db4f3fee797512931fe281d1078be7d4464b46d10", + "tag": "fetchFromGitHub", + "owner": "csrhodes", + "repo": "iplayer-el", + "sha256": "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6", "rev": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a" }, "recipe": { "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "ruby-tools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ruby-tools.git", - "sha256": "abd2a379479429d82892de60b4aa83968e851ae9e1de944ba13e0a9ae1f18613", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ruby-tools", + "sha256": "1zvhq9l717rjgkm7bxz5gqkmh5i49cshwzlimb3h78kpjw3hxl2k", "rev": "6e7fb376085bfa7010ecd3dfad63adacc6e2b4ac" }, "recipe": { "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [] @@ -3840,35 +4076,37 @@ }, "recipe": { "sha256": "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "hardcore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/hardcore-mode.el.git", - "sha256": "5486b1bc48f0704d5cb4d64ea2e2724f3ec1f0306686a66874e4bd276cba8622", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "hardcore-mode.el", + "sha256": "08l6p9n2ggg4filad1k663qc2gjgfbia4knnnif4sw7h92yb31jl", "rev": "5ab75594a7a0ca236e2ac87882ee439ff6155d96" }, "recipe": { "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "e2wm-R": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/e2wm-R.el.git", - "sha256": "a48258ed800969ebff2e9052f4ff94e07e1e02d941cb36bae8d987d0ae39b94f", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "e2wm-R.el", + "sha256": "1yf081rac0chvkjha9z9xi1p983gmhjph0hai6ppsz5hzf2vikpp", "rev": "fe17906bf48324032a1beaec9af32b9b49ea9125" }, "recipe": { "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -3877,70 +4115,75 @@ }, "fold-this": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/fold-this.el.git", - "sha256": "162a940af9e144455901322628779754c14a6094427ae8912cd41a73fd5d6ab1", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "fold-this.el", + "sha256": "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn", "rev": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a" }, "recipe": { "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [] }, "mowedline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/retroj/mowedline.git", - "sha256": "ec66747edd88411037a184ad454a954ca90c5fc773952f7ebf222a840c92f309", + "tag": "fetchFromGitHub", + "owner": "retroj", + "repo": "mowedline", + "sha256": "1mg7arw4wbbm84frq3sws5937fh901qn0xnjk9jcp3pvc4d0sxwd", "rev": "c299991ace6f55e9edbf26c1d53b054873899101" }, "recipe": { "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.8", "deps": [] }, "keychain-environment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/keychain-environment.git", - "sha256": "bc7116e1cac43a4002c83c0c45b25a30ae93057ca4e28d80c36c20d678d0061e", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "keychain-environment", + "sha256": "07h6s1wdc83cqf08vqm4gh2r7bihbar4a31wr0140fn4rbhicwdw", "rev": "40eba65a3d5581473d6a30f3a7abf73e5832b8c8" }, "recipe": { "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2.0", "deps": [] }, "parent-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/parent-mode.git", - "sha256": "d15abdfd5808c0979276b95163f128917f2f4e2f34dd4c31d7a667efe961ab44", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "parent-mode", + "sha256": "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni", "rev": "db692cf08deff2f0e973e6e86e26662b44813d1b" }, "recipe": { "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3", "deps": [] }, "git-gutter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-git-gutter.git", - "sha256": "5106367b34f9cc9f9f11aea7aa209570cdbed4fce1b44baedca0be76c70bccf3", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-gutter", + "sha256": "1721h4i185wj9nxkb19cnbwk5fwsajaqr54qq9xb669mm4pjn3ra", "rev": "febe69d909beb407d07dfc1b273ae7b7719fdd7c" }, "recipe": { "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.85", "deps": [ @@ -3956,21 +4199,22 @@ }, "recipe": { "sha256": "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "stylus-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianc/jade-mode.git", - "sha256": "7690294b61606fc289fc7f0c8c07153674d4c17687427c4f520810a170682b4f", + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n", "rev": "4e7a20db492719062f40b225ed730ed50be5db56" }, "recipe": { "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -3979,28 +4223,30 @@ }, "peg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ellerh/peg.el.git", - "sha256": "7660e0ed59cbe62385b850ecdc0a2b0c5bad7466d8e3f7d32615d845203b5f4e", + "tag": "fetchFromGitHub", + "owner": "ellerh", + "repo": "peg.el", + "sha256": "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n", "rev": "081efeca91d790c7fbc90871ac22c40935f4833b" }, "recipe": { "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [] }, "cask": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cask/cask.git", - "sha256": "f5c62c805dd9b801d0dddb23cce334449d857d95c93df8957c948cdbfab6d8a8", + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "cask", + "sha256": "1hvm6r6a8rgjwnn2mcamwqrmhz424vlr4mbvbri3wmn0ikbk510l", "rev": "8337237449446e186ccd5ade0b0dc8c6ea7bd728" }, "recipe": { "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.4", "deps": [ @@ -4015,14 +4261,15 @@ }, "ace-jump-helm-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/ace-jump-helm-line.git", - "sha256": "7bc9141a395baba7f07eada0f873d5c8958dd470c6e95c30bdbe0d81e5812d67", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-jump-helm-line", + "sha256": "0rrdh7jq23dyplq5rsf6f3a8v5f8smrzi85dgvqagasv74d19jbv", "rev": "8259c2bd34486c3929c3425f3354d70cdb478c69" }, "recipe": { "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.3", "deps": [ @@ -4032,28 +4279,30 @@ }, "puml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skuro/puml-mode.git", - "sha256": "7f6fbbef5db6d7aa9af8133f5b9543415634f35b43f5edcc06e8ceed5cb98295", + "tag": "fetchFromGitHub", + "owner": "skuro", + "repo": "puml-mode", + "sha256": "15c2p5ffvkp80v6fvxa3bgrk8mj18famngqkz2dammxnbppvnvvz", "rev": "9d3b5e326d1e68f87711c2ccb0920e2f5db5550b" }, "recipe": { "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.4", "deps": [] }, "ac-html-csswatcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/ac-html-csswatcher.git", - "sha256": "2ec03946eb13fe462a9f8bd4cacefe5a925d843e27169f3a675506e67de7285c", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "ac-html-csswatcher", + "sha256": "0p18wxyyc1jmcwx9y5i77s25v4jszv7cmm4bkwm4dzhkxd33kh1f", "rev": "dadc3c595cf1708291096c03987f1981f3cabc6b" }, "recipe": { "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.7", "deps": [ @@ -4068,49 +4317,52 @@ }, "recipe": { "sha256": "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "gmail2bbdb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/gmail2bbdb.git", - "sha256": "3d74c42b85a8d8f4dd5c93d6ea08ac1d306e33d5b66e0ed9e9d6143faa28d65c", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "gmail2bbdb", + "sha256": "0p6n52m3y56nx7chwvmnslrnwc0xmh4fmmlkbkfz9n58hlmw8x1x", "rev": "2043fb8ee90c119b13bc8caf85fdf0a05f494b98" }, "recipe": { "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [] }, "flymake-easy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-easy.git", - "sha256": "bc47240a0f4542b365fc9ec65f083bf0990714df032a15370ac0aa964bd2ae2d", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-easy", + "sha256": "1j35k52na02b59yglfb48w6m5qzydvzqfsylb8ax5ks0f287yf0c", "rev": "2a24f260cdc3b9c8f9263b653a475d90efa1d392" }, "recipe": { "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10", "deps": [] }, "org-repo-todo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/org-repo-todo.git", - "sha256": "29df65e0cbc2df34850fac68fd08af6c4cbba79d758093066d25d1cdbf44880d", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "org-repo-todo", + "sha256": "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9", "rev": "904a26089d87db59a40421d6f857b189e70dfbe3" }, "recipe": { "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [] @@ -4124,21 +4376,22 @@ }, "recipe": { "sha256": "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.9", "deps": [] }, "robe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgutov/robe.git", - "sha256": "e539d39b77031e8ee46a51c4bcf47f64354a55c1909e13b5aa483de91e806ffd", + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "robe", + "sha256": "1fckb18x9ikm6dlwwdfg9q4wyjjwdqy3r1w2ic01xb0dbyls41gw", "rev": "c5a0ae6f68c699ec3cdbb73a3e01e76f62d75f48" }, "recipe": { "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.8", "deps": [ @@ -4147,28 +4400,30 @@ }, "git-auto-commit-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ryuslash/git-auto-commit-mode.git", - "sha256": "44c1a10ad5486a133e9a53d6e75367ef4b8075b14b320411e633ef86cce1b016", + "tag": "fetchFromGitHub", + "owner": "ryuslash", + "repo": "git-auto-commit-mode", + "sha256": "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh", "rev": "075e5f9ded66c2035581a7b216896556cc586814" }, "recipe": { "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "4.4.0", "deps": [] }, "company-go": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nsf/gocode.git", - "sha256": "e8463e8d696e0c74212f19452b9f734c46c5a7085bd2be0b558fa996ee4bc5fb", + "tag": "fetchFromGitHub", + "owner": "nsf", + "repo": "gocode", + "sha256": "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3", "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1" }, "recipe": { "sha256": "0padz12mb6zv3jlprvnj9s5vyp2hx68cqb5v3z974zfg5ws9sy4c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150303", "deps": [ @@ -4177,14 +4432,15 @@ }, "google-translate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atykhonov/google-translate.git", - "sha256": "62a51789cbbd8eb1bc9ce4949a8de7a9cd7c3aba844d84ac64ac9367a3cf5ddd", + "tag": "fetchFromGitHub", + "owner": "atykhonov", + "repo": "google-translate", + "sha256": "0j2x7xvc556bq63c85j4dn8aggz2xfilx4x7hf99p7w6px0pzp29", "rev": "e3f3981895d829a05f6f92d4db065c4b46076ff7" }, "recipe": { "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.11.2", "deps": [] @@ -4197,21 +4453,22 @@ }, "recipe": { "sha256": "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "puppet-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/puppet-mode.git", - "sha256": "25ed7a919c57291225bdaaa035913ca255592915f0964e2814625a44a0001913", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "puppet-mode", + "sha256": "0xr3s56p6fbm6wgw17galsl3kqvv8c7l1l1qvbhbay39yzs4ff14", "rev": "d943149691abd7b66c85d58aee9657bfcf822c02" }, "recipe": { "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -4222,14 +4479,15 @@ }, "live-code-talks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/live-code-talks.git", - "sha256": "7308fdfadbba90d014c2e97343a81ad2fa22e09d25b6957c7dd6c8d1e4371bfa", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "live-code-talks", + "sha256": "1cwydbhhbs5v9y2s872zxc5lflqmfrdvnc8xz0qars52d7lg4br5", "rev": "3a2ecdb49b2651d87999d4cad56ba8f1004c7a99" }, "recipe": { "sha256": "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -4240,14 +4498,15 @@ }, "unicode-fonts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-fonts.git", - "sha256": "bb7c92bbcc216a5c9556adfcfeecd87e43e91eecce2d68d4bf76eefca41da6bc", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-fonts", + "sha256": "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk", "rev": "a36597d83e0248bd0e6b2c1d5fb95bff72add527" }, "recipe": { "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.8", "deps": [ @@ -4260,28 +4519,30 @@ }, "eww-lnum": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/eww-lnum.git", - "sha256": "6257b99a0c332bd0884dc946bfe708a5d8fa5512c98825b6615f6ba1475c463f", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "eww-lnum", + "sha256": "0gs6bi3s2sszc6v2b26929azmn5513kvyin99n4d0ark1jdbjmv2", "rev": "daef49974446ed4c1001e0549c3f74679bca6bd3" }, "recipe": { "sha256": "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "mbe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ijp/mbe.el.git", - "sha256": "51544f5e6f4bfec4bbead3dd6f9b274ea2b061154c0a5ebcf28fd9e2a468fc01", + "tag": "fetchFromGitHub", + "owner": "ijp", + "repo": "mbe.el", + "sha256": "00gwd2jf5ncgyay5w2jc2mhv18jf4ydnzpfkxaxw9zjbdxg4ym2i", "rev": "b022030d6e26198bb8a93a5b0bfe7aa891cd59ec" }, "recipe": { "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -4291,14 +4552,15 @@ }, "relative-line-numbers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/relative-line-numbers.git", - "sha256": "0aa8d25c1e14ce6eb731656e34d8e21aa914d3a94bb058c25e796ed18e860ee5", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "relative-line-numbers", + "sha256": "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a", "rev": "64157db08b0c2f5fada3209fc8d3e4b4c7429978" }, "recipe": { "sha256": "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [ @@ -4307,14 +4569,15 @@ }, "ob-sml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/swannodette/ob-sml.git", - "sha256": "abd8f7fa17db90ee93ea9fafec7027349121dfb3d32276caa65d667ad1a36e40", + "tag": "fetchFromGitHub", + "owner": "swannodette", + "repo": "ob-sml", + "sha256": "0h3flg8plrjxlv57c8nknggj349l4xqfrbwzxa9yx46v2zxggn5b", "rev": "09b503201be6e06a5ed8d6b52345dc886c202028" }, "recipe": { "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [ @@ -4323,14 +4586,15 @@ }, "mu4e-alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iqbalansari/mu4e-alert.git", - "sha256": "ca6cd79207129903cb6492f31b62a9f64fddd86f47cc5c7972c1d8cf8e332f73", + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "mu4e-alert", + "sha256": "0wrg6f7czn61f9wmrk27dzcdskznm5i1pwwjck5h768j0y9dfv6a", "rev": "83e6232b43902c7124fea16145de0da881bfe865" }, "recipe": { "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -4341,14 +4605,15 @@ }, "ham-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/ham-mode.git", - "sha256": "afec221ea694652de7261f11d786f039b64a813ce2ddf553d0eaa2409faa7d34", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "ham-mode", + "sha256": "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g", "rev": "3a141986a21c2aa6eefb428983352abb8b7907d2" }, "recipe": { "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.2", "deps": [ @@ -4364,21 +4629,22 @@ }, "recipe": { "sha256": "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "e2wm-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-direx.git", - "sha256": "2a4aae973518f82e78efb1437f81ebb74d1ff47ba3c18cedd0a4fdc4b2682726", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-direx", + "sha256": "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia", "rev": "f319625b56c44e601af7c17fc6dbb88e5d70ebae" }, "recipe": { "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -4394,21 +4660,36 @@ }, "recipe": { "sha256": "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, + "ruby-electric": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", + "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", + "rev": "53195" + }, + "recipe": { + "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "multi-web-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fgallina/multi-web-mode.git", - "sha256": "cb7c7a0e0951eaf303f6cc0fba1e6ebd14fb6269e594c9cd7effdd23781b3eb5", + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "multi-web-mode", + "sha256": "1d9y3dw27pgzgv6wk575d5ign55xdqgbl3ycyq1z7sji1477lz6b", "rev": "0517b9e2b3052533ac0cb71eba7073ed309fce06" }, "recipe": { "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [] @@ -4422,21 +4703,22 @@ }, "recipe": { "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [] }, "history": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/boyw165/history.git", - "sha256": "618185ca1012fcbf09f62d8205a653f401302769dad09d452168ee830d82a7d1", + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "history", + "sha256": "0dy98sg92xvnr4algm2v2bnjcdwzv0b0vqk0312b0ziinkzisas1", "rev": "adef53ecc2f6067bb61f020a2b66c5185a51632d" }, "recipe": { "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -4445,42 +4727,45 @@ }, "auto-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/auto-dictionary-mode.git", - "sha256": "ae6333ddbb5f6723426199aeb6ce9c4b43adf037044e2f1f42a0201ecf0a2325", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "auto-dictionary-mode", + "sha256": "191294k92qp8gmfypf0q8j8qrym96aqikzvyb9p03wqvbr3r1dsk", "rev": "0e3567a81f7bb0ad53ed9f20c7d3d1ac40c26ad1" }, "recipe": { "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "project-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/project-persist.git", - "sha256": "b2148a6d7095b7ea4e99a1c51362375aec9589cb5582e48197d68c83f9121113", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "project-persist", + "sha256": "1x7hwda1w59b8hvzxyk996wdz6phs6rchh3f1ydf0ab6x7m7xvjr", "rev": "a4e5de1833edb60656d8a04357c527d34e81d27c" }, "recipe": { "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [] }, "popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/auto-complete/popup-el.git", - "sha256": "d12353d7ad8a31d90a050f57bae599c037ce3dc1eab991ce51e757de26934a08", + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "popup-el", + "sha256": "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h", "rev": "46632ab9652dacad56fd961cd6def25a015170ae" }, "recipe": { "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.3", "deps": [ @@ -4489,14 +4774,15 @@ }, "evil-commentary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/linktohack/evil-commentary.git", - "sha256": "aa50444330267f7698e00ccd308a39ff7c8b888ea5f7cc75912828531caa3ee2", + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-commentary", + "sha256": "1qiym8f56a18j5swrxx5is48nz7z76531k8cw2c7czr6611l8l5a", "rev": "122880a6721fcf16479f406c78c6e490a25efab0" }, "recipe": { "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.1", "deps": [ @@ -4505,14 +4791,15 @@ }, "shut-up": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cask/shut-up.git", - "sha256": "ef77b4f00b402e7b73ebd5097b707a52bf559a614eed8ffaf9619bc45a34eee8", + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "shut-up", + "sha256": "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq", "rev": "dccd8f7d6af2dde96718f557b37bc25adc61dd12" }, "recipe": { "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [ @@ -4522,14 +4809,15 @@ }, "orglink": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/orglink.git", - "sha256": "27358837b625d751bd9eedce5718e35247124d08df866ee8ace332fde9fa7003", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "orglink", + "sha256": "00vhzblzscp3mkl6x1nz116i4isjwcc5gkpdksym3mr5nqvqhd97", "rev": "4f3750227b9279f248bc8ee5724d3c27ea97e2e1" }, "recipe": { "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.3", "deps": [ @@ -4539,14 +4827,15 @@ }, "flymake-shell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-shell.git", - "sha256": "c99eef92e5f5cf76baf48079cac84d4053ecfbbe9b06413d06c8cf70197a613c", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-shell", + "sha256": "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc", "rev": "ec097bd77db5523a04ceb15a128e01689d36fb90" }, "recipe": { "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -4555,14 +4844,15 @@ }, "rdf-prefix": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/simenheg/rdf-prefix.git", - "sha256": "12d75b5284119befdfa31f1d9c59f4382a3c40b9959c924f4721a30ee2772565", + "tag": "fetchFromGitHub", + "owner": "simenheg", + "repo": "rdf-prefix", + "sha256": "0r95fzi0x8r18x7r574mp503qaiqyicrq78zlggyz6qihi95pmqj", "rev": "1ab1464172c7563a7dbf1224572e4ffbfc6608e6" }, "recipe": { "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] @@ -4575,21 +4865,22 @@ }, "recipe": { "sha256": "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/helm-migemo.git", - "sha256": "bafb099d717477922dab0b60b7c157a617a739f278059eaebc4028671544a80c", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-migemo", + "sha256": "03588hanfa20pjp9w1bqy8wsf5x6az0vfq0bmcnr4xvlf6fhkyxs", "rev": "2d964309a5415cf47f5154271e6fe7b6a7fffec7" }, "recipe": { "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.22", "deps": [ @@ -4600,42 +4891,45 @@ }, "gather": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-gather.git", - "sha256": "e6065490459b5f760315f59fcd4509691342e067fabbec38bdcbb04592f82be1", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-gather", + "sha256": "1q9bz294bc6bplwfrfzsczh444v9152wv7zm2l1pcpwv8n8581p6", "rev": "303af57dd2ae0fc1363a3d1a84d475167f58c84a" }, "recipe": { "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] }, "test-simple": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocky/emacs-test-simple.git", - "sha256": "78cd3787dc6f8ea58d97b651dbb955b729dabf70c8f958b3592b46025326ab07", + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-test-simple", + "sha256": "08g7fan1y3wi4w7cdij14awadqss6prqg3k7qzf0wrnbm13dzhmk", "rev": "75eea25bae04d8e5e3e835a2770f02f0ff4602c4" }, "recipe": { "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "projectile-rails": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/asok/projectile-rails.git", - "sha256": "eeeca7ba65658f2a34a07304e1ef513ad969ff3d0d6d8b1544068d079fa8051d", + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "projectile-rails", + "sha256": "03z9zsldzj0nwksw3bj4j58p7n14n6cqv917pwn1sb67l0wziqg2", "rev": "dee51e39003489ece8077750d3cf93dee6b373fa" }, "recipe": { "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.7", "deps": [ @@ -4649,56 +4943,60 @@ }, "tabulated-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/tabulated-list.el.git", - "sha256": "ef3cf42c91dcd61c0fcfbaf63c052418d50518957a99193d1b94450f3ad4c120", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "tabulated-list.el", + "sha256": "0861shx0yicl3cyik6bsjlc0bm8q4h2krxmsrw7irmnwj4ng8g7g", "rev": "b547d9b728935102d1c418bc0e978c221c37f6ab" }, "recipe": { "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0", "deps": [] }, "hippie-expand-slime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/hippie-expand-slime.git", - "sha256": "79c1a6513a11db6c45de6dc7e0a4c6cd62bac0ee9983e8f33b5c29369f22f357", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "hippie-expand-slime", + "sha256": "0mzk4agkcaaw7gryi0wrxv0blqndqsjf1ivdvr2nrnqi798sdhbr", "rev": "de31fbc9f9d55891a006463bcee7670b47084015" }, "recipe": { "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "httpcode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rspivak/httpcode.el.git", - "sha256": "13e7b30753627a9c4aaf71351ae39dc5043b707edce3c89c5ff684e8101a36c1", + "tag": "fetchFromGitHub", + "owner": "rspivak", + "repo": "httpcode.el", + "sha256": "1h9n388fi17nbyfciqywgrq3n165kpiildbimx59qyk2ac3v7rqk", "rev": "2c8eb3b5455254ba70fb71f7178886bfc2d3af90" }, "recipe": { "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "keyset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HKey/keyset.git", - "sha256": "b6149b699968327244a0d350c06aa5383bc4e54bda88b3179d83b674a50691d8", + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "keyset", + "sha256": "0z6sgz8nywsd00zaayafwy5hfi7kzxfifjkfr5cn1l7wlypyksfv", "rev": "25658ef79d26971ce41d9df207dff58d38daa091" }, "recipe": { "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -4708,14 +5006,15 @@ }, "editorconfig-fnmatch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "b5854f8953ddb065c57dff2b7a13116a941eafbe9e7f19f7cf04f7d1399caf53", + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "1z073j9bf31izj05k0vgpv6iwhx0k4m7ikdxgj4sd99svsv84nv9", "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" }, "recipe": { "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -4730,21 +5029,22 @@ }, "recipe": { "sha256": "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "git-gutter-fringe+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/git-gutter-fringe-plus.git", - "sha256": "c9524466c513f3eb2cae4c0a716dcf27958ce813b5b152661888f7a3ee92f1b0", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "git-gutter-fringe-plus", + "sha256": "1c7ijbpa7xw831k55cdm2gl8r597rxnp22jcmqnfpwqkqmk48ln9", "rev": "ce9d594c0189e78d78df26a0c26bbcf886e373cd" }, "recipe": { "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -4754,14 +5054,15 @@ }, "milkode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/emacs-milkode.git", - "sha256": "5711ac50043143a6d889c838cb9bced63d334fd747d22acae49a89aa7b25e6e1", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "emacs-milkode", + "sha256": "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap", "rev": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513" }, "recipe": { "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] @@ -4774,7 +5075,7 @@ }, "recipe": { "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -4783,14 +5084,15 @@ }, "egg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/byplayer/egg.git", - "sha256": "c8bafd333056af0f212a12dc838f5e41054bcad7aa2d91997b849e3e83ba1064", + "tag": "fetchFromGitHub", + "owner": "byplayer", + "repo": "egg", + "sha256": "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj", "rev": "499894195528203cfcf309228bf7578dd8cd5698" }, "recipe": { "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.9", "deps": [] @@ -4803,21 +5105,22 @@ }, "recipe": { "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "tern": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marijnh/tern.git", - "sha256": "79f3f4ccd845f186a2afce2086efc112ff3373718ec6dca8c09696bd2aa6563a", + "tag": "fetchFromGitHub", + "owner": "marijnh", + "repo": "tern", + "sha256": "14s9740f0kgvgwz17y01f6lg9nv2jmzjilljdli064izsw474i0a", "rev": "d4803588928d22cb18044b2e20fedd97e2d348ee" }, "recipe": { "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.16.0", "deps": [ @@ -4828,14 +5131,15 @@ }, "helm-swoop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/helm-swoop.git", - "sha256": "812eb2e11a853434780b470c8cd261317a5df3d3a3b6a937ca7d0955d3cf72d2", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "helm-swoop", + "sha256": "1lkjrz9ma2bxr8vskdm3sgrmsyiic798q3271dw38d453bhv4bl1", "rev": "d834b05538dd3381c68f1260d39d3a7eb6a8f7f7" }, "recipe": { "sha256": "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.1", "deps": [ @@ -4845,14 +5149,15 @@ }, "skeletor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/skeletor.el.git", - "sha256": "013c5f11804d976a736e90fa72d48e6b3751af36963e5249be0059db6c6230aa", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "skeletor.el", + "sha256": "1f2yrm7kac98gfwbzlszcimnmp9cjv4k0aj8yidh7r0jn1xv45f8", "rev": "253b89e199d0251e3eeb6b268fe60a3337fdf5bb" }, "recipe": { "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.2", "deps": [ @@ -4866,14 +5171,15 @@ }, "counsel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/swiper.git", - "sha256": "75b1febbf2e1ed9dc88ed2d8e6a3ce9ae842b8588ea0b6f19a526f14e0a050cd", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper", + "sha256": "1kahl3h18vsjkbqvd84fb2w45s4srsiydn6jiv49vvg1yaxzxcbm", "rev": "706349fcfae297ee285552af9246bc0cf00d9b7f" }, "recipe": { "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -4883,14 +5189,15 @@ }, "visual-fill-column": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/visual-fill-column.git", - "sha256": "02187d43ae2604aaf3f4b86cf5a5ed0370ebe51d52c0b99604a50979bd9f29a2", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "visual-fill-column", + "sha256": "100w8rxdqln4xiwi0df15pvyaiyhjlwcjdh8nb0j95qpwji41vmf", "rev": "261e27c062fbfd59ab20c9a084c35b99bcec598d" }, "recipe": { "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5", "deps": [ @@ -4899,28 +5206,30 @@ }, "android-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remvee/android-mode.git", - "sha256": "52f94fbda0a39a3a2e2bcae154fe4af7f348744ef440948f67709c10a1a4d00c", + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "android-mode", + "sha256": "0gjynmzqlqz0d57fb4np6xrklqdn11y4vjbm18rlpvmk92bgw740", "rev": "146476c5ae958715520bec2b7f8de6b30c48c19f" }, "recipe": { "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [] }, "undercover": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sviridov/undercover.el.git", - "sha256": "8a5681728eba3202f7446e2f24b1efa8f9394ea44a145b31d82b06caaef3d6bb", + "tag": "fetchFromGitHub", + "owner": "sviridov", + "repo": "undercover.el", + "sha256": "0dmkn8qlnyvgaj7dqh82mqj1fik59zfi2yxcic9i6q9walxc3cas", "rev": "068d39745304a06152c3e68a0b6772394c9e6d39" }, "recipe": { "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [ @@ -4931,14 +5240,15 @@ }, "clojure-quick-repls": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/symfrog/clojure-quick-repls.git", - "sha256": "edfca4eb968e22ada89bcfc8affb2ddfafd9b7e78b9a6345eb642474a527836b", + "tag": "fetchFromGitHub", + "owner": "symfrog", + "repo": "clojure-quick-repls", + "sha256": "0sw34yjp8934xd2n76lbwyvxkbyz5pxszj6gkflas8lfjvms9z7d", "rev": "90f82e294cfdfb65231adc456177580cd69bfc00" }, "recipe": { "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -4948,28 +5258,30 @@ }, "rase": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/rase.git", - "sha256": "7d0158108df01dcd9fb769f1209379368ea5b8c6fd36c9e0edba5d3a831926c4", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "rase", + "sha256": "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx", "rev": "59b5f7e8102570b65040e8d55781c7ea28de7338" }, "recipe": { "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "js2-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mooz/js2-mode.git", - "sha256": "77fa5fa2cfd6e89ca94448e22675a939cfa6845d38e5cf33cab3d1e4800e1505", + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "js2-mode", + "sha256": "0xj87grvg7pbhh4d239gaqai5gl72klhpp9yksaqn77qnm98q4fn", "rev": "5c9d8b82dddec2fab370ec8798569c7fc5698093" }, "recipe": { "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150909", "deps": [ @@ -4985,49 +5297,69 @@ }, "recipe": { "sha256": "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "window-end-visible": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/window-end-visible.git", - "sha256": "17e52995dfe349e457d51972dcff24fead1fcce31136582465017e7a98a0a096", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "window-end-visible", + "sha256": "049bwa5g0z1b9nrsc1vc4511aqcq9fvl16xg493wj651g6q9qigb", "rev": "bdc3d182e5f76e75f1b8cc49357194b36e48b67c" }, "recipe": { "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, + "dic-lookup-w3m": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.sourceforge.jp/svnroot/dic-lookup-w3m/", + "sha256": "0lg6i9vw6xsnaamfjczz0cr41vlv1bs03h8c8y2jxpdkgaab31nc", + "rev": "79" + }, + "recipe": { + "sha256": "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [ + "stem", + "w3m" + ] + }, "rbenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senny/rbenv.el.git", - "sha256": "f75fbfdfccb073a576191d6e8c0c4d7ff6149b13fdb6351913759b6d29d98625", + "tag": "fetchFromGitHub", + "owner": "senny", + "repo": "rbenv.el", + "sha256": "09c6v4lnv6vm2cckbdpx2fdi9xkz9l68qvhx35vaawxhrkgvypzp", "rev": "a613ee1941efa48ef5321bad39ac1ed8ad1540b8" }, "recipe": { "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [] }, "org-agenda-property": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/org-agenda-property.git", - "sha256": "ae73db4105d7dcc4323b04a3b0aca0698ac318f8f60fffc66282dd745d352913", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "org-agenda-property", + "sha256": "0gkxxzdk8bd1yi5x9217pkq9d01ccq8znxc7h8qcw0p1336rigfc", "rev": "2ff628a14a3e758863bbd88fba4db9f77fd2c3a8" }, "recipe": { "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [ @@ -5036,14 +5368,15 @@ }, "dart-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/dart-mode.git", - "sha256": "9ab9e6471817ef07837b2eb1c71a3feca72746a799624f9dbdf702e65b4976ee", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "dart-mode", + "sha256": "1vkn95dyc0pppnflyqlrlx32g9zc7wdcgc9fgf1hgvqp313ydfcs", "rev": "07edf4d4448ede128d13c27bd76cf06f5ef5bb3b" }, "recipe": { "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.14", "deps": [ @@ -5060,21 +5393,22 @@ }, "recipe": { "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "navorski": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/navorski.el.git", - "sha256": "3314722d6bcfc0bba4fc3f9e4d583f07a9b3a6c5465b5047795c079d7839c6f8", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "navorski.el", + "sha256": "09cb07f98aclgq8jf5419305zydkk1hz4nvzrwqz7syrlpvx8xi5", "rev": "4546d4e4dfbec20ee8c423c045408a3388a9eab9" }, "recipe": { "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.7", "deps": [ @@ -5091,77 +5425,82 @@ }, "recipe": { "sha256": "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "yasnippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/yasnippet.git", - "sha256": "df9c033f6e057b3c47414d19f551161e7b77a7d1bf101ddc64fbc18af8669ba8", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "yasnippet", + "sha256": "04cqcv10i6mym8j9fhd4fklmwa1q4nfg99kpp0bwx7issqhziqv5", "rev": "be2f815c43deb74e0f809ed47debc4aa2e67ea1e" }, "recipe": { "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0-a", "deps": [] }, "erc-crypt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atomontage/erc-crypt.git", - "sha256": "5fdb5494dec923210ff033ffe5a2a156aa0c1826d768f2d205793e93a33685f7", + "tag": "fetchFromGitHub", + "owner": "atomontage", + "repo": "erc-crypt", + "sha256": "1xw56sir6gkr0p9g4s6p4qc0rajnl6ifbzrky07j28y9vsa59nsz", "rev": "1573189240d8b58e65385414d9a9514238c77805" }, "recipe": { "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "log4e": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/log4e.git", - "sha256": "79d89c0be7fecac981473b599748f910759ec45e2105e00dd0c9589e7a18dfef", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "log4e", + "sha256": "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022", "rev": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb" }, "recipe": { "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [] }, "graphviz-dot-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ppareit/graphviz-dot-mode.git", - "sha256": "400f68d6ab5b4dfcabf7f60e28868708f4378efe0f57cd42b8247c4f233166fe", + "tag": "fetchFromGitHub", + "owner": "ppareit", + "repo": "graphviz-dot-mode", + "sha256": "1zk664ilyz14p11csmqgzs73gx08hy32h3pnyymzqkavmgb6h3s0", "rev": "7301cc276206b6995d265bcb9eb308bb83c760be" }, "recipe": { "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "pcomplete-extension": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/pcomplete-extension.git", - "sha256": "a6aec98ea424314d9cb00ac8301df7190d275a80ecbb525eedb8818f00231740", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "pcomplete-extension", + "sha256": "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6", "rev": "839740c90de857e18db2f578d6660951522faab5" }, "recipe": { "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -5171,14 +5510,15 @@ }, "melpa-upstream-visit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/melpa-upstream-visit.git", - "sha256": "edce5f30431cffe2d6722185233ec23834b4b068f074a78a7bedf27aaf299789", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "melpa-upstream-visit", + "sha256": "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd", "rev": "7310c74fdead3c0f86ad6eff76cf989e63f70f66" }, "recipe": { "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -5193,7 +5533,7 @@ }, "recipe": { "sha256": "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -5202,14 +5542,15 @@ }, "paxedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/promethial/paxedit.git", - "sha256": "dc36ce89eac555eb6590ce23d726ca837123e701e625cfa79998c515bc1d5bae", + "tag": "fetchFromGitHub", + "owner": "promethial", + "repo": "paxedit", + "sha256": "1bjv3ny1bicqk6kwy9g607kj6wc3r8kdf8yfj1jynmf5xa4wwdnw", "rev": "7a69ff07d97955fb5412ba1d5259810609e3bca0" }, "recipe": { "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.6", "deps": [ @@ -5219,42 +5560,45 @@ }, "e2wm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-window-manager.git", - "sha256": "821047f9a6595307a9a77210577810876ddffba52cc803fee872a581c7ed2e4e", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-window-manager", + "sha256": "0g0cz5a0vf31w27ljq5sn52mq15ynadl6cfbb97ja5zj1zxsxgjl", "rev": "397cb6c110c9337cfc1a25ea7fddad00f168613c" }, "recipe": { "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "drupal-spell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arnested/drupal-spell.git", - "sha256": "3d822e71bc43966200e24b263cf01eae109899ad41772e63ccb97936f77dca7a", + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "drupal-spell", + "sha256": "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd", "rev": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae" }, "recipe": { "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [] }, "org-ac": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/org-ac.git", - "sha256": "8a8d8051c563335ce70063186fee43ee1476a3386f2421f29b8068d3848d93f5", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-ac", + "sha256": "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca", "rev": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a" }, "recipe": { "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -5265,15 +5609,15 @@ }, "omnisharp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/OmniSharp/omnisharp-emacs.git", - "branchName": "master", - "sha256": "dfe1c23076c449c53a3c47834ce0fa68d5e4c871f9c65defa2ded21bbdfa5d94", + "tag": "fetchFromGitHub", + "owner": "OmniSharp", + "repo": "omnisharp-emacs", + "sha256": "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm", "rev": "725796278fa8a391e244f2e50676dd6d6b67585d" }, "recipe": { "sha256": "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.9", "deps": [ @@ -5295,7 +5639,7 @@ }, "recipe": { "sha256": "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -5308,21 +5652,22 @@ }, "recipe": { "sha256": "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "highlight-numbers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-numbers.git", - "sha256": "51b9f792b46afbc833e3bdc20bf685a482d17d8c1e931e1731800c087461d039", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-numbers", + "sha256": "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai", "rev": "e1245b27a732ec43c1562f825533fe147759d24e" }, "recipe": { "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -5332,28 +5677,30 @@ }, "org-toodledo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-toodledo.git", - "sha256": "cc4ef1e544ec8e4b7211846834ff6264ad4570f0a0a9bf27805a934a65d9668f", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-toodledo", + "sha256": "0qqa62fsmra6v4061kpki8wbhfcwkgnb2gzxwvnaqlcmhivksg6v", "rev": "5473c1a2762371b198862aa8fd83fd3ec57485a4" }, "recipe": { "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.0", "deps": [] }, "js2-highlight-vars": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/unhammer/js2-highlight-vars.el.git", - "sha256": "14a1d10bb1286993acd40d57b23b65763889f00056abd470df0fe091bbfa5a64", + "tag": "fetchFromGitHub", + "owner": "unhammer", + "repo": "js2-highlight-vars.el", + "sha256": "0r2szaxr3q0gvxqd9asn03q8jf3nclxv4mqdsjn96s98n45x388l", "rev": "bf38d12cf65eebc8b81866fd03f6a0389bb2a9ed" }, "recipe": { "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -5362,14 +5709,15 @@ }, "processing-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ptrv/processing2-emacs.git", - "sha256": "3bee45e8318bd2e4be3c8800d7dbde61dbe0ebba4d02c4a3778b3b58f7526038", + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "processing2-emacs", + "sha256": "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15", "rev": "228bc56369675787d60f637223b50ce3a1afebbd" }, "recipe": { "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -5378,14 +5726,15 @@ }, "csharp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/josteink/csharp-mode.git", - "sha256": "ae137909e1a2019982e32bb982d3bbc2ee6b38d4909fc357bccc6bda3cf03ba9", + "tag": "fetchFromGitHub", + "owner": "josteink", + "repo": "csharp-mode", + "sha256": "12m90dwbmkdwirdfx1jfib9vk7qinrspkyz9d6m5szam98rpzalz", "rev": "0a61f21e499d99962eca907c7f7eab0149febaa1" }, "recipe": { "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.11", "deps": [] @@ -5398,7 +5747,7 @@ }, "recipe": { "sha256": "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -5407,28 +5756,30 @@ }, "mallard-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jhradilek/emacs-mallard-mode.git", - "sha256": "923546e797da36a160676ff32b39d273e42f453f8b188d6a6f497dfda576e288", + "tag": "fetchFromGitHub", + "owner": "jhradilek", + "repo": "emacs-mallard-mode", + "sha256": "1272fsjzsza9dxm8s64b7x2jzr3ks8wjpwvgcxha2dnsjzklcdcj", "rev": "152cd44d53c881457fe57c1aba77e8e2fca4d1b0" }, "recipe": { "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [] }, "ess-R-object-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/ess-R-object-popup.el.git", - "sha256": "60df192d711bc1315d15fa2f915d885d5f6feb2fcf4e009d89142a6e945a1761", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ess-R-object-popup.el", + "sha256": "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0", "rev": "7e1f601bfba72de0fda44d9c82f96028ecbb9948" }, "recipe": { "sha256": "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -5438,14 +5789,15 @@ }, "solarized-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/solarized-emacs.git", - "sha256": "6d9ac8162cd0a643f0b05719aadb54879bfd8ad627993fd0c6bef5cfbdcb605e", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "solarized-emacs", + "sha256": "0zcj9jf8nlsj9vms888z2vs76q54n8g8r9sh381xad3x8d6lrlb3", "rev": "210dbef0186f87048d50face41d1d374d6154b3a" }, "recipe": { "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.2", "deps": [ @@ -5454,14 +5806,15 @@ }, "osx-trash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/osx-trash.el.git", - "sha256": "658f200965c24fc81da1b2586a45e9a52145878a4d45c0f8d4021bfd9e4bda14", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "osx-trash.el", + "sha256": "1pn6xvq41di1jb5d3i8wgs54w0m2414cq3f1vk0xpibshkq7sr4a", "rev": "a5ecee69f514ad9ee78fd9d6b20f3dd49512f5b4" }, "recipe": { "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -5470,14 +5823,15 @@ }, "org-readme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/org-readme.git", - "sha256": "ea00c174f79fa66b8b8a008aef13d829c5d8c636b673aa6b95896eac01770f42", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-readme", + "sha256": "0hhgfw0sqvl9jmmslwxn6v3dii99v09yz2h0ia5np9lzyxsc207a", "rev": "15054e42351b5ec6b629c55760a578516e035355" }, "recipe": { "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130322.926", "deps": [ @@ -5489,14 +5843,15 @@ }, "org2jekyll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/org2jekyll.git", - "sha256": "70bf8d119ad989dc63073d5fe6f556353e7411a3d766115108c819ef985ddb7e", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "org2jekyll", + "sha256": "064kw64w9snm0lbshxn8d6yd9xvyislhg37fmhq1w7vy8lm61xvf", "rev": "a12173b9507b3ef54dfebb5751503ba1ee93c6aa" }, "recipe": { "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.8", "deps": [ @@ -5507,28 +5862,30 @@ }, "bing-dict": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/bing-dict.el.git", - "sha256": "7aaa16adc9f3ce582f9f514f598415b27e640d4410b31feb0cdace5da03a8f26", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "bing-dict.el", + "sha256": "09lg7ah5vkns1kmizcqh8h6n8zmj2n25jksikwpmikpkr6nidaks", "rev": "3d55a306fa50ffad4b374fbf716b5b5200661770" }, "recipe": { "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [] }, "ctable": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-ctable.git", - "sha256": "c32bcaf3750bc16e9c6b31937e8bffcaa8218618bfb1d56ffecbf850fd44f88f", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-ctable", + "sha256": "13zq8kym1y6bzrpxbcdz32323a6azy5px4ridff6xh8bfprwlay3", "rev": "08a017bde6d24ea585e39ce2637bebe28774d316" }, "recipe": { "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [] @@ -5541,21 +5898,22 @@ }, "recipe": { "sha256": "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ess": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-ess/ESS.git", - "sha256": "5c5030f0ecae91e8205b4161ec2ec570b2eb9f69d1ad93843a44023757d1c810", + "tag": "fetchFromGitHub", + "owner": "emacs-ess", + "repo": "ESS", + "sha256": "0lvr14xlxsdad4ihywkpbwwj9lyal0w4p616ska5rk7gg5i8v74p", "rev": "82d13c36f43efb4ef32fbb515ca58f63b2f0c06e" }, "recipe": { "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "15.09", "deps": [ @@ -5564,28 +5922,30 @@ }, "ocp-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/OCamlPro/ocp-indent.git", - "sha256": "1fbff9a43a5fae87cca3ab2c58a9262e16eb9bd9dc9bfcbb25fe59f04ff15c45", + "tag": "fetchFromGitHub", + "owner": "OCamlPro", + "repo": "ocp-indent", + "sha256": "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz", "rev": "e6f15bdf7d5ad6e4addbf24dce74823f953db900" }, "recipe": { "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.2", "deps": [] }, "hoa-pp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hoaproject/Contributions-Emacs-Pp.git", - "sha256": "ac709ddea5e6c3a2b8749def0b2be47025cc1ad7d07d3d0f37bea358e796e12f", + "tag": "fetchFromGitHub", + "owner": "hoaproject", + "repo": "Contributions-Emacs-Pp", + "sha256": "1wg6vc9swwspi6s6jpig3my83i2pq8vkq2cy1q3an87rczacmfzp", "rev": "a72104a191214fba502653643a0d166a8f5341d9" }, "recipe": { "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -5601,21 +5961,22 @@ }, "recipe": { "sha256": "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-w32-launcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/helm-w32-launcher.git", - "sha256": "ce9120037581dbc1933f57fc6593704d6f0d4e853a61ee0814e7947079b2e2b0", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "helm-w32-launcher", + "sha256": "0s8zp3kx2kxlfyd26yr3lphwcybhbm8qa9vzmxr3kaylwy6jpz5q", "rev": "01aa370a32900e7521330fba495474f2aa435e19" }, "recipe": { "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.6", "deps": [ @@ -5626,14 +5987,15 @@ }, "ac-ispell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-ispell.git", - "sha256": "38f3d3b576924df827b74a32f28d9435ab7b64c89a35dcabc63e4901bc441beb", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-ispell", + "sha256": "16qsj3wni4xhcrjx2rnxdzq6jb7jrl4bngi4an37vgdlrx3w8m6l", "rev": "a8c84f7f0b96dc091abc51b1698f24e9c994e6aa" }, "recipe": { "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.07", "deps": [ @@ -5643,14 +6005,15 @@ }, "alect-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/alect-themes.git", - "sha256": "bd768c6f895ecf0a94cdf82a30909256e93c2fbc45e801718c697388679948f3", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "alect-themes", + "sha256": "1pk5dgjqrynap85700wdivq41bdqvwd5hkfimgmcd48l5lhj9pbj", "rev": "db7cc6ebf695a71881d803966d672f80fe967da6" }, "recipe": { "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [ @@ -5665,21 +6028,22 @@ }, "recipe": { "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "dired-k": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-dired-k.git", - "sha256": "216c4ff5dbd2fe19600985090438aeb6573dde7806f94136385834011c4a4bd8", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-dired-k", + "sha256": "0rpln6m3j4xbhrmmz18hby6xpzpzbf1c5hr7bxvna265cb0i5rn7", "rev": "f4f4a1fe3155c35e212d3e16ed5f7c89c0b32282" }, "recipe": { "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.16", "deps": [ @@ -5695,21 +6059,22 @@ }, "recipe": { "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "project-persist-drawer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/project-persist-drawer.git", - "sha256": "8c5550403d4e4d2fe12092f2a04c4ce53809b0b8f4cad840593923060c6c8aeb", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "project-persist-drawer", + "sha256": "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8", "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" }, "recipe": { "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -5724,21 +6089,22 @@ }, "recipe": { "sha256": "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "image-archive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-image-archive.git", - "sha256": "082f3909f9d2ef3b2fc047279e105b40a2daafc3d989fa53682c2425d9efbb46", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-image-archive", + "sha256": "0imvxzcja91cd19zm2frqfpxm8j0bc89w9s7q0pkpvyjz44kjbq8", "rev": "699e967fa7b1dfcce2bf2ec878e74f4238bb6e45" }, "recipe": { "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.7", "deps": [ @@ -5748,14 +6114,15 @@ }, "el-spice": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vedang/el-spice.git", - "sha256": "736d6849712dff42d5bb4b821fe8cd5fc19cec08518357147c3d08e39ae45929", + "tag": "fetchFromGitHub", + "owner": "vedang", + "repo": "el-spice", + "sha256": "0390pfgfgj7hwfmkwikwhip0hmwkgx784l529cqvalc31jchi94i", "rev": "53921ffe9a84d9395eea90709309d3d5529921ea" }, "recipe": { "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [ @@ -5764,20 +6131,38 @@ }, "package-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/package-utils.git", - "sha256": "8a93e3ea9776d00042616b08c04059bda9a9896d30b841dc9e8ec85ef101148d", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "package-utils", + "sha256": "138l07qmxj4fkvf43f1hdn4skadxb50c023bc5101l3njzmf74wa", "rev": "4a56f411f98fd455556a3f1d6c16a577a22057a2" }, "recipe": { "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ "epl" ] }, + "ruby-additional": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", + "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", + "rev": "53195" + }, + "recipe": { + "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [ + "emacs", + "ruby-mode" + ] + }, "open-junk-file": { "fetch": { "tag": "fetchurl", @@ -5786,21 +6171,22 @@ }, "recipe": { "sha256": "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "beginend": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/beginend.git", - "sha256": "5a4f1087045590e3a6c0090a753b656a8eb532620866dfeaa903bcf4cc5a1cfe", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "beginend", + "sha256": "1agrci37bni1vfkxg171l53fvsnjdryhf05v54wj07jngnwf3cw9", "rev": "de3833a1a651532e76df668bd92cfa07893501f1" }, "recipe": { "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -5816,7 +6202,7 @@ }, "recipe": { "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] @@ -5829,35 +6215,37 @@ }, "recipe": { "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "vimgolf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/timvisher/vimgolf.git", - "sha256": "d455d10d8cd4dc59b8934b6b6a95f507426b95bb4df874f7bd12cdf8a757ce17", + "tag": "fetchFromGitHub", + "owner": "timvisher", + "repo": "vimgolf", + "sha256": "1f94qx8rbnn21cl0grxqa9gzkbrz68vmqsihv8vvi8qf1c1dmd0i", "rev": "9fd8aaf68bc69d1dd628de4c7cbb070e366545a9" }, "recipe": { "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10.0", "deps": [] }, "ac-geiser": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xiaohanyu/ac-geiser.git", - "sha256": "ac74a897e03d3ab03c2be01a4a88e578a9d7167c6c6456fadc0c66eea9e0e959", + "tag": "fetchFromGitHub", + "owner": "xiaohanyu", + "repo": "ac-geiser", + "sha256": "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn", "rev": "0e2e36532336f27e3dc3b01fff55ad1a4329817d" }, "recipe": { "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -5873,21 +6261,22 @@ }, "recipe": { "sha256": "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "tuareg": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ocaml/tuareg.git", - "sha256": "bad0045a9fc7eca014c5b57812d44303fac6cb0a17494aecabf303ed3ae04870", + "tag": "fetchFromGitHub", + "owner": "ocaml", + "repo": "tuareg", + "sha256": "0jpcjy2a77mywba2vm61knj26pgylsmv5a21cdp80q40bac4i6bb", "rev": "f97b800db79d9856c70b4988bd39bd7aa623158e" }, "recipe": { "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.9", "deps": [ @@ -5896,28 +6285,30 @@ }, "twilight-anti-bright-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jimeh/twilight-anti-bright-theme.git", - "sha256": "4eb0ba1e308d302261e7b70e7e76f3004a7d08baa19ad6cbb66df488308efed5", + "tag": "fetchFromGitHub", + "owner": "jimeh", + "repo": "twilight-anti-bright-theme", + "sha256": "0glw5lns7hwp8jznnfm6dyjw454sv2n84gy07ma7s1q3yczhq5bc", "rev": "16d4ff2606789b506f0d2f53d12f02d5b1b64f9b" }, "recipe": { "sha256": "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [] }, "octicons": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-octicons.git", - "sha256": "fc21d33f0cceef3f7fbb7ba26f89a5c16a730811480528eed22ec7a84e36cfa5", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-octicons", + "sha256": "19fg6r7aiirfsbp2h1a824476sn1ln4nz8kvpdzkzvyf1hzx68gw", "rev": "77bb1a49045f89b3eaf9bcffeefbb9e1abaee556" }, "recipe": { "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -5926,56 +6317,60 @@ }, "loc-changes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocky/emacs-loc-changes.git", - "sha256": "0f4131c707c0753b7629355e6b15c68a0aa79ff5a1be719a6f538bb56693490f", + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-loc-changes", + "sha256": "1089sbx20r30sis39vwy29fxhb2n3hh35rdv09lpzdxdq01s8wwp", "rev": "8447baff7cb4839ef8d1d747a14e5da85d0cee5b" }, "recipe": { "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "initsplit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dabrahams/initsplit.git", - "sha256": "8f94b86db5fb616cb531169661279c956ef92de568d5d3317d7faf61141adce5", + "tag": "fetchFromGitHub", + "owner": "dabrahams", + "repo": "initsplit", + "sha256": "1rfw38a63bvzglqx7mb8wlnzjvlmkhkn35hn66snqqgvnmnvi54g", "rev": "950bdc568e3fd08e6106170953caf98ac582a431" }, "recipe": { "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6", "deps": [] }, "downplay-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tobias/downplay-mode.git", - "sha256": "ab46acd4a8fd65ed163fa2dd8b760f1b3bc0425ad464e9b44f8ff85d6b679f8d", + "tag": "fetchFromGitHub", + "owner": "tobias", + "repo": "downplay-mode", + "sha256": "13czcxmmvy4g9ysfjr6lb91c0fqv1xv8ppd27wbfsrgxm3aaqimb", "rev": "225a4b3ca09e6f463dfdd54941c98b02be8d574c" }, "recipe": { "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "ruby-compilation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/rinari.git", - "sha256": "897d16725048e216a432bf3beec17dc5d3975a3bcc09e4230b7569c4ce760fb8", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rinari", + "sha256": "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk", "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" }, "recipe": { "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.11", "deps": [ @@ -5990,7 +6385,7 @@ }, "recipe": { "sha256": "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -5999,14 +6394,15 @@ }, "alchemist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/alchemist.el.git", - "sha256": "ca0356af2a1f5b9a49fc6ef6a9d5cfe53018495417008fac66449d12de45cc43", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "alchemist.el", + "sha256": "0961s25b1bjrh4gzzf7k67ycwafmdrc6jlbhzb25i34dmpigq1hz", "rev": "ddc68f52b16b2ced7646f1389ae15eb6c12c6683" }, "recipe": { "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.0", "deps": [ @@ -6019,28 +6415,30 @@ }, "pretty-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/akatov/pretty-mode.git", - "sha256": "f5258222d7b2b8ce52fad643e4500253547fbcca01763259296b5010bbd43be0", + "tag": "fetchFromGitHub", + "owner": "akatov", + "repo": "pretty-mode", + "sha256": "013fig9i4fyx16krp2vfv953p3rwdzr38zs6i50af4pqz4vrcfvh", "rev": "4ba8fceb7dd733361ed975d80ac2caa3612fa78b" }, "recipe": { "sha256": "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.3", "deps": [] }, "splitjoin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-splitjoin.git", - "sha256": "aebcfdc27d6fff5c72e6ae3fd2eaa537ebba4e415b2deefd50a3cee98adb691f", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-splitjoin", + "sha256": "17qsmjsbk8aq3azjxid6h9fzz77bils74scp21sqn8vdnijx8991", "rev": "0eb91e7beec915065cd6c00ceaca180a64d85cda" }, "recipe": { "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -6049,14 +6447,15 @@ }, "frame-restore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/frame-restore.el.git", - "sha256": "0c094115f3fc0a59aec2ae1bfafc07bd8593b320826ee32757e5b6919130e640", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "frame-restore.el", + "sha256": "1vznkbly0lyh5kri9lcgy309ws96q3d5m1lghck9l8ain8hphhqz", "rev": "5bfd06e18cdf5031062de5e052e9a877c3953804" }, "recipe": { "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [ @@ -6065,14 +6464,15 @@ }, "link": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myrkr/dictionary-el.git", - "sha256": "17f5aff9105f25f1a822a36ae112fc2a3f678128764131b3d90fcb7075b8aed4", + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s", "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" }, "recipe": { "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10", "deps": [] @@ -6085,49 +6485,52 @@ }, "recipe": { "sha256": "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "button-lock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/button-lock.git", - "sha256": "94eb38c8f3ce220f811de948413a82d612b4996bdda2cf6f74c92d9cace91fb2", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "button-lock", + "sha256": "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2", "rev": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f" }, "recipe": { "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.2", "deps": [] }, "fill-column-indicator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alpaker/Fill-Column-Indicator.git", - "sha256": "c91797a46d3495d5d2bdbda683c3e1cede5972872653ee0855bc69dc8b87f039", + "tag": "fetchFromGitHub", + "owner": "alpaker", + "repo": "Fill-Column-Indicator", + "sha256": "0fghhy5xqsdwal4fwlr6hxr5kpnfw71q79mxpp9db59ldnj9f5y9", "rev": "5cbc077083775d4719a294455a8a8a53bb3151f8" }, "recipe": { "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.81", "deps": [] }, "serverspec": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-serverspec.git", - "sha256": "141e525f5827ce7841d556ae8fe02c455c124847fd020da39b38012fd2c7b732", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-serverspec", + "sha256": "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2", "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" }, "recipe": { "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.7", "deps": [ @@ -6139,14 +6542,15 @@ }, "butler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AshtonKem/Butler.git", - "sha256": "f9163e1a95db261a85d831a9f2edb0604b9353affd0520155e7584cc963c5488", + "tag": "fetchFromGitHub", + "owner": "AshtonKem", + "repo": "Butler", + "sha256": "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj", "rev": "0e91e0f01ac9c09422f076a096ee567ee138e7a4" }, "recipe": { "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.4", "deps": [ @@ -6157,84 +6561,90 @@ }, "iflipb": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jrosdahl/iflipb.git", - "sha256": "714284d5fd269eab2cc13b595959ce6366f531415a00c0805e1ff064b5f434a3", + "tag": "fetchFromGitHub", + "owner": "jrosdahl", + "repo": "iflipb", + "sha256": "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki", "rev": "2e0d1719abeec7982341761ee5dabb01574e6862" }, "recipe": { "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "ido-complete-space-or-hyphen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/doitian/ido-complete-space-or-hyphen.git", - "sha256": "8244b7aed3a1d9b7c2c56eb75f3d1e371724e3ad145eefd78b7c8e608a4a4291", + "tag": "fetchFromGitHub", + "owner": "doitian", + "repo": "ido-complete-space-or-hyphen", + "sha256": "1ffmsmi31jc0gqnbdxrd8ipsy790bn6hgq3rmayylavmdpg3qfd5", "rev": "ad9baaec10e06be3f85db97b6c8fd970cf20df77" }, "recipe": { "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "sift": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/sift.el.git", - "sha256": "e5ede66da711928d262225d77ead0a3db89fc2e0107e3cc448de9db67e71257d", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "sift.el", + "sha256": "0g4fql83xbyx1ihaghxm6rk2cffz97jpy13hg865m6hh0j72dlr1", "rev": "02cea9ba11f99b13888ac1842215caf190e3a94b" }, "recipe": { "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "moz": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bard/mozrepl.git", - "sha256": "4cb8eaed3140058efa610ecb02c9cf813b81a5da9f7e56642a0fbf19ac2c6e8d", + "tag": "fetchFromGitHub", + "owner": "bard", + "repo": "mozrepl", + "sha256": "13bf5jn1kgqg59j5czlzvajq2fw1rz4h5jqfc7x8w1a067nymf2c", "rev": "646208b67e6c9c56d188db1eba999846d518935f" }, "recipe": { "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] }, "timer-revert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yyr/timer-revert.git", - "sha256": "0512bbaaa1969cf9be710277637ec3b534ed6130961072b36f8820891b5054a6", + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "timer-revert", + "sha256": "1vq5yp6pyjam2csz22mcp353a4d5r7f9m6bsjizfmgr2ld7bwhx7", "rev": "31ad8d94b85807cd9f63fcba0c90c3e9a9515fa2" }, "recipe": { "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "helm-mt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dfdeshom/helm-mt.git", - "sha256": "02bfbe8126eb7a023c17bd45aef7c766b767602dfec1b7671769880c3db3763e", + "tag": "fetchFromGitHub", + "owner": "dfdeshom", + "repo": "helm-mt", + "sha256": "0gknncyhr2392xkvghgy5mh6gdv6qzvswidx2wy04ypb4s0vxgq2", "rev": "27391022dbf5720cb13ecec8ca8c398c05a7cbf7" }, "recipe": { "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [ @@ -6246,42 +6656,45 @@ }, "darcula-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fommil/darcula-theme-emacs.git", - "sha256": "27543bdc25a13ee1958758ba067ce68162f8e7b2e29fcf94feb29c7823e38014", + "tag": "fetchFromGitHub", + "owner": "fommil", + "repo": "darcula-theme-emacs", + "sha256": "1gdh4izwhyly6dyrmh7lfpd12gnb8hpnafj8br51ksijsssrf21f", "rev": "202a5affe59a5e1ac1d33a7e518d1df772bf2100" }, "recipe": { "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "cm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/criticmarkup-emacs.git", - "sha256": "201964c9b1cd5e5933bedceba5f35dfe5f7d0a8ae8cfa2cc881a07ba35a316ae", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "criticmarkup-emacs", + "sha256": "1bhnlcsvl1qsi36a5kz8i857spzybprsbsywpqrmjpndn74n8690", "rev": "abc5adc7e00e10c388c2a57c9f1d59f164773082" }, "recipe": { "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "dynamic-fonts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/dynamic-fonts.git", - "sha256": "aedeb7c912e76d6ace824ea021c0cff035d6d02c3b205814628dd25a1080a466", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "dynamic-fonts", + "sha256": "1ppwlill1z4vqd566h9zi6zx5jb7hggmnmqrga84j5n7fwqvgz7f", "rev": "d318498b377d8941c7420f51616c78e3440d00f5" }, "recipe": { "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.4", "deps": [ @@ -6292,14 +6705,15 @@ }, "bbdb2erc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/unhammer/bbdb2erc.git", - "sha256": "7ab5d52daf8adb18fffc47e201a9f96591ab91e447d017b7e41c20ad583b70fe", + "tag": "fetchFromGitHub", + "owner": "unhammer", + "repo": "bbdb2erc", + "sha256": "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs", "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd" }, "recipe": { "sha256": "1nqvlyklcqmdw2p7zf53jwrnz7nd7hl09nm20fbgw2dn0h1z9q30", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.3", "deps": [ @@ -6308,28 +6722,30 @@ }, "whitespace-cleanup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/whitespace-cleanup-mode.git", - "sha256": "e2bd4b7e707fc063a7c6c9f7a542c72a78d8c8eba5fa52b2e3dc74b49687bc76", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "whitespace-cleanup-mode", + "sha256": "0xmwhybb8x6wwfr55ym5xg4dhy1aqx1abxy9qskn7h3zf1z4pgg2", "rev": "e1e250aa6f5b1a526778c7a501cdec98ba29c0a4" }, "recipe": { "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10", "deps": [] }, "m-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/m-buffer-el.git", - "sha256": "dce09b1386be536db3baabb2b76ba1240846b03d0ca26a90e4107670eced40cd", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "m-buffer-el", + "sha256": "1dnp9yj429scg94hkmc6rnrjkcy74mpf9c509k4avmlkdmmi2hzn", "rev": "ea281db21af0dd48ba08f7f8e0cd2902acdf5a96" }, "recipe": { "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.12", "deps": [ @@ -6339,14 +6755,15 @@ }, "marshal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/marshal.el.git", - "sha256": "bb1694a831ac72ac22c611608a5ce74d12640daf459a23f07347c707a5f4316b", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "marshal.el", + "sha256": "0sriyjjhgis7fgq276j5mw6n84jdwxf8lq0iqqiaqwmc66l985mv", "rev": "2a3d102af4e996536a71ec38ab54e379c30a1ab0" }, "recipe": { "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.3", "deps": [ @@ -6356,14 +6773,15 @@ }, "zygospore": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/louiskottmann/zygospore.el.git", - "sha256": "21e2dc02be0155560938f74f85f8c30d640ee66474a129e7dfbb72e3f754ec0a", + "tag": "fetchFromGitHub", + "owner": "louiskottmann", + "repo": "zygospore.el", + "sha256": "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z", "rev": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8" }, "recipe": { "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [] @@ -6376,35 +6794,37 @@ }, "recipe": { "sha256": "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "scala-mode2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hvesalai/scala-mode2.git", - "sha256": "262959f309c807c099a05933de01ad7cd6785cda0245065c45b69325bdf84cd1", + "tag": "fetchFromGitHub", + "owner": "hvesalai", + "repo": "scala-mode2", + "sha256": "1gfhk595vnf6565nv6m1v8dc4a3a9z34jj1qdh02lk8azg5ylk89", "rev": "34888c094990bc669347f106dbd516f487e55ae3" }, "recipe": { "sha256": "1m8przbs4vmcss7bp496vdziy1xxzh4waj36yny7l79ld9rhk6cl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.22", "deps": [] }, "rigid-tabs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wavexx/rigid-tabs.el.git", - "sha256": "65a9da075c651b3c12533d52133c11846ffe74ac50b7757a712692961e27045c", + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "rigid-tabs.el", + "sha256": "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5", "rev": "c7c6b726806df7e8cb25a41b213a207850c91cb7" }, "recipe": { "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -6413,42 +6833,45 @@ }, "theme-changer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hadronzoo/theme-changer.git", - "sha256": "cda38adad5ef5e87992c14c58876e38d5fbfdf143892d03e8ec42692341e6e27", + "tag": "fetchFromGitHub", + "owner": "hadronzoo", + "repo": "theme-changer", + "sha256": "09vf3qs949n4iqzd14iq2kgvypwdwdv8ii8l5jcqfppgspd8m8yd", "rev": "d3d9c9f62a138958262ac5dd61837df427268611" }, "recipe": { "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.0", "deps": [] }, "hl-sentence": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/hl-sentence.git", - "sha256": "ca1533b4a5efce037d5ebca2c95a015336ef67493980c4f2c915b67bdf7af1c1", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "hl-sentence", + "sha256": "1hgigbgppdhmr7rc901r95kyydjk05dck8mwbryh7kpglns365fa", "rev": "f88882772f1a29fabb54194cc8aacd80d7f5b085" }, "recipe": { "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3", "deps": [] }, "svg-mode-line-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/svg-mode-line-themes.git", - "sha256": "799ccba2e39013872cfee4385c1d3a0e55fc154b9322b67fbfeedcb932c51b53", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "svg-mode-line-themes", + "sha256": "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic", "rev": "80a0e01839cafbd66899202e7764c33231974259" }, "recipe": { "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.3", "deps": [ @@ -6457,14 +6880,15 @@ }, "processing-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ptrv/processing2-emacs.git", - "sha256": "3bee45e8318bd2e4be3c8800d7dbde61dbe0ebba4d02c4a3778b3b58f7526038", + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "processing2-emacs", + "sha256": "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15", "rev": "228bc56369675787d60f637223b50ce3a1afebbd" }, "recipe": { "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] @@ -6477,35 +6901,37 @@ }, "recipe": { "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "grizzl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d11wtq/grizzl.git", - "sha256": "fa87f7c61ec4fca444a7eb3c2d12612175bfe8cf8c6d2f2ab59d90d3d91c07af", + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "grizzl", + "sha256": "1bq73kcx744xnlm2yvccrzlbyx91c492sg7blx2a9z643v3gg1zs", "rev": "c775de1c34d1e5a374e2f40c1ae2396b4b003fe7" }, "recipe": { "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "hyde": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nibrahim/Hyde.git", - "sha256": "1b9aaf59f870db88fada26f83eb6406fa12c7880f0e0a392ef2d3a10e051cdb0", + "tag": "fetchFromGitHub", + "owner": "nibrahim", + "repo": "Hyde", + "sha256": "0nwsmc4c3v0wbfy917ik9k7yz8yclfac695p7p9sh9y354k3maw4", "rev": "181f9d2f91c2678a22243c5485162fa7999fd893" }, "recipe": { "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] @@ -6518,49 +6944,70 @@ }, "recipe": { "sha256": "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "pabbrev": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/pabbrev.git", - "sha256": "864341b02b8be0ba8edddcc502fe99637b6f28f11bd661ee3846c92184ba781c", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "pabbrev", + "sha256": "073qpa223ja673p63mhvy4l6yyv3k7z05ifwvn7bmq4b5fq42hw6", "rev": "127a8b10cf352b0491fefd2f4178ba78ee587564" }, "recipe": { "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "4.1", "deps": [] }, "auto-indent-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/auto-indent-mode.el.git", - "sha256": "de2cee23927361d1e43d68a783e26a2496df685ac93f39719d82f4db9b7e9ac2", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "auto-indent-mode.el", + "sha256": "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y", "rev": "ad7032ee058a74405d04d775b0b384351536bc53" }, "recipe": { "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.126", "deps": [] }, + "helm-ls-svn": { + "fetch": { + "tag": "fetchsvn", + "url": "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el", + "sha256": "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz", + "rev": "143722" + }, + "recipe": { + "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, "evil-leader": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/evil-leader.git", - "sha256": "626882de36c100bb8f98f1a64f50a9a5983af10214694e33c09de60906bf9f80", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-leader", + "sha256": "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5", "rev": "753b01eb4958370ae2226b3780ff31fe157c2852" }, "recipe": { "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.3", "deps": [ @@ -6575,77 +7022,82 @@ }, "recipe": { "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "darktooth-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/emacs-theme-darktooth.git", - "sha256": "e98f05a9fc745655dc52916eec3d4702d50188eaa6fc2ae4ecd676565d82f1dc", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-theme-darktooth", + "sha256": "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9", "rev": "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3" }, "recipe": { "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.37", "deps": [] }, "window-layout": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-window-layout.git", - "sha256": "2efa26f19e4502d0fe4988507f0f9579890554363b07c59a17f20ff057adde4b", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-window-layout", + "sha256": "0jyymmbz03zj2ydca1rv6ra0b2brjl7pyl4897zd00j5kvqjdyif", "rev": "9caf5be4ff1b5d1e141783d7133dab7a46424fef" }, "recipe": { "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "edit-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/edit-list.git", - "sha256": "89c150ab37bbf0f9260c4bcd63d40988567733ee6b1b3007fbd1836283870125", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "edit-list", + "sha256": "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9", "rev": "f460d3f9e208a4e606fe6ded307f1b011916ca71" }, "recipe": { "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "grapnel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/grapnel.git", - "sha256": "c5f9a8feb571ec64c449eefcd2e308c2b469afb342267a61862ef6f7f10c9275", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "grapnel", + "sha256": "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5", "rev": "7387234eb3f0285a490fddb1e06a4bf029719fb7" }, "recipe": { "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.3", "deps": [] }, "ducpel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/ducpel.git", - "sha256": "143ea232a8e2be3d81fb0ce95c7711a702a57dc0650c4a2215f1600da8bcad19", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "ducpel", + "sha256": "17yldk76mxakhb90bma7r4z9jgx02wankgk17r2di196mc04bj7b", "rev": "ece785baaa102bd2e9d54257af3a92bacc5757bc" }, "recipe": { "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -6654,14 +7106,15 @@ }, "elfeed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elfeed.git", - "sha256": "76b58563cc5fc1d87e1326a3d61288746da17e84f370672a23ab86c1c42ad9d7", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elfeed", + "sha256": "0132jl4fl2ycais9l0csykg466ppq8cc4181d3dx87zf7fdhrgwp", "rev": "4c15ed9f9559285df196c9b793bd5168662b6532" }, "recipe": { "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [ @@ -6670,14 +7123,15 @@ }, "resize-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dpsutton/resize-window.git", - "sha256": "9f1f5c17fec219ad389c8a34ba0e4dff6852d69be9d89afad26e94ec1c5b1efb", + "tag": "fetchFromGitHub", + "owner": "dpsutton", + "repo": "resize-window", + "sha256": "1ywcnrrr4wp6c951mqfscvdgcmwyvxy80p40vi27nzbl977lb1xv", "rev": "d4aa9e6e950f5e0455b20f4443fda20742ec0403" }, "recipe": { "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -6686,14 +7140,15 @@ }, "forecast": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cadadr/forecast.el.git", - "sha256": "412c6f4a92e7c2e1ec58c08ad367b51ddb5c337682329f1a9b29ae8a2d4288cb", + "tag": "fetchFromGitHub", + "owner": "cadadr", + "repo": "forecast.el", + "sha256": "1jw888nqmbi9kcd9ycl2fqrmrnqxnmkx72n0b3nf3hp7j956yb21", "rev": "51526906140700f076bd329753abe7ae31b6da90" }, "recipe": { "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.9", "deps": [ @@ -6702,44 +7157,61 @@ }, "tox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chmouel/tox.el.git", - "sha256": "6960c88af11f9b0e143099625191ce650bb248d00047b46751ea4199513c4198", + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "tox.el", + "sha256": "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39", "rev": "5c1a7c18cb7f2fd2da2386debf86012e6953e15d" }, "recipe": { "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "init-open-recentf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/init-open-recentf.el.git", - "sha256": "263187542cb19a3d83a9ca943981ba60c03755b151aa6ebe300f79099ddd811b", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "init-open-recentf.el", + "sha256": "06w1vnfhjy8g62z6xajin5akgh30pa0kk56am61kv6mi5ia8fc96", "rev": "39da6a50e7f39e6ccd9aada0c20d8b6d501cb487" }, "recipe": { "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ "emacs" ] }, + "geben": { + "fetch": { + "tag": "fetchsvn", + "url": "http://geben-on-emacs.googlecode.com/svn/trunk/", + "sha256": "01kbvmylymm6qww45mbjjxmb8ccdl9c2pxdyqfq3g73vwzrvndk4", + "rev": "124" + }, + "recipe": { + "sha256": "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "date-field": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-date-field.git", - "sha256": "7cf4bc78c9958b6aaa52381fb2aedd2175c20e7d4f66727192326eeb84b4bcd2", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-date-field", + "sha256": "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w", "rev": "11c9170d1f7b343233f7716d4c0a62be024c1654" }, "recipe": { "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -6750,56 +7222,60 @@ }, "slamhound": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/slamhound.git", - "sha256": "b35d9a4afdd2c9f617cce3ba54bafaf2d9c2fc9eb80be25e2a99bce96d2ba591", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "slamhound", + "sha256": "09ccdgg2wgw3xmlkpjsaqmnmf7f8rhjy4g6ypsn1sk5rgbgk8aj8", "rev": "2f896d6ba15d09aae66b5fdecc0d855f6b03abc9" }, "recipe": { "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.4", "deps": [] }, "evil-numbers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/evil-numbers.git", - "sha256": "60b9e039c3c27a5ddb78f8ecf150372db3d7cca7b3a2c5fec8a590456d007a88", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-numbers", + "sha256": "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8", "rev": "8834eb2e8bd93561a706363946701d0d90546a9f" }, "recipe": { "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "switch-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dimitri/switch-window.git", - "sha256": "8844b9369dc1864c3fd7a53135734e6dc872f99277fb3fb0a04032af188deefe", + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "switch-window", + "sha256": "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48", "rev": "cd4b06121aa5bac4c4b13b63526a99008def5f2b" }, "recipe": { "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "helm-robe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-robe.git", - "sha256": "015eccef55fb3ed69ff261909ab8b5b5dc4cf3021b497e2ea48f23bb4daa62a6", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-robe", + "sha256": "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg", "rev": "7348d0bc0251b51979554ea678b970fd01c0efe9" }, "recipe": { "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [ @@ -6808,14 +7284,15 @@ }, "ac-capf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-capf.git", - "sha256": "5893816323a627101e6b9f30d49b6343ee1eece266075b16856d98e6ff3789be", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-capf", + "sha256": "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da", "rev": "17571dba0a8f98111f2ab758e9bea285b263781b" }, "recipe": { "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -6825,28 +7302,30 @@ }, "lice": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/buzztaiki/lice-el.git", - "sha256": "acff239622bd1446262a456529d698b1957743a2415a2c04d2d9d50fac517c90", + "tag": "fetchFromGitHub", + "owner": "buzztaiki", + "repo": "lice-el", + "sha256": "0hi8s20vw4a5i5n5jlm5dzgsl1qpfyqbpskqszjls1xrrf3dd4zl", "rev": "69f2d87984f3f3d469db35e241fbbe979384cd03" }, "recipe": { "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "mark-tools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stsquad/emacs-mark-tools.git", - "sha256": "1c178906b07365e7d51e3a118545b1996485eceb7500911a41f6247bfed59e39", + "tag": "fetchFromGitHub", + "owner": "stsquad", + "repo": "emacs-mark-tools", + "sha256": "0fcyspz7n97n84d9203mxgn8ar4rn52qa49s3vayfrbkn038j5qw", "rev": "0e7ac2522ac84155cab341dc49f7f0b81067133c" }, "recipe": { "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [] @@ -6859,49 +7338,52 @@ }, "recipe": { "sha256": "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "dedicated": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/dedicated.git", - "sha256": "2410cea419dc4623d070373695d5d18c2895cb34718f7120f65d9f01814e6a5d", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "dedicated", + "sha256": "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414", "rev": "8275fb672f9cc4ba6682ebda0ef91db827e32992" }, "recipe": { "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "pixiv-novel-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/pixiv-novel-mode.el.git", - "sha256": "0d0095e3032436b92e632dd1d1df253e8b403f192900d897b03d82d338bbe8f1", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "pixiv-novel-mode.el", + "sha256": "1wg8pcwd70ixn2bxh01934zl12ry4pgx3l9dccpbjdi40gira00d", "rev": "4dd9caf749190fab8f0b33862b3894b635de46c5" }, "recipe": { "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [] }, "edit-indirect": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/edit-indirect.git", - "sha256": "bacde52461c28ace2844c8d6c6b21e797ac81ef56596e3d23fd9d2d094228881", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "edit-indirect", + "sha256": "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds", "rev": "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0" }, "recipe": { "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -6910,28 +7392,30 @@ }, "morlock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/morlock.git", - "sha256": "5e7e289e4b4df746ba62c8da9f64bdcdbf586751922f61e73501b5940ee1afd9", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "morlock", + "sha256": "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy", "rev": "804131c7cff5dafa762c666fd66458111e4ee36f" }, "recipe": { "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [] }, "auto-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/auto-complete/auto-complete.git", - "sha256": "aa9d97e3565a2b06818481f25855dca01b15b804eb321b65c7a8422a92cd8954", + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "auto-complete", + "sha256": "0q880dksf3bj1hixa4zhj3ybvrqf1wcnjnmb37i49qwdy6p1ma06", "rev": "70770b17168c30fe482467d7219cfbe8650c5e1c" }, "recipe": { "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.0", "deps": [ @@ -6941,14 +7425,15 @@ }, "sparql-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ljos/sparql-mode.git", - "sha256": "79a395765f595f076cbe2154171a18882321d84a93e9b7cbc98e2bb9df318cf7", + "tag": "fetchFromGitHub", + "owner": "ljos", + "repo": "sparql-mode", + "sha256": "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij", "rev": "303858e7f91829ec720141482c777460e66f310b" }, "recipe": { "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.11.2", "deps": [ @@ -6957,28 +7442,30 @@ }, "expand-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/expand-region.el.git", - "sha256": "3dc2da684680a0ebfd74f148a67ef7d66aef30a8e517fff0d82a309340ef68ee", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "expand-region.el", + "sha256": "0rvkhjfkhamr3ys9iarblfwvwq7n4wishdjgnwj1lx7m80h1hzbg", "rev": "90c4e959ac8bf0bbd857dd679f38a121c592bf7a" }, "recipe": { "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10.0", "deps": [] }, "auto-compile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/auto-compile.git", - "sha256": "4f738b9f02c5ff3496f06bd9415e6d179285869e5b066031b39d51f2159a761f", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "auto-compile", + "sha256": "07vnk8az4lcxncqn01jvks38b4hpdmg43nbby2b39zy50agqnwsg", "rev": "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29" }, "recipe": { "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [ @@ -6989,14 +7476,15 @@ }, "redpen-paragraph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/karronoli/redpen-paragraph.el.git", - "sha256": "e9cad6d38d8ed4ddc278d14630084c263ff5d0ce2ff7480bd2ce584bd6cc85a5", + "tag": "fetchFromGitHub", + "owner": "karronoli", + "repo": "redpen-paragraph.el", + "sha256": "19c5rkb4nn6fs85lixrgrv8gagr69h430inig31dvm4fip9xdjp9", "rev": "e942c41c0308d8fbac1f145387d4f6ea1091e26b" }, "recipe": { "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.22", "deps": [ @@ -7006,14 +7494,15 @@ }, "r-autoyas": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/r-autoyas.el.git", - "sha256": "af729ee67b50903c0b8380ee20f373f3d4a47a7ae2de06ad3b437b4ced6f6d09", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "r-autoyas.el", + "sha256": "02bddznlqys37fnhdpp2g9xa9m7kfgrj1vl0hc5kr42hggk9wwmg", "rev": "563254f01ce530ca4c9be1f23395e3fd7d520ff9" }, "recipe": { "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.28", "deps": [] @@ -7026,7 +7515,7 @@ }, "recipe": { "sha256": "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -7039,63 +7528,67 @@ }, "recipe": { "sha256": "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "search-web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomoya/search-web.el.git", - "sha256": "11d8de35caac0a45a51ba3852852ec1ac7cf74e40014f88146ff4449d431cc23", + "tag": "fetchFromGitHub", + "owner": "tomoya", + "repo": "search-web.el", + "sha256": "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i", "rev": "c4ae86ac1acfc572b81f3d78764bd9a54034c331" }, "recipe": { "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "clips-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/grettke/clips-mode.git", - "sha256": "4debfaa48232426ba3e957f70603080b03044ac8dcd084b1423b2da27391da44", + "tag": "fetchFromGitHub", + "owner": "grettke", + "repo": "clips-mode", + "sha256": "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd", "rev": "a3ab4a3e958d54a16544ec38fe6338f27df20817" }, "recipe": { "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [] }, "kivy-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kivy/kivy.git", - "sha256": "ad3e966b86f786d3fd5cc5e46cf378c3d14e555901d5605b1dd29356f30a5e57", + "tag": "fetchFromGitHub", + "owner": "kivy", + "repo": "kivy", + "sha256": "0qz2q9c5q0l3ibhil2z10yb161fimgdwyp6q8izs9d59qdlmr8x8", "rev": "7c5b1dc7c50a67079a41f27b1cea1a652119a7bc" }, "recipe": { "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.9.0", "deps": [] }, "mpv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kljohann/mpv.el.git", - "sha256": "6f019a5015fbfcb88530aaa3bb9cdf2615ccfe315419859be8b478c7255b1d87", + "tag": "fetchFromGitHub", + "owner": "kljohann", + "repo": "mpv.el", + "sha256": "1pjhch8vah0kf73fl2fk6khhrx1kflggd3zlxrf7w4fxr0qn8la3", "rev": "059135de3979e044f14503806047476d9be9f0e8" }, "recipe": { "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -7114,21 +7607,22 @@ }, "recipe": { "sha256": "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "concurrent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-deferred.git", - "sha256": "b9e17749d71e0431744da74a59b72d42a6e65540ca2599dfcdb1441b8097a900", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-deferred", + "sha256": "0059jy01ni5irpgrj9fa81ayd9j25nvmjjm79ms3210ysx4pgqdr", "rev": "5ef948e9b4c29a1c02d3f1613b21cd0d6d7ef476" }, "recipe": { "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [ @@ -7143,21 +7637,22 @@ }, "recipe": { "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-zhihu-daily": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/helm-zhihu-daily.git", - "sha256": "fa2f6985f9bafef96d3a2230809f574608498bc032c5793699f4a3bb7add100f", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-zhihu-daily", + "sha256": "1j6ssbjbm5ym3pg0icpfp735y4dfhlky9qhl9hwp2n3wmba5g9h1", "rev": "fcc534bb42c81070063b28d3d939a53af0fa9a7c" }, "recipe": { "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -7168,28 +7663,30 @@ }, "vector-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/vector-utils.git", - "sha256": "ff65d76b011cab6f357dea8bbd33f2114094499b7f2936dc2e97b5fc2b7c9c07", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "vector-utils", + "sha256": "0lzq31zqnk32vfp3kicnvgfr3nkv8amjzxmk9nrz1kwgmq7gvkjk", "rev": "2bd63c8ade1a2b6f8aac403c5f25adda2215a685" }, "recipe": { "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [] }, "bongo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dbrock/bongo.git", - "sha256": "d9ba33b4bac199d6fee44f1373d5805f1fcb9698c24a13d9814d1860b7d07ce0", + "tag": "fetchFromGitHub", + "owner": "dbrock", + "repo": "bongo", + "sha256": "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr", "rev": "c5280a11fe8ff39fba4b09ec4a39b0f799d2b59c" }, "recipe": { "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] @@ -7202,21 +7699,22 @@ }, "recipe": { "sha256": "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "caskxy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/caskxy.git", - "sha256": "9f91ec7d29ede8e624c55321e59f352df982f71ac448ff866130c84fe4389876", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "caskxy", + "sha256": "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a", "rev": "279f3ab79bd77fe69cb3148a79896b9bf118a9b3" }, "recipe": { "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -7226,56 +7724,60 @@ }, "aurora-config-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bdd/aurora-config.el.git", - "sha256": "48a86805e9bc533dc5997293526123e8a6a442d8cd90b4e7908bab302fec415b", + "tag": "fetchFromGitHub", + "owner": "bdd", + "repo": "aurora-config.el", + "sha256": "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28", "rev": "0a7ca7987c3a0824e25470389c7d25c337a81593" }, "recipe": { "sha256": "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [] }, "twittering-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hayamiz/twittering-mode.git", - "sha256": "e4dcd4db555773f2199d07dad365f86cc41a0a2074f1499049a51e613f76cc29", + "tag": "fetchFromGitHub", + "owner": "hayamiz", + "repo": "twittering-mode", + "sha256": "193v98i84xybm3n0f30jin5q10i87vbcnbdhl4zqi7jij9p5v98z", "rev": "27e7f3aab238bd0788fd3b471c645c3ceceb0f13" }, "recipe": { "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.0.0", "deps": [] }, "rtags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Andersbakken/rtags.git", - "sha256": "b0120b123c7e6e68100a84e4f1520986754e8ba10b2078702a618eb82774c1e7", + "tag": "fetchFromGitHub", + "owner": "Andersbakken", + "repo": "rtags", + "sha256": "0ndyvpgbvfcnxf74ffaby36rqsnwj10j1s9vr3gan9mqi6spcggf", "rev": "ba85598841648490e64246be802fc2dcdd45bc3c" }, "recipe": { "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "skewer-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/skewer-mode.git", - "sha256": "c9a189bf7dae904b358dbb2098733f22ed15bbe965233fca52a518ac32ce5e14", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "skewer-mode", + "sha256": "05jndz0c26q60s416vqgvr66axdmxb7qsr2g70fvl5iqavnayhpv", "rev": "8a3a22ef4fe4d9d0831e82fde08c6355d0b19ed4" }, "recipe": { "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.2", "deps": [ @@ -7286,14 +7788,15 @@ }, "yesql-ghosts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/yesql-ghosts.git", - "sha256": "4d63dc03994b48adbc2d622680bc6f6ef8cca880875599d68c4c92162b3d7f7b", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "yesql-ghosts", + "sha256": "0yvz7lmid4jcikb9jmc7h2lcry3fdyy809k25nyasj2bk41xqqsd", "rev": "bd834e97f263f9f981758c1462bc6297a83ca852" }, "recipe": { "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -7304,14 +7807,15 @@ }, "latex-extra": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/latex-extra.git", - "sha256": "43eb81b85e81a1c0e7a48e99a3cc3146a4ad187a47d1145670782b70fa6326e7", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "latex-extra", + "sha256": "1rr6cgx70avqf1b19la7g8cav926676a76cflkkw18c1bsw83ss3", "rev": "455b7873de095cbce6aa256f33cf64dba3dbaa29" }, "recipe": { "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.11", "deps": [ @@ -7327,21 +7831,22 @@ }, "recipe": { "sha256": "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "travis": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/emacs-travis.git", - "sha256": "26bf68efccaea65eb21fc67596369a02724de30b30b3c33e5685cfb8542c7e43", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-travis", + "sha256": "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz", "rev": "c8769d3db10ed4604969049e3bd276afa0a0138e" }, "recipe": { "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.0", "deps": [ @@ -7353,14 +7858,15 @@ }, "project-explorer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/project-explorer.git", - "sha256": "7fbf7de574bc33a2a931671e7e5d2532e55e878de5646cf9719db9dcb4cf7864", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "project-explorer", + "sha256": "1hv8ifrpwn434sm41vkgbwni21ma5kfybkwasi6zp0f2b5i9ziw7", "rev": "7c2cc86a81f679dda355110f916366b64893a5d4" }, "recipe": { "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.14.3", "deps": [ @@ -7378,21 +7884,22 @@ }, "recipe": { "sha256": "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ac-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/ac-helm.git", - "sha256": "7a3ee9d691b6af01768cb8dc9c96d28de5b5beb90d44cf063c42cc7322277e89", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "ac-helm", + "sha256": "1gw38phyaslpql7szvlpwgyfngdgd21f6lq406vq0gjwwmxgig34", "rev": "f2110576b0eb35850a7f638c1a991a9fa0c8da3a" }, "recipe": { "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1", "deps": [ @@ -7403,14 +7910,15 @@ }, "rainbow-delimiters": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/rainbow-delimiters.git", - "sha256": "965e575a21c16265ef2e8d59ee9b8206c305b1e6daca49671aec847fa00e28a9", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "rainbow-delimiters", + "sha256": "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd", "rev": "0823d0c67f935a4c36a1c945e93051102963c7fb" }, "recipe": { "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.1", "deps": [] @@ -7423,21 +7931,22 @@ }, "recipe": { "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "genrnc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-genrnc.git", - "sha256": "d6022dca2a25cecd8deb23c9e6244c118dbf40b29785ab055e70cd22940b9c21", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-genrnc", + "sha256": "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn", "rev": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a" }, "recipe": { "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -7449,14 +7958,15 @@ }, "unicode-progress-reporter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-progress-reporter.git", - "sha256": "554f17dfeea7bedc4807d163d9f79f0a0d88ae9f2277c2cc6fd1acd80329f15a", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-progress-reporter", + "sha256": "0qy1hla7vf674ynqdzsaw2cnk92nhpcimww5q94rc0a95pzw64wd", "rev": "f4705332412b12fc72ca868b77c78465561bda75" }, "recipe": { "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.4", "deps": [ @@ -7468,28 +7978,30 @@ }, "fm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/fm.git", - "sha256": "9b09fd145c5fc3342870a154c2bd525c78f3ab7cafafdb81e1dc761fd1105264", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "fm", + "sha256": "0r2j238iyxnww60xpbxggjmz6y2waayw4m51f0l39hszbhags2cv", "rev": "6266840de17ac396dd7275a71da72cd5120c35a6" }, "recipe": { "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "company-anaconda": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/company-anaconda.git", - "sha256": "eab07dd62470c4495ecf4c6a520bbb5d6a8ec46bab3ae0ccd954ec54dba3610e", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-anaconda", + "sha256": "1i6788qfinh47c5crgr57ykgbp6bvk1afcl00c8gywxsf8srvnvy", "rev": "137ba58960a5feeb23aff34c9225fdf161f49f98" }, "recipe": { "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -7502,28 +8014,30 @@ }, "inlineR": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/inlineR.el.git", - "sha256": "2dde319ab1cf78ec1e64ecb69e49119417538b586abe98aae3c087db1318383e", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "inlineR.el", + "sha256": "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q", "rev": "29357186beca825e3d0451b700ec09b9ed65e37b" }, "recipe": { "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "evil-tutor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-tutor.git", - "sha256": "3a81b3e27d0cdac2e7c9c751ab6af7a2bd96915d21e42c72d1780f3aa5b224f5", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-tutor", + "sha256": "1rskvkmz30xyy8xfjf2i35f3dxh663gb3plfy3f0j6z17i086jl2", "rev": "909273bac88b98a565f1b89bbb13d523b7edce2b" }, "recipe": { "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -7532,14 +8046,15 @@ }, "flycheck-dmd-dub": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atilaneves/flycheck-dmd-dub.git", - "sha256": "0f50c15973c93116207359548e75629ffce546d5e4ead637f5ae8855654a9a64", + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "flycheck-dmd-dub", + "sha256": "1ap5hgvaccmf2xkfvyp7rqcfjwmiy6mhr6ccgahxm2z0vm51kpyh", "rev": "e8744adaba010415055ac15c702f780dd6e13e14" }, "recipe": { "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -7548,14 +8063,15 @@ }, "evil-visualstar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/evil-visualstar.git", - "sha256": "92a4e73ac25c1432b55ca0c47ca4bbbcd8632d3d01dbf8b1462c69d3e6034cd8", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "evil-visualstar", + "sha256": "1n2c0gkd6s9c8sqzinq17lnn7n5wpfj7ri50bjsk452wq8xfg94j", "rev": "de939b4013f52a19d1e413c601bbcea88f0233ac" }, "recipe": { "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -7564,14 +8080,15 @@ }, "rainbow-identifiers": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/rainbow-identifiers.git", - "sha256": "30fb159bbc2d473f6614eaab59e6a167fc91f6b04e3144a4a642eadfeb952016", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "rainbow-identifiers", + "sha256": "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh", "rev": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e" }, "recipe": { "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [ @@ -7580,14 +8097,15 @@ }, "demangle-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/liblit/demangle-mode.git", - "sha256": "753c6f92e038e0246e18c2889733718da6e91ae853f782b33d69832f7a87b643", + "tag": "fetchFromGitHub", + "owner": "liblit", + "repo": "demangle-mode", + "sha256": "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl", "rev": "07e62a7f976f6c7366b4b0475bbb5cff881452b8" }, "recipe": { "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -7597,14 +8115,15 @@ }, "github-clone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dgtized/github-clone.el.git", - "sha256": "28129f5bcb0f6341918516ab991b16a460ccccf50358224e443a409d64414d61", + "tag": "fetchFromGitHub", + "owner": "dgtized", + "repo": "github-clone.el", + "sha256": "18c169nxvdl7iv18pyqx690ldg6pkc8njaxdg1cww6ykqzqnfxh7", "rev": "ab048cf49d9ebda73acae803bc44e731e629d540" }, "recipe": { "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -7615,70 +8134,75 @@ }, "shrink-whitespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jcpetkovich/shrink-whitespace.el.git", - "sha256": "e491b49323a15df9486f26f47212c7a902e06df65cc26dd55a54c7d980b53d7d", + "tag": "fetchFromGitHub", + "owner": "jcpetkovich", + "repo": "shrink-whitespace.el", + "sha256": "050gmxdk88zlfjwi07jsj2mvsfcv5imhzcpa6ip3cqkzpmw3pl32", "rev": "24518d58e8e692fa98a73d5e7cd44c1536ab4e42" }, "recipe": { "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [] }, "hi2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nilcons/hi2.git", - "sha256": "8ed6b5dd7aaa8cf6865e6a623c6bf9c737a3996e41833635a6a9ec02d7d308e8", + "tag": "fetchFromGitHub", + "owner": "nilcons", + "repo": "hi2", + "sha256": "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf", "rev": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8" }, "recipe": { "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "deferred": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-deferred.git", - "sha256": "b9e17749d71e0431744da74a59b72d42a6e65540ca2599dfcdb1441b8097a900", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-deferred", + "sha256": "0059jy01ni5irpgrj9fa81ayd9j25nvmjjm79ms3210ysx4pgqdr", "rev": "5ef948e9b4c29a1c02d3f1613b21cd0d6d7ef476" }, "recipe": { "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [] }, "bind-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/use-package.git", - "sha256": "9c0497e725200d62ddde6b5a78f3de03a401c218aad860295a2f85f316787c1f", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "use-package", + "sha256": "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w", "rev": "2b077f6e485e8c5c167413c03246068022b6bc71" }, "recipe": { "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1", "deps": [] }, "bbdb-": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/bbdb-.git", - "sha256": "d75213f2dd7a00de66f41161dd38d3dd6c880d8569d6237242d7d80fdeb4cb9e", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "bbdb-", + "sha256": "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp", "rev": "2839e84c894de2513af41053e80a277a1b483d22" }, "recipe": { "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -7689,14 +8213,15 @@ }, "ace-pinyin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/ace-pinyin.git", - "sha256": "79a67c04e64c1c0f76e1f5f74c8eb4d83abe970bd1aab2bc0bf887d89e0ec082", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-pinyin", + "sha256": "10n01sgdi1zq1fyb5ani1fbvwfnqnj74rxzmw5v0y72cwq27r9kr", "rev": "10f66ba2355bed78ef0a1ad24edb00972a0dbe02" }, "recipe": { "sha256": "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.3", "deps": [ @@ -7706,14 +8231,15 @@ }, "prop-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/prop-menu-el.git", - "sha256": "7b7f28aa1d412cfec0d5f2adbfe27176fd28d45d8507f9ed2256eb66611d8774", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "prop-menu-el", + "sha256": "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc", "rev": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3" }, "recipe": { "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -7730,49 +8256,52 @@ }, "recipe": { "sha256": "1p4jj2ikhfp56d9iai1n1x2ggf1nsfkrhfnggbvk4zb0d2wy3l44", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "bbcode-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/bbcode-mode.git", - "sha256": "7ec29cbb692c60a6682c8f0a1f9fab81880d6eeb7dab182751a7d03475fa7df7", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "bbcode-mode", + "sha256": "1xvxz9sk9l57a4kiiavxxdp0v241mfgiy2lg5ilacq1cd6xrrhky", "rev": "e693ab09c3f34cabfd185e7c249c0b5403f0a7e0" }, "recipe": { "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [] }, "fold-dwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/fold-dwim.git", - "sha256": "461c17827f94d7ea8544b1cb44b7eff617f65cc36f8ab0e9a978775a23181fcd", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "fold-dwim", + "sha256": "1k8z30imlxvqm7lv12kgqdfgc5znxyvl9jxi8j2ymmwlgy11f726", "rev": "4764b0246a722d37eb8ec9f204ffaccaad1755d0" }, "recipe": { "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [] }, "cake-inflector": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-cake-inflector.git", - "sha256": "07b48d2f9b0868a1818d5ef3f38be7571ac95da6c8e24fabd039fc737e6f7e0b", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake-inflector", + "sha256": "1w7yq35gzzwyf480d8gc5r6jbnawg09l6663q068ir6zr9pp4far", "rev": "40bf11890842ba305954528694e1c39a8b73737b" }, "recipe": { "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [ @@ -7781,14 +8310,15 @@ }, "purescript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dysinger/purescript-mode.git", - "sha256": "323e5f8ecba85f946ab6f7965752ec1eb33aa15d2d0a5fc811610dd127dfa1cc", + "tag": "fetchFromGitHub", + "owner": "dysinger", + "repo": "purescript-mode", + "sha256": "1wk319akv0scvyyjsd48pisi2i1gkahhsan9hfszrs6xx3anvfd9", "rev": "6a4d4bdd178c65183a715c7729941a0b8fe5f253" }, "recipe": { "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "13.10", "deps": [] @@ -7801,21 +8331,22 @@ }, "recipe": { "sha256": "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "rectangle-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/rectangle-utils.git", - "sha256": "7587bc0b940809c3643631ccb3620f00caf9f0a2cb9b92cd26dc70025a961711", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "rectangle-utils", + "sha256": "048pjrd04w6w4v6r56yblbqgkjh01xib7k1i6rjc6288jh5vr1vm", "rev": "9328291ad043fdf617cd2191692f13fba5f9a9bb" }, "recipe": { "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -7825,28 +8356,30 @@ }, "hippie-namespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/hippie-namespace.git", - "sha256": "cd90684612f10d4c49939556f51e3add4b846e02a0b6ef4423954c294f19cf8e", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "hippie-namespace", + "sha256": "0nfr8ad0klqwi97fjchvwx9mfc672lhv3ll166sr8vn6jlh7rkv0", "rev": "79a662dfe9e61341e071b879f4f9101ca027ad10" }, "recipe": { "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.8", "deps": [] }, "sbt-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hvesalai/sbt-mode.git", - "sha256": "1a98d6e449809a89a33004f88ce77ee5b13e8eddbbc9b9cf1963969f7bd8b5e8", + "tag": "fetchFromGitHub", + "owner": "hvesalai", + "repo": "sbt-mode", + "sha256": "0y846zmcz5x2jn5bndm0mfi18jc5cd1fkidgc4wvqmm0w30gyx4q", "rev": "be70372bb0890a4f8bec1b6ef10b30ed2e3f5236" }, "recipe": { "sha256": "0a2ynbxgjgbm2nvrgss59xc98kmryf9bmd3qg7qxacyancyi2gxh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -7855,28 +8388,30 @@ }, "shpec-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shpec/shpec-mode.git", - "sha256": "439d3e3e69e415ee72e9e6df26dabc2cf6eb863517a0fe33e7ae7727aff1524e", + "tag": "fetchFromGitHub", + "owner": "shpec", + "repo": "shpec-mode", + "sha256": "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h", "rev": "76bccd63e3b70233a6c9ca0798dd03550952cc76" }, "recipe": { "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "anything-replace-string": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/anything-replace-string.git", - "sha256": "93108f9a50fa2e0d244c382e44928b7e508a7844ec5eeb9a568de8b785f464a0", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "anything-replace-string", + "sha256": "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k", "rev": "1962f24243d6013bcef7e8d23136277d42e13130" }, "recipe": { "sha256": "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.2", "deps": [ @@ -7891,21 +8426,22 @@ }, "recipe": { "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "discover": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mickeynp/discover.el.git", - "sha256": "283c8e229566e5b7abf84b774495f68d9099298bfe65aac0eab0339a3f18bc63", + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "discover.el", + "sha256": "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18", "rev": "bbfda2b4e429985a8fa7971d264c942767cfa816" }, "recipe": { "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -7914,43 +8450,45 @@ }, "ledger-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ledger/ledger.git", - "branchName": "next", - "sha256": "0155b2e2244ed392b2d25847b7cae7226f94f18d9f3776555d27eb8d1ab187ea", + "tag": "fetchFromGitHub", + "owner": "ledger", + "repo": "ledger", + "sha256": "110yvfj01cfl40pf8c1ad8hy07kb6ibjiwvc8svfxrlhw5lca465", "rev": "7eacf5130849b4d53948d4750e11bd08f8a97a27" }, "recipe": { "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.1", "deps": [] }, "eshell-autojump": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/eshell-autojump.git", - "sha256": "6c578729e54f7de25f3048c3e237d4f8d9418dd8e367db85072513213ae7755a", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "eshell-autojump", + "sha256": "0nkmwwx224r50y2xnrz3v26l3ngqshvy5hs861gy4zagwllqfmvc", "rev": "c0866d7f2789831665ebb01b812bae89d085bff0" }, "recipe": { "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "company-restclient": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/company-restclient.git", - "sha256": "c486a2ed92644fb7c708f6469fe7335d52df99ea007e37deb08f72bc69812e44", + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-restclient", + "sha256": "0i1fh5lvqwlgn3g3fzh0xacxyljx6gkryipn133vfkv4jbns51n4", "rev": "98e4b2af0e84ba4192c16288123aed96541c6401" }, "recipe": { "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -7963,14 +8501,15 @@ }, "ac-cake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-ac-cake.git", - "sha256": "cccc6fe7abdcf650f6908ca83a588fc0b675fea9ecfe5df0025ec2930eb6e88b", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ac-cake", + "sha256": "12z8nq797hjy0bq5vzpcm7z7bdn0ixc3ma4cj3v51xnwmgknzk6c", "rev": "f01b3da7e2d20ea5a62daf62412c7dc1ad0130ff" }, "recipe": { "sha256": "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -7986,21 +8525,22 @@ }, "recipe": { "sha256": "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "org-transform-tree-table": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jplindstrom/emacs-org-transform-tree-table.git", - "sha256": "23c4d1b765be0a4558d16c4ef032d3cf617ebb2714c8da2e5abaafbcf1f3e990", + "tag": "fetchFromGitHub", + "owner": "jplindstrom", + "repo": "emacs-org-transform-tree-table", + "sha256": "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3", "rev": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52" }, "recipe": { "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -8010,14 +8550,15 @@ }, "asilea": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/asilea.git", - "sha256": "be5357d5a5d92dbaae94492e741b403b5e772ecc90532842aa16573a9075fc85", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "asilea", + "sha256": "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597", "rev": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f" }, "recipe": { "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -8033,21 +8574,22 @@ }, "recipe": { "sha256": "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-package.git", - "sha256": "2a66ecae3428577456ba6ccbb4b927b7bb6acb1690eef464565bfe2408cb921f", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-package", + "sha256": "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw", "rev": "117f5f26c96c0854aadaf9c52aaec961195d5798" }, "recipe": { "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [ @@ -8057,28 +8599,30 @@ }, "mmm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/mmm-mode.git", - "sha256": "71840270a7d0cb96016fed7841dd1ffab923da9ec3a3fb12bfd8fa5af4c65a13", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "mmm-mode", + "sha256": "097s4xnwfy8d1wzmz65g2f8bnjjjlj67w1yzwn4d3yasb171nbv8", "rev": "4085494df67e0a3207839a175ac62673dfd0acc1" }, "recipe": { "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.4", "deps": [] }, "git-lens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/git-lens.git", - "sha256": "50c7f45624361835b1047cf1e9c1103e61897ec975b985fa3e04ab17f56b2a68", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "git-lens", + "sha256": "0s1adgsigaq47vx8bfbmr5z8jq9y230ykwbw0jqka61n4ibg9ish", "rev": "1feacc217c58fd4a41f9378eb09658f664036509" }, "recipe": { "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -8087,14 +8631,15 @@ }, "emacs-setup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/echosa/emacs-setup.git", - "sha256": "c8dfb9cc7e8025d1af11965cf66a4373205538fe059a3657c4bfb21dc2528396", + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacs-setup", + "sha256": "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8", "rev": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2" }, "recipe": { "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] @@ -8107,21 +8652,22 @@ }, "recipe": { "sha256": "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "highlight-quoted": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/highlight-quoted.git", - "sha256": "4bcada744da3b74dd475408ce425b6446b4f8df63f8acb01bff218ad3f4e0faa", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-quoted", + "sha256": "1ahg9qzss67jpw0wp2izys6lyss4nqjy9320fpa4vdx39msdmjjb", "rev": "cdd7164f9ad3a9929387c08af641ef6f5f013f4f" }, "recipe": { "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -8130,28 +8676,30 @@ }, "wordsmith-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/wordsmith-mode.git", - "sha256": "1ab2459d921b35a580b9f0fa4e06e8692dce7603bc593aaf1eb6c5285d957568", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "wordsmith-mode", + "sha256": "0s3mjmfjiidn3spklndw0dvcwbb9x034xyphp60aad8vjaflbchs", "rev": "41b10f2fe3589da9812395cb417c3dcf906f0969" }, "recipe": { "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "makey": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mickeynp/makey.git", - "sha256": "59c5f9db97357c8a6e46918546c4874e284409d5c83beb0a10914d0ac6df5f2b", + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "makey", + "sha256": "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy", "rev": "a61781e69d3b451551e269446e1c5f624ab81137" }, "recipe": { "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -8167,21 +8715,22 @@ }, "recipe": { "sha256": "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.8", "deps": [] }, "magit-gitflow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jtatarik/magit-gitflow.git", - "sha256": "75b9e6b356b97b925c8bcaec49996b7d85fdeb423c8cab44743d269e4bf3041e", + "tag": "fetchFromGitHub", + "owner": "jtatarik", + "repo": "magit-gitflow", + "sha256": "00711dgbzmplqrfww8xf261ymz3jmhisnv9x1rhcw0ywmlfkbckz", "rev": "58c0f83b0fd02db0f6f4a0cb6101a710029caaeb" }, "recipe": { "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [ @@ -8190,28 +8739,30 @@ }, "wsd-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/josteink/wsd-mode.git", - "sha256": "b6eec2bb80f6ffa2a1a67e6985580183bca73a0502b70e4cba5e3e570cb50e83", + "tag": "fetchFromGitHub", + "owner": "josteink", + "repo": "wsd-mode", + "sha256": "0v4bigqr8dwbn80x87r2wqncxcbb19giyazm1lnajcfg8s5z7jsn", "rev": "2065f07cb813041719aabb1e92fa98aebb2c6ae6" }, "recipe": { "sha256": "0lgs33lm85j9y2c5nw6dl8v6avghyjdavbk6yzh1cya2d9v5f4q0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [] }, "rubocop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/rubocop-emacs.git", - "sha256": "38f9631cfdbb02a256f50792c38ca58ae9c862545145367101ac0351c295b281", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "rubocop-emacs", + "sha256": "10djjp1520xc05qkciaiaiiciscaln6c74h7ymba40mvzlf67y9q", "rev": "405e0fd4c57adb125e3d04208bc86081e3e78d4c" }, "recipe": { "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [ @@ -8221,14 +8772,15 @@ }, "ert-runner": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ert-runner.el.git", - "sha256": "7769e5db9f8c9d7acc6430f29d5d94e035b7c0bfbb736a68068d98a3262ccddd", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ert-runner.el", + "sha256": "0rdgdslspzb4s0n4a68hnwfm8vm8baasa8nzrdinf0nryn7rrhbf", "rev": "00056c37817f15b1870ccedd13cedf102e3194dd" }, "recipe": { "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -8242,70 +8794,75 @@ }, "zenburn-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/zenburn-emacs.git", - "sha256": "9b9757092b7b6f2ff71aa36f6aeb229c43f286fce7a2976332696cfff8c557ff", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "zenburn-emacs", + "sha256": "1zspqpwgyv3969irg8p7zj3g4hww4bmnlvx33bvjyvvv5c4mg5wv", "rev": "ae42a7f3ec9491ddec001a2e57c7eb2f38d421cd" }, "recipe": { "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2", "deps": [] }, "web-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fxbois/web-mode.git", - "sha256": "6ca47f32ac75196831723c243b7c28db269e4f455de00c011f7f2320aafce40a", + "tag": "fetchFromGitHub", + "owner": "fxbois", + "repo": "web-mode", + "sha256": "0b6izvqm3017hrys31ppcs76k0858r74a0jarb8djdi3hxzsgqfv", "rev": "ee276c14f086c8f3b8b47e895b9593fd5d74acc8" }, "recipe": { "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "13", "deps": [] }, "gitconfig-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/git-modes.git", - "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" }, "recipe": { "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [] }, "mwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/mwim.el.git", - "sha256": "c125bee0e8eeaa276424342972b04d3ff15b628c10e40885d65b0b3c02cc24ac", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "mwim.el", + "sha256": "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4", "rev": "dc1b5c358e0bfe607527f1b7c082188105fe6c75" }, "recipe": { "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "transmission": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/holomorph/transmission.git", - "sha256": "bba824bcd540b8b3a109b7c6bb4e60ed3a19d055790ae1c4017bf8ecd47ddf91", + "tag": "fetchFromGitHub", + "owner": "holomorph", + "repo": "transmission", + "sha256": "14fzgpafry3v072f22krap81jfpdc17bpimp16hv7f20sny29a5v", "rev": "2769c9b17fa464e0634ac03046be74cefdb28880" }, "recipe": { "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [ @@ -8322,7 +8879,7 @@ }, "recipe": { "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -8337,7 +8894,7 @@ }, "recipe": { "sha256": "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -8351,21 +8908,22 @@ }, "recipe": { "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.21", "deps": [] }, "nixos-options": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/travisbhartwell/nix-emacs.git", - "sha256": "8d6225321be7a659bcbeaa9dd350b4fcb60e97d3aa866da224afe0e3decca7d2", + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld", "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" }, "recipe": { "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -8375,14 +8933,15 @@ }, "pythonic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/pythonic.git", - "sha256": "d2d72d2b2591fafb4a9fb7686407a3ec9d93a0a38be77adf89026de2570c2ae4", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "pythonic", + "sha256": "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c", "rev": "959b3f5d5607eb41ef26ad61d7ec15ceecb8e37a" }, "recipe": { "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -8401,21 +8960,22 @@ }, "recipe": { "sha256": "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "emms-mode-line-cycle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/emms-mode-line-cycle.git", - "sha256": "6824d92b2ca19f38d0bc2b28cd1949d9f25b49c8cb76a39122cf7d58f6eee2df", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "emms-mode-line-cycle", + "sha256": "1pz2xvv5hzfg4a8s6xnbr14mpwnr94cwsa1bpk83i7x15hmxj938", "rev": "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295" }, "recipe": { "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.4", "deps": [ @@ -8425,42 +8985,45 @@ }, "go-errcheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dominikh/go-errcheck.el.git", - "sha256": "63a254c6c720ef40fbc483df2baba4e1574dbbbbb2b51601c41545bd47eba6ba", + "tag": "fetchFromGitHub", + "owner": "dominikh", + "repo": "go-errcheck.el", + "sha256": "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3", "rev": "1b0cd6af048a8b2074ace14ab51fb6c987beb430" }, "recipe": { "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.2", "deps": [] }, "minimal-session-saver": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/minimal-session-saver.git", - "sha256": "92a6468ec3bc988283c03d8c84fd563bc2225fb70b2bcfec1c09f3798018eecc", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "minimal-session-saver", + "sha256": "0kjhn48sf2ps3k5pv06gqmqc4hlk6di9ld3ssw6vwfh8313x1fc5", "rev": "aaba48a8525e1310b221eeb96763304c22e9a4b4" }, "recipe": { "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.2", "deps": [] }, "popup-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-popup-complete.git", - "sha256": "7c960dc4eff365940310d2947b02bb264ac4bba512513559caa9c7b96649053d", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-popup-complete", + "sha256": "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4", "rev": "e362d4a005b36646ffbaa6be604e9e31bc406ca9" }, "recipe": { "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [ @@ -8469,14 +9032,15 @@ }, "cake2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-cake2.git", - "sha256": "7177a82eff2163dfd461e4e3dfe445ce82c580078f558fd68b4f142b9fb81bd1", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake2", + "sha256": "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb", "rev": "0a9d0b3a1c49ba1730088416f50507f53221c70b" }, "recipe": { "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.0", "deps": [ @@ -8492,14 +9056,15 @@ }, "async": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/emacs-async.git", - "sha256": "b7cddb682702a034dd416e26afd9318f0574b7f55f717b4f1e522ae23e55217d", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "emacs-async", + "sha256": "0z91alzf4ajj3r7pnwazynvp81cg67csy9kf87fk98024xldpkdp", "rev": "c25bf17b34a1608da45e8a1ca02e1c89a34acd34" }, "recipe": { "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6", "deps": [ @@ -8509,16 +9074,17 @@ }, "gotest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/gotest.el.git", - "sha256": "1dc860bf805572ba4821e661690b851d48f5609f05e59da3883f3fea2e46b415", - "rev": "46bd21634430808a6eb29776a2898f28b09bddac" + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "gotest.el", + "sha256": "1b6zn1fmqvfb7bcpmhzkgcy5003dl22w3f293arlsd1xkbjgkxa2", + "rev": "ab0da939aad5cec301126c59b7718cd3158b3233" }, "recipe": { "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "0.8.0", + "version": "0.9.0", "deps": [ "emacs", "f", @@ -8528,14 +9094,15 @@ }, "floobits": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Floobits/floobits-emacs.git", - "sha256": "7d1791e9315d81ad4fb19108bb3316d1d1a436cb9c0db53401a77248bc35cc56", + "tag": "fetchFromGitHub", + "owner": "Floobits", + "repo": "floobits-emacs", + "sha256": "11zfpwfpv8lrib9629h9jyn9svqg30kf4jbnaj0s2sxcyn2sxfga", "rev": "08b3b5a3c3a178b8f21f1baf5e1f0eb0cf1fb855" }, "recipe": { "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.1", "deps": [ @@ -8545,14 +9112,15 @@ }, "annoying-arrows-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/annoying-arrows-mode.el.git", - "sha256": "02fc94d96b4dddc3ad65040d5f7d41422fa4e52aa6485e4f7e4ec8fff51cf8de", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "annoying-arrows-mode.el", + "sha256": "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02", "rev": "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3" }, "recipe": { "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] @@ -8566,63 +9134,67 @@ }, "recipe": { "sha256": "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "weibo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/austin-----/weibo.emacs.git", - "sha256": "1b1a19ed36d4b1c00beb8487f983dc184db58695ee8eeea093b7f242be7b7593", + "tag": "fetchFromGitHub", + "owner": "austin-----", + "repo": "weibo.emacs", + "sha256": "14vmgfz45wmpjfhfx3pfjn3bak8qvj1zk1w4xc5w1cfl6vnij6hv", "rev": "a8af467e5660a35342029c2796de99cd551454b2" }, "recipe": { "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "stan-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stan-dev/stan-mode.git", - "sha256": "b168aa58354ec69fa61f58bd95c133d14b862dc3c774bfb7dac05094bbb31c15", + "tag": "fetchFromGitHub", + "owner": "stan-dev", + "repo": "stan-mode", + "sha256": "1yx8n2c9bls0cvc53d69nyrg44yc3py51lzci0cviwszmnbbrljx", "rev": "3a1b9a714ae7a547638a449f5a9ac487003c55b8" }, "recipe": { "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "7.1.0", "deps": [] }, "edts": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tjarvstrand/edts.git", - "sha256": "f76caf8ffd4677d6f3298f2ba53de5799b51646c90bcf7828bb064e2951821a4", + "tag": "fetchFromGitHub", + "owner": "tjarvstrand", + "repo": "edts", + "sha256": "1a1apa48n24yisd2zw5k4lfkngx3016x6y11qi80hg75vrnmg7f1", "rev": "61855db6f1315ea45f97ed95b47a3f182ec4c6be" }, "recipe": { "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "avy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/avy.git", - "sha256": "13d54de07f7c19303c3df6a8ecc6c22de5f1829095b7332b1b1a6be2757dae97", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "avy", + "sha256": "15xfgmsy4sqs3cmk7dwmj21g3r9dqb3fra7n7ly306bwgzh4vm8k", "rev": "44d76b9d2aad5477521675747a5c769f3f9a69a0" }, "recipe": { "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -8632,14 +9204,15 @@ }, "marmalade": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/marmalade.git", - "sha256": "b885e4175d3f92a0080c8eaf2f05430b68c13c1a26f00043c2553f151849aae3", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "marmalade", + "sha256": "0pbli67wia8pximvgd68x6i9acdgsk51g9hjpqfm49rqg5nqalh9", "rev": "01d6ddf5f0e822d6df393aa4546b069b2d6545d7" }, "recipe": { "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -8655,7 +9228,7 @@ }, "recipe": { "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [ @@ -8664,14 +9237,15 @@ }, "zop-to-char": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/zop-to-char.git", - "sha256": "26911714138a5cee7915e71fc15081901e4b4747b475e9d47b02df8dbe1add48", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "zop-to-char", + "sha256": "0j6x3az8vpq2ggafjxdl8x3ln7lhh58c27z72mwywp4a2ca1g496", "rev": "7888bb6f09ae24e8e10bd3095edd31940e6a1c46" }, "recipe": { "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -8680,28 +9254,30 @@ }, "connection": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myrkr/dictionary-el.git", - "sha256": "17f5aff9105f25f1a822a36ae112fc2a3f678128764131b3d90fcb7075b8aed4", + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s", "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" }, "recipe": { "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10", "deps": [] }, "gmail-message-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/gmail-mode.git", - "sha256": "8fc111674fe229115a7d4b30663ccf5b2d888c2cfe8d82d8b58d87f686577748", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "gmail-mode", + "sha256": "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg", "rev": "2e0286e4a3c80889692f8da63a3b15d7a96abdea" }, "recipe": { "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.2", "deps": [ @@ -8710,28 +9286,30 @@ }, "bug-reference-github": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arnested/bug-reference-github.git", - "sha256": "1bdccc0396c0ac6e5c8499a7a9fea65f71855c7165aca76b25bacba150795f1e", + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "bug-reference-github", + "sha256": "07jzg58a3jxs4mmsgb35f5f8awazlvzak9wrhif6xb60jq1wrp0v", "rev": "671d32083aad5cf813a5e61075b70889bc95dec5" }, "recipe": { "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "clojure-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clojure-mode.git", - "sha256": "dc4a2e8d35b68bc06ee8a0ad9faa7833c7b5522776da356abeb4c8ef01ef3489", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-mode", + "sha256": "0mrkw8l736pddddl0vx9j910g1l492mascqb93h0sxv8ps4xcc53", "rev": "8b01df6c881929540b59444a54b37c03ffe6fc17" }, "recipe": { "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "5.0.1", "deps": [ @@ -8740,14 +9318,15 @@ }, "utop": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/diml/utop.git", - "sha256": "833f7e075155fbf54ca5c2cb768669a69bca88542bbfd31b5ae8419e714bf8b1", + "tag": "fetchFromGitHub", + "owner": "diml", + "repo": "utop", + "sha256": "1azv6grd5h2r1spy996nv6q1c5l6qawv6k0dc2i5k96szl0r668r", "rev": "59f5b9c3fcc3fa8102e8a892e21ff8a477f80872" }, "recipe": { "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.18.1", "deps": [ @@ -8756,14 +9335,15 @@ }, "with-editor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd", "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" }, "recipe": { "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.1", "deps": [ @@ -8774,14 +9354,15 @@ }, "evil-jumper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/evil-jumper.git", - "sha256": "f7f5cce2cc49c5e43f9b73b8a2831478dbc262f62cf9db361b0b4f7cc0da8112", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "evil-jumper", + "sha256": "04l1vb07qkqb3cvdpy9cyric5nvq2j1s5f3kkczy9ia9rkicrxgp", "rev": "ab87e865a1ffd815f937c98c2ecf70bf13510715" }, "recipe": { "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -8790,28 +9371,30 @@ }, "lingr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lugecy/lingr-el.git", - "sha256": "da4f57b9770cdab3e400c50743ffc50e79d99770da7b1061bd7e8355fe205c87", + "tag": "fetchFromGitHub", + "owner": "lugecy", + "repo": "lingr-el", + "sha256": "11sw43z5b0vypmhi0yysf2bxjy8fqpzl61y503jb7nhcfywmfkys", "rev": "c9c20dd9b4967aa2f8873d6890d6797e6a498d23" }, "recipe": { "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "auto-complete-sage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/auto-complete-sage.git", - "sha256": "9caddef2218b3d2405da369b7c9c945372b947674469181285e2c23cfc50d4d3", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "auto-complete-sage", + "sha256": "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3", "rev": "a61a4e58b14134712e0737280281c0b10e56da93" }, "recipe": { "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -8821,14 +9404,15 @@ }, "rich-minority": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/rich-minority.git", - "sha256": "a3d72cfbffc5896821fa40fb68ae3af61e5bef8855679e0d3f4074557c721c86", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "rich-minority", + "sha256": "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3", "rev": "311ac8ee54078f95b7279e532da6cf5a2afb4125" }, "recipe": { "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -8837,14 +9421,15 @@ }, "marcopolo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/marcopolo.git", - "sha256": "ec14182129292c0f2c61ba3614953b59cf2440e7038cdca3109397062d138fa6", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "marcopolo", + "sha256": "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh", "rev": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e" }, "recipe": { "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -8856,28 +9441,30 @@ }, "el-mock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/el-mock.el.git", - "sha256": "2eb7f7731f29f0547bbb327371c9b50eedf00dff37d2ad6423f81526475a3679", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "el-mock.el", + "sha256": "13mv1rhgkwiww2wh5w926jz7idppp492wir1vdl245c5x50dh4f7", "rev": "3069931de75bb6704ecf565af5390009dc4dae00" }, "recipe": { "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.25.1", "deps": [] }, "hydra": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/hydra.git", - "sha256": "ee50c89853b10b97f04bf3a272d2d41b78b539aaee0c2a99719efde869493c22", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "hydra", + "sha256": "08iw95lyizcyf6cjl37fm8wvay0vsk9758pk9gq9f2xiafcchl7f", "rev": "4bf7f1c9e46fb819c673e55d8a1891774e139f98" }, "recipe": { "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13.3", "deps": [ @@ -8886,28 +9473,30 @@ }, "browse-kill-ring": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/browse-kill-ring/browse-kill-ring.git", - "sha256": "def280462d07dcca627c580a3a87a9b5e8eabf7440522db6243161dbf7d309cd", + "tag": "fetchFromGitHub", + "owner": "browse-kill-ring", + "repo": "browse-kill-ring", + "sha256": "0y9m6cv70pzcm0v2v8nwmyh1xx40831chx72m85h5ic5db03gy7b", "rev": "2a7acf98c348c4f405a6b2ab216224ca14915be8" }, "recipe": { "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [] }, "auto-shell-command": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/auto-shell-command.git", - "sha256": "aae68a4687f79a0b073bf5d6f8f7a4912d0a99b178d299fcd490eb8a2a6b21a3", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "auto-shell-command", + "sha256": "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6", "rev": "59d4abce779a3ce3e920592bf5696b54b2e192c7" }, "recipe": { "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.2", "deps": [ @@ -8917,14 +9506,15 @@ }, "shelldoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-shelldoc.git", - "sha256": "22ab3f9f59768dad0c674cfe34cf5ae588f4b6a8b9b73d8a474b194021a5658b", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-shelldoc", + "sha256": "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax", "rev": "1d40c73969347586906ca1dde2adb50afcd73b1b" }, "recipe": { "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -8934,14 +9524,15 @@ }, "malabar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m0smith/malabar-mode.git", - "sha256": "16edd53bb2d7f326de44706eb6c48777ecbd7bc2ea85d854a95126be06a85552", + "tag": "fetchFromGitHub", + "owner": "m0smith", + "repo": "malabar-mode", + "sha256": "0z0ml7l1a45ych61qfc5fvkybl9hh37pgl6lzkaz6mcif1sl8gn1", "rev": "4c5fde559f518509763a55040fdb0e4b6b04856a" }, "recipe": { "sha256": "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140303.946", "deps": [ @@ -8950,14 +9541,15 @@ }, "fullframe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tomterl/fullframe.git", - "sha256": "14a20c3f48833c183aeb9ac4984fdb8b1ca32d2233f8166a080305c5ca8fac87", + "tag": "fetchFromGitHub", + "owner": "tomterl", + "repo": "fullframe", + "sha256": "09jqaq81vbch93qwrmg0rm6a26pchqdraw374j13hgkhs849gx90", "rev": "b9c3e54c8928c5ba994c55de7794b5f739b43ced" }, "recipe": { "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -8966,14 +9558,15 @@ }, "cperl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jrockway/cperl-mode.git", - "sha256": "2c28d3f8d34a0ff157ee0ea0daad76f7dcfcc4065dbc3a7d924cdbc333107172", + "tag": "fetchFromGitHub", + "owner": "jrockway", + "repo": "cperl-mode", + "sha256": "02fl9y72prykh6qmxlnyn7fl27rqsk5kgcm4vdhj3i6fvl1iqdm6", "rev": "06f5668653a114991836139344dbe8f0674577af" }, "recipe": { "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "6.3", "deps": [] @@ -8986,7 +9579,7 @@ }, "recipe": { "sha256": "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -8999,63 +9592,67 @@ }, "recipe": { "sha256": "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "comment-dwim-2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remyferre/comment-dwim-2.git", - "sha256": "fa8ab7fc1415fc111cddd5463496f456ac6ac5a8348b38ed688731e0abd8f44f", + "tag": "fetchFromGitHub", + "owner": "remyferre", + "repo": "comment-dwim-2", + "sha256": "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps", "rev": "8cedecde018b5872195bfead6511af822776a430" }, "recipe": { "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.2", "deps": [] }, "ctags-update": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jixiuf/helm-etags-plus.git", - "sha256": "763f0e0884aa0de6d8ea36b33a5c007f2fbf4e9ac55cf829e27fa4347a8244f7", + "tag": "fetchFromGitHub", + "owner": "jixiuf", + "repo": "helm-etags-plus", + "sha256": "05vhryqcydvcfm18fwby344931kzzh47x4l5ixy95xkcjkzrj8c7", "rev": "d3f3162d5a3291d84b15fd325859c87e1a374923" }, "recipe": { "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "pcsv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-pcsv.git", - "sha256": "3fb8e07a3d078c7f8332edf0c6bc7314b2f34a64e8216ad7f643931a33ec630e", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-pcsv", + "sha256": "03k3xhrim4s3yvbnl8g8ci5g7chlffycdw7d6a1pz3077mxf1f1z", "rev": "91599aaba70a8e8593fa2f36165af82cbd35e41e" }, "recipe": { "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.6", "deps": [] }, "helm-unicode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shosti/helm-unicode.git", - "sha256": "40f9d9e737bf4806308da199da1daacb628ef5db8b7b3aacbed1b69ef46e8b92", + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "helm-unicode", + "sha256": "14lbdvs9xdnipsn3lywbvgsqwqnbm8fxm6d1ilq0cj5z6zkxkya0", "rev": "e68cc60f7efd93b410844f3722bc6681dc65e2fd" }, "recipe": { "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -9071,21 +9668,22 @@ }, "recipe": { "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "company-quickhelp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/expez/company-quickhelp.git", - "sha256": "bbbbf56ef56ecf2dfd8fb6131174a7f44cb9a56f03ad2577e7af1a76c7ec9a66", + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "company-quickhelp", + "sha256": "0hg3wrfhz3qlfb6zv6j5a4xzmm4jk25pkv8h3ryg7sl7h602idgl", "rev": "05e0ee9b854f90ff2b007b3e19446a02513f43dc" }, "recipe": { "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [ @@ -9096,14 +9694,15 @@ }, "fxrd-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/msherry/fxrd-mode.git", - "sha256": "2b4939ad9cc32b7a3fcc3c29a71486e7372525f001246cec6ea024f7f9c77100", + "tag": "fetchFromGitHub", + "owner": "msherry", + "repo": "fxrd-mode", + "sha256": "003iqzwzf950dvn6q901y0jjadz7hqaafa9wrhzplay3kjnkjj9b", "rev": "122afe6b7edeff117edf92dab1ba011ae71a5910" }, "recipe": { "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -9112,14 +9711,15 @@ }, "gnus-desktop-notify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wavexx/gnus-desktop-notify.git", - "sha256": "dc6fdbd32d3fb7d0dae00f235aa6dae6033e4a1810356416c04997af22e84822", + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "gnus-desktop-notify", + "sha256": "08j8x0iaz5s9q0b68d8h3153w0z6vak5l8qgw3dd1drz5p9xnvyw", "rev": "210c70f0021ee78e724f1d8e00ca96e1e99928ca" }, "recipe": { "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4", "deps": [ @@ -9128,14 +9728,15 @@ }, "js-comint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/js-comint.git", - "sha256": "39263da6c8036dbb4c89aa22a50f49a78e3cffd1e4cbca5dca1ff9b8498ec6bd", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "js-comint", + "sha256": "1gf6ir4viy8zr9fwmjz4s7zkr3m7947sa8mai56bnv83r2k3s9ir", "rev": "69c8475573f1ef1f59331027a0fe445161b51000" }, "recipe": { "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [ @@ -9144,56 +9745,60 @@ }, "qml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/qml-mode.git", - "sha256": "f4c3ba100a35f31f2af8199324f03f103c48c6356d988bd55eabb2cad55d3019", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "qml-mode", + "sha256": "069hbpawmcmbbvaqp63d6p34hg0h7zq294qrz0m1zwrm188bmhzl", "rev": "a69ee2d23e079dbedab22fde85181a8320af2222" }, "recipe": { "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "org-journal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bastibe/emacs-journal.git", - "sha256": "1fee380fc81fe5fde3077e88279e7b49dc678863e8871cb98095bfdd5a0eeaed", + "tag": "fetchFromGitHub", + "owner": "bastibe", + "repo": "emacs-journal", + "sha256": "0980scx1dzslbdzmhv720branc4jd4bdkyji34gahinx4w9brj79", "rev": "68974d86f1ef518defb3085e415d882ba4575714" }, "recipe": { "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10.2", "deps": [] }, "selectric-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rbanffy/selectric-mode.git", - "sha256": "ec37be24ed230b32e0c5e96b470510237bd49229954a0d36e06d37dd682fff30", + "tag": "fetchFromGitHub", + "owner": "rbanffy", + "repo": "selectric-mode", + "sha256": "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79", "rev": "0dd7ef28a9d9d6fbb95fdeeab6b576ad8762ad16" }, "recipe": { "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "circe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/circe.git", - "sha256": "617bc77c6fca10d815581e4a598e498c617c863604d30659b8fed4ebfdb8f9b6", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "circe", + "sha256": "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q", "rev": "ac1cddf946e0af90ab453dd816f7173e0d4000e5" }, "recipe": { "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1", "deps": [ @@ -9202,14 +9807,15 @@ }, "evm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/evm.el.git", - "sha256": "9ef30d1f034f47c4f68a89e2a9c9204586c684ef0eabb4709d5e97084dda7c3f", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "evm.el", + "sha256": "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb", "rev": "d0623b2355436a5fd9f7238b419782080c79196b" }, "recipe": { "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.2", "deps": [ @@ -9219,14 +9825,15 @@ }, "truthy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/truthy.git", - "sha256": "503a3c9695d59e9c9df9968016867c9d416ed78fb355e565475732fce6d6ff27", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "truthy", + "sha256": "18na22fhwqz80qinmnpsvp6ghc9irva1scixi6s4q6plmgr4m397", "rev": "276a7e6b13606d28e4f2e423bb1ea30904c5def3" }, "recipe": { "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.8", "deps": [ @@ -9235,28 +9842,30 @@ }, "php-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/php-mode.git", - "sha256": "5c4a63b593d5737ed238c3996b79be0eebe75ca36440390a5064e5ff8fc11a3e", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "php-mode", + "sha256": "0pwhw59ki19f9rkgvvnjzhby67s0y9hpsrg6cwqxakjlm66w96q3", "rev": "f3201eebfebf1757cf6a636fe3c7a3b810ab6612" }, "recipe": { "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.17.0", "deps": [] }, "sotlisp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/speed-of-thought-lisp.git", - "sha256": "f3648f4ab2e5ea35e160759b99dce419ef47276928401d5d3cb09f0ccfa94988", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "speed-of-thought-lisp", + "sha256": "1wbd7v5bnd4qgqk8rrgllal0i949n8xzvb3yhf0vnxr06wdzy0a4", "rev": "6e0ebc97000dc505f72ad9cc793ac857b0585f5a" }, "recipe": { "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.1", "deps": [ @@ -9265,14 +9874,15 @@ }, "helm-spaces": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/helm-spaces.git", - "sha256": "84485ea38d7a4b595bac0be033e2308f7ab3d1ba22ca3c0a4deed841aedbe04f", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-spaces", + "sha256": "0kz0vfp43n7f9l53rji2pb8v6ylg63i37q0bmidmjjvsinimwj44", "rev": "8b4f5a1e3cb823ceee1e341ce45f9b18a1b8057c" }, "recipe": { "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -9282,14 +9892,15 @@ }, "logito": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/logito.git", - "sha256": "b9a7433417eafc5bc158f63dddf559b2044368eb3061f0264169de319c68fe4a", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "logito", + "sha256": "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr", "rev": "824acb89d2cc18cb47281a4fbddd81ad244a2052" }, "recipe": { "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -9298,14 +9909,15 @@ }, "org-tracktable": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tty-tourist/org-tracktable.git", - "sha256": "1d4fe6a82d3e5a6d471e97abed1235d2aa4f468b54ec7cf0f7f1264ccd707c14", + "tag": "fetchFromGitHub", + "owner": "tty-tourist", + "repo": "org-tracktable", + "sha256": "053wf36lq9piyzq7rv2lid34zanj6l9fvawp3r3nsniy5nlfckqx", "rev": "28ef6772cdcf436cf38095f15c6bb681473180ce" }, "recipe": { "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -9321,21 +9933,22 @@ }, "recipe": { "sha256": "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "electric-operator": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/davidshepherd7/electric-operator.git", - "sha256": "86bd1e680208ed787f370d8ad82b81fb0007bf8be67e78a27941e938bce185f2", + "tag": "fetchFromGitHub", + "owner": "davidshepherd7", + "repo": "electric-operator", + "sha256": "1bqdg5sr4hkiqndr4hcdjscfdyj56jb4wr1kqgwy1hy4ccr9mkrr", "rev": "3d34101e065396389cfbb8fec333c78641a71dc6" }, "recipe": { "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -9346,14 +9959,15 @@ }, "owdriver": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/owdriver.git", - "sha256": "e8bdef48d90b5325063f39038e1f6dac1db59f3002273b6b97a225b056e60194", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "owdriver", + "sha256": "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk", "rev": "0479389d9df9e70ff9ce69dff06252d3aa40fc86" }, "recipe": { "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6", "deps": [ @@ -9370,21 +9984,22 @@ }, "recipe": { "sha256": "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "spotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/remvee/spotify-el.git", - "sha256": "fccf20d35c389ddac87a13d4a5b9105a519de3a381c4b84ae6575ff5cdeec817", + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "spotify-el", + "sha256": "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw", "rev": "07a44ecdbdaa93977e97f2a2e5d280ef0b2e8545" }, "recipe": { "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [] @@ -9397,35 +10012,37 @@ }, "recipe": { "sha256": "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "mustache-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mustache/emacs.git", - "sha256": "13c61a2d3c8d76e65e035f37219b9ae092484112ed4324357db9840b4123fc95", + "tag": "fetchFromGitHub", + "owner": "mustache", + "repo": "emacs", + "sha256": "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk", "rev": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f" }, "recipe": { "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "persistent-soft": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/persistent-soft.git", - "sha256": "4ac0d4b17b39ae3e6fe681a55cbc35da9793f862e386aafd210b11b891939232", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "persistent-soft", + "sha256": "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc", "rev": "a1e0ddf2a12a6f18cab565dee250f070384cbe02" }, "recipe": { "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.10", "deps": [ @@ -9435,28 +10052,30 @@ }, "key-combo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/uk-ar/key-combo.git", - "sha256": "d8d0e38ad9917e6e5badb62d39b27896d94899a637427f8e27b23ab67db43292", + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "key-combo", + "sha256": "14ijniyvcfmj4y77yhiplsclincng2r3jbdnmmdnwzliv65f7l6q", "rev": "0bc0cf6466a4257047a21a6d01913e92e6862165" }, "recipe": { "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6", "deps": [] }, "magit-filenotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-filenotify.git", - "sha256": "0404870e67798670c879e2d5779eec78b0489d7548c72fc126899ae64726a663", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-filenotify", + "sha256": "1vn6x53kpwv3zf2b5xjswyz6v853r8b9dg88qhwd2h480hrx6kal", "rev": "575c4321f61fb8f25e4779f9ffd4514ac086ae96" }, "recipe": { "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -9466,28 +10085,30 @@ }, "xterm-color": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atomontage/xterm-color.git", - "sha256": "5dc8de0d26c060930acf3667df41b5aab041c510a5bbd3fd248cef478c21b2fd", + "tag": "fetchFromGitHub", + "owner": "atomontage", + "repo": "xterm-color", + "sha256": "1zdj4664gvwc4kyx7fx5232l3c5anm0xyrrnrw596q604q6xxj2x", "rev": "380cc8c6c6969f8a262ad4ddc61117691db7f4d1" }, "recipe": { "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "phpunit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/phpunit.el.git", - "sha256": "bef01490d1dd27a12a1e5135b1d60466e0438e9b416a256cef7edb663a14c288", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "phpunit.el", + "sha256": "1s4a0ygm79shv6f0rghrkq9jb7jc7sh9cjxzlzj0c8zpvsxl0hlz", "rev": "d9e9092d664463b7cc8e0a433a76b8c9598ab2c9" }, "recipe": { "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -9504,21 +10125,22 @@ }, "recipe": { "sha256": "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "org-gcal": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-gcal.el.git", - "sha256": "cb619c6d37a8a2bc9197764b487c8eca02b4f0689d427fe74a6e503119ad0aaf", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-gcal.el", + "sha256": "1pxfcyf447h18220izi8qlnwdr8rlwn5kds8gr5i1v90s6hpa498", "rev": "badd3629e6243563c30ff1dd0452b7601f6cc036" }, "recipe": { "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -9531,14 +10153,15 @@ }, "helm-rubygems-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/neomantic/helm-rubygems-org.git", - "sha256": "2096b3ee03c19844e452e6e029f2a69ab47340a05118905c67bc42ffd444cee9", + "tag": "fetchFromGitHub", + "owner": "neomantic", + "repo": "helm-rubygems-org", + "sha256": "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0", "rev": "6aaed984f698cbdf9f9aceb0221404563e28764d" }, "recipe": { "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -9549,14 +10172,15 @@ }, "ag": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/ag.el.git", - "sha256": "7792c562958d7bf9f708f2e732115a06b88caffca593379c3d32b4947394512b", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ag.el", + "sha256": "0hpsv2zyhhfm53hrd2lzvc9gpvfn6g5dpwmzxfl8l1sqjisips2a", "rev": "12f22a4a9f4ff3c8a0b6f089b8cf6d85a3f8b7eb" }, "recipe": { "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.46", "deps": [ @@ -9567,28 +10191,30 @@ }, "smartscan": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mickeynp/smart-scan.git", - "sha256": "a455d112f2113a2418bf67bba0825493577c16e97d906b3bc9bb9210126ca7e9", + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "smart-scan", + "sha256": "1sd7dh9114mvr4xnp43xx4b7qmwkaj1a1fv7pwc28fhiy89d2md4", "rev": "13c9fd6c0e38831f78dec55051e6b4a643963176" }, "recipe": { "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "el-init": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HKey/el-init.git", - "sha256": "a0dd080afe34bf2c6cf2949ea257875922e7784be5820c71f50b076c90fd8fdb", + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "el-init", + "sha256": "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n", "rev": "25fd21d820bca1cf576b8f70c8d5a3bc76792597" }, "recipe": { "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -9599,14 +10225,15 @@ }, "alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jwiegley/alert.git", - "sha256": "4638ce5d228a9e4763a052f2eeba61664f228b386f9138a9ceac990a081eecee", + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "alert", + "sha256": "1vpc3q40m6dcrslki4bg725j4kv6c6xfxwjjl1ilg7la49fwwf26", "rev": "b301478e34a5c8bd27c17fc7605e6dd576e97935" }, "recipe": { "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [ @@ -9616,28 +10243,30 @@ }, "slime-ritz": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pallet/ritz.git", - "sha256": "2bbac9f46c148eb12ef67f1deb96db6fed4032ffcd1f27975d8e3c87d52d947f", + "tag": "fetchFromGitHub", + "owner": "pallet", + "repo": "ritz", + "sha256": "0lp584k35asqlvbhglv124jazdgp3h7pzl0akfwbdmby9zayqk96", "rev": "1cc6faedae26323994ea8dd1a4f555db8acbf244" }, "recipe": { "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.0", "deps": [] }, "buffer-flip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/killdash9/buffer-flip.el.git", - "sha256": "7f06d63187d569d0342007ea2de3513485fa32a2bdf295b918cc27897e686632", + "tag": "fetchFromGitHub", + "owner": "killdash9", + "repo": "buffer-flip.el", + "sha256": "0ck6d1z8j9yc32wrbwmxl8rgm19la7ijvsh740sd0sfmhwqxc1kz", "rev": "2bbf74fac037ace991d03336c515c499a8e69c95" }, "recipe": { "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -9652,7 +10281,7 @@ }, "recipe": { "sha256": "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -9665,7 +10294,7 @@ }, "recipe": { "sha256": "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -9680,21 +10309,22 @@ }, "recipe": { "sha256": "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "tern-django": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/tern-django.git", - "sha256": "d92beb58d914c47d47673f53748f2c60d2fc7e1b9b5db6926b62eca6699de253", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "tern-django", + "sha256": "0l63lzm96gg3ihgc4l671i342qxigwdbn4xfkbxnarb0206gnb5p", "rev": "6d616c5f802d3432c4065dc306d7977d254df49f" }, "recipe": { "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -9711,21 +10341,22 @@ }, "recipe": { "sha256": "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ido-ubiquitous": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/ido-ubiquitous.git", - "sha256": "2164bd3a82ddc9ec354f3f663139e004fa76cc5298756825acf044d78043ac3b", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-ubiquitous", + "sha256": "1fgg2l9fvg3iay9wgkfacbc0kl6hx7sbwxgmbl8j47vr6yzkgnd7", "rev": "2e826e3f209cb5d2bc92bdbfd3b189d2c06ff51c" }, "recipe": { "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.9", "deps": [ @@ -9736,28 +10367,30 @@ }, "merlin": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/the-lambda-church/merlin.git", - "sha256": "a026a3f80427f49d3db66fbd9c94b32b50f0b586ade0c9fb5a0cad49eca5d9c3", + "tag": "fetchFromGitHub", + "owner": "the-lambda-church", + "repo": "merlin", + "sha256": "192jamcc7rmvadlqqsjkzsl6hlgwhg9my1qc89fxh1lmd4qdsrpn", "rev": "6f9915e0d87bf721ea2859ffa17d3fbeeabcfb9d" }, "recipe": { "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.1", "deps": [] }, "org-multiple-keymap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/org-multiple-keymap.el.git", - "sha256": "80c03f90333f8b642ed2130266841ab93f3776ae2adacfa941d9a15bad5a910a", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-multiple-keymap.el", + "sha256": "0yxfhzygiki8sha1dddac4g72r51yi4jnga2scmk51f9jgwqbihp", "rev": "20eb3be6be9f0abbad9f0d007e40cb00c8109201" }, "recipe": { "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -9768,28 +10401,30 @@ }, "vagrant": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ottbot/vagrant.el.git", - "sha256": "e3a1a6696187c6b9d6935978313ae4c509987b9c7d64407444a9e9513f4fea94", + "tag": "fetchFromGitHub", + "owner": "ottbot", + "repo": "vagrant.el", + "sha256": "04r73s3fhvdcryv0l57awkpg1hi3kg6zcqxbxb03jc89h0f9vdlh", "rev": "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c" }, "recipe": { "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.2", "deps": [] }, "windsize": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/grammati/windsize.git", - "sha256": "347ae1a31d4203f9c1673c937fcddb546d2324720f6269dd241a07325a079bb8", + "tag": "fetchFromGitHub", + "owner": "grammati", + "repo": "windsize", + "sha256": "1f4v0xd341qs4kfnjqhgf8j26valvg6pz4rwcz0zj0s23niy2yil", "rev": "014b0836f9ffe45fa7e0ccc84576fbef74815a59" }, "recipe": { "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] @@ -9802,49 +10437,52 @@ }, "recipe": { "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "anti-zenburn-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m00natic/anti-zenburn-theme.git", - "sha256": "afa90bbd8fea9c3b69c00aaa6e974a1ddf9991ca908d091fad3a4eba63490461", + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "anti-zenburn-theme", + "sha256": "0q8495ivlkismlghk3chra8rkpqx9abnxahaq1lkp77aiyyhpadg", "rev": "9a33476a0dad3c6dd2d5c0a0ff75e30aa5eacb01" }, "recipe": { "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3", "deps": [] }, "sws-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brianc/jade-mode.git", - "sha256": "7690294b61606fc289fc7f0c8c07153674d4c17687427c4f520810a170682b4f", + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n", "rev": "4e7a20db492719062f40b225ed730ed50be5db56" }, "recipe": { "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "ibuffer-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ibuffer-projectile.git", - "sha256": "6cffceb631a956b1dbbe84c34c6acfe280e9224c89eca1ed9ee2b2c482b996fd", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ibuffer-projectile", + "sha256": "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc", "rev": "8b225dc779088ce65b81d8d86dc5d394baa53e2e" }, "recipe": { "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -9853,14 +10491,15 @@ }, "lentic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/lentic.git", - "sha256": "74c4c8b041a2672e6560feb60714236fa8254aba95c94f5f9be7eb7daa68b439", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lentic", + "sha256": "0x0vz6sn4ignbxihzydc3d5dhlk1aywa4264mhqxb3adq4n1ryc6", "rev": "8885bfcde8c6b60b79e7f07cf84c95578107491f" }, "recipe": { "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10", "deps": [ @@ -9873,32 +10512,48 @@ }, "ubuntu-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocher/ubuntu-theme.git", - "sha256": "4c60e44d91f4cc4e4ccd0bd85d0b98c46fe82af414deec9e85633f691687814c", + "tag": "fetchFromGitHub", + "owner": "rocher", + "repo": "ubuntu-theme", + "sha256": "0k41hwb6jgv3hngfrphlyhmfhvy4k05mvn0brm64xk7lj56y8q2c", "rev": "41f09ca6c203da93bdadb2077556efd48e3b5d5a" }, "recipe": { "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "04b", "deps": [] }, "lfe-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rvirding/lfe.git", - "sha256": "79a8dc4a0dbfb0daa287f6109187949804fb030920f14b3a0b4853aa18f60d02", + "tag": "fetchFromGitHub", + "owner": "rvirding", + "repo": "lfe", + "sha256": "1w9n5v4g4w34gii6nk2aan4w230dmm0dhml4s9q1fzmvk1ngld6k", "rev": "d7bc80da04aedd0a607f17d8d149eba363872b4b" }, "recipe": { "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10.1", "deps": [] }, + "color-theme": { + "fetch": { + "tag": "fetchbzr", + "url": "http://bzr.savannah.gnu.org/r/color-theme/trunk", + "sha256": "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz", + "rev": "57" + }, + "recipe": { + "sha256": "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "ascii": { "fetch": { "tag": "fetchurl", @@ -9907,35 +10562,37 @@ }, "recipe": { "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "nyan-prompt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/PuercoPop/nyan-prompt.git", - "sha256": "777ae6ed685c2611742f0f910f5cbb030522e113cd4aa745d8a70d88bcbcfa2d", + "tag": "fetchFromGitHub", + "owner": "PuercoPop", + "repo": "nyan-prompt", + "sha256": "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp", "rev": "b5137f2ee9afe640f59786eed17b308df6356c73" }, "recipe": { "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "keymap-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/keymap-utils.git", - "sha256": "fadbbaed0b24fb3c12d1cb6ab5ccd5eb7bc21dffcb1f7018cf0c86b33b9e5219", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "keymap-utils", + "sha256": "06ajkqxv71hcrwc707ybzwfw4yzbsp6basnbs493ryr41gnvmnzs", "rev": "dd396093899a3792ef88742657e799339fd8aed5" }, "recipe": { "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.2", "deps": [ @@ -9944,28 +10601,30 @@ }, "xcscope": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dkogan/xcscope.el.git", - "sha256": "e7961d73b903ef3529617a839e170482b23f254b0eb2cca5c54291ab70d535d8", + "tag": "fetchFromGitHub", + "owner": "dkogan", + "repo": "xcscope.el", + "sha256": "1n1msmqap4a2qnjwrchf9cjkzcl20hbrx0vsc4lkbvq3p5riv5p7", "rev": "4775aae4ce4caa92fb8b752907d7b66b96ccbe03" }, "recipe": { "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "weechat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/the-kenny/weechat.el.git", - "sha256": "ffa147f18ffbbd0e583fb635603aa95b2a00ee1d056647965ddaba0e36050d77", + "tag": "fetchFromGitHub", + "owner": "the-kenny", + "repo": "weechat.el", + "sha256": "0f90m2s40jish4wjwfpmbgw024r7n2l5b9q9wr6rd3vdcwks3mcl", "rev": "f01cdd4d874cf09fee5a78d7b29eb96bc21be2be" }, "recipe": { "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [ @@ -9977,14 +10636,15 @@ }, "psci": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/emacs-psci.git", - "sha256": "e330e5713a3b53fb4a3586f17e5e386131dfe3e5919bc33441c0df7628cffd71", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-psci", + "sha256": "0wgxrwl7dpy084sc76wiwpixycb171g7xwc66m5gnlrv79qyac73", "rev": "8c2d5a0ba604ec593f83f632b2830a87f41f84d4" }, "recipe": { "sha256": "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6", "deps": [ @@ -9997,14 +10657,15 @@ }, "go-scratch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shosti/go-scratch.el.git", - "sha256": "f5a2a714ab96abe9ad967f71c501d2af60cadd19a8657e83594ed9c7b778dba8", + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "go-scratch.el", + "sha256": "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm", "rev": "3f68cbcce04f59eb8e83af109164731ec0454be0" }, "recipe": { "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -10020,35 +10681,37 @@ }, "recipe": { "sha256": "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "plenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/karupanerura/plenv.el.git", - "sha256": "f4ebb1275c16c4482ab079ecbbbbe9b83d279862626c9ec6f78e11fca867b273", + "tag": "fetchFromGitHub", + "owner": "karupanerura", + "repo": "plenv.el", + "sha256": "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g", "rev": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2" }, "recipe": { "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.32", "deps": [] }, "git-gutter+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/git-gutter-plus.git", - "sha256": "e08ba774438788ef8160d8621a2a82fbbd4cd511f925a4c51b5b8ea99a30f3a6", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "git-gutter-plus", + "sha256": "101hracd77mici778x3ixwrcicd6fqkcr9z76kapkr0dq5z42yjb", "rev": "f8daebb6569bb116086d8653da3505382e03d940" }, "recipe": { "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -10057,14 +10720,15 @@ }, "wrap-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/wrap-region.git", - "sha256": "53effb0d885a46e080b9344218d75c11879e112bbf9639ffb0fd47b7477f86b6", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "wrap-region", + "sha256": "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0", "rev": "5a910ad23ebb0649e644bf62ad042587341da5da" }, "recipe": { "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.3", "deps": [ @@ -10073,70 +10737,75 @@ }, "flymake-gjshint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yasuyk/flymake-gjshint-el.git", - "sha256": "caaf8af6f05880a08084b7fd4b51656c17e19d85fc89a5f6fa5e3ab72d2156b1", + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "flymake-gjshint-el", + "sha256": "002s01cymgx4z4l3j2pqirg7899pljdx2hmbz8k6cksdxlymzmkd", "rev": "71495ee5303de18293decd57ab9f9abdbaabfa05" }, "recipe": { "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6", "deps": [] }, "rnc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TreeRex/rnc-mode.git", - "sha256": "bc4b7628df4ec4e9e9c810da75befb516ef541bf522a7b90996f9fdf9d1a9797", + "tag": "fetchFromGitHub", + "owner": "TreeRex", + "repo": "rnc-mode", + "sha256": "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih", "rev": "b39dc23218213336b55f28e12a1d0e49ef7c1e21" }, "recipe": { "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.6", "deps": [] }, "pangu-spacing": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/pangu-spacing.git", - "sha256": "bec459054b69833ca33dc68e15afa45a91272e564309e95fc0e782e79ffaad3e", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "pangu-spacing", + "sha256": "0gmdzagyg0p7q1gyj2a3aqp2g4asljpib3n67nikr0v99c2mki5y", "rev": "034b4ef8a1b29bf7bfed6a916380941506ed26ed" }, "recipe": { "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "protobuf-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/google/protobuf.git", - "sha256": "e000a50e04fe5b30fe6a12c989f851d8792c061df1922ebe1c3e6bd1f747ae0d", + "tag": "fetchFromGitHub", + "owner": "google", + "repo": "protobuf", + "sha256": "03df8zvx2sry3jz2x4pi3l32qyfqa7w8kj8jdbz30nzy0h7aa070", "rev": "bba83652e1be610bdb7ee1566ad18346d98b843c" }, "recipe": { "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.6.1", "deps": [] }, "metaweblog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/punchagan/metaweblog.el.git", - "sha256": "64ad9529d66e021c252a63cd075333a99759488605ec2b039efa80f5c96aab1a", + "tag": "fetchFromGitHub", + "owner": "punchagan", + "repo": "metaweblog.el", + "sha256": "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4", "rev": "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb" }, "recipe": { "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -10145,14 +10814,15 @@ }, "imenus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/imenus.el.git", - "sha256": "b0a1cb702360584cb425e2b216b99c836a8a02914c34c04490b477a4f08cd3c6", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "imenus.el", + "sha256": "18nx5z2vn0ikv4gxjprsqr63pcgf9s02gc3f769h8dji560kqxd4", "rev": "7409021864a4e74a237a00d1e1d2597dc80ef7f0" }, "recipe": { "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -10161,14 +10831,15 @@ }, "systemd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/holomorph/systemd-mode.git", - "sha256": "e9d9f5747d9816721c1eff318cc436f68e6eecf862df406dbd884f80499eba2b", + "tag": "fetchFromGitHub", + "owner": "holomorph", + "repo": "systemd-mode", + "sha256": "0axskr4q0kw8pmnl1pv2z3n6x3pn6v28qcgz3qf745lqgmsgbng9", "rev": "aa9f4f64e99d5912153eef0726e26fd4dfb4d7c3" }, "recipe": { "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [ @@ -10183,7 +10854,7 @@ }, "recipe": { "sha256": "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -10196,7 +10867,7 @@ }, "recipe": { "sha256": "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -10209,37 +10880,53 @@ }, "recipe": { "sha256": "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ov": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ShingoFukuyama/ov.el.git", - "sha256": "bb92b9f10b1b69b35c4e157ce1420238c8124ad01fafd85a68a052896ec8fd1d", + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "ov.el", + "sha256": "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc", "rev": "4e1c254d74bc1773c92f1613c3865cdcb4bc7095" }, "recipe": { "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.6", "deps": [ "emacs" ] }, + "applescript-mode": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.osdn.jp/svnroot/macemacsjp/applescript-mode/trunk", + "sha256": "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml", + "rev": "584" + }, + "recipe": { + "sha256": "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "ibuffer-vc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ibuffer-vc.git", - "sha256": "de3ad9481a5aa5f8f3e964f17301e1c56986ab99820c058003f014ce330a1c71", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ibuffer-vc", + "sha256": "0bqdi5w120256g74k0j4jj81x804x1gcg4dxa74w3mb6fl5xlvs8", "rev": "b2bac7aa69335933ebb2e6f34259fa96d2c8d46a" }, "recipe": { "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10", "deps": [ @@ -10248,14 +10935,15 @@ }, "servant": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/servant.el.git", - "sha256": "b544061f1bc383761404a1204381b50a7a6f976ac6f1e48b7a8c012ab272891f", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "servant.el", + "sha256": "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d", "rev": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134" }, "recipe": { "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -10271,14 +10959,15 @@ }, "moz-controller": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/RenWenshan/emacs-moz-controller.git", - "sha256": "a0a11f02dc080796967f9880fc123c1a490f07efc38b485e90353d39290b31f0", + "tag": "fetchFromGitHub", + "owner": "RenWenshan", + "repo": "emacs-moz-controller", + "sha256": "1w1i1clkjg9mj1g4i2y3xw3hyj8s7h9gr04qgyb9c1q8vh11z8d0", "rev": "42fd842039620de7fb122f7e4ffc1ab802ee97c5" }, "recipe": { "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -10287,42 +10976,45 @@ }, "dired-efap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juan-leon/dired-efap.git", - "sha256": "dd8b414bf8bc4598b94bbdfdf93df2f4eaac7999bce779b968a8d1e977be7413", + "tag": "fetchFromGitHub", + "owner": "juan-leon", + "repo": "dired-efap", + "sha256": "1m0nx8wd6q56qbp5mbp9n466kyglrz34nflwvgd1qnmi08jwswgv", "rev": "2b849bc5c09d0b752a177495ea1b851ee821f5bf" }, "recipe": { "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [] }, "form-feed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/form-feed.git", - "sha256": "02aecef2b119007e0ea8a8acf601b328c6670c4b336a5723c351ac308cb2329c", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "form-feed", + "sha256": "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2", "rev": "eac6724c093458745e9ae0e37221077fa2ad0ff6" }, "recipe": { "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [] }, "auto-complete-nxml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/auto-complete-nxml.git", - "sha256": "a68a0e5f7305c0b04895f4cdd4f248b6c6a34c277e93aff814311a11cc53a5ed", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "auto-complete-nxml", + "sha256": "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y", "rev": "ac7b09a23e45f9bd02affb31847263de4180163a" }, "recipe": { "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [ @@ -10337,35 +11029,37 @@ }, "recipe": { "sha256": "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ws-butler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/ws-butler.git", - "sha256": "0ecddba9e263cba41a191d7d01f08fe2a0cea5b714fac200f5dddc4c8fa060d3", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "ws-butler", + "sha256": "1lv0l27lrp6xyl0c5yhlnyjwx872izq02z8x34da9jv3walxpk8f", "rev": "106d313c0dad532c2da3cc78770a8a2f0396aa85" }, "recipe": { "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "nsis-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/nsis-mode.git", - "sha256": "547f7686371acb7dae09d0dc6b5df80389cea045f833305851d61732d6729830", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "nsis-mode", + "sha256": "0c4qfbb345yna5c30czq8nhcx283z1fnpp6h16p7vjqs6y37czsl", "rev": "f1bf701c37680553c8f51462e0829d0dd6c53187" }, "recipe": { "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.44", "deps": [] @@ -10379,35 +11073,37 @@ }, "recipe": { "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [] }, "less-css-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/less-css-mode.git", - "sha256": "c63413fb5345555348285558bdb587bf35a04ddcf3dd29c038595e8b381526bd", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "less-css-mode", + "sha256": "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn", "rev": "d59a3ff4031ae75fbbe77b6cfce7843205394c28" }, "recipe": { "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.20", "deps": [] }, "python-x": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wavexx/python-x.el.git", - "sha256": "79a9393609c3ddfc9baa61b51d3d2152700c49ec089c3185a0e5889309632702", + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "python-x.el", + "sha256": "00i7cc4r7275l22k3708xi4hqw2j44yivdb1madzrpf314v3kabr", "rev": "e606469aafec2e6beda8c589540b88a5a6f6f33f" }, "recipe": { "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -10417,28 +11113,30 @@ }, "ruby-test-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/r0man/ruby-test-mode.git", - "sha256": "0e2d5a6ff2a5f3411a44ca554974bf5a976ab5e96f9a775a07b032f172921f01", + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "ruby-test-mode", + "sha256": "008zj9rg2cmh0xd7g6kgx6snm5sspxs4jmfa8hd43wx5y9pmlb8f", "rev": "7d3c04b60721665af93ffb4abc2a7b3191926431" }, "recipe": { "sha256": "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "font-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/font-utils.git", - "sha256": "21a426b301cdbdf4b923423c289f7f1c37dbb426fb7b1dc32d03d395fd56616f", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "font-utils", + "sha256": "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055", "rev": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3" }, "recipe": { "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.8", "deps": [ @@ -10448,14 +11146,15 @@ }, "digistar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/retroj/digistar-mode.git", - "sha256": "4642f8cdbb64eee8dfbefc368bec3577b05cb40faf8d0693bfc640ac7754fc4b", + "tag": "fetchFromGitHub", + "owner": "retroj", + "repo": "digistar-mode", + "sha256": "0jzwaivsqh66py9hd3dg1ys5rc3p6pn8ndpwpvgyivk4pg6zhhj6", "rev": "0dcde58ec6e473042e55d4f283b223554546de5b" }, "recipe": { "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] @@ -10469,7 +11168,7 @@ }, "recipe": { "sha256": "00vck0ma5c4zygw0jfqx4nk4pv40rvzvrlp8igzwr0533p19p0pk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0", "deps": [] @@ -10482,21 +11181,22 @@ }, "recipe": { "sha256": "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "pandoc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joostkremers/pandoc-mode.git", - "sha256": "a71770df1bb3a8889f1792846906ea32f1d08cd231beeef69c668b1b14d8cc51", + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "pandoc-mode", + "sha256": "14kxmcsgdrq9r8c17x8hz8vid0bn6rikvmddhc6wpbmp7shngvr1", "rev": "067f9aa8ba27bd50b602dbfdaa155e2f381c7139" }, "recipe": { "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.13.3", "deps": [ @@ -10506,28 +11206,30 @@ }, "highlight-parentheses": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/highlight-parentheses.el.git", - "sha256": "4a15287f4b94cde9aa46a232d086f32264f966f29ace1d647438d2b5a1b78308", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "highlight-parentheses.el", + "sha256": "08ld4wjrkd77cghmrf1n2hn2yzid7bdqwz6b1rzzqaiwxl138iy9", "rev": "5aa800a68e3795716de1e7f2722e836781190f31" }, "recipe": { "sha256": "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] }, "elx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/elx.git", - "sha256": "8f12627cbded8035bb19660b5d06c2900ca9d7ea0047abcb6a6c528689d85b8b", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "elx", + "sha256": "12svv24qclkcdb5sniq0xbbsj34hq835s2v636xkb07dpmy644lg", "rev": "8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb" }, "recipe": { "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10.0", "deps": [ @@ -10536,14 +11238,15 @@ }, "hyai": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/hyai.git", - "sha256": "59ac0bfd83ef3f1c9969edd53bf49c8a54f5a7705a7b299db39fa38accc22a24", + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "hyai", + "sha256": "1b8992vzq5bh01pjlj181nzqjrqs4fbjpwvv8h7gjq42sf8w59sm", "rev": "7c644d31f62943c75ccf5a772e43450b462cc08f" }, "recipe": { "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -10553,14 +11256,15 @@ }, "hackernews": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clarete/hackernews.el.git", - "sha256": "04a9d19989d519c8ca2bd5636d704a373464ce2da948359d732fbd6a691ad3b9", + "tag": "fetchFromGitHub", + "owner": "clarete", + "repo": "hackernews.el", + "sha256": "1ffk39lnmg9gfffkaj595p768d1p99q6sqym5g5ch6fmi6cx3a84", "rev": "97b178acfa26b929fc23177b25fb0c62d2958e32" }, "recipe": { "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -10569,14 +11273,15 @@ }, "powerline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/milkypostman/powerline.git", - "sha256": "f925c31f90d03b30d9f6d8e4f2f4e07d4a5c42253d08de45a96f1a118958a3db", + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "powerline", + "sha256": "1nx3b24i26kgm52xw21x4m15qjkxw3sg5r6qyvck0fyhj0gw69gr", "rev": "240bad5ebea4c7298e86ed76bd44c45d9062cb33" }, "recipe": { "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2", "deps": [ @@ -10585,14 +11290,15 @@ }, "helm-sage": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/helm-sage.git", - "sha256": "b55e09e921dd73d30e0842276609eb7e553c9a2dd2c99af3cf86bacd2c95b784", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "helm-sage", + "sha256": "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl", "rev": "b42b4ba5fd1b17c4b54c30376a053281686beeb8" }, "recipe": { "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -10603,14 +11309,15 @@ }, "skewer-less": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/skewer-less.git", - "sha256": "63636337aafb0cc1846514233afe1dd4d8eb80fc89044e3b74565e73da55ba3c", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "skewer-less", + "sha256": "0g5sapd76pjnfhxlw149zj0fpn6l3pz3l8qlcn2c237vm8vn6qv3", "rev": "593001930f1d68c85233f34c5f6fb04173fc98d6" }, "recipe": { "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -10625,21 +11332,22 @@ }, "recipe": { "sha256": "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "flymake-perlcritic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/illusori/emacs-flymake-perlcritic.git", - "sha256": "38cf37d7020f0ce4ab233c543b44e136c2076e6c8ea34653ad534257a0402987", + "tag": "fetchFromGitHub", + "owner": "illusori", + "repo": "emacs-flymake-perlcritic", + "sha256": "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq", "rev": "0692d6ad5495f6e5438bde0a10345829b8e1def8" }, "recipe": { "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.3", "deps": [ @@ -10654,7 +11362,7 @@ }, "recipe": { "sha256": "075vzvmh9y403m1vm5a807vkzrqv8dmhgfdzyizfj80q365sv72p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -10667,7 +11375,7 @@ }, "recipe": { "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -10676,14 +11384,15 @@ }, "emamux": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-emamux.git", - "sha256": "b12d2c36f5a12a5a629c6b13ffc64dbdec905a888c049085ce28e0c64892bdbb", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-emamux", + "sha256": "1a9925n0jcgxcgiz2kmh9zbb1rg9039rlrbr9fr80by9znfwmy67", "rev": "53177ca59ed2824cc0837677af5a13a580691a71" }, "recipe": { "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13", "deps": [ @@ -10693,14 +11402,15 @@ }, "kill-or-bury-alive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/kill-or-bury-alive.git", - "sha256": "14c2fc7d5ce2c8ea044cf818ae9a40d4e01b6f60d4eddf50a726b0d67b728db0", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "kill-or-bury-alive", + "sha256": "11cqrjxfiflz89gkl9g5m0wx041s28xz879cvhl3i1yjnwyhzqay", "rev": "6e0d1ff08889d9cf3f89e366e327d9de930cf67c" }, "recipe": { "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -10710,14 +11420,15 @@ }, "ggtags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoliu/ggtags.git", - "sha256": "14cdddb7ba43622b64858868917f1ad096c1840f74d2a668c90df4436a22dfe7", + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "ggtags", + "sha256": "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n", "rev": "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731" }, "recipe": { "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.11", "deps": [ @@ -10733,21 +11444,22 @@ }, "recipe": { "sha256": "1xgq7wsh08fb23zv71lfw5rska9wijsl64ijpi2m06zyw1m7mdqr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ac-cake2": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-ac-cake2.git", - "sha256": "9b738f3f0f1c7bb8dfad1f501fdd5ba67e772592d72ee4034a1f099d68839556", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ac-cake2", + "sha256": "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv", "rev": "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a" }, "recipe": { "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -10757,28 +11469,30 @@ }, "cfengine-code-style": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cfengine/core.git", - "sha256": "5625440ba13ae29d7eaf4fff54e764107fa290d15db95196db851e0595953a9f", + "tag": "fetchFromGitHub", + "owner": "cfengine", + "repo": "core", + "sha256": "11a89pyz8zdjdkimpqaywp702xf9cmwz1djkjp5dghgpwi1aid72", "rev": "afed90c14a2b30bc36595626b959522c34a6565f" }, "recipe": { "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.8.0b1", "deps": [] }, "corral": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nivekuil/corral.git", - "sha256": "9d1917289f677dbd57731b42f78ab70716d81dce030781eca3148225c29dec3e", + "tag": "fetchFromGitHub", + "owner": "nivekuil", + "repo": "corral", + "sha256": "0gpckp12b0hllgn821q3rqfxh5h7ny5gfhhvfdbvszb7kwl1f6cx", "rev": "bcd1d90b2280f93ed139e4aa82838a8e62a4bac9" }, "recipe": { "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] @@ -10791,21 +11505,22 @@ }, "recipe": { "sha256": "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "cacoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-cacoo.git", - "sha256": "4f7fcda583e31efdd767a11a71ff7e0a4a4d5ee8c47fbe0e191c25e1446dc48a", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-cacoo", + "sha256": "1k2hmc87ifww95k3m8ksiswkk2z0y8grssba7381g8dnlp6jgprx", "rev": "c2e6a8830144810cd4e51de3646cb8200bcebbc6" }, "recipe": { "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.2", "deps": [ @@ -10814,14 +11529,15 @@ }, "sprintly-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sprintly/sprintly-mode.git", - "sha256": "70f39254a69befab2cd4c069310dc51a92b566bece821fd2ed43b1f951e0a920", + "tag": "fetchFromGitHub", + "owner": "sprintly", + "repo": "sprintly-mode", + "sha256": "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6", "rev": "6695892bae5860b5268bf3ae62be990ee9b63c11" }, "recipe": { "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -10830,14 +11546,15 @@ }, "multi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kurisuwhyte/emacs-multi.git", - "sha256": "fbf4cfc3df12c5500b1c877a3b026a86fcc5f8bb673290ac8919b68b8f5eea87", + "tag": "fetchFromGitHub", + "owner": "kurisuwhyte", + "repo": "emacs-multi", + "sha256": "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v", "rev": "884203b11fdac8374ec644cca975469aab263404" }, "recipe": { "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.1", "deps": [ @@ -10846,28 +11563,30 @@ }, "json-reformat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gongo/json-reformat.git", - "sha256": "c1dc4b00ab7dcf8df82606986fcdf84f11c515888ef1818ce0370f36b2524660", + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "json-reformat", + "sha256": "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs", "rev": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716" }, "recipe": { "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6", "deps": [] }, "unicode-whitespace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-whitespace.git", - "sha256": "ef8ae47608207b2aa885d3ec1e539235a764b6215e2ce258e36e5fccb19de5aa", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-whitespace", + "sha256": "0q7cbl89yg3fjxaxsqsksxhw7ibdslbb004z5y1m579n7zgcrljy", "rev": "6d29f25d46b3344c74ce289fc80b3d4fc17ed6db" }, "recipe": { "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.4", "deps": [ @@ -10878,14 +11597,15 @@ }, "kakapo-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/listx/kakapo-mode.git", - "sha256": "80d4998bd5cf67a1e3b08ee3d15e5d42bd58f87512aadbc3271bd86c2172ca2c", + "tag": "fetchFromGitHub", + "owner": "listx", + "repo": "kakapo-mode", + "sha256": "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40", "rev": "fe3d579867f7465cd3ad04f29b4b2b3b820edc01" }, "recipe": { "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [ @@ -10900,21 +11620,22 @@ }, "recipe": { "sha256": "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "omni-tags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-tags.el.git", - "sha256": "d0553e602917a69f8283d456c299060881f3c22ff7c2b79d4e3191ab4944bd15", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-tags.el", + "sha256": "0c34rci5793hd674x2srhqvnj46llrbkrw1xpzf73s4ib5zhh7xi", "rev": "a7078bfbc9a6256efd0e57530df9fd7808bc2185" }, "recipe": { "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -10924,14 +11645,15 @@ }, "hcl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-hcl-mode.git", - "sha256": "b3c699f37bdefe740a30cc42ffff6292a6429652d24e45927fd4a5f67ba3c2e4", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-hcl-mode", + "sha256": "15h1wkl1d9f2xfhm0nffqicg31rw7z2q0sizjphys9ljgxm43is4", "rev": "f9757d4122d75ffdff92c97ec9e75694506caba5" }, "recipe": { "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -10946,91 +11668,97 @@ }, "recipe": { "sha256": "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "page-break-lines": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/page-break-lines.git", - "sha256": "77be7733c259b3f0fc0dacb9952c940a9026f656a8ce8be6e0a27b79fb59e228", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "page-break-lines", + "sha256": "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4", "rev": "36d3f93a23b767e7558b9c90f3631b03ce9fbdce" }, "recipe": { "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10", "deps": [] }, "rope-read-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marcowahl/rope-read-mode.git", - "sha256": "30717ad1cfa268a145632463ce28794d8602c76382d85630af146af81a8b6e8c", + "tag": "fetchFromGitHub", + "owner": "marcowahl", + "repo": "rope-read-mode", + "sha256": "133ficdghshlmwq5dn42cg3h51jdg4lcwqr4cd2s2s52rz8plw9h", "rev": "cb550afeedd369c80d1ccb54bb48494d170a5569" }, "recipe": { "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [] }, "desktop+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ffevotte/desktop-plus.git", - "sha256": "aa9b0d7f94e1e13b815d0766b245cb6c767bf4d85d7cd1c43dd4e5e83fc214dc", + "tag": "fetchFromGitHub", + "owner": "ffevotte", + "repo": "desktop-plus", + "sha256": "184zi5fv7ranghfx1hpx7j2wnk6kim8ysliyw2c5c1294sxxq3f3", "rev": "a484d24ca673c7536387368729421dad9dde5059" }, "recipe": { "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "bash-completion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/szermatt/emacs-bash-completion.git", - "sha256": "a10f5796a43389206dea92e3d456ec23f32d8f0456ec5d6914df9535721639cf", + "tag": "fetchFromGitHub", + "owner": "szermatt", + "repo": "emacs-bash-completion", + "sha256": "11rlmrjdpa3vnf0h9vcd75946q9jyf1mpbm7h12hmpj6g2pavgdd", "rev": "9588a9c0ddf18f9869d4145a67e6446a4b66eba2" }, "recipe": { "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [] }, "angular-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/omouse/angularjs-mode.git", - "sha256": "b2c0268d5ed6746718b31e199949e6efbd9f9ba8673ac26a54318486ab9a1e7e", + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "angularjs-mode", + "sha256": "1798nv4djhxzbin68zf6w7dbfm9sc39d0kygky52ii36arg5r1zp", "rev": "7c0fb37f59dfd9e69f00b50e90a0e88c4e25d8c2" }, "recipe": { "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "ctxmenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-ctxmenu.git", - "sha256": "8b1340e36d68e5adcbc6083b6c8e151525e512cf7a53262634e069cc631599ca", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-ctxmenu", + "sha256": "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb", "rev": "5c2376859562b98c07c985d2b483658e4c0e888e" }, "recipe": { "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -11041,14 +11769,15 @@ }, "python-environment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-python-environment.git", - "sha256": "35d9b16085dcfc957ea189dadc6a3a4fbdf1ec6787c1b1228f90e973c8621c2a", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-python-environment", + "sha256": "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk", "rev": "401006584e32864a10c69d29f14414828909362e" }, "recipe": { "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -11057,28 +11786,30 @@ }, "gotham-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/gotham-theme.git", - "sha256": "10717add291b66e3e09292454eedc48a41bf74de5642705c483e274e4d89bf5f", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "gotham-theme", + "sha256": "0pxzi56lw9ry91f70hjnvrsbyhcaqknlwicjjbhf6rhv57fplw8h", "rev": "d41b0ea37ad5a4d0060ea05e25d80581f113b662" }, "recipe": { "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.5", "deps": [] }, "evil-quickscope": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/blorbx/evil-quickscope.git", - "sha256": "e7a4256a7c47f86def529dad058a90af1b94da74a850ac42c7f0430182cfa57b", + "tag": "fetchFromGitHub", + "owner": "blorbx", + "repo": "evil-quickscope", + "sha256": "0yx5ry102hzhqx1aql58fkd986xgj250bbcxabpnvy27gim2b977", "rev": "d2f512fa4bd0b0603529a441e474ca551f621650" }, "recipe": { "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.3", "deps": [ @@ -11093,77 +11824,82 @@ }, "recipe": { "sha256": "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "xbm-life": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/xbm-life.git", - "sha256": "e598c88c14b4fb9255e218b4eeaf2385ea53a02031ad083382ff95d0dff1f0a5", - "rev": "1f0b9863e33ba68c29e02c5fa8c29ec032e6772c" + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "xbm-life", + "sha256": "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6", + "rev": "bde2b3730a02d237f7d95a8e3f3722f23f2d9201" }, "recipe": { "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "0.1.2", + "version": "0.1.3", "deps": [] }, "elpa-mirror": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/elpa-mirror.git", - "sha256": "0ab91234502a62610271347718f0769982e41e6265c1082055c3683a87dd55c2", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "elpa-mirror", + "sha256": "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a", "rev": "6c32875c2317736e590e067820996010b21acb1d" }, "recipe": { "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.1", "deps": [] }, "edit-server": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stsquad/emacs_chrome.git", - "sha256": "e1d51992cb04b45cddd3ad048e658d164f4228e3e3534d08f74b6c57e6dec5af", + "tag": "fetchFromGitHub", + "owner": "stsquad", + "repo": "emacs_chrome", + "sha256": "12dp1xj09jrp0kxp9xb6cak9dn6zkyis1wfn4fnhzmxxnrd8c5rn", "rev": "f0db18f0d6e9885e4aef3ace8342fd6f635fadf6" }, "recipe": { "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.13", "deps": [] }, "dynamic-ruler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rocher/dynamic-ruler.git", - "sha256": "79512de4980dbcaa48d50df25929f5e58ccbeacb46dbb42606971f9ba17ee717", + "tag": "fetchFromGitHub", + "owner": "rocher", + "repo": "dynamic-ruler", + "sha256": "05z7gshrn7wp0qkb9ns6rgmcp375yllmkwhdsm4amg0dk3j2slbr", "rev": "2d69a7aec21d3d9dbc8ae7520e5c513e98d64ebb" }, "recipe": { "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [] }, "fontawesome": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-fontawesome.git", - "sha256": "fe5d3a7c1e00d2ffac37ddcc6e7d2fc97b228e574a2d5fc75c3cca1e76bb3811", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-fontawesome", + "sha256": "0qq13jhn9i2ls6n3fbay4i2r0hfs426pkmmif43b87gjxb510irc", "rev": "ccb03b8329daa3130491c9c4d285b325dbeb5cc7" }, "recipe": { "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [ @@ -11173,56 +11909,60 @@ }, "o-blog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/renard/o-blog.git", - "sha256": "e839c4d86e153c74ef07c9fcf551460b701d9c6c15317ed3f164b8c022e76108", + "tag": "fetchFromGitHub", + "owner": "renard", + "repo": "o-blog", + "sha256": "0r12023yy8j96bp8z2ml6ffyr2c9rcd5abkh6vqnkwsdxkzx6wrs", "rev": "5db9594c6e3439c000b183551d7975c2e29131f4" }, "recipe": { "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "love-minor-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/love-minor-mode.git", - "sha256": "f33aa4c7ef81e42b3ac9dea7a86e521bee02a03dc98b8843a53fbd4eb097c587", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "love-minor-mode", + "sha256": "11y5jyq4xg9zlm1qi2y97nh05vhva9pai9yyr4x2pr41xz3s8fpk", "rev": "1634ff3a8b657c63a5cffd9a937812a289f2c954" }, "recipe": { "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "erc-hl-nicks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/erc-hl-nicks.git", - "sha256": "184a95d6ed5d0bf1a8c57f1a33c8d1a9ffdfc3fef579775952e693ce820e872d", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "erc-hl-nicks", + "sha256": "0bc71s1cx4z6a9cpfygmzv1xzzx9s74366kzqnlg22sxxpb9ajhq", "rev": "f7e9c378072ecc689f2a0ef66d73db8bbcc07d87" }, "recipe": { "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [] }, "dash-functional": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/dash.el.git", - "sha256": "e34780da0a976138dc2031f468a9c77aa0f0a18c30baf4681f3e183c8146406b", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "dash.el", + "sha256": "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa", "rev": "fec6f5480d0ce03ead0e6117ac77dc7e757e76f8" }, "recipe": { "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.12.1", "deps": [ @@ -11232,14 +11972,15 @@ }, "pdf-tools": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/politza/pdf-tools.git", - "sha256": "f5100845c4afd507f2dfb09e3c6e98e907e930a40ced8eb1ea05242cb7789296", + "tag": "fetchFromGitHub", + "owner": "politza", + "repo": "pdf-tools", + "sha256": "19sy49r3ijh36m7hl4vspw5c4i8pnfqdn4ldm2sqchxigkw56ayl", "rev": "0107f80dcf268d08ac075b01729820062c0fbd67" }, "recipe": { "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.70", "deps": [ @@ -11250,14 +11991,15 @@ }, "image+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-imagex.git", - "sha256": "c16830b0405e241cc6db87f1ddfa52d125c0d04bece26601f10fcc1b0ea84f1e", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-imagex", + "sha256": "0k69xbih0273xvmj035vcmm67l6hgjb99pb1jbva5x0pnszb1vdv", "rev": "967508a6c151e6ab6e97d3ac332dc5599011830d" }, "recipe": { "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.2", "deps": [ @@ -11266,42 +12008,45 @@ }, "dockerfile-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/spotify/dockerfile-mode.git", - "sha256": "38db9adb524d2c5c8590ca6c35debd32471c30ef086e9a20d58dba25f3ae258e", + "tag": "fetchFromGitHub", + "owner": "spotify", + "repo": "dockerfile-mode", + "sha256": "1cmh8pwwa6dhl4w66wy8s5yqxs326mnaalg1ig2yhl4bjk8gi4m2", "rev": "9a75fcd119c5b2a1d723d440bbe4b1db56df90cc" }, "recipe": { "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [] }, "telepathy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/telepathy.el.git", - "sha256": "8c690fc860b1bdec9d2d6424c5b72b557f6066af0036914bd33ec44fc90d799a", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "telepathy.el", + "sha256": "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc", "rev": "211d785b02a29ddc254422fdcc3db45262582f8c" }, "recipe": { "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "flycheck-haskell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-haskell.git", - "sha256": "2e30919e8ac2cf14e89ae317ce7318a6b1278c9bdce0a00209b352c54ca8cd5c", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-haskell", + "sha256": "0143lcn6g46g7skm4r6lqq09s8mr3268rikbzlh65qg80rpg9frj", "rev": "57756b8f0e4e0a775a702a1b8f2a4be7bb0088cc" }, "recipe": { "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.2", "deps": [ @@ -11314,14 +12059,15 @@ }, "evil-iedit-state": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syl20bnr/evil-iedit-state.git", - "sha256": "5aa699537838d52937a09d86ca8e6692325239509724f229da7d148bbe48e1c0", + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-iedit-state", + "sha256": "0r2367lbzcdhglvjjcamrzn5fmqy0jalcws8r0yc2al1vbsrn0fr", "rev": "0bf8d5d1777f1e8a3c46b6a1c7dceb082fcc6779" }, "recipe": { "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -11331,14 +12077,15 @@ }, "unicode-enbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/unicode-enbox.git", - "sha256": "3421f1cd186e616490bee841a2bd838fcd00945db3a8d8493bdf0da39530f4dc", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-enbox", + "sha256": "0n06dvf6r7qblz8vz38qc37xrn29wa1c0jyzis1qw9zzf6hmmzj7", "rev": "ff313f6778bb96481c0ee3291b07a7db46f21ff5" }, "recipe": { "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [ @@ -11350,14 +12097,15 @@ }, "flycheck-pos-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-pos-tip.git", - "sha256": "aa849fac9428d8026b5c095fcb92e664e03c085375ed7891af2e8a27efd8a82b", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-pos-tip", + "sha256": "0v23yc8znzjp44lrpfzqb4hc3psad14hsnvqcp8f1yyhgvdx35n8", "rev": "0c2b31b615fa294f329f3cc387b464525ce3392d" }, "recipe": { "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -11368,14 +12116,15 @@ }, "ac-dcd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/atilaneves/ac-dcd.git", - "sha256": "b672dc0768e1eac27ab668ab134f481894a279d5bf6c01bdd182716d01427a28", + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "ac-dcd", + "sha256": "0a3s880nswc2s6yh2v5zsmws550q917i7av8nrxc5sp1d03xqwmn", "rev": "4cb14b1e9fcfc4bf4a084765bc1eb10abfbbbd49" }, "recipe": { "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -11385,14 +12134,15 @@ }, "es-windows": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/es-windows.git", - "sha256": "956a6e59a56c0d38e2a2540b377c33d7a5b78c42323482087e692d09b029193f", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "es-windows", + "sha256": "0cjchwrhk7bw87bg10zgcwkga50rvs0jn5v2jf6bbsxbcqx2nfc9", "rev": "7ebe6c6e0831373847d7adbedeaa2e506b54b2af" }, "recipe": { "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -11402,28 +12152,30 @@ }, "find-by-pinyin-dired": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/find-by-pinyin-dired.git", - "sha256": "8f5da5d686f91604254d5d6e1934b5629e5a4f6a8b726ea7a626340959eff92d", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "find-by-pinyin-dired", + "sha256": "1xjb66pydm3yf0jxnm2mri98pxq3b26xvwjkaj1488qgj27i05jr", "rev": "3137c367d58958858daa6d3dee1993b2eb9dd9b4" }, "recipe": { "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [] }, "smart-mode-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/smart-mode-line.git", - "sha256": "e1e035913c85c579f28e30a9ee8c0c201dca5a045fa29482c405de062daf747b", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "smart-mode-line", + "sha256": "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71", "rev": "d98b985c44b2c771cac1eea758f21e16e169a8a0" }, "recipe": { "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.9", "deps": [ @@ -11439,49 +12191,52 @@ }, "recipe": { "sha256": "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "live-py-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/donkirkby/live-py-plugin.git", - "sha256": "fe5d1e2e5d5b0b93276081805ca0eb1680e683f6faaf5761d2766e76c8a04a7b", + "tag": "fetchFromGitHub", + "owner": "donkirkby", + "repo": "live-py-plugin", + "sha256": "1y81qqsjj2sa319xkwhvq7bl3f5gma4cs7w8x2w510ms32fgqa8x", "rev": "75c27e0110257e3138e24dc2de2a19244635a0bf" }, "recipe": { "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.8.1", "deps": [] }, "pos-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pitkali/pos-tip.git", - "sha256": "63409684b48b55c45a717bf19c720fa3a74e26071aa2709bc5e1a069afb60b71", + "tag": "fetchFromGitHub", + "owner": "pitkali", + "repo": "pos-tip", + "sha256": "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33", "rev": "1b81694d1dc29253db0e855b82563f84a32b38d4" }, "recipe": { "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.6", "deps": [] }, "helm-gitlab": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/emacs-gitlab.git", - "sha256": "dc9bbfff48235cbef8cdb76045ce6d8abe7b8e0815ed4fa3719873d425afec00", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-gitlab", + "sha256": "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil", "rev": "90be6027eb59a967e5bbceaa5f32c098472ca245" }, "recipe": { "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -11500,21 +12255,22 @@ }, "recipe": { "sha256": "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.92", "deps": [] }, "magit-gerrit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/terranpro/magit-gerrit.git", - "sha256": "6b75d69bfa1fba5032c022c8c02c926fc9fd13586c29047cfe0430d3e423a27a", + "tag": "fetchFromGitHub", + "owner": "terranpro", + "repo": "magit-gerrit", + "sha256": "0ym24gjd6c04zry08abcb09zvjbgj8nc1j12q0r51fhzzadxcxbb", "rev": "699c5c39c6dbdc8d730721eaf1491f982dd78142" }, "recipe": { "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -11523,14 +12279,15 @@ }, "org-pomodoro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lolownia/org-pomodoro.git", - "sha256": "bcdee69ec59fd5a8742a1759b9eee7fec43d405bcff4521b5c2598218efa4dba", + "tag": "fetchFromGitHub", + "owner": "lolownia", + "repo": "org-pomodoro", + "sha256": "1fjdza723615bhdm5x6gbd03vi7ywzpbjn8p59saimczqngfdpmw", "rev": "26452a3d070f4814b191a9de9e3493a54161b910" }, "recipe": { "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.3", "deps": [ @@ -11540,28 +12297,30 @@ }, "monokai-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/oneKelvinSmith/monokai-emacs.git", - "sha256": "7ffb3a138f316d28eed15277c2bfd0616924943543112f9b221725433499870b", + "tag": "fetchFromGitHub", + "owner": "oneKelvinSmith", + "repo": "monokai-emacs", + "sha256": "02w7k4s4698p4adjy4a36na28sb1s2zw4xsjs7p2hv9iiw9kmyvz", "rev": "9a6f126e1f02ec49d41fe2ee79670ca96a563f1a" }, "recipe": { "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "kurecolor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsfodder/kurecolor.git", - "sha256": "df89f5e24502aadd6bf615129221f523ca95ded779d775b889006fe36ef24435", + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "kurecolor", + "sha256": "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz", "rev": "c8c72cea04e51f57701d2dd9be7dba5f3412e2f3" }, "recipe": { "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.2", "deps": [ @@ -11571,14 +12330,15 @@ }, "flymake-haml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-haml.git", - "sha256": "0ba58405ab0e49edd9501ba4505e70212d738e05b925698b567ef5331729e6c1", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-haml", + "sha256": "1b3lf5jwan03k7rb97g4bb982dacdwsfdddnwc0inx9gs3qq1zni", "rev": "343449920866238db343d61343bc845cc8bc5e1b" }, "recipe": { "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -11587,42 +12347,45 @@ }, "highlight-indentation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antonj/Highlight-Indentation-for-Emacs.git", - "sha256": "f3805451aaf4c37b15527f28983c17d9663bf49091d06f3f50444c5cce248502", + "tag": "fetchFromGitHub", + "owner": "antonj", + "repo": "Highlight-Indentation-for-Emacs", + "sha256": "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k", "rev": "cd6d8168ccb04c6c0394f42e9512c58f23c01689" }, "recipe": { "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [] }, "monroe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sanel/monroe.git", - "sha256": "d576b1160ecf8e7525f1ef73d92bfb6b1ca18e69b2ae32c16a92853d1dda17a8", + "tag": "fetchFromGitHub", + "owner": "sanel", + "repo": "monroe", + "sha256": "1a0pv8fkv1cjdb0k5bmjd67a273bzcmxjwzgy4jpb3ng1qbb2xnm", "rev": "2f8aed286de47f5c4f65b352b6e4f72b47cac279" }, "recipe": { "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "names": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/names.git", - "sha256": "b950d0f5c31b3a2b745f88e26b3ebf2863ea593422dc7e5b87fecc92b430446e", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "names", + "sha256": "05jvd272x92s6wk17l0hymdj8b4979maalkmk54dp7n4nrcmzx2f", "rev": "a6865f901dd94f92ae23af8aef3f6ae863901855" }, "recipe": { "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150723.0", "deps": [ @@ -11632,28 +12395,30 @@ }, "log4j-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/log4j-mode.git", - "sha256": "73a68146f5c71c639cd6f13842a8704d3009632af69014d1531f30569bacb591", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "log4j-mode", + "sha256": "14dmmjdmcc0zag8i947n59ihjc2df2l44f7issf66767ym3839kk", "rev": "ec3de92cfe60dd3d0de613e9062476196dea0faf" }, "recipe": { "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "gnus-x-gm-raw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/gnus-x-gm-raw.git", - "sha256": "346648168091866ce0f7a8250006be79c05a45ee735dfd546185262afa316ec4", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "gnus-x-gm-raw", + "sha256": "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril", "rev": "978bdfcecc8844465b71641c2e909fcdc66b22be" }, "recipe": { "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -11669,21 +12434,22 @@ }, "recipe": { "sha256": "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "docker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/docker.el.git", - "sha256": "dd8cbf88ac190650b2a5a0dace15fc8d56351c94a93a42604a87d63443366b1b", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "docker.el", + "sha256": "06vb6r1k9ml799h44fm9jhf3amldzhawxnm0lnr501hrmj4bz36x", "rev": "77f646cc10909403a945d188cf9d81abd3bfc2a0" }, "recipe": { "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -11701,21 +12467,22 @@ }, "recipe": { "sha256": "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "auto-package-update": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rranelli/auto-package-update.el.git", - "sha256": "77fb8ba9f88c9e3fe508428e122e18a2521c372ffdbdaf61f91a20f5aee83a76", + "tag": "fetchFromGitHub", + "owner": "rranelli", + "repo": "auto-package-update.el", + "sha256": "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2", "rev": "cdef79f9fc6f8347fdd05664978fb9a948ea0410" }, "recipe": { "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.1", "deps": [ @@ -11725,28 +12492,30 @@ }, "map-progress": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/map-progress.git", - "sha256": "e7a0895adb3da353358bb486f6bcfc3782c5590efa389854af7ccdf8409571ba", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "map-progress", + "sha256": "1fkijm0gikbwmxa9hf7s1rcwb0ipzjygd1mlicsm78rxvdd8k877", "rev": "6b8ef6b60626772082b2e80ec54d1f1275e1a1b8" }, "recipe": { "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [] }, "omni-log": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-log.el.git", - "sha256": "873f9f41578b55f53ee15bc5b99acc73cf64ace65c1fdfeaf8648defa79407d6", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-log.el", + "sha256": "030f983n19n64f8irif102nncvam04xpx020vfgja9886wlj40pk", "rev": "7eb30e42cc89064abb7acbec63cb9644c2ad7c9b" }, "recipe": { "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -11758,14 +12527,15 @@ }, "zombie-trellys-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/zombie-trellys-mode.git", - "sha256": "dcf550053b59a865ddbf0a7b8f5ebaf049ff4d1b83afde20e396be4ae422ab4a", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "zombie-trellys-mode", + "sha256": "1ksjd3askc3k1l0b3nia5mzkxa74bidh2x0xlrj4qs4im5445vnz", "rev": "9e99d444a387dd1634cab62ef802683f5bf5d907" }, "recipe": { "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -11776,28 +12546,30 @@ }, "karma": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/karma.el.git", - "sha256": "5a86cb2eb129e30fb7ba7cc87bba140015c6b79c77e59bad0ae9e158989162b9", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "karma.el", + "sha256": "0avcg307r4navvgj3hjkggk4gr7mzs4mljhxh223r8g69l9bm6m8", "rev": "f4ee856e7f59649e9d9021c46f872f9b4f5b7e6e" }, "recipe": { "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "imenu-anywhere": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vitoshka/imenu-anywhere.git", - "sha256": "26381e7e06aba0ca8e3db4c2d556344b22b59838808fb37f575ddde3ca358961", + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "imenu-anywhere", + "sha256": "0qc96p5f7paxaxzv73w072cba8jb6ibdbhml7n7cm85b0rz1wf16", "rev": "a090132492a3a98b6547240babe0bc0fa6154bb2" }, "recipe": { "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0", "deps": [ @@ -11806,42 +12578,45 @@ }, "js3-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thomblake/js3-mode.git", - "sha256": "7559b1c4ed70982e8babaac425ff6c31bc9be69220645ddf595e9d8d814bd43b", + "tag": "fetchFromGitHub", + "owner": "thomblake", + "repo": "js3-mode", + "sha256": "17d0nf1kz7mgv5qz57q6khy4w5vrmsliqirggahk9s6nnsx1j56n", "rev": "5ccda46ba39998a74bd724fdffb34634be5b6563" }, "recipe": { "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] }, "aproject": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vietor/aproject.git", - "sha256": "21f0f2e7073585f66126223f5da5ba9779d78721e207263ad6144d8742e3d8da", + "tag": "fetchFromGitHub", + "owner": "vietor", + "repo": "aproject", + "sha256": "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc", "rev": "3c7d23c341862dfd77fd0a64775df12ddb44ab54" }, "recipe": { "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "helm-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/projectile.git", - "sha256": "eb88b89c18ca127127e1f2692cfd4fe5670a8058635bc06f3ebd241f78a5f8e8", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf", "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" }, "recipe": { "sha256": "0s7la43q2v2h2s6lykxw5ag8if8d931jhw5k716b26ihzl1xxbv5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13.0", "deps": [ @@ -11853,28 +12628,30 @@ }, "ahk-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ralesi/ahk-mode.git", - "sha256": "48297d6746b2ac0d50adc798ccc94df706e20d4e102e71c99e740dc66c7219e3", + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "ahk-mode", + "sha256": "1qqrf9ncc3blkv4p2bhh9q6y41pp9p4wr667mm80vb5j8rkpsaa8", "rev": "7b47b40952708ea4e9a0f1969f00caa92700513a" }, "recipe": { "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.5", "deps": [] }, "requirejs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joeheyming/requirejs-emacs.git", - "sha256": "8a4166316c65ddcfa07807e9163361fcf74201a3f3c80fb3c935a7734e1603ad", + "tag": "fetchFromGitHub", + "owner": "joeheyming", + "repo": "requirejs-emacs", + "sha256": "1b832r7779rmr6rhzj7klc0l5xzwc4rids87g2hczpb5dhqnchca", "rev": "7d73453653b6b97cca59fcde8d529b5a228fbc01" }, "recipe": { "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -11886,28 +12663,30 @@ }, "pastehub": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiyoka/pastehub.git", - "sha256": "4133a47bbabbd8e15a42f8182997f4a6e00003d8cc80adfad0d6ca5f166fc516", + "tag": "fetchFromGitHub", + "owner": "kiyoka", + "repo": "pastehub", + "sha256": "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n", "rev": "37b045c67659c078f1517d0fbd5282dab58dca23" }, "recipe": { "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.2", "deps": [] }, "langtool": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-langtool.git", - "sha256": "897ac3e506ca90af0bd99a72d51171982a85dfc5cd6d596f92d0742dfafd746a", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-langtool", + "sha256": "16wmc89jnn7qqcqw6702c9ccmwpb8pkxasa17ikmmmnggmg50lfh", "rev": "443b3804f9e33e6d96ee8e15ddede7f152ece378" }, "recipe": { "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.0", "deps": [ @@ -11922,65 +12701,83 @@ }, "recipe": { "sha256": "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "uzumaki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/geyslan/uzumaki.git", - "sha256": "ba219e5da5ae66ce5e09ef87210d99295a997bd443dd808d3be8d2a771b2a37c", + "tag": "fetchFromGitHub", + "owner": "geyslan", + "repo": "uzumaki", + "sha256": "0z53n9qsglp87f6q1pa3sixrjni9k46j31zg15gcwrmflmfrw8ds", "rev": "a75956e1757f4b98aad3384a4616481aede70cb1" }, "recipe": { "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ "cl-lib" ] }, + "eredis": { + "fetch": { + "tag": "fetchsvn", + "url": "http://eredis.googlecode.com/svn/trunk/", + "sha256": "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49", + "rev": "28" + }, + "recipe": { + "sha256": "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "fvwm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theBlackDragon/fvwm-mode.git", - "sha256": "a92314bf63c063d6ebfc1f18e3a10fcc52eb36d410a7d037a36fe5f245668a2b", + "tag": "fetchFromGitHub", + "owner": "theBlackDragon", + "repo": "fvwm-mode", + "sha256": "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv", "rev": "d48a309bb7db21f5404b6619c6ee861fe0457704" }, "recipe": { "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.4", "deps": [] }, "factlog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/factlog.git", - "sha256": "a48a989df1713afdc9593eed113a0c40d138e2100163b034c5486645fb6fd3b1", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "factlog", + "sha256": "01l8dlfpyy97b17djbza46rq11xlbkhd5kn2r26r2xac8klj4pka", "rev": "c834fdab81ec5b1bdc0ee2721a12cecb48a319bf" }, "recipe": { "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [] }, "kaesar-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "aea707d4ea0911a3232dfa42b704381f3a96b8584faec048acafd32ff0afa108", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8", "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" }, "recipe": { "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0", "deps": [ @@ -11989,14 +12786,15 @@ }, "boon": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jyp/boon.git", - "sha256": "6c21f4bf038291745e4387609ab4440b478f3fced5b347f6a4731933241385f7", + "tag": "fetchFromGitHub", + "owner": "jyp", + "repo": "boon", + "sha256": "0alxz27pyf669mkw5wvkidrvwm11iwbkl9k7v8lzq05kgy59bwkq", "rev": "2430cf5bb509961142f68bfa34c1723a22917ddf" }, "recipe": { "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -12006,14 +12804,15 @@ }, "inflections": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/jump.el.git", - "sha256": "02af5e8dc6e34432999b12a9cb6045a489192892191d6ec3af372db2a69f1aae", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "jump.el", + "sha256": "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j", "rev": "fb7355615276f00397b15182076bf472336448a9" }, "recipe": { "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3", "deps": [] @@ -12026,63 +12825,67 @@ }, "recipe": { "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "color-theme-sanityinc-solarized": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/color-theme-sanityinc-solarized.git", - "sha256": "5468eb6d549d5a09c62f4473f4239fdd609d51d2391a75e48fe547e12bf79cab", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "color-theme-sanityinc-solarized", + "sha256": "13jmg05skv409z8pg5m9rzkajj9knyln0ff8a3i1pbpyrnpngmmc", "rev": "554e941131d009c0a5d7129ed96796182b4cc590" }, "recipe": { "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.29", "deps": [] }, "ido-yes-or-no": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/ido-yes-or-no.git", - "sha256": "e5a469d437bd139ab3edfe2abc8188021158c83cb9faad879af36a225a4a8513", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-yes-or-no", + "sha256": "0i3s80ws3qbhb3vsvf09mbq661c5140v4phgbl4cz6z545ha2bj7", "rev": "ff9d28ca86c8cbfe2fbeb3ee1a60e3983aa776e4" }, "recipe": { "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [] }, "mode-line-debug": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/mode-line-debug.git", - "sha256": "410383b7838054b573f79c318a38893960c80b7225a46e4d3edb684bad4d7cd2", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "mode-line-debug", + "sha256": "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1", "rev": "da44422eeb6a1f055b4ec2f822962c5162fce001" }, "recipe": { "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.2", "deps": [] }, "helm-mode-manager": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/helm-mode-manager.git", - "sha256": "f35f85c2ca073578a149fa7bd2a61d7933e83ad3a661af8e55fff4a4812b3deb", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "helm-mode-manager", + "sha256": "1srx5f0s9x7zan7ayqd6scxfhcvr3nkd4yzs96hphd87rb18apzk", "rev": "1fc1d65a27bc57d3a5bbd359f3eb77a6353fa4a5" }, "recipe": { "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -12091,14 +12894,15 @@ }, "helm-aws": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/helm-aws.git", - "sha256": "5bc6c04bd2e5cc49378356c424872371ed297937fd995471409d94f6b52eb704", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "helm-aws", + "sha256": "015p5sszd54x81qm96gx6xwjkvbi4f3j9i2nhcvlkk75s95w1ijv", "rev": "172a4a3427d31c999e27e9ee06aa8e3822364a8c" }, "recipe": { "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -12107,14 +12911,15 @@ }, "pcache": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/pcache.git", - "sha256": "48b9b58d79fee288baff3d2930174a11c0aff83a2edb20d2de3047da1ac26b75", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "pcache", + "sha256": "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8", "rev": "4b090f46182fd2ed1f44905dc04acc3121bcf622" }, "recipe": { "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [ @@ -12129,21 +12934,22 @@ }, "recipe": { "sha256": "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "reverse-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-reverse-theme.git", - "sha256": "d0bc0fb317a93165b8939e468ba4d393ec103ecdb1f21a6bec9a0b111df9b697", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-reverse-theme", + "sha256": "15xnz4fi22wsximimwmirlz11v4ksfj8nilyjfw6acd92yrhzg6h", "rev": "3105c950bcb51c662c79b59ca102ef662c2b0be0" }, "recipe": { "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [] @@ -12156,21 +12962,22 @@ }, "recipe": { "sha256": "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "perspective": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/perspective-el.git", - "sha256": "784c10983791e9742d1ce2b64dff1a39acd5a9d9ff42c3b2129465ed61ce8289", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "perspective-el", + "sha256": "12c2rrhysrcl2arc6hpzv6lxbb1r3bzlvdp23hnp9sci6yc10k3q", "rev": "3a8d59045a6370fae1ec2011865190a7465d707f" }, "recipe": { "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.12", "deps": [ @@ -12179,28 +12986,30 @@ }, "offlineimap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jd/offlineimap.el.git", - "sha256": "ebe4a1a09edf95ccec425d8cabb501d2baf74e15ba302fe9dd9ca8fd1ca5e42b", + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "offlineimap.el", + "sha256": "0az4llfgva4wvpljyc5s2m7ggfnj06ssp32x8bncr5fzksha3r7b", "rev": "646482203aacdf847d57d0a96263fddcfc33fb61" }, "recipe": { "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1", "deps": [] }, "es-lib": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/es-lib.git", - "sha256": "212b21084ced61f6990b77c02ac3ee148811aefe120163405cea1a482cfa7d46", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "es-lib", + "sha256": "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b", "rev": "753b27363e39c10edc9e4e452bdbbbe4d190df4a" }, "recipe": { "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -12215,35 +13024,37 @@ }, "recipe": { "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "pt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bling/pt.el.git", - "sha256": "7c16f66b195fd34cc14166005c82d1a0801a9202516b54fb423c9a04c13913dc", + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "pt.el", + "sha256": "1p0k770h96iw8bxm8ssi0a91m050s615q036870lrlsz35mzc5kw", "rev": "a539dc11ecb2d69760ff50f76c96f49895ce1e1e" }, "recipe": { "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [] }, "gitignore-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/git-modes.git", - "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" }, "recipe": { "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [] @@ -12256,21 +13067,22 @@ }, "recipe": { "sha256": "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "fold-dwim-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/fold-dwim-org.git", - "sha256": "bc53fd2557b7e0746c973a17998c202dec4b2b7ee8eea4c1e2646f0ed55c5b92", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "fold-dwim-org", + "sha256": "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw", "rev": "c09bb2b46d65afbd1d0febc6fded7495be7a3037" }, "recipe": { "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [ @@ -12279,14 +13091,15 @@ }, "ac-mozc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/igjit/ac-mozc.git", - "sha256": "0a7acdbe1a589e1ace18cf25d111abc9a5820718c32821cc5afeff527d06f738", + "tag": "fetchFromGitHub", + "owner": "igjit", + "repo": "ac-mozc", + "sha256": "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5", "rev": "4c6c8be4701010d9362184437c0f783e0335c631" }, "recipe": { "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -12297,28 +13110,30 @@ }, "logalimacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/logaling/logalimacs.git", - "sha256": "914ea957aa321e0bada3ccb62be66065f716469e825e3e1d1fcdb1f750a0e2e5", + "tag": "fetchFromGitHub", + "owner": "logaling", + "repo": "logalimacs", + "sha256": "0g5vq9xy9lwczs77lr91c1srhhfmasnnnmjvgc55hbl6iwmbizbm", "rev": "cfd7aaa925934f876eee6e8c550cf6e7a239a2ac" }, "recipe": { "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "company-nixos-options": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/travisbhartwell/nix-emacs.git", - "sha256": "8d6225321be7a659bcbeaa9dd350b4fcb60e97d3aa866da224afe0e3decca7d2", + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld", "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" }, "recipe": { "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -12335,21 +13150,22 @@ }, "recipe": { "sha256": "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "flymake-json": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-json.git", - "sha256": "064aef39b5c1b996c06631bb0b24141f0c0a5aeb743ecac6efc62a42a9037ca0", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-json", + "sha256": "0rzlw80mi39147yqnpzcvw9wvr5svksd3kn6s3w8191f2kc6xzzv", "rev": "ad8e482db1ad29e23bdd9d089b9bc3615649ce65" }, "recipe": { "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -12358,14 +13174,15 @@ }, "sass-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/sass-mode.git", - "sha256": "68ec20a25190f04abb6a1a76f84f5a0a1706e8e460291cb2c1f74d369e66571b", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "sass-mode", + "sha256": "0lxrq3mzabkwj5bv0mgd7fnx3dsx8vxd5kjgb79rjfra0m7pfgln", "rev": "26a66e331b507fb420e3bb7d0a6a8fbb04294343" }, "recipe": { "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.0.18", "deps": [ @@ -12374,14 +13191,15 @@ }, "string-edit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/string-edit.el.git", - "sha256": "bcdd15928f06feac800eb30589889934ea7e3addbf50ff46b4ca4eec189d3148", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "string-edit.el", + "sha256": "15gdcpbba3h84s7xnpk69nav6bixdixnirdh5n1rly010q0m5s5x", "rev": "9f9c9cd659156fd2217be814eb4e91da48d44647" }, "recipe": { "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -12396,21 +13214,22 @@ }, "recipe": { "sha256": "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "flymake-haskell-multi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-haskell-multi.git", - "sha256": "6876a0e8793c26af02282909133aef966609ed324182da52ec82979d9032c1c9", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-haskell-multi", + "sha256": "0k1qc0r0gr7f9l5if2a67cv4k73z5yxd6vxd6l1bqw500y0aajxz", "rev": "d2c9aeffd33440d360c1ea0c5aef6d1f171599f9" }, "recipe": { "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -12419,28 +13238,30 @@ }, "git-timemachine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/git-timemachine.git", - "sha256": "5a99eb89819eb281789dc16088c7d6260622bd55e6643b3d8cb6cdccef8172f2", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "git-timemachine", + "sha256": "1wkjh7pwrkdnihyknr76anyj41i6sv3qhq61kmw83clyh64yp6as", "rev": "bde589fbeb3b5326e89573cbb9a6fd08d832d073" }, "recipe": { "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.7", "deps": [] }, "evil-search-highlight-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juanjux/evil-search-highlight-persist.git", - "sha256": "d31ff1cc55b9c39d5220c658a14ee00d365f4caaf7d289fa4a8c81dad214d1c9", + "tag": "fetchFromGitHub", + "owner": "juanjux", + "repo": "evil-search-highlight-persist", + "sha256": "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk", "rev": "0e2b3d4e3dec5f38ae95f62519eb2736f73c0b85" }, "recipe": { "sha256": "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.8", "deps": [ @@ -12449,14 +13270,15 @@ }, "edn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/expez/edn.el.git", - "sha256": "1691dbf8c20bb27abc2ebc79cfd89a144db6b11abea8bb12123498d92228c5ed", + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "edn.el", + "sha256": "06v34l9dkykrrdfpnm3zi5wjm0fdvy76pbkfnk92wqkjp8fqimhd", "rev": "bb035dcbeccccdb2c899d2cce8e81486764d0ad7" }, "recipe": { "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.2", "deps": [ @@ -12475,49 +13297,52 @@ }, "recipe": { "sha256": "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "org-table-comment": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/org-table-comment.el.git", - "sha256": "977bb21fca41c5cf63b4c8a75973e024485d470de47bdf8f5dc5b36d54fb3079", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-table-comment.el", + "sha256": "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb", "rev": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e" }, "recipe": { "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "hl-sexp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/hl-sexp.git", - "sha256": "7c9a33cee9837215f78bf4e0dd53a20f66bc05bedb33a7bbb3e5335c59925ebb", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "hl-sexp", + "sha256": "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw", "rev": "0606100422321c18db51ceda80f25cd7717c2e01" }, "recipe": { "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "avy-migemo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/avy-migemo.git", - "sha256": "a32d2628b9c93b978b0ffb6e3b63a82478d749b946322547eab25926169e0b25", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "avy-migemo", + "sha256": "098bkqb2cndjx93jacj6p54xfy14m1iknvpv1y5rffy9p4l2cbd3", "rev": "f2498ed4a476a554c84716f5a8131f9b78a45185" }, "recipe": { "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.11", "deps": [ @@ -12534,7 +13359,7 @@ }, "recipe": { "sha256": "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -12545,14 +13370,15 @@ }, "osx-browse": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/osx-browse.git", - "sha256": "515731c2d6275a74981d4731fcbb6e4a41a25812232943b81e1f4af52d52c897", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "osx-browse", + "sha256": "0g1xhh88a65vcq6rlh7ii16pra4pv519ajcws0h93ldbbjiy7p0m", "rev": "6186a6020e143e90d557c8d062c44fcdba0516c7" }, "recipe": { "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.8", "deps": [ @@ -12562,14 +13388,15 @@ }, "helm-orgcard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/helm-orgcard.git", - "sha256": "632ec2288b0b78b18d0cc54d320ebec2f71a9d1e57eccfb0ecdd1ed572eed2ff", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-orgcard", + "sha256": "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3", "rev": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d" }, "recipe": { "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -12578,14 +13405,15 @@ }, "phpcbf": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nishimaki10/emacs-phpcbf.git", - "sha256": "58d57f6efb8bd201dd6eef6345eda1b0d1a04d45ce0eae12062b86452fa9707e", + "tag": "fetchFromGitHub", + "owner": "nishimaki10", + "repo": "emacs-phpcbf", + "sha256": "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z", "rev": "b556b548ceb061b002389d6165d2cc63d8bddb5d" }, "recipe": { "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.2", "deps": [ @@ -12594,28 +13422,30 @@ }, "dispass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ryuslash/dispass.el.git", - "sha256": "d4d2ea781b22c6e74efa7971114bec37d5b464c52c3c89dae4665bc3f80a2aac", + "tag": "fetchFromGitHub", + "owner": "ryuslash", + "repo": "dispass.el", + "sha256": "1b1a1bwc6nv6wkd8jg1cqmjb9m9pxi5i2wbrz97fgii23dwfmlnl", "rev": "38b880e72cfe5e65179b16791903b0900c73eff4" }, "recipe": { "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.2", "deps": [] }, "ac-inf-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ac-inf-ruby.git", - "sha256": "55fba20ab7482cbea6658465d28bd2a5075972fe9d6916ffdeafe954ec0895a9", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-inf-ruby", + "sha256": "1acm13n59sdgvvzicscxzrr5j1x5sa5x4rc4cnkbwb28nw5a5ysm", "rev": "3e22b66d3d3e2712a0fe783b5cdd0583a0d4c318" }, "recipe": { "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -12625,14 +13455,15 @@ }, "cider-eval-sexp-fu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/cider-eval-sexp-fu.git", - "sha256": "5225d62e374c2c2f9fe0ae1b198409247e87bd42bfb4e344ddd95132df5932f5", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider-eval-sexp-fu", + "sha256": "1rkd76561h93si4lpisz3qnaj48dx8x01nd59a3lgpqsbbibnccf", "rev": "dbe6a19c835ea42b099dd17f040db0baf9774aaf" }, "recipe": { "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -12643,14 +13474,15 @@ }, "wn-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/luismbo/wn-mode.git", - "sha256": "df22db01f4185a30728333bbec9a5b4957919c98f6d752e1c6e4b5980619261b", + "tag": "fetchFromGitHub", + "owner": "luismbo", + "repo": "wn-mode", + "sha256": "0nmzh6dynbm8vglp4pqz81s2z68jbnasvamvi1x1iawf8g9zfyix", "rev": "6e7029b0d5773a79914a289937be068784931cad" }, "recipe": { "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4", "deps": [ @@ -12659,28 +13491,30 @@ }, "goto-last-change": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/camdez/goto-last-change.el.git", - "sha256": "e59710be1894faac74782478467008a0ed5317b8d2a7b383faf1b4a3f6a61fb8", + "tag": "fetchFromGitHub", + "owner": "camdez", + "repo": "goto-last-change.el", + "sha256": "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5", "rev": "58b0928bc255b47aad318cd183a5dce8f62199cc" }, "recipe": { "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.1", "deps": [] }, "flymake-css": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-css.git", - "sha256": "25fb26439cadc5694166f34e45fe71d0274a40c749f068b846dd9e768192a295", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-css", + "sha256": "054ws88fcfz3hf3cha7dvndm52v5n4jc4vzif1lif44xq0iggwqa", "rev": "3e56d47d3c53e39741aa4f702bb9fb827cce22ed" }, "recipe": { "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -12689,14 +13523,15 @@ }, "auto-yasnippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/auto-yasnippet.git", - "sha256": "b8ddb6d6eafb2160713776764967f65f59cffc2d1e12248e167e6936903c7958", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "auto-yasnippet", + "sha256": "0n3r7j83csby2s7284hy5pycynazyrkljxkn6xqn08gvxbbbdpdq", "rev": "5cc54edbe03c0061bf69883a3e39d3bb16019e0f" }, "recipe": { "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -12705,28 +13540,30 @@ }, "emacsql-sqlite": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i", "rev": "03d478870834a683f433e7f0e288476748eec624" }, "recipe": { "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [] }, "haskell-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/haskell/haskell-snippets.git", - "sha256": "c619b88d3087f574a5516f3bbacd0512bd9fde07143aac42b99aed8d773e6d2c", + "tag": "fetchFromGitHub", + "owner": "haskell", + "repo": "haskell-snippets", + "sha256": "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6", "rev": "bcf12cf33a67ddc2f023a55072859e637fe4fa25" }, "recipe": { "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -12735,14 +13572,15 @@ }, "typed-clojure-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/typedclojure/typed-clojure-mode.git", - "sha256": "199dab92d6bc3033f5ccd2b8a6c8f2b323706b5d6535729ebb6658a2c601e947", + "tag": "fetchFromGitHub", + "owner": "typedclojure", + "repo": "typed-clojure-mode", + "sha256": "1risfbsaafh760vnl4ryys91g4k78g0fxj2zlcndpxxv34gwkhy7", "rev": "00bc20db78901204a67722ab47482660e36d0463" }, "recipe": { "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -12752,14 +13590,15 @@ }, "vim-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/emacs-vim-region.git", - "sha256": "a935f83c55fa7257b30c93cef5eb70463059b6a3ab74a850552b565f4c7fa09c", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "emacs-vim-region", + "sha256": "1750gx65ymibam8ahx5blfv5jc26f3mzbklk1jrmfwpsalyghdd9", "rev": "e5359cc584a0cfa9270a76866a5eff7d3f44eb3d" }, "recipe": { "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -12774,49 +13613,52 @@ }, "recipe": { "sha256": "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "tumble": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/febuiles/tumble.git", - "sha256": "fea19a7c6970a71b315e8f6819992064f0afef19690260065dbefcce0b971246", + "tag": "fetchFromGitHub", + "owner": "febuiles", + "repo": "tumble", + "sha256": "0ihjjw5wxz5ybl3600k937pszw3442cijs4gbqqip9vhd5y9m8gy", "rev": "a1db6dac5720b9f468a79e0efce04f77c0a458e3" }, "recipe": { "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5", "deps": [] }, "aurel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/aurel.git", - "sha256": "f2caf606144e0d18bf755d4d490515d438ac465209077176de0fbc02dcb05df9", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "aurel", + "sha256": "01ig5v5f2xya7hyq678nd8j8x972yfbni813c0imxkkba996a2k7", "rev": "3458214e0d2942b03c2926de67ca06cbe42b37d0" }, "recipe": { "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [] }, "anaconda-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/anaconda-mode.git", - "sha256": "106ab7fe82ae79f3247d0a175da4a092e659c0c7aa269073e03db5959a0e1634", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "anaconda-mode", + "sha256": "0sj6cr2bghy80dnwgl7rg61abdlvgfzi0jjc7jrxz7fdzwkcq714", "rev": "2ad7c1ee5b786d900154982270e4c68a4fe5b404" }, "recipe": { "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -12829,14 +13671,15 @@ }, "js2-closure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jart/js2-closure.git", - "sha256": "8a40e9ad3574c56de369ef489c1652da94350caebd1505bf023c27501fc55034", + "tag": "fetchFromGitHub", + "owner": "jart", + "repo": "js2-closure", + "sha256": "0d2hqlgm09rw0azha5dxmq63b56sa8b9qj7gd7invibl6nnyjh4a", "rev": "e1b3e7db13285e63c3c428d87c018289352bd043" }, "recipe": { "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4", "deps": [ @@ -12845,28 +13688,44 @@ }, "drag-stuff": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/drag-stuff.git", - "sha256": "4cea54bcfe3d760a6bd738e40a5409789bd0072df661458ca0bcebe5fe4846a8", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "drag-stuff", + "sha256": "0wncdlc45flggn6sq5a95y7k6q11hy7zxp0ddhsjqccl30mdwax5", "rev": "3265e4fe93323bc9089d12db3d466d49bc44a99d" }, "recipe": { "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, + "dsvn": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/", + "sha256": "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq", + "rev": "1720849" + }, + "recipe": { + "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "clocker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/clocker.el.git", - "sha256": "773e6b16e868ae6988510a33a8ebdd5dfa846b1ff739efa9200af7afd2cc75c0", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "clocker.el", + "sha256": "1s05644m048clz0lxizzgarh1bkyjxr96b0mbpxi2p003322aw09", "rev": "6faf5a23dc9cbe506f21a11fae4f6c4bbb1d4b01" }, "recipe": { "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.10", "deps": [ @@ -12882,7 +13741,7 @@ }, "recipe": { "sha256": "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -12896,21 +13755,22 @@ }, "recipe": { "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.5", "deps": [] }, "tracking": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/circe.git", - "sha256": "617bc77c6fca10d815581e4a598e498c617c863604d30659b8fed4ebfdb8f9b6", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "circe", + "sha256": "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q", "rev": "ac1cddf946e0af90ab453dd816f7173e0d4000e5" }, "recipe": { "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1", "deps": [] @@ -12923,21 +13783,22 @@ }, "recipe": { "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "whitaker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/whitaker.git", - "sha256": "64956ae44a8e645555894001f9613d40f2c4a8bb03584f18cfec8a145d86dc05", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "whitaker", + "sha256": "01fwhrfi92pcrwc4yn03pflc9wj07mhzj0a0i5amar4f9bj6m5b4", "rev": "28172edce0f727f0f7f17d8ba71d5510d877bb45" }, "recipe": { "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -12946,14 +13807,15 @@ }, "company": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/company-mode/company-mode.git", - "sha256": "e02f89af12f8425fa23c5d9ee0874cc241308bb052286efcb3dd706ab4c91a5a", + "tag": "fetchFromGitHub", + "owner": "company-mode", + "repo": "company-mode", + "sha256": "08rrjfp2amgya1hswjz3vd5ja6lg2nfmm7454p0h1naz00hlmmw0", "rev": "e085a333867959a1b36015a3ad8e12e5bd6550d9" }, "recipe": { "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.12", "deps": [ @@ -12963,28 +13825,30 @@ }, "macro-math": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/macro-math.el.git", - "sha256": "8db36fd45ba8bad70377e4b826432ac2c6f96a103d38baa260048ad678e0ec04", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "macro-math.el", + "sha256": "0dgsl1x6r8m9vvff1ia0kmz21h0dji2jl5cqlpx1m947zh45dahj", "rev": "105e03c80290d1b88984b2d265a149a13d722920" }, "recipe": { "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "elscreen-mew": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/elscreen-mew.git", - "sha256": "48f717202e8261d8786b41d47847f54d4552c02a032659d733c7a038586dfcb8", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "elscreen-mew", + "sha256": "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh", "rev": "f66a2a5a8dd904791ede5133fdd183522b061bba" }, "recipe": { "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -12993,14 +13857,15 @@ }, "helm-backup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antham/helm-backup.git", - "sha256": "baeec59b5472d8ac4d86b36791ca65dc609ffbe64930e2d0f4a824816b487dc3", + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "helm-backup", + "sha256": "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76", "rev": "184026b9fe454aab8e7730106b4ca494fe307769" }, "recipe": { "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -13017,21 +13882,22 @@ }, "recipe": { "sha256": "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "rinari": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/eschulte/rinari.git", - "sha256": "897d16725048e216a432bf3beec17dc5d3975a3bcc09e4230b7569c4ce760fb8", + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rinari", + "sha256": "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk", "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" }, "recipe": { "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.11", "deps": [ @@ -13043,14 +13909,15 @@ }, "ucs-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/ucs-utils.git", - "sha256": "b595e2a4f08ca3fec2e7fb03bf5e91a57c9766d1156c527765fcd5ab1e7fedba", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ucs-utils", + "sha256": "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m", "rev": "cbfd42f822bf5717934fa2d92060e6e24a813433" }, "recipe": { "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.4", "deps": [ @@ -13061,14 +13928,15 @@ }, "string-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/string-utils.git", - "sha256": "635852a6853573c0a066dfbf4e0ce8f82c6d7c720ebbf5705bdfda85575ca6d7", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "string-utils", + "sha256": "03azfs6z0jg66ppalijcxl973vdbhj4c3g84sm5dm8xv6rnxrv2s", "rev": "3ae530143899f533a9ef5e1f26f28b577ebe72ee" }, "recipe": { "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.2", "deps": [ @@ -13084,35 +13952,37 @@ }, "recipe": { "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "egison-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/egisatoshi/egison3.git", - "sha256": "87323240534725aa4dc723685346c8f198a45007e15ebb311da4e3a8b192d7bf", + "tag": "fetchFromGitHub", + "owner": "egisatoshi", + "repo": "egison3", + "sha256": "16m7h477z10bmaymmgpj2id6l98iyrsp5wf69wd56534kh6qcajg", "rev": "6debb5f36074811a1b2f9c9741dc8c1f3bd869de" }, "recipe": { "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.5.10", "deps": [] }, "ido-occur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danil/ido-occur.git", - "sha256": "201119e1fafbf8bb68a1f0416b496df2a05fad249175d5a58438591b7d5e68f7", + "tag": "fetchFromGitHub", + "owner": "danil", + "repo": "ido-occur", + "sha256": "1xv8bryinn9qhjjxaxci4jnmz87jdm4nnhghl5lbpy7vzbhij490", "rev": "13dc79ac2bb148b9fcbb470509a06ad1cb7008bb" }, "recipe": { "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -13128,63 +13998,67 @@ }, "recipe": { "sha256": "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "outshine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/outshine.git", - "sha256": "d4c6610a0c2e63434b38868e5b0c191909b205083f4250c0f6fde1c2023fefe2", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outshine", + "sha256": "1v04iyx57w8scw3iqrivii7q0sh8sa7xacswdhd18mw9kvjrbj98", "rev": "cf1097692b3ea0367d3c821769399fec5831e200" }, "recipe": { "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "ack-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chumpage/ack-menu.git", - "sha256": "f76d463f0dbe41a65c85aacd063ebb33f642d5ff262070d6bf9d7e250a803818", + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "ack-menu", + "sha256": "0hib4a8385q2czi1yqs0hwnva2xi7kw0bdfnrgha1hrl30rilp2f", "rev": "37e9979eb65e3803fc00829377397b4e6f2bd059" }, "recipe": { "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.3", "deps": [] }, "golden-ratio": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/golden-ratio.el.git", - "sha256": "276af59970a0fcf2655aea7688c9d4e02d9073227445a71c32e97a16005aeb5e", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "golden-ratio.el", + "sha256": "00igv83hiyx7x3pf2grmjpd379brn33fm85f05k104mkkrhg99nm", "rev": "79b1743fc1a2f3462445e9ddd0a869f30065bb6d" }, "recipe": { "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "evil-mark-replace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/evil-mark-replace.git", - "sha256": "d23ac7591ffca8079c6a16021cca7c9b32725b3622e9e8c6f3cbe3c30572d212", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-mark-replace", + "sha256": "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv", "rev": "56cf191724a3e82239ca47a17b071c20aedb0617" }, "recipe": { "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.4", "deps": [ @@ -13193,14 +14067,15 @@ }, "helm-ag": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-ag.git", - "sha256": "fe494f3515f8d4f4e8b509739390ebd9525a81dafa2c76fbf35678a4e11563dd", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-ag", + "sha256": "11m1r4bcwk3w2g8wsgc1fbmkj5c30qfljwxhg1zw3hakvmycnpg6", "rev": "47aca7f291eccd81f1b1a4a8f96b8d8caec5242e" }, "recipe": { "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.48", "deps": [ @@ -13210,14 +14085,15 @@ }, "direx-grep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/direx-grep.git", - "sha256": "b0b822f61e4ec1bc51d5c455ab319740392848446034a1ccd6325eeb31808d6b", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "direx-grep", + "sha256": "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h", "rev": "1109a512a80b2673a70b18b8568514049017faad" }, "recipe": { "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -13232,7 +14108,7 @@ }, "recipe": { "sha256": "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -13245,21 +14121,22 @@ }, "recipe": { "sha256": "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "cmake-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Kitware/CMake.git", - "sha256": "22770d107b8e17d8360f8f57ec45b1c2a0a7770d4cb9489c635ac17a109ac03a", + "tag": "fetchFromGitHub", + "owner": "Kitware", + "repo": "CMake", + "sha256": "054i416l7kwdnwlb55ya89zpnsyxg9h4b2ll3d4dhx2qpph7w9s2", "rev": "fd7180f0c0c2554c31afda235469df986a109fe4" }, "recipe": { "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.4.1", "deps": [] @@ -13272,7 +14149,7 @@ }, "recipe": { "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -13281,28 +14158,30 @@ }, "interleave": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rudolfochrist/interleave.git", - "sha256": "721d21a98b52285b18b5ed2e389f0ef4a126d32e7d86dbc81fdcb2af137180f6", + "tag": "fetchFromGitHub", + "owner": "rudolfochrist", + "repo": "interleave", + "sha256": "1bidhc4pgszx2gqsm125nw7i5ysy0mzc1ifcfkfgns1cpjr74rpn", "rev": "d7bfe03dfdfbdd2abd0a96174cacd2ef1ecd2041" }, "recipe": { "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "eyebrowse": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/eyebrowse.git", - "sha256": "47e108da168fe02e2d186f98ac2b10ca36ec682762a8eb0bf409b109c5e68549", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "eyebrowse", + "sha256": "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7", "rev": "6d75409a81a6447765ad2171e3d0b5a272e1f207" }, "recipe": { "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.9", "deps": [ @@ -13318,91 +14197,97 @@ }, "recipe": { "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "speech-tagger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cosmicexplorer/speech-tagger.git", - "sha256": "f4073504fe97f141710263a970242076a4dbdc5e7e886c6aeaf62a2c7070ee2a", + "tag": "fetchFromGitHub", + "owner": "cosmicexplorer", + "repo": "speech-tagger", + "sha256": "1k6c7450v0ln6l9b8z1hib2s2b4rmjbskynvwwyilgdnvginfhi3", "rev": "e6595bd0eea93ede1534c536c1746c9cf763b73c" }, "recipe": { "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.0", "deps": [] }, "whole-line-or-region": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/whole-line-or-region.git", - "sha256": "2d30e199cdd52d3ad438df540340274c13f7bbf289f1f77147a836b2f0dce046", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "whole-line-or-region", + "sha256": "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d", "rev": "a60e022b30c2f4d3118bcaef1adb77b90e0ca941" }, "recipe": { "sha256": "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [] }, "git-link": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sshaw/git-link.git", - "sha256": "1fac6cb1bc50a7bc4ddcb29c32f79ae0c1aedce2754c6a29f3698b1cfa463c9c", + "tag": "fetchFromGitHub", + "owner": "sshaw", + "repo": "git-link", + "sha256": "171w8vx1r2v9yclnlk3mwbfaxhg0kbvk575jvi6vr9shpjqnrb0z", "rev": "8ed8f209fe40b3852613691bd968484d6da79e5b" }, "recipe": { "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [] }, "evil-nerd-commenter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/evil-nerd-commenter.git", - "sha256": "7b486a366a536fc2fa6e879bda4a9a76cef552e673879c2056e4361b9f644c33", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-nerd-commenter", + "sha256": "1c8zh5vykl4v57jrxcpyrbd1ih6nv306sfmb6ihiak6ncvllp8cx", "rev": "770981cffd7e8d967e6291c738534a04bcd7f753" }, "recipe": { "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2", "deps": [] }, "aes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sauermann/emacs-aes.git", - "sha256": "1ff74e70eea1b566cc45c5c330d03b68c307bae9703c96714a1bacdfde4e837a", + "tag": "fetchFromGitHub", + "owner": "Sauermann", + "repo": "emacs-aes", + "sha256": "1y9bw2vkl952pha2dsi18swyr94mihgwlcg5m8hg4d5bfg2fzcb2", "rev": "d78796facc034b09f379cda5f27090f3139305ec" }, "recipe": { "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [] }, "orgit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/orgit.git", - "sha256": "e1665631714e9d84f9341d3ec21945862b93db4418411ba4b404ec125781f934", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "orgit", + "sha256": "0d7rh5bi5v04njj1nh8q8kdr6aw68lcw4ghx6kwq97aff4qmcrp1", "rev": "731c5cb4f1c7e2ee5b819ca159c0c01e2b306c73" }, "recipe": { "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -13414,28 +14299,30 @@ }, "jump-to-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ongaeshi/jump-to-line.git", - "sha256": "7a6057656a200f741cdaf7c8c694d4f4838f3dd0d3e25e84b9a10e315ea537e9", + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "jump-to-line", + "sha256": "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s", "rev": "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8" }, "recipe": { "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "pkg-info": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/pkg-info.el.git", - "sha256": "05e8680852c3ad9d0566bb23cb3bb6a49c3e675a1bf72a5b5f50ef0a97f0d50e", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "pkg-info.el", + "sha256": "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1", "rev": "f9bb471ee95d1c5fe9adc6b0e98db2ddff3ddc0e" }, "recipe": { "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [ @@ -13444,14 +14331,15 @@ }, "evil-space": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/linktohack/evil-space.git", - "sha256": "33e36e204effe277eae7a8579f14b2732fdf2e6d089864bae939e10db65590e5", + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-space", + "sha256": "1rchanv0vq9rx6x69608dlpdybvkn8a9ymx8wzm7gqpz9qh6xqrk", "rev": "f77860fa00662e2def3e1885adac777f051e1e61" }, "recipe": { "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6", "deps": [ @@ -13460,28 +14348,30 @@ }, "wcheck-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tlikonen/wcheck-mode.git", - "sha256": "356171bba2026d943c826723a147decafa7cf12a94c1e789acd0b5ed539922d1", + "tag": "fetchFromGitHub", + "owner": "tlikonen", + "repo": "wcheck-mode", + "sha256": "1l92k59yvdfhmj4yghcl5bqprynavr3s28v7h8y98v82laxp2q9m", "rev": "866954f040217059607633cf4c0f5e8a1ff5fd9a" }, "recipe": { "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2015.11.29", "deps": [] }, "overseer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/overseer.el.git", - "sha256": "8a582f4a661ab11cb7300c7a568a97fe6fc3a8fcfbc526d1e1de7fd69e8bf9b8", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "overseer.el", + "sha256": "0jz8p6bwpfncxwi6ssmi6ngx8sjjica565i6ln0gsr5i11zfb7nx", "rev": "cf532a4e373e3da2077ccbaa48d4bfacd14661ba" }, "recipe": { "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -13498,35 +14388,37 @@ }, "recipe": { "sha256": "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "win-switch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/genovese/win-switch.git", - "sha256": "7efc05e7e7315d63e8cf0e8e020b2ae1b211d3ce7e7d2584ddbd7dc86214cd4b", + "tag": "fetchFromGitHub", + "owner": "genovese", + "repo": "win-switch", + "sha256": "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i", "rev": "a0da96c23e8775a2dfdbe55ed3ec5b57f1ebb26a" }, "recipe": { "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "nrepl-sync": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/phillord/lein-sync.git", - "sha256": "68865267e6eadbac115128960110dfc8ad4e2f35bbd78e190a24a35a6d5beb6a", + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lein-sync", + "sha256": "1l07nrlfd5qj8jnqacjba7mb6prapg8d8h3881l3kb66sn02ahgy", "rev": "471a08df87687a3eab61b3b8bf25a2e0962b5d5b" }, "recipe": { "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -13535,14 +14427,15 @@ }, "erefactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-erefactor.git", - "sha256": "313db0762385e6a74ffb52f8c63e729a1f2a5c61ec2e036b9c3e83eaec31259e", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-erefactor", + "sha256": "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i", "rev": "fde3fd42c815c76e8015f69518a92f6bfcfde990" }, "recipe": { "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -13551,28 +14444,30 @@ }, "identica-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gabrielsaldana/Emacs-Identica-mode.git", - "sha256": "47664da51942255bb81207362c4da74e36190b6a83be33859df273ab1bc1c29b", + "tag": "fetchFromGitHub", + "owner": "gabrielsaldana", + "repo": "Emacs-Identica-mode", + "sha256": "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk", "rev": "cf9183ee11ac922e85c7c908f04e2d00b03111b3" }, "recipe": { "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [] }, "mentor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skangas/mentor.git", - "sha256": "1d4e392c0c241512df945907939bb8e0be2b382f7642dfebf8414149b1dd4b1b", + "tag": "fetchFromGitHub", + "owner": "skangas", + "repo": "mentor", + "sha256": "1y4ra5z3ayw3w7dszzlkk3qz3nv2jg1vvx8cf0y5j1pqpx8vy3jf", "rev": "bd8e4b89341686bbaf4c44680bbae778b96fb8f0" }, "recipe": { "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] @@ -13585,21 +14480,22 @@ }, "recipe": { "sha256": "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ac-alchemist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-alchemist.git", - "sha256": "703766c49a96deaee2b3141da5bd95b6a1ab22b64af1c09124e3f32b8ec01442", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-alchemist", + "sha256": "0a8widshsm39cbala17pmnk1sazazhhyqppwalysli170whk49c5", "rev": "31114f3e1e7cc1e101d0b81819d7876d8861df92" }, "recipe": { "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -13610,14 +14506,15 @@ }, "jvm-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/martintrojer/jvm-mode.el.git", - "sha256": "036952c019f79cc09f3b236d524ca98bd76f76ee5c4435fda5a1d460b6b6059d", + "tag": "fetchFromGitHub", + "owner": "martintrojer", + "repo": "jvm-mode.el", + "sha256": "1785nsv61m51lpykai2wxrv6zmwbm5654v937fgw177p37054s83", "rev": "16d84c8c80bb214367bae6ed30b08756521c27d6" }, "recipe": { "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -13627,44 +14524,47 @@ }, "replace-symbol": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmastenbrook/replace-symbol-el.git", - "sha256": "2e0f5f9f06bab79ffc2ee42801d4f540e36c9cf99c16b80bbcb1e5c73c1cff6a", + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "replace-symbol-el", + "sha256": "1pxvwiqhv2nmsxkdwn9jx7na1vgk9dg9yxidglxpmvpid6fy4qdk", "rev": "153197a4631a1ed0c3485d210efb41b4b727326c" }, "recipe": { "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "which-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/justbur/emacs-which-key.git", - "sha256": "966381db690345e6e7aceee095b37de26fbd18394ac9c681da8061cc95260372", - "rev": "777c28444a2497733a2fb62308fa5e2ef434f427" + "tag": "fetchFromGitHub", + "owner": "justbur", + "repo": "emacs-which-key", + "sha256": "11mi23djk690n4984hk3pv61rrkdnxpkmywsqibi3xki27v2al36", + "rev": "ad60a6c7206752d9b9cf4ba17c2293dba365e9fb" }, "recipe": { "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "0.7", + "version": "0.8", "deps": [ "emacs" ] }, "esxml": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tali713/esxml.git", - "sha256": "17355d533a4ee874430af42bc57622faf576a5855de598a3b35ac03117c59b4c", + "tag": "fetchFromGitHub", + "owner": "tali713", + "repo": "esxml", + "sha256": "0k4vqlbk3h2snfiriraxhnjpdxgs49vcaazl191p9s2f799msd8p", "rev": "cd096242fadbf878d9428786306e54ed60522b43" }, "recipe": { "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -13673,28 +14573,30 @@ }, "fwb-cmds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/fwb-cmds.git", - "sha256": "755678b6cbad8999c37fb907b7d680abbb4aba70f3faf0248768a44252f61623", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "fwb-cmds", + "sha256": "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm", "rev": "93504c2022799a84cc14d598e1413f8d9df4ee0e" }, "recipe": { "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [] }, "notmuch-labeler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/notmuch-labeler.git", - "sha256": "4042f18604b37bace249928115b040dcbb99b0fa500f95b0abe31220eb484345", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "notmuch-labeler", + "sha256": "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18", "rev": "d65d1129555d368243df4770ecc1e7ccb88efc58" }, "recipe": { "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -13703,14 +14605,15 @@ }, "helm-c-yasnippet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/helm-c-yasnippet.git", - "sha256": "2ef985f43c054e17002c5fab4b904bbb2c3fff18c36dd7266ef1355517410581", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-c-yasnippet", + "sha256": "108584bmadgidqkdfvf333zkyb5v9f84pasz5h01fkh57ks8by9f", "rev": "1fa400233ba8e990066c47cca1e2af64bd192d4d" }, "recipe": { "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.7", "deps": [ @@ -13721,14 +14624,15 @@ }, "codic": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-codic.git", - "sha256": "bba3722e294d452a6aaece2665b2de49e4f5aa61fe5c2069bb0b7ecf55c3af12", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-codic", + "sha256": "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz", "rev": "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557" }, "recipe": { "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [ @@ -13738,14 +14642,15 @@ }, "spaceline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TheBB/spaceline.git", - "sha256": "91c54a898a0c631c2cc0e1e6cf5c9480a3fcd90209891fb490593d4105418e0f", + "tag": "fetchFromGitHub", + "owner": "TheBB", + "repo": "spaceline", + "sha256": "1xyhayzr2mbsq9w448bxy7ja9cgy3vrgh70w36nqrrkl1pi7lm3b", "rev": "2cc31a94b8b8c3eefc81ab409071365d120d2535" }, "recipe": { "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.2", "deps": [ @@ -13758,70 +14663,75 @@ }, "auto-complete-clang-async": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Golevka/emacs-clang-complete-async.git", - "sha256": "5fbafb006c891827a05306a500b04efe68a369d68433bd882291ffb90dc10ccc", + "tag": "fetchFromGitHub", + "owner": "Golevka", + "repo": "emacs-clang-complete-async", + "sha256": "1kp2l1cgzlg2g3wllz4gl1ssn4lnx2sn26xqigfrpr8y5rj2bsfj", "rev": "a5114e3477793ccb9420acc5cd6a1cb26be65964" }, "recipe": { "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [] }, "gscholar-bibtex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/gscholar-bibtex.git", - "sha256": "13f709143302e9840486acbc9a4801a2ae63815d9b5e4e3262e0bf248c10cdb5", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "gscholar-bibtex", + "sha256": "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk", "rev": "00b32521de3aa689bc58516ae10ba7f3ef1b6c92" }, "recipe": { "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [] }, "anyins": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antham/anyins.git", - "sha256": "3845cb0352860e1402a476b5a29f35ae3cdcc969a87dc7916ca467e3ff416896", + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "anyins", + "sha256": "1z6l72dn98icqsmxb3rrj6l63ijc3xgfa3vdl19yqa2rfy6ya721", "rev": "1ff4673ca197c9bf64c65f718573bf7d478fc562" }, "recipe": { "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "d-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode.git", - "sha256": "66f36dfcd8e643efa275b320e67448c9dee14db9ce7b84f1d5e842c92f33ef2a", + "tag": "fetchFromGitHub", + "owner": "Emacs-D-Mode-Maintainers", + "repo": "Emacs-D-Mode", + "sha256": "0apg6cpwjhp8spqq8yyfp56y3pn991sfc85kfnifyhz6v3y6vwv6", "rev": "9b22a9373fc38cf3bc1ea9a814bcd8191d4c6626" }, "recipe": { "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.6", "deps": [] }, "google-this": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/emacs-google-this.git", - "sha256": "d9a1d487a8444e1f3a4df204949ce3f4a7a2b624bb327de7e225fc71b89e835c", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "emacs-google-this", + "sha256": "0j31062zfqmcd0zsbp19f3h7gq7dn78sg4xf2x838sr9421x6w8x", "rev": "879ab00f6b5584cfe327eb1c04cd9ff2323b3b11" }, "recipe": { "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10", "deps": [ @@ -13836,35 +14746,37 @@ }, "recipe": { "sha256": "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "dired-fdclone": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/dired-fdclone.el.git", - "sha256": "005be73159ffda7f811c8f6c88b7f4885c761892d0082a4b3fe7c12710202c53", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "dired-fdclone.el", + "sha256": "0lrc4082ghg77x5jl26hj8c7cp48yjvqhv4g3j0pznpzb4qyfnq0", "rev": "8144c013d46c55b0471f31cdc3b5ead303286cbf" }, "recipe": { "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.2", "deps": [] }, "package-safe-delete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/package-safe-delete.git", - "sha256": "2d9fcfbf1a808d9167cdf283d87e0122fcaed5dfcc2787e5bb5596ba4c33bbdd", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "package-safe-delete", + "sha256": "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd", "rev": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194" }, "recipe": { "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.7", "deps": [ @@ -13874,56 +14786,60 @@ }, "emacsc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/emacsc.git", - "sha256": "92f8550024d3349d4356e13684218e7db463a5663dff83cfb2bf4ce6cebacce4", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "emacsc", + "sha256": "1r6cpb7fck5znb7q7zrxcsjn7d3xiqhq8dp1ar1rsd6k4h05by4j", "rev": "69607bdc3a0c070e924a3bcac93180f917992368" }, "recipe": { "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.20131027", "deps": [] }, "fuzzy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/auto-complete/fuzzy-el.git", - "sha256": "5ae7426af9e7edc1fa90f5dadb51d8f0bef298e506292eef78dcb2a260f2f5bc", + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "fuzzy-el", + "sha256": "1g7my9ha5cnwg3pjwa86wncg5gphv18xpnpmj3xc3vg7z5m45rss", "rev": "939f4e9a3f08d83925b41dd3d23b2321f3f6b09c" }, "recipe": { "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "evil-snipe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hlissner/evil-snipe.git", - "sha256": "2f9648b97305fdcf46c1713ab2a94ee63e20256cae25e8ed5bad65b9f67d7490", + "tag": "fetchFromGitHub", + "owner": "hlissner", + "repo": "evil-snipe", + "sha256": "143lgpvbjrddbgnyh9dfdhjj0gp69slv4fkiq53czz85ffwli5ig", "rev": "9df049eb83789ea5711632672e077cebf4c54e14" }, "recipe": { "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "jedi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-jedi.git", - "sha256": "c5b505b764297f5313eb4c54f544d28b7c36eede4768c43f03605cee343cbcbd", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi", + "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7", "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" }, "recipe": { "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.7", "deps": [ @@ -13934,14 +14850,15 @@ }, "cask-package-toolset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/cask-package-toolset.el.git", - "sha256": "f0dcebf81debbe5d2137b72aba544f1f0bf3b283104f545cc45488b840022e1b", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "cask-package-toolset.el", + "sha256": "1182z9h6xk8mj2blq4x4429kjg7b9s54gdhza4cdb6jk9409bdrn", "rev": "27467a52e243f3ba4024ce19d8e1f4dbd5dd7c0b" }, "recipe": { "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.1", "deps": [ @@ -13957,14 +14874,15 @@ }, "wc-goal-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bnbeckwith/wc-goal-mode.git", - "sha256": "fcd4a50ddc14002f5a03b18e18288b21e5c64ad6b560669281b22ba4bd98ce56", + "tag": "fetchFromGitHub", + "owner": "bnbeckwith", + "repo": "wc-goal-mode", + "sha256": "0mnfk2ys8axjh696cq5msr5cdr91icl1i3mi0dd2y00lvh6sbm7w", "rev": "a8aa227b1a692dd6399855add84b5e37f6c5d9cb" }, "recipe": { "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1", "deps": [] @@ -13978,35 +14896,37 @@ }, "recipe": { "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "window-numbering": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/window-numbering.el.git", - "sha256": "de22abd1050ecf9930e9a91b8d7adc4bc261902cb996ef71f4d0b4c6b797a82b", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "window-numbering.el", + "sha256": "1rz2a1l3apavsknlfy0faaivqgpj4x9jz3hbysbg9pydpcwqgf64", "rev": "653afce73854d629c2b9d63dad73126032d6a24c" }, "recipe": { "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.2", "deps": [] }, "company-math": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vspinu/company-math.git", - "sha256": "7e4a48e63736c1de5e5fd363beb4267b3fffd16673477dbe07d6bda7c1052e01", + "tag": "fetchFromGitHub", + "owner": "vspinu", + "repo": "company-math", + "sha256": "009f0p0sggfn0yz7sivkcv8zygvv4ssbwqykbxgdxh9n6zk4hjky", "rev": "e82c91d960f9418774959f299d0e064fcb6ba0ad" }, "recipe": { "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -14022,35 +14942,37 @@ }, "recipe": { "sha256": "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "minibuffer-complete-cycle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/minibuffer-complete-cycle.git", - "sha256": "d3951a23cacadd51805ef40315fedfdd35c9d6ae20f6636f3bf337de0733cbff", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "minibuffer-complete-cycle", + "sha256": "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk", "rev": "3df80135887d0169e02294a948711f6dfeca4a6f" }, "recipe": { "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.25.20130814", "deps": [] }, "imgix": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/imgix/imgix-emacs.git", - "sha256": "0896e37823f0458605d3241487c0064f1cf7fe0501f0fc60d61f4eb0009c26a9", + "tag": "fetchFromGitHub", + "owner": "imgix", + "repo": "imgix-emacs", + "sha256": "19jqcbiwqknlpij9q63m1p69k4zb3v1qdx0858drprc2rl1p55cd", "rev": "cf3994f69b34a36f627e9ceaf3e6f4309ee9ec30" }, "recipe": { "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -14063,14 +14985,15 @@ }, "bog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kyleam/bog.git", - "sha256": "a47d1a691743a6edaf001b6f863e251db0c4113656865beee1b33fac34433a1a", + "tag": "fetchFromGitHub", + "owner": "kyleam", + "repo": "bog", + "sha256": "1jm7qg7c75yrynrj66304p6ajamr8qxpaqbx9mjw5025936gsd18", "rev": "19c70efa3e4e9bd27308f68bdae62dff16852c0f" }, "recipe": { "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -14079,14 +15002,15 @@ }, "fixmee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/fixmee.git", - "sha256": "69aa279b81af9eac7a9c3283238249bb651cb96b447b4989c274b2efb8a6746d", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "fixmee", + "sha256": "1hnxdmzqmnp3dr7mpr58pjmigykb3cxwphxzia013kfi37ipf5a0", "rev": "aa3be8ad9fcc9c0c7ff15f70cda4ba77de96dd74" }, "recipe": { "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.6", "deps": [ @@ -14106,21 +15030,22 @@ }, "recipe": { "sha256": "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "relax": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/relax.el.git", - "sha256": "c6c86243ef3c1d6012d19c56b3cd3b144c4aa57fc0e570d3d664211722870b53", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "relax.el", + "sha256": "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66", "rev": "6e33892623ab87833082262321dc8e1977209626" }, "recipe": { "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -14129,28 +15054,30 @@ }, "omni-kill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AdrieanKhisbe/omni-kill.el.git", - "sha256": "0b76288138867c098c55dd666567a5b7eccf7783d181aef968c9cbb6fe8ded5a", + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-kill.el", + "sha256": "07grj81alrr6qgs3jmqkjzphkvi26w6jm5hf1f5wyx7h6q293ady", "rev": "8a1145b58b4736c9163bcd5b28c8fea80b2ea97b" }, "recipe": { "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.3", "deps": [] }, "git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/git.el.git", - "sha256": "7ae1a96861dfc809f2c0218ad5fe0ead974d25752d3948ebc029f29c9b3a2e3b", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "git.el", + "sha256": "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5", "rev": "8b7f1477ef367b5b7de452589dd9a8ab30150d0a" }, "recipe": { "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -14161,14 +15088,15 @@ }, "operate-on-number": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/operate-on-number.el.git", - "sha256": "abdd6093b640c9564b31c520a90f24f1a547e43834ab5761a0d0ecc7da4c008b", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "operate-on-number.el", + "sha256": "12q09kdcgv6hl1hmgarl73j4g9gi4h7sj865655mdja0ns9n1pdb", "rev": "6a17272e2b6e23260edb1b5eeb01905a1f37e0a6" }, "recipe": { "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] @@ -14181,7 +15109,7 @@ }, "recipe": { "sha256": "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -14191,14 +15119,15 @@ }, "browse-url-dwim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/browse-url-dwim.git", - "sha256": "38ab7b880e6ab926f6d95fc0197998b59e6d5219ac169fa32d327c56e91dd48c", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "browse-url-dwim", + "sha256": "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y", "rev": "11f1c53126619c7ef1bb5f5d6914ce0b3cce0e30" }, "recipe": { "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.8", "deps": [ @@ -14207,28 +15136,30 @@ }, "emmet-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/smihica/emmet.git", - "sha256": "97a30c99cc4763805a2e5da53125f5a059898ee3b95e6d940d6b0fdd7fdaa9e0", + "tag": "fetchFromGitHub", + "owner": "smihica", + "repo": "emmet", + "sha256": "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi", "rev": "bf76d717c60f33d223cdac35513105e9f9244885" }, "recipe": { "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.8", "deps": [] }, "edbi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-edbi.git", - "sha256": "3aad067e7805c47c47a9dd9467d1b94b8813d86e19642e03d2431d1291c1c377", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-edbi", + "sha256": "0xy3q68i47a3s81jwr0rdvc1722bp78ng56xm53pri05g1z0db9s", "rev": "39b833d2e51ae5ce66ebdec7c5425ff0d34e02d2" }, "recipe": { "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -14239,14 +15170,15 @@ }, "markdown-toc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/markdown-toc.git", - "sha256": "2d82c36f88564b6c2c4795b48eeb6a3b16423783f932381cb11c2542e3fcc7f1", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "markdown-toc", + "sha256": "1syvz866xb0b0c3qkf786qzin4r27yppx0vmm9vx7rr0nfz7prz0", "rev": "30b9cb4b79b210e150c4e2774ce2ef1a6c5230e4" }, "recipe": { "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.8", "deps": [ @@ -14257,14 +15189,15 @@ }, "ac-html": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cheunghy/ac-html.git", - "sha256": "43464e45c5da6071edd5ae6a0a593727e655ac368b0591bf26c08252bd0041c6", + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "ac-html", + "sha256": "19v9515ixg22m7h7riix8w3vyhzax1m2pbwdirp59v532xn9b0cz", "rev": "415a78c3b84855b0c0411832d21a0fb63239b184" }, "recipe": { "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.31", "deps": [ @@ -14274,14 +15207,15 @@ }, "swiper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/swiper.git", - "sha256": "75b1febbf2e1ed9dc88ed2d8e6a3ce9ae842b8588ea0b6f19a526f14e0a050cd", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper", + "sha256": "1kahl3h18vsjkbqvd84fb2w45s4srsiydn6jiv49vvg1yaxzxcbm", "rev": "706349fcfae297ee285552af9246bc0cf00d9b7f" }, "recipe": { "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -14290,28 +15224,50 @@ }, "eldoc-eval": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/eldoc-eval.git", - "sha256": "73c7137585afacafec8da5f4a98ef86afcaf88798c7a5d89e7f3b3644c6f09ba", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "eldoc-eval", + "sha256": "1fh9dx669czkwy4msylcg64azz3az27akx55ipnazb5ghmsi7ivk", "rev": "deca5e39f31282a06531002d289258cd099433c0" }, "recipe": { "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, + "elm-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jcollard", + "repo": "elm-mode", + "sha256": "0asry7b5s1mj0hpvwhazrn7l1ipyzm0sv4jp6jxshsjvmy6mgxwd", + "rev": "51f0dabb23b924725744f36501468b2017972f56" + }, + "recipe": { + "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "0.5.0", + "deps": [ + "emacs", + "f", + "let-alist", + "s" + ] + }, "helm-descbinds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-descbinds.git", - "sha256": "77c9fd1ae420adadf73826a11e7a73cddb53ffc2d1cc42aae0a20709b8daa2b2", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-descbinds", + "sha256": "1cm2vaw0j1x2w2m45k6iqbzm7nydfdx1x89673vsvb90whdgvjbp", "rev": "5d8e84e6c047ce8a042fdcd827abb421f4848ac7" }, "recipe": { "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.08", "deps": [ @@ -14320,14 +15276,15 @@ }, "wispjs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/wispjs-mode.git", - "sha256": "d56c52ca1757ed777470ca389a175936c7162aec25106242cf2b9b75ff27dc1b", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "wispjs-mode", + "sha256": "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x", "rev": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f" }, "recipe": { "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -14336,28 +15293,30 @@ }, "neotree": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jaypei/emacs-neotree.git", - "sha256": "db74bef5fc7295191f5aea67dc5b572796a73d8a49383d9a760a5ce56ca439c8", + "tag": "fetchFromGitHub", + "owner": "jaypei", + "repo": "emacs-neotree", + "sha256": "1gmi0xxwkh33w5gxc8488m1vv6ycizqhlw1kpn81zhqdzzq3s06n", "rev": "c4f32b489fb1f5f00897a7dbb58a27ee704f5493" }, "recipe": { "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [] }, "magit-topgit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-topgit.git", - "sha256": "636089034ec8e55e4b01c77c8c44ee723eb258f340bdaac44c7f5b78f7404136", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-topgit", + "sha256": "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33", "rev": "732de604c31c74e9da24616428c6e9668b57c881" }, "recipe": { "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.1", "deps": [ @@ -14367,14 +15326,15 @@ }, "express": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/express.git", - "sha256": "1311be097f5bdd16d2fdccf6e1fd7fac6af8a58b2420a1c23c6b114616f37f61", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "express", + "sha256": "106yh793scbyharsk1dvrirkj3c6666w8jqilpkaz78vwyw3zs5y", "rev": "e6dc9abdc395ef537408befebeb4fd3ed4ee5c60" }, "recipe": { "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.0", "deps": [ @@ -14383,14 +15343,15 @@ }, "company-web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/company-web.git", - "sha256": "b9fc754c76b45fac12bcbb321c67c7115f6d0f492d46cc5643040ef27239132c", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "company-web", + "sha256": "0b0k75rg43h48dbcqiid947nspqiqxkiqcmvph9aqpxlfr67bz5r", "rev": "ffb6b969813041d2d90680a7696a9e0208eaed61" }, "recipe": { "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -14402,14 +15363,15 @@ }, "helm-recoll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-recoll.git", - "sha256": "01c2710f5024844700c111b5bf148b0e06ea0e0c28d80705fcf69d8d7bd57c99", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-recoll", + "sha256": "16bwsmxqv7gnzh2hgn181h7fl1hficabzd8iq404g114a07p3hh1", "rev": "957a099b9425b91d1c6a1fc43110aa5fc834e2e1" }, "recipe": { "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -14424,21 +15386,22 @@ }, "recipe": { "sha256": "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "emr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/emacs-refactor.git", - "sha256": "05c1737bd3a3f0fcae7cf73e133fe4aec0c1cbe7ebceb870eb3ba5d82c86d349", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "emacs-refactor", + "sha256": "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4", "rev": "fd20fc1887e2ebcf752f0170b1f3bf697043fd4b" }, "recipe": { "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.6", "deps": [ @@ -14455,14 +15418,15 @@ }, "emacs-eclim": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senny/emacs-eclim.git", - "sha256": "305d13f0849c092a0f78e09df2a56d50d67375c66ea98ffcd6894b4ffe40bbf4", + "tag": "fetchFromGitHub", + "owner": "emacs-eclim", + "repo": "emacs-eclim", + "sha256": "0b9hr3xg53nap6sik9d2cwqi8vfwzv8yqjcin4hab6rg2fkr5mra", "rev": "c5c7272ae30e5017ebd08d4e03508abc6b23bf4c" }, "recipe": { - "sha256": "0lj91lfhiy6hwglv62bzqk2qjqg3dvwv0nff6cbv0za3zdwdj5yv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "sha256": "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -14474,28 +15438,30 @@ }, "typo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/typoel.git", - "sha256": "621610add50d3dc6e0ddf691b78884e5d746e0d3cbf1ee9f083f16c8f2230dca", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "typoel", + "sha256": "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2", "rev": "e72171e4eb0b9ec80b9dabc3198d137d9fb4f972" }, "recipe": { "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "foreman-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/foreman-mode.git", - "sha256": "89538f300cc0086d7c3ae0ea23c34c020954e7488897ccadc3dcef25dcf233a5", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "foreman-mode", + "sha256": "199kybf2bvywqfnwr5w893km82829k1j7sp079y6s2601hq8ylw9", "rev": "e90d2b56e83ab914f9ba9e78126bd7a534d5b8fb" }, "recipe": { "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -14508,14 +15474,15 @@ }, "timesheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tmarble/timesheet.el.git", - "sha256": "e4845d4a0dbac894dca4cdfe632b134260c5c644d25f1edbdb7a2adf5e1f9ffa", + "tag": "fetchFromGitHub", + "owner": "tmarble", + "repo": "timesheet.el", + "sha256": "0p7piqbhwxp2idslqnzl5x4y9aqgba9ryxrjy3d0avky5z9kappl", "rev": "354131b1216ccca51a68da74e9491b5518fd7820" }, "recipe": { "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -14526,56 +15493,60 @@ }, "slideview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-slideview.git", - "sha256": "d3c976b63e9dacc9b024c46b22b712d1c2ac3e38af663e399ca2e016aa126166", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-slideview", + "sha256": "0rk12am1dq52khwkwrmg70zarhni2avj4sy44jqckb4x7sv7djfk", "rev": "ec2340e7b0e74201206d14e3eaef1e77149f122d" }, "recipe": { "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [] }, "direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/direx-el.git", - "sha256": "6e1c6b01dd9f4becc5bd0abd580e023b970ccb1e716c7d436d31a0fc24140c5d", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "direx-el", + "sha256": "0p8c2hjgr81idm1psv3i3v5hr5rv0875ig8app2yqjwzvl0nn73f", "rev": "423caeed13249e37afc937dc8134cb3c53e0f111" }, "recipe": { "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "yaxception": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/yaxception.git", - "sha256": "088d3adc32c3aef876de4a66b324a28e4791b5b671eef8daf5ec2edc2c322fc3", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "yaxception", + "sha256": "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8", "rev": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875" }, "recipe": { "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.3", "deps": [] }, "haskell-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/haskell/haskell-mode.git", - "sha256": "4a34e6cacdefa5c114f667f2602c2260aed0fa1ed9b03fcac50cd45ad7d3e898", + "tag": "fetchFromGitHub", + "owner": "haskell", + "repo": "haskell-mode", + "sha256": "1gmpmfkr54sfzrif87zf92a1i13wx75bhp66h1rxhflg216m62yv", "rev": "ea81bbb966a839527a786739b7628fd9cd777456" }, "recipe": { "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "13.16", "deps": [ @@ -14590,49 +15561,52 @@ }, "recipe": { "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "linum-relative": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/linum-relative.git", - "sha256": "4c33a1dac10f605afc3500cd869c397bb5bc9f896d1e4bdd2d407766d2228fd4", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "linum-relative", + "sha256": "1m4g4b96cxs05pfln7kdi6gvrdbv76f8dk806py5lq0gq7da2csc", "rev": "1074e12904d08e00dda438d9700f2a3bff238bd5" }, "recipe": { "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "flymake-jslint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-jslint.git", - "sha256": "31fb74daad79a05d70721bc0e98b45841df5a206384ad3b041436b8af9a8f303", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-jslint", + "sha256": "00zkm3wqlss386qd6jiq0siga7c48n5ykh0vf9q5v83rmpd79yri", "rev": "30693f75059bab53a9d2eb676c68751f4d8b091c" }, "recipe": { "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.23", "deps": [] }, "org-bullets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sabof/org-bullets.git", - "sha256": "1ce0cbfaa8541518c6c079db12ef59d97a1ff73553d56736a50b5be7a426d982", + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "org-bullets", + "sha256": "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w", "rev": "b70ac2ec805bcb626a6e39ea696354577c681b36" }, "recipe": { "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.4", "deps": [] @@ -14645,7 +15619,7 @@ }, "recipe": { "sha256": "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -14658,21 +15632,22 @@ }, "recipe": { "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "org-projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/IvanMalison/org-projectile.git", - "sha256": "cd2769c56ed01b544c11c2f35a434d5e448a9db8be064049039521da618a6b01", + "tag": "fetchFromGitHub", + "owner": "IvanMalison", + "repo": "org-projectile", + "sha256": "16aq5p65q5a0an14q9xzsnkaa5bzkrwhm9cv5ljajjfcjsjcvmb6", "rev": "c2141ac997f4af49257595bab88adb9dd7b9b700" }, "recipe": { "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -14688,21 +15663,22 @@ }, "recipe": { "sha256": "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "flyspell-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/flyspell-popup.git", - "sha256": "2c3ae892b4c4ecbaf22a23da8b64b741348b9271cb2ab260a64a034aa37667e6", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "flyspell-popup", + "sha256": "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic", "rev": "a3890c9272c0cfa1e2cde6526f7d6280ad4af00c" }, "recipe": { "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -14711,28 +15687,30 @@ }, "pyvenv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/pyvenv.git", - "sha256": "da4d1a78fe1ed7ab82164befcfc2c697925dfc5d39bc6156374c6ec7c6acf1f5", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "pyvenv", + "sha256": "0jidmc608amd0chs4598zkj0nvyll0al093121hkczsbpgbllq9z", "rev": "5c48de2419ddf10c00e38f5940ed97a84c43f1ce" }, "recipe": { "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.9", "deps": [] }, "persp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Bad-ptr/persp-mode.el.git", - "sha256": "eb606912f03b1e0d7e56daa7280fa713d105e12cd1fb9be7912567f255a12c89", + "tag": "fetchFromGitHub", + "owner": "Bad-ptr", + "repo": "persp-mode.el", + "sha256": "129cl5az4rr5j7krpyyi5khhbl8klw7ji9ysarz0s7ivy096jq7b", "rev": "00e5f345f13b2b9e615082ac9ccbfd076592cc22" }, "recipe": { "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.7", "deps": [] @@ -14745,7 +15723,7 @@ }, "recipe": { "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -14759,7 +15737,7 @@ }, "recipe": { "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.96", "deps": [] @@ -14772,21 +15750,22 @@ }, "recipe": { "sha256": "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-core": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm.git", - "sha256": "6e2d8f6da0794c20011078721bd99d7c6d781913bb41631d9801539bcff038a2", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm", + "sha256": "1cl01rprns989k5gr89qjpa6sg0s2ndrsdcmcyszrnaisvz7im53", "rev": "97e8ffaed3c5959e9c16e7a0e45cc0702218b2cc" }, "recipe": { "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.9.0", "deps": [ @@ -14795,16 +15774,31 @@ "emacs" ] }, + "sml-modeline": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:~nxhtml/nxhtml/main", + "sha256": "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4", + "rev": "835" + }, + "recipe": { + "sha256": "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "wonderland": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kurisuwhyte/emacs-wonderland.git", - "sha256": "ecfed5679ebd26cfcdad6288984809c27ba5a3bc48e8d433e3037cf45b191905", + "tag": "fetchFromGitHub", + "owner": "kurisuwhyte", + "repo": "emacs-wonderland", + "sha256": "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc", "rev": "28cf6b37000c395ece9519db53147fb826a42bc4" }, "recipe": { "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -14816,14 +15810,15 @@ }, "plsense": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-plsense.git", - "sha256": "e44451c0abe549496c023c904914e5fc19c299cdee2115fd10e5a7ccaaaae6ab", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-plsense", + "sha256": "0f00dv5jwbhs99j4jc6lvr5n0mv1y80yg7zpp6yrmhww6829l5rg", "rev": "f6fb22607a5252b2556d2e7fa14f1bcab5d9747a" }, "recipe": { "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.7", "deps": [ @@ -14840,7 +15835,7 @@ }, "recipe": { "sha256": "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -14853,7 +15848,7 @@ }, "recipe": { "sha256": "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -14866,21 +15861,22 @@ }, "recipe": { "sha256": "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "dionysos": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/dionysos.git", - "sha256": "44ab211ad157d2f901397351e0c189c34928ad73ae6a6ca4351781bc29461bf3", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "dionysos", + "sha256": "1xg9cschjd2m0zal296q54ifk5i4s1s3azwfdkbgshxxgvxaky0w", "rev": "92578e813b92c8aae12948b44e0c7757cc9b3d9b" }, "recipe": { "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -14892,14 +15888,15 @@ }, "graphene": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/graphene.git", - "sha256": "f93ea7697fdf0b0a51410903ba62e21f30e367abc147defafd3e2f32690e5233", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "graphene", + "sha256": "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa", "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" }, "recipe": { "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.5", "deps": [ @@ -14918,14 +15915,15 @@ }, "flycheck-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flycheck-package.git", - "sha256": "1d2a7426c8438728fb4dd86d6968df624712946ecc67b7799c62f762de427671", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flycheck-package", + "sha256": "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd", "rev": "ff93e8986a1021daf542c441c1fd50436ee83cba" }, "recipe": { "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -14943,49 +15941,52 @@ }, "recipe": { "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "7.9.3e", "deps": [] }, "annotate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bastibe/annotate.el.git", - "sha256": "1a0c56181a476323596c8eda5f6d6064befe3ed16dd1a52cbeb87df4c3b6d1a2", + "tag": "fetchFromGitHub", + "owner": "bastibe", + "repo": "annotate.el", + "sha256": "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s", "rev": "a1690384317ce366e5a33aec916949e3328a0117" }, "recipe": { "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.4", "deps": [] }, "zerodark-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/zerodark-theme.git", - "sha256": "cc6d516fbf738ebe96cb5a252d43f67a3d771c3a7f2effe22c71c4765434bedf", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "zerodark-theme", + "sha256": "1pxy6ia7di3i5kigybkz78f7fgbsyr1js9asrfbbx3kkpxpm2vfc", "rev": "5f7e16b35b2b42e4a286ca0cece4766a69cd7321" }, "recipe": { "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "flx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/flx.git", - "sha256": "51cca17135995086f8b482d82de9cb5ad3b9be939fe6404740274d4579604a20", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "flx", + "sha256": "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc", "rev": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c" }, "recipe": { "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -14994,14 +15995,15 @@ }, "hardhat": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/hardhat.git", - "sha256": "5eabdfcb353d8ad55a3cde14d146f27164389979ee85af13d5b7e5a28b0144c5", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "hardhat", + "sha256": "0mbdnsm903s380ajjgjjqa0m4mxsddzqfjdafrngy0pxgs16iv1f", "rev": "fa42fa4a07dc59f253950c5a8aa5257263a41cdf" }, "recipe": { "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.4", "deps": [ @@ -15010,14 +16012,15 @@ }, "pinyin-search": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/pinyin-search.el.git", - "sha256": "e0fc1d7f197fafd58280447910bd7e64d486524bb418294b334a4ce6de6c508a", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "pinyin-search.el", + "sha256": "12jhdkgfck2a6d5jj65l9d98dm34gsyi0ya4h21dbbvz35zivz70", "rev": "5895cccfa6b43263ee243c5642cc16dd9a69fb4e" }, "recipe": { "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] @@ -15030,7 +16033,7 @@ }, "recipe": { "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -15044,21 +16047,22 @@ }, "recipe": { "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.6", "deps": [] }, "mc-extras": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/mc-extras.el.git", - "sha256": "c116350ee989d65b83cd1ba26bed085060656a7bc35ee0dd87d2344d70e3a208", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "mc-extras.el", + "sha256": "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1", "rev": "71cf966be06d9c74e781a87bb30fa4cf657ee852" }, "recipe": { "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.1", "deps": [ @@ -15074,63 +16078,67 @@ }, "recipe": { "sha256": "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [] }, "test-kitchen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jjasghar/test-kitchen-el.git", - "sha256": "b63de5a6d586ec1dc76405bcdcfc8504e48bfc90668764fb233a1fae4625770b", + "tag": "fetchFromGitHub", + "owner": "jjasghar", + "repo": "test-kitchen-el", + "sha256": "02vp4m3aw7rs4gxn91v6j3y8pr04hpydrg05ck3ivv46snkfagdn", "rev": "9464c7dda14020099053218e959971117396091e" }, "recipe": { "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [] }, "thrift": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/apache/thrift.git", - "sha256": "a132e886758ffb4c72cacaea5833a97eebd24f45c354fb438642121425193ef7", + "tag": "fetchFromGitHub", + "owner": "apache", + "repo": "thrift", + "sha256": "1srylw9wwkyq92f9v6ds9zp9z8sl800wbxjbir80g1lwv4hghaii", "rev": "53dd39833a08ce33582e5ff31fa18bb4735d6731" }, "recipe": { "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.3", "deps": [] }, "better-defaults": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/better-defaults.git", - "sha256": "1508575387f1290ef308bb096f6e5d9c38a49109e63cd76be51221ac6c1b9625", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "better-defaults", + "sha256": "09cn3dnaq88jwmmxfg76168s8f4wbmp6y2dv13rhwagihx9mf20m", "rev": "c286d55528f148733c696fe07eb01073dc412fb8" }, "recipe": { "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [] }, "plsense-direx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/plsense-direx.git", - "sha256": "410606f05b1ef21eb65bcb2dc70d01835c5cd71585c83e428858198ff1b26468", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "plsense-direx", + "sha256": "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1", "rev": "8a2f465264c74e04524cc789cdad0190ace43f6c" }, "recipe": { "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -15148,7 +16156,7 @@ }, "recipe": { "sha256": "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -15162,21 +16170,22 @@ }, "recipe": { "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.17.1", "deps": [] }, "ac-html-bootstrap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osv/ac-html-bootstrap.git", - "sha256": "a37e8552f2e08a0aa5cab25bf9f81a001a6d57fc65c8fab101c1aa8146e74c4c", + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "ac-html-bootstrap", + "sha256": "1zmjqnlbfchnb7n2v7ms7q06xma1lmf9ry3v6f4pfnwlmz5lsf3a", "rev": "591e1e996c820da218ea1eee0a500c556769f128" }, "recipe": { "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.3", "deps": [ @@ -15185,28 +16194,30 @@ }, "julia-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/JuliaLang/julia.git", - "sha256": "c45b5c254ebb09537ad61b409bcfe46793b0910b60a677b9930f25f3bca21716", + "tag": "fetchFromGitHub", + "owner": "JuliaLang", + "repo": "julia", + "sha256": "0ahn6bdl6vmy71knag1m4nq4s8gsmf239fhjn0mhpnavx9lv1apq", "rev": "bb73f3489d837e3339fce2c1aab283d3b2e97a4c" }, "recipe": { "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.2", "deps": [] }, "flycheck-status-emoji": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/liblit/flycheck-status-emoji.git", - "sha256": "2458c64fb30fcfaa74416a6157baa7f9ea002a8d7f819593f45f0e4a5ce79be1", + "tag": "fetchFromGitHub", + "owner": "liblit", + "repo": "flycheck-status-emoji", + "sha256": "0yi2xmk0bxzqmjf9sy3r3gacqw7z1jrf6hwn05zaqqgn7y78z37i", "rev": "37ed04b76b7338afd2237d3a11487bef3970ff0f" }, "recipe": { "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -15217,14 +16228,15 @@ }, "gitlab": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/emacs-gitlab.git", - "sha256": "dc9bbfff48235cbef8cdb76045ce6d8abe7b8e0815ed4fa3719873d425afec00", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-gitlab", + "sha256": "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil", "rev": "90be6027eb59a967e5bbceaa5f32c098472ca245" }, "recipe": { "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -15242,21 +16254,22 @@ }, "recipe": { "sha256": "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "common-lisp-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/common-lisp-snippets.git", - "sha256": "1aa6265fb02b2a91bb2eb5c8c752ffa4571daeb1c4e5dc6e73019c88b3c433f9", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "common-lisp-snippets", + "sha256": "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad", "rev": "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284" }, "recipe": { "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -15265,42 +16278,45 @@ }, "apples-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tequilasunset/apples-mode.git", - "sha256": "c45cd8fab7b9f7eb10001a18373c179d5a97d57bd6f807f9f7555083512f2771", + "tag": "fetchFromGitHub", + "owner": "tequilasunset", + "repo": "apples-mode", + "sha256": "13j2r4nx2x6j3qx50d5rdnqd8nl5idxdkhizsk7ccz3v2607fbyy", "rev": "fac47b6255e79a373c5d5e1abe66ea5d74588e9f" }, "recipe": { "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [] }, "reveal-in-osx-finder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kaz-yos/reveal-in-osx-finder.git", - "sha256": "5bac2fcfa9a9bb5a4921e76a433c6f8f0b3f3c5774298236b6f073f2ef6323e0", + "tag": "fetchFromGitHub", + "owner": "kaz-yos", + "repo": "reveal-in-osx-finder", + "sha256": "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v", "rev": "5710e5936e47139a610ec9a06899f72e77ddc7bc" }, "recipe": { "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.3", "deps": [] }, "minitest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arthurnn/minitest-emacs.git", - "sha256": "763f79991eb0797db89c0e73ee1018ccf419a966a27afea516f1e9ec61f5e8b2", + "tag": "fetchFromGitHub", + "owner": "arthurnn", + "repo": "minitest-emacs", + "sha256": "0nd0jl5r5drnh98wdpqj2i7pgs7zvcizsh4qbvh8n0iw0c3f0pwh", "rev": "2bed01262b0d888473468b5c7bd7d73694d31320" }, "recipe": { "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.0", "deps": [ @@ -15309,42 +16325,45 @@ }, "evil-matchit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/evil-matchit.git", - "sha256": "90ab83764c00c926081508f8d41d10dfe111558a0113c2b85ae5f3fbd48bd6c3", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-matchit", + "sha256": "0kf4m1ghpxfalqx2zwm1d8xav4d6l6bpk79g5cvssk5jz5913fbi", "rev": "8b80b3df9472217d55962981025539f2da603296" }, "recipe": { "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.2", "deps": [] }, "sqlup-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/trevoke/sqlup-mode.el.git", - "sha256": "b37f1c7a10eac786efa5a5c4d9450b361b87f47b41d70447443adc128d835416", + "tag": "fetchFromGitHub", + "owner": "trevoke", + "repo": "sqlup-mode.el", + "sha256": "1dcb18fq84vlfgb038i2x6vy7mhin2q6jn4jl9fh256n12cx4nrn", "rev": "7a51e34685c65952cd0635c3d35a36337fde361b" }, "recipe": { "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.3", "deps": [] }, "flycheck-gometalinter": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/favadi/flycheck-gometalinter.git", - "sha256": "37acb536623a5cb224deb506e146bf6353dddf7d1a4d650b7d9b72934027eafa", + "tag": "fetchFromGitHub", + "owner": "favadi", + "repo": "flycheck-gometalinter", + "sha256": "1ypa4x096wlvgl5nak8sgpgxslv3px3f21mmvqjb4p1sc8vbbb1p", "rev": "554a806e9ad6ddb6299bcfe469dd7d20cf98b473" }, "recipe": { "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -15354,14 +16373,15 @@ }, "ir-black-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jmdeldin/ir-black-theme.el.git", - "sha256": "beee6c020fded073b7d25542b97924ee31e63056cd0f82adadf11eeec748d80c", + "tag": "fetchFromGitHub", + "owner": "jmdeldin", + "repo": "ir-black-theme.el", + "sha256": "036q933yw7pimnnq43ydaqqfccgf4iwvjhjmsavp7l6y1w16rvmy", "rev": "b1ca1d0778e3e6228ff756e7fdaf5f5982000fa2" }, "recipe": { "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [] @@ -15375,7 +16395,7 @@ }, "recipe": { "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.5", "deps": [ @@ -15392,35 +16412,37 @@ }, "recipe": { "sha256": "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "extend-dnd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/extend-dnd.git", - "sha256": "74226cea94d4361a0aa566002866e6a84c607799842d14f5c6ee75af5d2d0ecb", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "extend-dnd", + "sha256": "1k2j8szavyq2wy5c0skvs03a88cr9njy7y63b7knh2m92nw4830d", "rev": "a1923d57f8f5e862cc66c189b5e6627bc84a2119" }, "recipe": { "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [] }, "ac-haskell-process": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ac-haskell-process.git", - "sha256": "81281a4b2377a45976daa01dcdcc442a6c64eb9ea7dfea58d467f8e163da6354", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-haskell-process", + "sha256": "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41", "rev": "0362d4323511107ec70e7165cb612f3ab01b712f" }, "recipe": { "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [ @@ -15430,14 +16452,15 @@ }, "flx-ido": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lewang/flx.git", - "sha256": "51cca17135995086f8b482d82de9cb5ad3b9be939fe6404740274d4579604a20", + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "flx", + "sha256": "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc", "rev": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c" }, "recipe": { "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -15447,14 +16470,15 @@ }, "helm-open-github": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-open-github.git", - "sha256": "1f63975d65cc1bbbb984cdbc7cc6dc9b8ed064729f9e7cbfa2c9b0c3722e1652", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-open-github", + "sha256": "1hq1nnmgkx0a8sv6g8k4v9f0102qg7jga0hcjnr8lcji51nqrcya", "rev": "95140bbacc66320a032d3cdd9e1c31aeb47eb83d" }, "recipe": { "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.14", "deps": [ @@ -15465,14 +16489,15 @@ }, "nvm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/nvm.el.git", - "sha256": "a297ebf755b1297421ba6918803505a462a91fbda80e6f1823c5583bfc3b9445", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "nvm.el", + "sha256": "1624jj922l0bbav1v8szdr0lpyx0ng959fg3sspg1j15kgkir8kf", "rev": "d18b13e8275a57ee6c55dc71b671f02a8e6522ad" }, "recipe": { "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -15484,14 +16509,15 @@ }, "editorconfig-core": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "b5854f8953ddb065c57dff2b7a13116a941eafbe9e7f19f7cf04f7d1399caf53", + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "1z073j9bf31izj05k0vgpv6iwhx0k4m7ikdxgj4sd99svsv84nv9", "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" }, "recipe": { "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -15501,14 +16527,15 @@ }, "imenu-list": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmag/imenu-list.git", - "sha256": "2c612c4ae40526bafac23bd3a66cc3f1af2ba4743baa9e964baaf0e9551c51a4", + "tag": "fetchFromGitHub", + "owner": "bmag", + "repo": "imenu-list", + "sha256": "192i3iaykw5a9fb9xaivfjj2pbziqdnadlrvqbxbl9h5wi52qq9c", "rev": "1324cffd571df5e35113efc57e1cdc8490068f9c" }, "recipe": { "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -15523,21 +16550,22 @@ }, "recipe": { "sha256": "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "flymake-less": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-less.git", - "sha256": "95062e781f49a4b6a23cf7ff6ed0f56fb2fe7fce59028c1a171092fe8a46dadf", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-less", + "sha256": "0ggvmsjj6p6a7cwr2bzhlcf8ab4v6a2bz5djsscd2ryy570p367z", "rev": "8cbb5e41c8f4b988cee3ef4449cfa9aea3540893" }, "recipe": { "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -15546,14 +16574,15 @@ }, "malinka": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/LefterisJP/malinka.git", - "sha256": "95d36927c70689216d37d8effdb3839d72c2e179d3496284051798662d8d0fa4", + "tag": "fetchFromGitHub", + "owner": "LefterisJP", + "repo": "malinka", + "sha256": "0hwxwwjzjxv2mmkxmalr2hp3x8apwcyvn2bz4d4yd4wrzcscay97", "rev": "81cf7dd81fbf124ceda31ee963cce8c3616f28f1" }, "recipe": { "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -15567,14 +16596,15 @@ }, "aggressive-indent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/aggressive-indent-mode.git", - "sha256": "3379a4c259b62e0fbbab52365b34d1bb0fad093ef1e00800069e62f4b3115a5b", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "aggressive-indent-mode", + "sha256": "0nss26rz8qly0q00iq7i7q4ss3xvs4s5ndjjmfxhybmnb71a8y9k", "rev": "970c5e3bd4519deed8b8b604a5a96269166bf697" }, "recipe": { "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.2", "deps": [ @@ -15584,14 +16614,15 @@ }, "helm-pt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ralesi/helm-pt.git", - "sha256": "3b2fb3e9c6912a8fa4f594db4887de50700bfbc015403b43ad93342fadb5a64a", + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "helm-pt", + "sha256": "0jm6nnnjyd4kmm1knh0mq3xhnw2hvs3linwlynj8yaliqvlv6brv", "rev": "03e35e2bb5b683d79897d07acb57ee67009cc6cd" }, "recipe": { "sha256": "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -15600,28 +16631,30 @@ }, "subemacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kbauer/subemacs.git", - "sha256": "1d991faf26aade9b28d6b7b182a9e5f1350736f5d9566917527a92c44dc0ebff", + "tag": "fetchFromGitHub", + "owner": "kbauer", + "repo": "subemacs", + "sha256": "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362", "rev": "24f0896f1995a3ea42a58b0452d250dcc6802944" }, "recipe": { "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "magit-find-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bradleywright/magit-find-file.el.git", - "sha256": "67c9ea64736ffcb18e38571b8350a6e9dc0e3a0a14bc056a06449812d9883979", + "tag": "fetchFromGitHub", + "owner": "bradleywright", + "repo": "magit-find-file.el", + "sha256": "1jlww053s580d7rlvmr1dl79wxasa0hhh2jnwb1ra353d6h3a73w", "rev": "035da838b1a19e7a5ee135b4ca8475f4e235b61e" }, "recipe": { "sha256": "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.0", "deps": [ @@ -15637,21 +16670,22 @@ }, "recipe": { "sha256": "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ace-isearch": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tam17aki/ace-isearch.git", - "sha256": "a91ecfb998618a2a19c9d378801ebbe2f2e729330188b3a12f5ec32f4c546308", + "tag": "fetchFromGitHub", + "owner": "tam17aki", + "repo": "ace-isearch", + "sha256": "0233ai62zhsy5yhv72016clygwp2pcg80y6kr4cjm2k1k2wwy7m9", "rev": "7e041d058492c5c35ec70de0e7c5586043e7e5ec" }, "recipe": { "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [ @@ -15663,14 +16697,15 @@ }, "sparkline": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/woudshoo/sparkline.git", - "sha256": "de9e32d6eef90b32ac34472d567229d4af4c9bdd444c6c6815ffd2deffacb5be", + "tag": "fetchFromGitHub", + "owner": "woudshoo", + "repo": "sparkline", + "sha256": "1gmmmkzxxlpz2ml6qk24vndlrbyl55r5cba76jn342zrxvb357ny", "rev": "e44498cf1a58fb165991198fe5104d51c92ea904" }, "recipe": { "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.2", "deps": [ @@ -15679,28 +16714,30 @@ }, "slime-volleyball": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/fitzsim/slime-volleyball.git", - "sha256": "2303f2a7c5f45d650df2af0ee3d0ca423d7f650bc566c2e744cd394500ac6403", + "tag": "fetchFromGitHub", + "owner": "fitzsim", + "repo": "slime-volleyball", + "sha256": "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3", "rev": "159b5c0f40b109e3854e94b89ec5383854c46ae3" }, "recipe": { "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "emms-player-simple-mpv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/momomo5717/emms-player-simple-mpv.git", - "sha256": "588b4e8c26e3d85ca026aa30a53c17af28b9fd218a4b9d5d5e25732aae436b95", + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "emms-player-simple-mpv", + "sha256": "15bb8fp2lwr5brfrsjwa47yvja5g2wyaac5a4sh5rn734s64x2sq", "rev": "ae4c0032d4d2d0b069ee147b19f962e6a8a73c79" }, "recipe": { "sha256": "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -15711,14 +16748,15 @@ }, "ta": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kuanyui/ta.el.git", - "sha256": "73ffa3802cce1263812dc00ff89d4b0253a00235f337d05314bb683e506fd626", + "tag": "fetchFromGitHub", + "owner": "kuanyui", + "repo": "ta.el", + "sha256": "09nndx83ws5v2i9x0dzk6l1a0lq29ffzh3y05n0n64nf5j0a7zvk", "rev": "9226afbe7abbefb825844ef3ba4ca15f1934cfc2" }, "recipe": { "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5", "deps": [ @@ -15728,28 +16766,30 @@ }, "enlive": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/enlive.git", - "sha256": "c36c7103247446f602b679e53d61a69eac25fb86632e159a223e23bfd3594622", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "enlive", + "sha256": "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63", "rev": "60facaf8bc48b660d209551c0ce4d17e5c907ab8" }, "recipe": { "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [] }, "rake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/asok/rake.git", - "sha256": "917cabbe0f0854f0595587541dc909096e9df793b9b75a04ca509aca055b5391", + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "rake", + "sha256": "1q65jj6bghvzhlqmpg61a7vn8izc01wp2fjiqx013zxpg9awvzmq", "rev": "a9e65cb23d3dc700f5b41ff365153ef6a259d4f0" }, "recipe": { "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [ @@ -15760,28 +16800,30 @@ }, "slim-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/slim-template/emacs-slim.git", - "sha256": "e7e90c997aba0e11141e5fea65ef7415104980ae12ce404749eab019665588b2", + "tag": "fetchFromGitHub", + "owner": "slim-template", + "repo": "emacs-slim", + "sha256": "1cl8amk1kc7a953l1khjms04j40mfkpnbsjz3qa123msgachrsg7", "rev": "fe8abb644b7b9cc0ed1e76d9ca8d6c01edccbdb8" }, "recipe": { "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "mu4e-maildirs-extension": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/agpchil/mu4e-maildirs-extension.git", - "sha256": "dd83e8d67adb06c3a3f48d258883cff08b58006ecfe045f9372058aed845cdd3", + "tag": "fetchFromGitHub", + "owner": "agpchil", + "repo": "mu4e-maildirs-extension", + "sha256": "1lyd8pcawn106zwlbq6gdq05i2zhry1qh9cdyjiw61nvgbbfi0yx", "rev": "8b384b0bbda46c473dea3ee7dc68c2b3f2548528" }, "recipe": { "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [] @@ -15794,49 +16836,52 @@ }, "recipe": { "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "move-dup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wyuenho/move-dup.git", - "sha256": "7dee5a2856d9126512fc4fa60d37855df91251547e4d2ba30fea7d53211292f1", + "tag": "fetchFromGitHub", + "owner": "wyuenho", + "repo": "move-dup", + "sha256": "01mdy7sps0xryz5gfpl083rv7ixkxs2rkz5yaqjlam2rypdcsyy2", "rev": "4df67072eebac69d6be7619335b03f56f9960235" }, "recipe": { "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [] }, "stash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vermiculus/stash.el.git", - "sha256": "dbe5b7ccd2e0c9d4091ce9b6ac1ef54e1ac3ec3fb4fccbaf3b453413161912e7", + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "stash.el", + "sha256": "0igqifws73cayvjnhhrsqpy14sr27avymfhaqzrpj76m2fsh6fj4", "rev": "638ae8a4f6d33af54fe77d57c2c0eb1800dd2e19" }, "recipe": { "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.1", "deps": [] }, "autopair": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/autopair.git", - "sha256": "d81ea0125a65a725846190b9b93ccb28357df794e5c26504afea470e7268d33c", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "autopair", + "sha256": "0g6kd1r0wizamw26bhp5jkvpsd98rcybkfchc622b9v5b89a07nq", "rev": "2d1eb81d12f71248ad305e70cceddf08d4fe2b39" }, "recipe": { "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -15845,14 +16890,15 @@ }, "chinese-word-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/chinese-word-at-point.el.git", - "sha256": "c37a27f8c28d536a287ac8d3f569b88395bc5bd3625e9477a5a63fd29862c764", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "chinese-word-at-point.el", + "sha256": "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j", "rev": "36a03cce32fe059d2b581cb2e029715c0be81074" }, "recipe": { "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.3", "deps": [ @@ -15861,14 +16907,15 @@ }, "key-seq": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vlevit/key-seq.el.git", - "sha256": "0dc5cafd836164af6fbedb7ef7da378d3fad6464dc11f54b570823209b396d3d", + "tag": "fetchFromGitHub", + "owner": "vlevit", + "repo": "key-seq.el", + "sha256": "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f", "rev": "e29b083a6427d061638749194fc249ef69ad2cc0" }, "recipe": { "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -15877,14 +16924,15 @@ }, "ox-pandoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kawabata/ox-pandoc.git", - "sha256": "497825b3a7df60f0dfc4f9939a67f940523df6cdc2e453b54987ee93a8bb8940", + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "ox-pandoc", + "sha256": "0h49pfl97vl796sm7r62rpv3slj0z5krm4zrqkgz0q6zlyrjay29", "rev": "035f1d60a0139349232c382cfd23a96902b7003d" }, "recipe": { "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.150707", "deps": [ @@ -15896,14 +16944,15 @@ }, "helm-ghc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/helm-ghc.git", - "sha256": "a7141edd983871ee53b4fae9d5fad8b5f78ca376fbad6430e888edd2dfd1c6eb", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "helm-ghc", + "sha256": "00ls9v3jdpz3wka90crd193z3ipwnf1b0slmldn4vb9ivrndh6wn", "rev": "d3603ee18299b789be255297dc42af16dd431869" }, "recipe": { "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -15915,14 +16964,15 @@ }, "projectile": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/projectile.git", - "sha256": "eb88b89c18ca127127e1f2692cfd4fe5670a8058635bc06f3ebd241f78a5f8e8", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf", "rev": "1159110e83490f3b30d4d39e8c48022d3006900a" }, "recipe": { "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13.0", "deps": [ @@ -15932,28 +16982,30 @@ }, "fabric": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nlamirault/fabric.el.git", - "sha256": "bd5cbee2b608c56ad1196cb74f96cc5d210955dced3bc7b4ad4f3ea62c086f96", + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "fabric.el", + "sha256": "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5", "rev": "004934318f63d8cf955022f87b2c33eb97ada280" }, "recipe": { "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "sage-shell-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stakemori/sage-shell-mode.git", - "sha256": "1c61b8c3125c9c029452b9a05fcefa3215a65646f5ab60df46023c9c8e3ca5ce", + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "sage-shell-mode", + "sha256": "0aw95qkql6apyn79la0jbpr0nlixhl9zvi9miry2h5y5pawb3yvf", "rev": "8e659438ff419f7f1fddd1b56fb706dbecf9e469" }, "recipe": { "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.8.9", "deps": [ @@ -15963,14 +17015,15 @@ }, "flycheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck.git", - "sha256": "f945da0f043a220fd0dd78d22366cc79a9a60bb80b25f3e51c2b7f17e0e9ef61", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck", + "sha256": "19mnx2zm71qrf7qf3mk5kriv5vgq0nl67lj029n63wqd8jcjb5fi", "rev": "efaf2e3894428fec065ac6ab0b204db66dbdaa85" }, "recipe": { "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.25.1", "deps": [ @@ -15984,14 +17037,15 @@ }, "cuda-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chachi/cuda-mode.git", - "sha256": "5d728e7b073f3959c550a986742b891bb466cdca87f00fc1967356850ef8db77", + "tag": "fetchFromGitHub", + "owner": "chachi", + "repo": "cuda-mode", + "sha256": "1y685qfdkjyl7dwyvivlgc2lwp102vy6hvcb9zynw84c49f726sn", "rev": "c8cf7d92b8039cdd0bd525c258ab42f49a0f91cf" }, "recipe": { "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] @@ -16004,21 +17058,22 @@ }, "recipe": { "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "mocker": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sigma/mocker.el.git", - "sha256": "02769eb735b52f2a0f96f992d659685522813c42f922bcd5ebc3ec40aa3a5bd1", + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "mocker.el", + "sha256": "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2", "rev": "55b078b53ea49e48bd1821d96f0fb86f794fdc6c" }, "recipe": { "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -16034,21 +17089,22 @@ }, "recipe": { "sha256": "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "pungi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mgrbyte/pungi.git", - "sha256": "f55917cbfe377b1c4088a5f4169e8977f106a7f483ef80b48d1b529ee1d95404", + "tag": "fetchFromGitHub", + "owner": "mgrbyte", + "repo": "pungi", + "sha256": "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm", "rev": "41c9f8b7795e083bfd63ba0d06c789c250998723" }, "recipe": { "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -16058,14 +17114,15 @@ }, "colorsarenice-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/colorsarenice-theme.git", - "sha256": "2aca79f4bc2c2e01cf18e86dda2d76bea71b066d2f1bd2e7a2d251fefda91fa2", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "colorsarenice-theme", + "sha256": "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia", "rev": "3cae55d0c7aeda3a8ef731ebc3886b2449ad87e6" }, "recipe": { "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.20", "deps": [ @@ -16080,7 +17137,7 @@ }, "recipe": { "sha256": "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -16089,14 +17146,15 @@ }, "ace-jump-buffer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/ace-jump-buffer.git", - "sha256": "fa652b2e228226c215e09fcc391984ce0afd58cfc7eb8babd2359895295002fd", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "ace-jump-buffer", + "sha256": "1z82a0lrb61msamqpsy7rxcgs2nfhhckkk4zw0aw49l248p2nrgs", "rev": "41f8bb0744cdf9c219d25b417f2ffbd0883469e7" }, "recipe": { "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -16112,21 +17170,22 @@ }, "recipe": { "sha256": "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ac-octave": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/ac-octave.git", - "sha256": "aef1b37cddecb17d908001fd2d031f4f9114f8ce9e2470a4d31679f3db86c899", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "ac-octave", + "sha256": "16f8hvdz6y8nsfj7094yrvw194ag3w1jvz81h287vcgcvmyb7wdf", "rev": "eb6463631a69dfd06fe750c1c155594d11de0590" }, "recipe": { "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -16135,14 +17194,15 @@ }, "ansi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ansi.git", - "sha256": "cc8e3a51e192745f9d738cb5e5f23a72713cc118db5d13afdd61367bc8b04e16", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ansi", + "sha256": "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g", "rev": "a042c5954453bab9a74177e2b78ad17a824caebc" }, "recipe": { "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.1", "deps": [ @@ -16152,14 +17212,15 @@ }, "ido-describe-bindings": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/danil/ido-describe-bindings.git", - "sha256": "389e0aa707e366d878f1fa16a3c82ffea086999739d7a3ca5b8e5cab549e90a5", + "tag": "fetchFromGitHub", + "owner": "danil", + "repo": "ido-describe-bindings", + "sha256": "19chkraanp4fbg5a7mrrjycqd87y5z4a65psy5wdhrp30ykhm7iq", "rev": "a4048d5d1a6aad93c0206dbe4f34f4edb21a04d2" }, "recipe": { "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -16169,28 +17230,30 @@ }, "birds-of-paradise-plus-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jimeh/birds-of-paradise-plus-theme.el.git", - "sha256": "5acd6d3cbd05bf6d8d480c5994f1a2e6fb59bb13bfa30ffb30067915084effbf", + "tag": "fetchFromGitHub", + "owner": "jimeh", + "repo": "birds-of-paradise-plus-theme.el", + "sha256": "1r3f5d67x257g8kvdbdsl4w3y1dvc1d6s9x8bygbkvyahfi5m5hn", "rev": "ba2c4443388a73f2c5e2de0c24d3106676aeb6fa" }, "recipe": { "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "elixir-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/elixir-lang/emacs-elixir.git", - "sha256": "89ab5d3eb060ba3c2cadc5605eab0976ec331b6621d777e47bf8a998b72fdb1b", + "tag": "fetchFromGitHub", + "owner": "elixir-lang", + "repo": "emacs-elixir", + "sha256": "07kgzdla31nc146xya21rn4hyr76h5lyabla8yh4qjsvnknb7cbj", "rev": "bfc95d9d444bf4002d340d37ad30954dd86c0e94" }, "recipe": { "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2.8", "deps": [ @@ -16200,14 +17263,15 @@ }, "hookify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/hookify.git", - "sha256": "0c1a84847e65a4cf3e5c3bf21852efb14c5c6f7f2e69e39a86fdda034b4b7ffb", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "hookify", + "sha256": "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc", "rev": "e76127230716f7fab6662410c03c3872d17a172b" }, "recipe": { "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -16217,28 +17281,30 @@ }, "gntp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tekai/gntp.el.git", - "sha256": "6af8626fba745e8b7a159551b81aad14657da206e95d467cbf35e6e6a5947edb", + "tag": "fetchFromGitHub", + "owner": "tekai", + "repo": "gntp.el", + "sha256": "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a", "rev": "767571135e2c0985944017dc59b0be79af222ef5" }, "recipe": { "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "github-browse-file": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/osener/github-browse-file.git", - "sha256": "e814a5b24d59275e690f08f5604e292b443f08997d38b8071c6f4d605db56f1f", + "tag": "fetchFromGitHub", + "owner": "osener", + "repo": "github-browse-file", + "sha256": "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578", "rev": "fa5cc00a40869430fb44596792961a4cddf9c265" }, "recipe": { "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [ @@ -16247,28 +17313,30 @@ }, "diminish": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/diminish.git", - "sha256": "662d9ccb0608806cfc7541a9e3dea71228608b80087717db26ff6788ee73ef62", + "tag": "fetchFromGitHub", + "owner": "myrjola", + "repo": "diminish.el", + "sha256": "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6", "rev": "0211de96b7cfba9c9dc8d2d392dbd4ccdb22bc65" }, "recipe": { - "sha256": "03sskxgvkj8zrkh1p6kc993609r6261q4ww9hr78kr2f2a98lj88", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "sha256": "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.45", "deps": [] }, "easy-kill-extras": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/easy-kill-extras.el.git", - "sha256": "20aee5587b635e522b0d0c9bbe5dde8b84e2017e8037a7389ac1a4997ea7cda1", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "easy-kill-extras.el", + "sha256": "18fdlxz9k961k8wafdw0gq0y514bvrfvx6qc1lmm4pk3gdcfbbi0", "rev": "242844bc95b9015396405d84c4335338037968c3" }, "recipe": { "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.4", "deps": [ @@ -16277,14 +17345,15 @@ }, "projekt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tekai/projekt.git", - "sha256": "08fd5f68bbbfc87f36dd8cc476da7141fc7be1a46c9a11e4e179aceb042f85e7", + "tag": "fetchFromGitHub", + "owner": "tekai", + "repo": "projekt", + "sha256": "1rw55w2fpb3rw7j136kclkhppz21f7d7di4cvlv7zj5zpdl5zz88", "rev": "107232c191375b59d065354470d0af83062e2a4c" }, "recipe": { "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -16299,21 +17368,22 @@ }, "recipe": { "sha256": "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ranger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ralesi/ranger.el.git", - "sha256": "288588d875c4a38106af55b08b4c7a971c86faed68e670c52119ac0c6e42723a", + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "ranger.el", + "sha256": "0fkj89p0rb0r472p1rk8xpx8c74pg968pc2mmw3838y4fpc8i198", "rev": "4b778da7aafe1dc4077a3c891ae918eae929fae6" }, "recipe": { "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.7", "deps": [ @@ -16322,42 +17392,45 @@ }, "yascroll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/m2ym/yascroll-el.git", - "sha256": "1fb71ec47cd5db6b84762efa31cee68bc138a8b151bc034711f3b467f819e800", + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "yascroll-el", + "sha256": "007837w6gd7k253h7g2in6l3ihcbwv733yiffs26pnymgk21xdqz", "rev": "0a8b531b3a3c8afe7235c8c212e08bfe2021a629" }, "recipe": { "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "date-at-point": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alezost/date-at-point.el.git", - "sha256": "e9ba32c149a949cec5834a61f3b82ef58b66d84d489f53a2c2252426787e75a5", + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "date-at-point.el", + "sha256": "06aprbhhxb6bbzmf0r5yq2ry6x7708vp4d94ja3ir6zcwc96wn0k", "rev": "662f8350a83311503dc0aae47a28752f9f1270c9" }, "recipe": { "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "flycheck-ledger": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flycheck-ledger.git", - "sha256": "66b10443c2b728a856c19f5aeeb3a77991ab8dd8d251fa992bd523340bd7badd", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flycheck-ledger", + "sha256": "1pdssw5k88ym5fczllfjv26sp4brlyrywnlzq5baha5pq91h9cb6", "rev": "9401b6c83f60bfd29edfc62fee76f75e17a3a41e" }, "recipe": { "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -16366,28 +17439,30 @@ }, "killer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/killer.git", - "sha256": "d420457dda39d440224a4a33271b5f679fb983b2fa4ef4c6dafb5f1e15a3be46", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "killer", + "sha256": "0imylcaiwpzvvb3g8kpsna1vk7v7bwdjfcsa98i41m1rv9yla86l", "rev": "52256640aebbb8c25f8527843c2425b848031cd8" }, "recipe": { "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [] }, "flycheck-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/flycheck-tip.git", - "sha256": "03f13fadd0b9c4547d6212f05610e612579a59381016e657e05c848bcd8e5a61", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "flycheck-tip", + "sha256": "0azjr5mfb3hnb66m1b2319i035mn5i9qz24y7fj5crhnc9vp8w3s", "rev": "0bfddf52ae4ec48d970324f8336a5d62986bbc9e" }, "recipe": { "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [ @@ -16396,30 +17471,49 @@ "popup" ] }, + "tablist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "politza", + "repo": "tablist", + "sha256": "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns", + "rev": "ef38312867bc0268b1584dd890b1c420bb77ec11" + }, + "recipe": { + "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "0.70", + "deps": [ + "emacs" + ] + }, "iedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/victorhge/iedit.git", - "sha256": "e240bd5d73807651ea9a04208b20e6d83b5d4154b66d9bfec7449e184104445f", + "tag": "fetchFromGitHub", + "owner": "victorhge", + "repo": "iedit", + "sha256": "06qv95bgcb6n3zcjs2i1q80v9040z7m9pb9xbhxmqzcx68vpbpdm", "rev": "b95c35107a429d63b99f888b52eb0f74105d0da0" }, "recipe": { "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.9", "deps": [] }, "term-alert": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CallumCameron/term-alert.git", - "sha256": "fb08773ac2d47cc4c4397a9db227c81a4dd689568ce4678b2b977f34eb652890", + "tag": "fetchFromGitHub", + "owner": "CallumCameron", + "repo": "term-alert", + "sha256": "1d1hrnxhi7h5d5i4198hx5lj7fbc280lpkxmk2nb8z6j7z0aki7g", "rev": "879ea638120639299aae602f06c46d9c27312ff1" }, "recipe": { "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -16429,14 +17523,15 @@ }, "org-vcard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flexibeast/org-vcard.git", - "sha256": "c47bd23b8776fe466110de600193b99e6ae2c06dc583d84ec7c18bf034bec4e1", + "tag": "fetchFromGitHub", + "owner": "flexibeast", + "repo": "org-vcard", + "sha256": "1qf4pqsg12y1qx7di0y5dp0f4slyp69h2q6y21hldzknhwxx4yy4", "rev": "5c4e17c166fb0406d5dfdc8876b0e182ba7af8fd" }, "recipe": { "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] @@ -16450,7 +17545,7 @@ }, "recipe": { "sha256": "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.1", "deps": [] @@ -16463,7 +17558,7 @@ }, "recipe": { "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -16472,14 +17567,15 @@ }, "weather-metno": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ruediger/weather-metno-el.git", - "sha256": "3d9baeea5611b478eb1c447ffca1269bf98fe83b1130e80743715de3f8e43ea3", + "tag": "fetchFromGitHub", + "owner": "ruediger", + "repo": "weather-metno-el", + "sha256": "0qx92jqzsimjk92pql2h8pzhq66mqijwqgjqwp7rmq5b6k0nvx1z", "rev": "b59680c1ab908b32513954034ba894dfb8564dd8" }, "recipe": { "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -16489,28 +17585,30 @@ }, "gitconfig": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tonini/gitconfig.el.git", - "sha256": "9b10b3d62ce88daa8831594bcb589d0320e4de1fdc0331dbe9f5aa08b9371c48", + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "gitconfig.el", + "sha256": "0j0w6ywhiapmx7dk20yw3zgf8803kmccnjsr664am3g85kbb644v", "rev": "6c313a39e20702ddcebc12d146f69db1ce668901" }, "recipe": { "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "auth-password-store": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/auth-password-store.git", - "sha256": "066ba82c4c5061bc11c1d390bfbacded48d91e6ccabd9328c8e09aaeb287e063", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "auth-password-store", + "sha256": "0gi65n1np63zi2ylc4y1licwvk97jl92s1v98fv5y61kppi1d8sq", "rev": "d7fc1f026c3f43190cacedfa6eff8da916e607f5" }, "recipe": { "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.3", "deps": [ @@ -16522,28 +17620,30 @@ }, "cpputils-cmake": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/cpputils-cmake.git", - "sha256": "c484cc2f6d0334b4db9d28b40bba28cde8ce15ede3812cc869a6d7b4d36a7f9d", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "cpputils-cmake", + "sha256": "03nzbrvvs31xgaqhxmrj9bypywsg42q06k4z4z1fpjssg9az0j4p", "rev": "d11e5496a0bf885900e7d0d004decc66f95dda3f" }, "recipe": { "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.2", "deps": [] }, "anzu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-anzu.git", - "sha256": "f4f3f307cc0cd85d544782557d703ce2224420042aaf9f04e89befb683f5364d", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-anzu", + "sha256": "1d2laybz1igrr9nnkmfsnrvsjw7qmrgby4wnrxprins9gq263lra", "rev": "6fded24b366efc4cf27166104c1928f7d1fedaa7" }, "recipe": { "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.59", "deps": [ @@ -16553,56 +17653,60 @@ }, "format-sql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/format-sql.el.git", - "sha256": "adb8870c0f12e930843a7b5455a8f9c03d1d0e57680fc910b0b565b2f0be44bc", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "format-sql.el", + "sha256": "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0", "rev": "97f475c245cd6c81a72a265678e2087cee66ac7b" }, "recipe": { "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "writegood-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bnbeckwith/writegood-mode.git", - "sha256": "2b0c3987112ed453007aec5b32b5cba812c0c9559c52e6dddf1b266372b0d2da", + "tag": "fetchFromGitHub", + "owner": "bnbeckwith", + "repo": "writegood-mode", + "sha256": "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b", "rev": "4302169c1563cab9319745083f9b9a7f5f4af0bd" }, "recipe": { "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.2", "deps": [] }, "simpleclip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/simpleclip.git", - "sha256": "cbd26ff22ff3360b12e1690ab3fed6335146a4981298774297b7dea3994447b1", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "simpleclip", + "sha256": "0v0vmkix9f0hb2183irr6xra8mwi47g6rn843sas7jy2ycaqd91v", "rev": "eba19a21da2e4d1e11abdc158f72d6513afaa669" }, "recipe": { "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "pallet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/pallet.git", - "sha256": "2caef10bf2794c3104abce1dac8eefd061894aa5de251ac868e72006a1ba42f4", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "pallet", + "sha256": "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw", "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" }, "recipe": { "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.2", "deps": [ @@ -16614,14 +17718,15 @@ }, "org-sync": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arbox/org-sync.git", - "sha256": "0e7defe6571bc6697dfb7c6c1e351fbed36ed13c79af8ff2ad08f74610366bb7", + "tag": "fetchFromGitHub", + "owner": "arbox", + "repo": "org-sync", + "sha256": "0zx9gpvm5gy9k45lbhaks9s935id727lszsh40gmpdp5zxf3rjk1", "rev": "8c65dceaa2f3d436f83ed591916f22556a6e7f91" }, "recipe": { "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -16632,14 +17737,15 @@ }, "rcirc-styles": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aaron-em/rcirc-styles.el.git", - "sha256": "76f7fa9563766606fd159ad52a3217aca64cffa0b7a2c4100f5825ee55ae8ff8", + "tag": "fetchFromGitHub", + "owner": "aaron-em", + "repo": "rcirc-styles.el", + "sha256": "1y4gmrayw9aq1w8c98mpl3zlr9mc2wr2mmcs2pyhcrkncfazmxvn", "rev": "37cc85b6f3608db08b59d158d87da544b1a5a41e" }, "recipe": { "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -16654,21 +17760,22 @@ }, "recipe": { "sha256": "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "yatemplate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mineo/yatemplate.git", - "sha256": "481b34908818b9a3c20994241cd59604aa8152921d6f88f4c583f87c8f54f4fa", + "tag": "fetchFromGitHub", + "owner": "mineo", + "repo": "yatemplate", + "sha256": "1yplaj7pry43qps8hvqxj9983ah4jvaiq94l171a7f8qi28386s8", "rev": "a49a218b6fcfbbf6e51021be78aee6d3b220e3f6" }, "recipe": { "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -16677,42 +17784,45 @@ }, "nginx-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ajc/nginx-mode.git", - "sha256": "68383ec0f80d1a797def7f0af17b6d56acaee6fdc842e401151df4bcc0f47721", + "tag": "fetchFromGitHub", + "owner": "ajc", + "repo": "nginx-mode", + "sha256": "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38", "rev": "8a296e30b01adbc40d1aa9ccde369a972ac5ceab" }, "recipe": { "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.4", "deps": [] }, "emoji-fontset": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zonuexe/emoji-fontset.el.git", - "sha256": "393ff52a3d1632495bc3ea893750aa2e5d7604f3804d8415acc35a955fb82762", + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "emoji-fontset.el", + "sha256": "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr", "rev": "3b8c2204284b95934383836b5b36efeefb65663b" }, "recipe": { "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "ergoemacs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ergoemacs/ergoemacs-mode.git", - "sha256": "d04116072b6b4eaeeb9aee59c8b1dddecea67c833112e1667045fe6e9adbd954", + "tag": "fetchFromGitHub", + "owner": "ergoemacs", + "repo": "ergoemacs-mode", + "sha256": "19m6chwc2awbsk5z03q1yhq84m481pff2609a8bxymcvm6yaamvf", "rev": "295ce7a4a5341d9e144a06e91befeebfac1239d9" }, "recipe": { "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "5.14.7.3.1", "deps": [ @@ -16722,14 +17832,15 @@ }, "cyphejor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/cyphejor.git", - "sha256": "51a549c4e6140d896060d9e6603f7af1aa7e3bf06b5ba4ef1498afda67026c6a", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "cyphejor", + "sha256": "1vkwm1n0amf0y0jdyvqskp00b6aijqhd7wclzkzrq7glrvj2z1xw", "rev": "1025d82a9abaca132f5855e72d56c0c2ccc0eef4" }, "recipe": { "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -16738,14 +17849,15 @@ }, "guide-key-tip": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/guide-key-tip.git", - "sha256": "a39777308865e3d00de50254daf310cbaeb07a3e37be1b38baef3d21a1631510", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "guide-key-tip", + "sha256": "040mcfhj2gggp8w1pgip7rxb1bnb23rxlm02wl6x1qv5i0q7g5x3", "rev": "e08b2585228529aeaae5e0ae0948f898e83a6200" }, "recipe": { "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -16761,21 +17873,22 @@ }, "recipe": { "sha256": "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ac-racer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-racer.git", - "sha256": "8d70ad5e88997bc6204eceda076111598f40f380eecf7b9fa26b3dd7508a17fb", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-racer", + "sha256": "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl", "rev": "2708b0a49afc89fb99a6d74a016cff6b94138ed0" }, "recipe": { "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -16786,42 +17899,45 @@ }, "nemerle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rsdn/nemerle.git", - "sha256": "e8c7798e8a4b02040e5b5a055bb41fc3f07bf0743dfb2004268074a3d8e2fb34", + "tag": "fetchFromGitHub", + "owner": "rsdn", + "repo": "nemerle", + "sha256": "19xxg4ya6vndk2ljdnl284zs8qf9dkq4ghr7pmsclp9n7zh46v48", "rev": "556270ce8b97668a65e9ec20a05f78c3dffeac60" }, "recipe": { "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [] }, "haskell-emacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knupfer/haskell-emacs.git", - "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" }, "recipe": { "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.1.2", "deps": [] }, "terraform-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-terraform-mode.git", - "sha256": "768dadff0ed54515f9608800f513542f98d7f75044d4a5ef4b3aa0d9b5e42214", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-terraform-mode", + "sha256": "0jv047dhvbfjyw6ca73gjdrqb1rf2vykvdyrp9581als8n8xyy0y", "rev": "86e661cfcdc56677d7f4935a187ed72d208b9140" }, "recipe": { "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [ @@ -16830,14 +17946,15 @@ }, "elpa-audit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/elpa-audit.git", - "sha256": "7de472b1c16b50d2ac81845df3d21a9b790f71916a868ee0eeac01e801809d50", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "elpa-audit", + "sha256": "1q4krfrc2dy0vr7q148msfpkcwj55mlsrn4n5xjnya4xj0134ib7", "rev": "a7a1806278c73ea6cb6d235714e7bc8088971df5" }, "recipe": { "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] @@ -16850,35 +17967,37 @@ }, "recipe": { "sha256": "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "inline-crypt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sodel-the-Vociferous/inline-crypt-el.git", - "sha256": "e6bbefa731000bdf9779889ce712d6394031e75afd95462a52621042906e374a", + "tag": "fetchFromGitHub", + "owner": "Sodel-the-Vociferous", + "repo": "inline-crypt-el", + "sha256": "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6", "rev": "497ce9dc29a8ccac0b6dd6854f5d120514350282" }, "recipe": { "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [] }, "fsharp-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rneatherway/emacs-fsharp-mode-bin.git", - "sha256": "e33f9218a55ef0461e9a7cdaea2ce3bf6996faf6c96486e5fd097c2311586e8c", + "tag": "fetchFromGitHub", + "owner": "rneatherway", + "repo": "emacs-fsharp-mode-bin", + "sha256": "133fb08j6z09zpjqcr69yvx9csdzwcnfmnkwk8g4dw2yllc94gz3", "rev": "21ec2209cf0aa33f6046735e2455fe58490b7406" }, "recipe": { "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.7.1", "deps": [ @@ -16898,7 +18017,7 @@ }, "recipe": { "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -16907,14 +18026,15 @@ }, "auto-complete-pcmp": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/auto-complete-pcmp.git", - "sha256": "46c81ffdb423e2f7110a631ca3730bc3d85775ea4ef897a1722a79384072c2c1", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "auto-complete-pcmp", + "sha256": "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26", "rev": "2595d3dab1ef3549271ca922f212928e9d830eec" }, "recipe": { "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -16925,42 +18045,45 @@ }, "macrostep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joddie/macrostep.git", - "sha256": "eeaf77cc89002d23c35b3e01ee99879c3a35ac3d12d7469ab7a07a99e357c24a", + "tag": "fetchFromGitHub", + "owner": "joddie", + "repo": "macrostep", + "sha256": "0dkigxa39f3cmndxw79mgadwsj7w3bphns6l2hzhv6w0wdllpifp", "rev": "8950313a4e6e3e4bc1d9b0ce4ad4e3bf2f3eb73a" }, "recipe": { "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [] }, "keydef": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/keydef.git", - "sha256": "7b43cf0aaa3d43dd4dafd2a51528a5588cb9d1dfe671a13f438bf45857286c36", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "keydef", + "sha256": "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv", "rev": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0" }, "recipe": { "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.15", "deps": [] }, "flymake-coffee": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-coffee.git", - "sha256": "0ba81f88c646b0f2cd8b910150eaedbf2b0dce9811d82b803ce6a18fa3247ee9", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-coffee", + "sha256": "1svj5n7mmzhq03azlv4n33rz0nyqb00qr8ihdbc8hh2xnp63j5rc", "rev": "d4ef325255ea36d1dd622f29284fe72c3fc9abc0" }, "recipe": { "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.12", "deps": [ @@ -16969,14 +18092,15 @@ }, "magit-svn": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-svn.git", - "sha256": "c85c3590b4a58a6dcc2469edf1438e4011e92738e34a0a293729363434c01fbd", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-svn", + "sha256": "1g8zq0s38di96wlhljp370kyj4a0ir1z3vb94k66v2m5nj83ap68", "rev": "c6222981d4aae088d658cce5e58a14efea8590d6" }, "recipe": { "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.1", "deps": [ @@ -16992,21 +18116,22 @@ }, "recipe": { "sha256": "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "diffview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mgalgs/diffview-mode.git", - "sha256": "e60f691a7eb49bfda1d8e7279b8d9d5768489e77e7c0aec532e344407d7d22b2", + "tag": "fetchFromGitHub", + "owner": "mgalgs", + "repo": "diffview-mode", + "sha256": "1ci2gmyl0i736b2sxh77fyg4hs2pkn6rn9z7v2hzv6xlgqd6j3z6", "rev": "471dc36af93e68849bf2da0db991e186283b3546" }, "recipe": { "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] @@ -17019,21 +18144,22 @@ }, "recipe": { "sha256": "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-cscope": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alpha22jp/helm-cscope.el.git", - "sha256": "2c9d13a87a81c59e1c6ccbae2f4672f511d6516b07b947cb0ea40af1099bd876", + "tag": "fetchFromGitHub", + "owner": "alpha22jp", + "repo": "helm-cscope.el", + "sha256": "0xnqkc4z22m41v5lgf87dd8xc4gmf932zbnbdhf9xic1gal1779c", "rev": "b82db54071bd2d1c77db2e648f8b4e61b1abe288" }, "recipe": { "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -17045,28 +18171,30 @@ }, "cil-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ForNeVeR/cil-mode.git", - "sha256": "a1119e63ab9ebe52b74ebc8e19e070626fc5c9ada1b95464781a674308501ef0", + "tag": "fetchFromGitHub", + "owner": "ForNeVeR", + "repo": "cil-mode", + "sha256": "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1", "rev": "1cacd8bca125dbdeb97fdf156e32c2b74bac2186" }, "recipe": { "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "babel": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/juergenhoetzel/babel.git", - "sha256": "39b6b01990badd4b937bb9e462f4d39e44a179fef719e87304eb846ba53ef0fa", + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "babel", + "sha256": "0px1xggk6qyrwkma1p3d7b4z2id2gbrsxkliw3nwc1q4zndg1zr7", "rev": "65b55ad89017c9b3a1c8c241ac4b4541eabdaf5f" }, "recipe": { "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4", "deps": [] @@ -17079,21 +18207,22 @@ }, "recipe": { "sha256": "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-firefox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-firefox.git", - "sha256": "44e25977368189a7f1ca1a1e9778b810da20db759ad3b01c7f920af1a7b3fc77", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-firefox", + "sha256": "0xzwnfkz22ljgwfb1lwsfpdj1nhhp1w9f7hsrbqsg2c16rvmkqj4", "rev": "8be9312e8751dce73c7cdbd33a525bbbbff1736f" }, "recipe": { "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -17104,42 +18233,45 @@ }, "engine-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hrs/engine-mode.git", - "sha256": "5c1bec4cf6afad4a22f64d9db176cf50913c3ec23b55c0576b40dc98461e4ab7", + "tag": "fetchFromGitHub", + "owner": "hrs", + "repo": "engine-mode", + "sha256": "1dsa3r39ip20ddbw0m9vq8z3r4ahrxvb37adyqi4mbdgyr6fq6sw", "rev": "9e8b10b029f63bc0399f8975a28247eaa78dfcbc" }, "recipe": { "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "textmate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/defunkt/textmate.el.git", - "sha256": "58e075cee06e236462beda466363f565ed6f36a4d31856563ca36517ce8598cc", + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "textmate.el", + "sha256": "1a0fzn66gv421by0x6wj3z6bvzv274a9p8c2aaax0dskncl5lgk1", "rev": "484845493a3c9b570799aea5195a5435a5a01b76" }, "recipe": { "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1", "deps": [] }, "flycheck-clojure": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/squiggly-clojure.git", - "sha256": "ed89d95e003327c50c9f78713236b626ad4f6afad681909cbe0d99c7f59dfb2a", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "squiggly-clojure", + "sha256": "1i824iyjsg4d786kx5chsb64wlqd8vn2vsrhq6rmdx2x3gzdfcsx", "rev": "9e07fd2526ab6e2c4db7d7d6b8c9e44be6e90298" }, "recipe": { "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.3", "deps": [ @@ -17157,49 +18289,52 @@ }, "recipe": { "sha256": "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "el-autoyas": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/el-autoyas.el.git", - "sha256": "9640fb6be024cc1d1dbf4cd8f739288fe3bfa88b84a1d2723d958d94fe177735", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "el-autoyas.el", + "sha256": "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n", "rev": "bde0251ecb504f585dfa27c205c8e312655310cc" }, "recipe": { "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [] }, "system-specific-settings": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DarwinAwardWinner/emacs-system-specific-settings.git", - "sha256": "2ffc62b6e1232bf3189693186ffc8be4943d1e116f9660bd0d05cc15642893d6", + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "emacs-system-specific-settings", + "sha256": "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7", "rev": "0050d85b2175095aa5ecf580a2fe43c069b0eef3" }, "recipe": { "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "haskell-emacs-base": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knupfer/haskell-emacs.git", - "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" }, "recipe": { "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.1.2", "deps": [ @@ -17214,49 +18349,52 @@ }, "recipe": { "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ert-async": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ert-async.el.git", - "sha256": "89290775f84a76ef9802584e9ee104e0afd5ed2092db9d6068123a5b0089c942", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ert-async.el", + "sha256": "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9", "rev": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526" }, "recipe": { "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [] }, "textmate-to-yas": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/textmate-to-yas.el.git", - "sha256": "87fb26aeceb8d5b15d4dcddf878fd6428b0592d2af30451e194e7b65cfba4a3a", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "textmate-to-yas.el", + "sha256": "0fjapb7naysf34g4ac5gsa90b2s2ss7qgpyd9mfv3mdqrsp2dyw7", "rev": "8805e5159329e1b74629b7b584373fc446f57d31" }, "recipe": { "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.21", "deps": [] }, "dracula-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenorocha/dracula-theme.git", - "sha256": "7b30a4c99e4d2d6d11bcf4d1ce1d9678b3ff51ca5872c8bf10c2a5888bf4f0f4", + "tag": "fetchFromGitHub", + "owner": "zenorocha", + "repo": "dracula-theme", + "sha256": "1x7hyj5qi9f222zwhwjqr98zzcvqjqfwxlglph8nsbadkv4s8c3v", "rev": "ee065fed126eecdfe33a1a578d9f1e20687d2f3a" }, "recipe": { "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [ @@ -17265,14 +18403,15 @@ }, "elixir-yasnippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hisea/elixir-yasnippets.git", - "sha256": "3fcf57d4937e80032d25b658c4a70e17965e529c18db2ec35d8231e6f480a537", + "tag": "fetchFromGitHub", + "owner": "hisea", + "repo": "elixir-yasnippets", + "sha256": "0dx5h3sfccc2bp1jxnqqki95x5hp1skw8n5n4lnh703yjga5gkrz", "rev": "6b55c88ce483932f226b6bca0212b589d1d393ea" }, "recipe": { "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -17287,21 +18426,22 @@ }, "recipe": { "sha256": "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "drupal-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/arnested/drupal-mode.git", - "sha256": "debf980d5421a33089434d488631504641a3b81110bb9f44b3bb998a79acb264", + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "drupal-mode", + "sha256": "12lxqrcfv5salmcslw3kggymcwwc0lzq1b6iqd7x4zizp0sjf09s", "rev": "cf0364cbaf727bcd21ab7c2a14cc987c49fd97d0" }, "recipe": { "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -17310,16 +18450,17 @@ }, "company-jedi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-company-jedi.git", - "sha256": "79622ef1df065fd2af7524b46be9695b039693045b6d22d87d455aa81b0f0742", - "rev": "5533e12d6895be1d0909c73374f704e7dd13c055" + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-company-jedi", + "sha256": "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1", + "rev": "ad49407451c7f28fe137f9c8f3a7fc89e8693a1b" }, "recipe": { "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "0.03", + "version": "0.04", "deps": [ "cl-lib", "company", @@ -17329,14 +18470,15 @@ }, "termbright-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bmastenbrook/termbright-theme-el.git", - "sha256": "e4acb7b0ffd4e4bbee976e41a4f044e32d84ae4fc9634cddbd1b0b6cbafe5426", + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "termbright-theme-el", + "sha256": "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d", "rev": "bec6ab14336c0611e85f45486276004f16d20607" }, "recipe": { "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -17345,28 +18487,30 @@ }, "list-utils": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/list-utils.git", - "sha256": "d4df944deb07788d680ec83df1f2f977944faa0f2d91e87d132c191ac0f5ac2c", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "list-utils", + "sha256": "0dmcmvf3dxmp1f71nq5xwsdrnyb04qr14ay4ckpaca2bmi7q0x5x", "rev": "ecd6c91c71e37734af9ff4df003cb96b9d236a97" }, "recipe": { "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.2", "deps": [] }, "helm-ack": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-ack.git", - "sha256": "a40a1b043251c0fa83902e4f18d8ee583e57235f575d82bf4144450547e586ae", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-ack", + "sha256": "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21", "rev": "5982f3cb6ec9f460ebbe06ec0ce7b3590bca3118" }, "recipe": { "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.13", "deps": [ @@ -17376,14 +18520,15 @@ }, "packed": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/packed.git", - "sha256": "91d93518b6a8dea48516e82e85bce0779700364b2cb51f42ca6870b90905b44c", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "packed", + "sha256": "0k5l0l4vjw38r911zd9c9cv015vpw2y8abp82s2s9pm8nqc3bnci", "rev": "478613da38b0a47f4419acc50017ac871433b13c" }, "recipe": { "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [ @@ -17393,14 +18538,15 @@ }, "guide-key": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kai2nenobu/guide-key.git", - "sha256": "c40fd6d06cdf9fcdda09394c0f2558b240e93aceb66f054b8d88d6b1a0f71501", + "tag": "fetchFromGitHub", + "owner": "kai2nenobu", + "repo": "guide-key", + "sha256": "1bmcvn8a7g9ahpv2fww673hx9pa7nnrj9kpljq65azf61vq2an2g", "rev": "626f3aacfe4561eddc46617570426246b88e9cab" }, "recipe": { "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.5", "deps": [ @@ -17409,14 +18555,15 @@ }, "pip-requirements": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Wilfred/pip-requirements.el.git", - "sha256": "7a8f5664aac4eae210e96c5d1c7287ec1bc0f400de921b519bd0555342224fb7", + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "pip-requirements.el", + "sha256": "1dsg49156mfhkd8ip4ny03sc06zchxr1qpbcx48f5sn4m9j5d3vs", "rev": "733ec3e4c30875944601b566e9dba6ef05812fcd" }, "recipe": { "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -17425,14 +18572,15 @@ }, "cliphist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/redguardtoo/cliphist.git", - "sha256": "634ff318460a740fb524aa96349778d9a1b6c47469b20e504adff7fa8b58d1e6", + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "cliphist", + "sha256": "11c0zpk8gg70d4xiiyjc7v13knwb2ihbrxnlaxzh3rdg2c12676q", "rev": "c0db2da95fa3d3a58160f465c636989bb4b251d5" }, "recipe": { "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -17441,14 +18589,15 @@ }, "haskell-emacs-text": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knupfer/haskell-emacs.git", - "sha256": "c00a3c544d5c65c191dbf6c56646bcaf5e55d1ea3d72b0069bdf63cb8fd7f8e1", + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" }, "recipe": { "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.1.2", "deps": [ @@ -17457,14 +18606,15 @@ }, "synosaurus": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rootzlevel/synosaurus.git", - "sha256": "02ca926eeb8bf0dcb98281634980ab6e21ca60ba5b1424d7ece75e9aa9932242", + "tag": "fetchFromGitHub", + "owner": "rootzlevel", + "repo": "synosaurus", + "sha256": "0hi2jflrlpp7xkbj852vp9hcl8bfmf04jqw1hawxrw4bxdp95jh2", "rev": "56efdc38952b9bd56a445591fcdeb626aede8678" }, "recipe": { "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -17473,14 +18623,15 @@ }, "flycheck-color-mode-line": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/flycheck/flycheck-color-mode-line.git", - "sha256": "3d8b41cf124b25b20620ea11b3367b8fc77a6d0ed4fe27addb54ad8e936e470f", + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-color-mode-line", + "sha256": "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5", "rev": "c85319f8d2579e770c9060bfef11bedc1370d8be" }, "recipe": { "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -17491,14 +18642,15 @@ }, "ph": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gromnitsky/ph.git", - "sha256": "6acf0fbdc61d5541617afa9858b70ec2f6ce76e958d54309b424efb864489834", + "tag": "fetchFromGitHub", + "owner": "gromnitsky", + "repo": "ph", + "sha256": "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p", "rev": "ed45c371642e313810b56c45af08fdfbd71a7dfe" }, "recipe": { "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -17507,28 +18659,30 @@ }, "es-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dakrone/es-mode.git", - "sha256": "53c27c18e729bcf01b2dfa811fb291d3e1b9cfacb296ec6628692ada7e6cbe80", + "tag": "fetchFromGitHub", + "owner": "dakrone", + "repo": "es-mode", + "sha256": "105ydizdlak951kfr5mjmk7vkqfkj6r1z0gs5ldz1g19wwc7rhjk", "rev": "bee766109b8da1bba925d6998ef288b8a55f3c8f" }, "recipe": { "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "4.0.0", "deps": [] }, "flymake-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-ruby.git", - "sha256": "a55cd028a0fae7e4f52df164fd3a0cf5353ef30d219831e1f0e3388aad420d31", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-ruby", + "sha256": "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0", "rev": "e14e8e2abda223bd3920dbad0eefd5af5973ae6d" }, "recipe": { "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -17537,14 +18691,15 @@ }, "commander": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/commander.el.git", - "sha256": "c4dff12a535a110fd209b5babd0692f51215e9ec27e7eace0b57bcb494849a2c", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "commander.el", + "sha256": "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45", "rev": "2c8a57b9c619e29ccbe2d5a85921b9c689e95bf9" }, "recipe": { "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [ @@ -17556,42 +18711,45 @@ }, "olivetti": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rnkn/olivetti.git", - "sha256": "3019cd51f9d186f80c5cb9a60ea98d7eb488a18ae693453140d1252b9e3f49e6", + "tag": "fetchFromGitHub", + "owner": "rnkn", + "repo": "olivetti", + "sha256": "1rj97yg2n9fi80qlb4z6iahqid3yinlhx9mrbh6gi1niz58ws69h", "rev": "26f3db0bc37324444e41a1d4797056b61b56b004" }, "recipe": { "sha256": "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [] }, "gmpl-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/gmpl-mode.git", - "sha256": "61938c80449fa09a326120975bbb0a4f635048cfcad4923d9ee2cce916490a74", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "gmpl-mode", + "sha256": "0x0a94bfkk72kqyr5m6arx450qsg1axmp5r0c4r9m84z8j08r4v1", "rev": "25d20f9d24594e85cb6f80d35d7c73b7e82cbc71" }, "recipe": { "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "back-button": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/back-button.git", - "sha256": "06c5fd0c252700985d76841f7cb00121074033d97d80fad40e98fa6fcb21e7ca", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "back-button", + "sha256": "0hmn3jlsqgpc602lbcs9wzw0hgr5qpjdcxi2hjlc1cp27ilyscnf", "rev": "c7b50a3e087a8dc5588d7292379cd387a1afff87" }, "recipe": { "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.6", "deps": [ @@ -17604,42 +18762,45 @@ }, "ox-twbs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marsmining/ox-twbs.git", - "sha256": "c922adbbf9140e17b6a08524bbbc025f448c5803707b4c06c9760028eb87ba82", + "tag": "fetchFromGitHub", + "owner": "marsmining", + "repo": "ox-twbs", + "sha256": "10mshzmjh03nr434qyvh0dc8qi2z0aybn945l2v1f3hlz6xss8n9", "rev": "b54058ae4e26e8ce2318c36e5b7369cbbed7c4b1" }, "recipe": { "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.3", "deps": [] }, "mediawiki": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hexmode/mediawiki-el.git", - "sha256": "3b16a0831d2c765ed84bdac324d86ca3961a0688425a4ebe6e1c6aadf0899691", + "tag": "fetchFromGitHub", + "owner": "hexmode", + "repo": "mediawiki-el", + "sha256": "1vsla0a5x4kfyj3ca4r1v8cspp12dadi0frpailclaxfmpmpl5d3", "rev": "f8f95722193cb74da2f6a01a0e558707c9b8c46d" }, "recipe": { "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2.5", "deps": [] }, "helm-pydoc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-pydoc.git", - "sha256": "870f16c968f4a252251058dcf2dc96891d476705de5dea41980117dde4fb57f1", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-pydoc", + "sha256": "1ik0vllakh73kc2zbgii4sm33n9pj388gaz69j4drz2mik307zvs", "rev": "30f1814b5b16db0413ffe74b0d0420b38e153df9" }, "recipe": { "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.07", "deps": [ @@ -17649,14 +18810,15 @@ }, "org-pdfview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/markus1189/org-pdfview.git", - "sha256": "929aaf570e20d37d9067aca6cd0cd24b46702aa52758ed1ace4c7e9afd839a92", + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "org-pdfview", + "sha256": "14lshgyrlzjcrqdfsn17llm70ijbs86cv9mccy87vlr01rbsz6lj", "rev": "c1ca137ef90e442592ce88ef16437dc7dfa9c5dd" }, "recipe": { "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -17666,14 +18828,15 @@ }, "pushbullet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theanalyst/revolver.git", - "sha256": "23634cf3c651f1d7e50aad79308265f1395436d059d7de95ee2b65c2e4f5ca80", + "tag": "fetchFromGitHub", + "owner": "theanalyst", + "repo": "revolver", + "sha256": "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym", "rev": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445" }, "recipe": { "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.2", "deps": [ @@ -17689,35 +18852,37 @@ }, "recipe": { "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "artbollocks-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sachac/artbollocks-mode.git", - "sha256": "40ace8470ac6dc6212023887548c9c2e9b0c8ee5558f5efc96e7560348bc510a", + "tag": "fetchFromGitHub", + "owner": "sachac", + "repo": "artbollocks-mode", + "sha256": "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91", "rev": "583c7048a1b09cd79554423d5115f5ddd129d190" }, "recipe": { "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.2", "deps": [] }, "org-elisp-help": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/org-elisp-help.git", - "sha256": "1446224783e61a7d83acd53f477369fb6f1a20ca5343f2d3a9ca4dcca461a8a3", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "org-elisp-help", + "sha256": "18x8c6jcqkfam79z4hskr8h1lvzvd5rlfgymmj1ps6p6hd3j4ihl", "rev": "0ead4f715b0a8fd21428f763cfc502177d82b3db" }, "recipe": { "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -17727,15 +18892,15 @@ }, "elpy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/elpy.git", - "branchName": "release", - "sha256": "b56fa2c4336daa907c3f472b659a9544aaab06e7d028fa604fee24ff29d63edc", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "elpy", + "sha256": "0kzara7r6gvgf3p06xswxbhq01dbhmwx1pldx3mmv7knvm2mdxq8", "rev": "96fa05708629600fd79c4b0fcafe63ec97f5ce07" }, "recipe": { "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10.0", "deps": [ @@ -17748,28 +18913,30 @@ }, "fcitx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/fcitx.el.git", - "sha256": "3da89ffffefbe218b44138afd53f743cfda15f85d8b6f4179941e236ffa81dac", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "fcitx.el", + "sha256": "1b0xm3zkdqj1k4bz9dnqhmgs3z9wfhzxbbrq86s1iqpvzvzrza1x", "rev": "bdcbccc04934766e6d3fc54b2bccfe38c25859c1" }, "recipe": { "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "avy-zap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cute-jumper/avy-zap.git", - "sha256": "098cf9fa52b9dabba5b7c4c5a82d11287fe8bccb94f0119d39b0e1142f19bb52", + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "avy-zap", + "sha256": "0lmv34pi9qdh76fi3w4lrfyfhzr824nsiif4nyjvpnmrabxgk309", "rev": "67fed60d0dfe9087ca4fe3332f4a78e775b8d239" }, "recipe": { "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [ @@ -17778,28 +18945,46 @@ }, "inf-ruby": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/inf-ruby.git", - "sha256": "5fd6d528dcc7528a84cb9734c62052c6ae064e67a4355446c4ce325f76befa87", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "inf-ruby", + "sha256": "11zsprv5ycnfqi358dd4cx70dbn6a8hccd4prf28lln7vhldbmjz", "rev": "d130ede56a1203d0aa1c8e5bca5fedbfb14e7ce8" }, "recipe": { "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.4.0", "deps": [] }, + "confluence": { + "fetch": { + "tag": "fetchsvn", + "url": "http://confluence-el.googlecode.com/svn/trunk/", + "sha256": "1l6970ng046hw2izzb15cbbbf83l6m8c9mvic8fzjixfi3g1dl55", + "rev": "170" + }, + "recipe": { + "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [ + "xml-rpc" + ] + }, "dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myrkr/dictionary-el.git", - "sha256": "17f5aff9105f25f1a822a36ae112fc2a3f678128764131b3d90fcb7075b8aed4", + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s", "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" }, "recipe": { "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10", "deps": [] @@ -17812,21 +18997,22 @@ }, "recipe": { "sha256": "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "cl-lib-highlight": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/cl-lib-highlight.git", - "sha256": "9c152f4d82e166f5c5a98d1ade78f20e66eaec78e931f9ecef7474165b896f8b", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "cl-lib-highlight", + "sha256": "12vgi5dicx3lxzngjcg9g3nflrhfy9wdw6ldm72zarp1h96jy5cw", "rev": "c117451df8455769701af6c8e92a8fb29c05e1fa" }, "recipe": { "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -17835,14 +19021,15 @@ }, "ob-http": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zweifisch/ob-http.git", - "sha256": "cd0e118c4e826786693a58b8594ac00e00ef7642a3def528253c563649687b66", + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-http", + "sha256": "1zbqiqilms8vxqlvzb3gjh8gh2cl7cpmh3yiqsj94jx69w8dy4xl", "rev": "89ba18b22cf6b8533358a9c76a82326343391f0b" }, "recipe": { "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [ @@ -17852,14 +19039,15 @@ }, "wiki-nav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/button-lock.git", - "sha256": "94eb38c8f3ce220f811de948413a82d612b4996bdda2cf6f74c92d9cace91fb2", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "button-lock", + "sha256": "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2", "rev": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f" }, "recipe": { "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.2", "deps": [ @@ -17869,14 +19057,15 @@ }, "ac-clang": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yaruopooner/ac-clang.git", - "sha256": "12b0c782dc28657a40c4169b02a5fa7eb18fdbb595b776668d25bae780ac48b2", + "tag": "fetchFromGitHub", + "owner": "yaruopooner", + "repo": "ac-clang", + "sha256": "1sdgpyq5p824dnxv6r7djwvhyhdmnis8k6992klr8iz7anhxzdam", "rev": "610ff778697eb5499394be3fc3652756d0bfb772" }, "recipe": { "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.0", "deps": [ @@ -17889,14 +19078,15 @@ }, "stekene-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fanael/stekene-theme.git", - "sha256": "eec242ed6ea1369ee35834b251279b588451de7e1c699b689a1d7a8d7035335e", + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "stekene-theme", + "sha256": "0pik6mq8syhxk9l9ns8wgvg5312qkckm3cilb3irwdm1dvnl5hpf", "rev": "5a5ed0aed5c6c6c56aa1e59516a40c697b04a673" }, "recipe": { "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.15", "deps": [ @@ -17905,14 +19095,15 @@ }, "checkbox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/camdez/checkbox.el.git", - "sha256": "f4ecf1068bcb02814ae76d3026d3cdf2355757e79f52ea88362666c149e66aae", + "tag": "fetchFromGitHub", + "owner": "camdez", + "repo": "checkbox.el", + "sha256": "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj", "rev": "2afc2011fa35ccfa0ce9ef46cb1896911fa340d1" }, "recipe": { "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -17922,14 +19113,15 @@ }, "color-theme-modern": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/replace-colorthemes.git", - "sha256": "1cd3cfe06fc887baf08a4df7fcc75bfff79db3a927f64e297edf25146094773b", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "replace-colorthemes", + "sha256": "0q9ss11i31iiv0vn8238922fkic7j6d02f9ykbip04sm46p5k6kj", "rev": "0a804c611da57b2d7c02c95f26eb8a7fc305f159" }, "recipe": { "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -17938,14 +19130,15 @@ }, "opam": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/opam.el.git", - "sha256": "c8e7fda52940759e314bf09eb6f1b2650d60543e07a01c775b853bf2de993785", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "opam.el", + "sha256": "119pk7gg4fw5bdvir8077ra603b5nbqvd7ph9cqrwxa056jzvry8", "rev": "83fb2850d29ec792754e0af18b015e089aad2695" }, "recipe": { "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -17954,14 +19147,15 @@ }, "ycmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/emacs-ycmd.git", - "sha256": "143753f1866721ab82dbadd5242e3b9fa4769235e7fe98674eee6791a4797e85", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia", "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" }, "recipe": { "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -17974,14 +19168,15 @@ }, "zone-nyan": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/zone-nyan.git", - "sha256": "5e3e539355f66c16a3eb87c37c55e941ca9424877042add9c9716db65d8e2fd3", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "zone-nyan", + "sha256": "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy", "rev": "e36875d83ad3dce14f23864688959fa0d98ba410" }, "recipe": { "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.2", "deps": [ @@ -17996,35 +19191,37 @@ }, "recipe": { "sha256": "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "gitattributes-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/git-modes.git", - "sha256": "cde9a9a1ccd19f6c2d8a96b0d7fd1ce75e8f4e1cd781bf567f6b417b7628f9c6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" }, "recipe": { "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [] }, "emojify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iqbalansari/emacs-emojify.git", - "sha256": "c829cee6c7fa5873651329163df4aca312f43d6370555e56098400ba5c43e912", + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "emacs-emojify", + "sha256": "03hc2c8cyn0saasw63vv75iswcxxj8xd8ni78xnccpni1i16lgwj", "rev": "e3c269838277db29560352365b7b9ceb3db9593e" }, "recipe": { "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -18035,14 +19232,15 @@ }, "sx": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vermiculus/sx.el.git", - "sha256": "a7a7db38a7e664b54a70a86472aeb3f525824beced899c2647aa513bd248e3e5", + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "sx.el", + "sha256": "02f63k8rzb3bcch6vj6w5c5ncccqg83siqnc8hyi0lhy1bfx240p", "rev": "4892f45746fb217d059f4fa074a237c5bac7dd6c" }, "recipe": { "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [ @@ -18055,14 +19253,15 @@ }, "mykie": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yuutayamada/mykie-el.git", - "sha256": "8be15aaa2b19239984f619141354667ed7f39d61a8d994d062b14d0e6bf64264", + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "mykie-el", + "sha256": "0550k0rfm0zai306642v689mcpsw9pbd5vs0il82cihwvrxjifc5", "rev": "ab8f7549f9018c26278d101af1b90997c9e5e0b3" }, "recipe": { "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -18072,28 +19271,30 @@ }, "esup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jschaf/esup.git", - "sha256": "bf4cec8fdda5b56a00e9b551bf7b2a9c038461c0cf71b763bcb140a3a668ebdf", + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "esup", + "sha256": "1pzbd2ka6h5ipiivfwfgq1hq80ww59xvyldmx406mdd5vn7yqk5z", "rev": "f9514db82c06680c7f354a2e50c2ca66e8aa0171" }, "recipe": { "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "evil-rsi": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/linktohack/evil-rsi.git", - "sha256": "b862cf5a63aa79e75078b534f5c8186db35d72f15e7c722221e110a49cbbf9f9", + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-rsi", + "sha256": "1ygrpffa847144i74z2yy5r5vcvd334gad5mg18ffydacddcyqmq", "rev": "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61" }, "recipe": { "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [ @@ -18102,14 +19303,15 @@ }, "letcheck": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/letcheck.git", - "sha256": "169eba5c3fe6e9117420c91271436320a1be3e93f5d61845346e28b27c9538d1", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "letcheck", + "sha256": "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn", "rev": "e85b185993a2eaeec6490709f4c131fde2edd672" }, "recipe": { "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] @@ -18122,7 +19324,7 @@ }, "recipe": { "sha256": "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -18132,14 +19334,15 @@ }, "find-file-in-repository": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hoffstaetter/find-file-in-repository.git", - "sha256": "2dcb896b642cdc455ba606ecb930a14cfdb53661f2862bcf4b4726fcfe665c56", + "tag": "fetchFromGitHub", + "owner": "hoffstaetter", + "repo": "find-file-in-repository", + "sha256": "0wbmmrd7brf4498pdyilz17rzv7221cj8sd4h11gac2r72f1q2md", "rev": "8b888f85029a2ff9159a724b42aeacdb051c3420" }, "recipe": { "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [] @@ -18152,21 +19355,22 @@ }, "recipe": { "sha256": "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "clojure-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mpenet/clojure-snippets.git", - "sha256": "867aa04bfbec648b281295210c58b4e8ceb61c7b4421f388da461199ea401cdc", + "tag": "fetchFromGitHub", + "owner": "mpenet", + "repo": "clojure-snippets", + "sha256": "1p0w83m9j4a6va4g68a4gcfbdkp8nic0q8cm28l8nr7czd5s0yl6", "rev": "30cd52379b856cf80eab2b541c32b1bcdcff3db2" }, "recipe": { "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -18175,28 +19379,30 @@ }, "helm-lobsters": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/julienXX/helm-lobste.rs.git", - "sha256": "22cfa1913ce86bc58b0440a383066507ffbd08e8e445ad752d2e9daf4f39e62e", + "tag": "fetchFromGitHub", + "owner": "julienXX", + "repo": "helm-lobste.rs", + "sha256": "1nd562lffc41r3y5x7y46f37ra97avllk2m95w23f9g42h47f1ar", "rev": "d798bebb1a65e255c8ec791753a0c78e6b19243b" }, "recipe": { "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "helm-commandlinefu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/helm-commandlinefu.git", - "sha256": "706e8e12413fd38f3398f77c81cc15e41181bc63c074f9cb9be7e3179a66c1d0", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-commandlinefu", + "sha256": "1l61csd1gqz7kg5zjx60cfy824g42p682z7pk0rqzlrz8498wvkh", "rev": "e11cd3e961c1c4c973b51d8d12592e7235a4971b" }, "recipe": { "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -18208,14 +19414,15 @@ }, "ac-emoji": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-emoji.git", - "sha256": "7bb2d5f19e5afa5b9aba35cb6dcbd42185d844986afb7756012676b729896444", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-emoji", + "sha256": "0cc3jpc4pihbyznyzvf6i3xwc2x78gb5m36ba9gkvxhabsljnlfg", "rev": "53677f754929ead403ccde64b714ebb6b8fc808e" }, "recipe": { "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [ @@ -18225,14 +19432,15 @@ }, "ido-load-library": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/ido-load-library.git", - "sha256": "212ab3c4e43d6fa97e785fd1e9713b3aef6e0d7c16cbed2c6543dab488b78f24", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ido-load-library", + "sha256": "1z7az7h90v72llxvdclcywvf1qd0nhkfa45bp99xi7cy7sqsqssf", "rev": "8589cb1e4303066eb333f1cfc789835d1cbe21df" }, "recipe": { "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -18242,14 +19450,15 @@ }, "elmacro": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Silex/elmacro.git", - "sha256": "30b1dcc07e45fb6c922d79799e060e91764456803ff921b74f7adea9998d5150", + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "elmacro", + "sha256": "0l2iincskpks9yvj3y9zh1b48xli1q39wybr5n96rys5gv0drc9h", "rev": "20a0d1e220984ec6079dda9419b3bb44a88edae3" }, "recipe": { "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -18266,21 +19475,22 @@ }, "recipe": { "sha256": "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-make": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/helm-make.git", - "sha256": "ca3b3ea59d269af0d33a11032917a1473ffd72143d8930dec642494bef029a9e", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "helm-make", + "sha256": "17ls0bplnja2qvg3129x2irgsgs7l4bjj0qi7b9z16i6knjkwfya", "rev": "6558a79d20d04465419b312da198190be6832647" }, "recipe": { "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -18290,14 +19500,15 @@ }, "go-autocomplete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nsf/gocode.git", - "sha256": "e8463e8d696e0c74212f19452b9f734c46c5a7085bd2be0b558fa996ee4bc5fb", + "tag": "fetchFromGitHub", + "owner": "nsf", + "repo": "gocode", + "sha256": "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3", "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1" }, "recipe": { "sha256": "1v9fsyaby77fr30nnhr7dmlrmrlyz2grkhzg62illln66b9m5nlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20150303", "deps": [ @@ -18306,28 +19517,30 @@ }, "beeminder": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/sodaware/beeminder.el.git", - "sha256": "38c80e55438d15e7ea099d1ba355715868d7ffb0c7fd7a5a272ac5faa802a105", + "tag": "fetchFromGitHub", + "owner": "sodaware", + "repo": "beeminder.el", + "sha256": "01d10algmi9a4xd7mzf7n3zxfs2qf5as66wx17mff5cd8dahxj1q", "rev": "54cc1277f2a7667a7b0d999dc49ceffcf2862b44" }, "recipe": { "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "idris-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/idris-hackers/idris-mode.git", - "sha256": "288613fcd1db826f580766354dcb3127fae1f7a9b246f918b14108d29d18a36e", + "tag": "fetchFromGitHub", + "owner": "idris-hackers", + "repo": "idris-mode", + "sha256": "0iwgbaq2797k1f7ql86i2pjfa67cha4s2v0mgmrd0qcgqkxsdq92", "rev": "314a0baea5752069de08e814bb134a9643fb675d" }, "recipe": { "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.19", "deps": [ @@ -18338,42 +19551,45 @@ }, "exec-path-from-shell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/exec-path-from-shell.git", - "sha256": "d8e2773e0c2fd6e193e56997d380f399b3a25d7458ff917413fe04e4a2124f14", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "exec-path-from-shell", + "sha256": "0nhc3m88i6rl2y426ksmjbbaqwfrjnwbzqq1bvd6r0bkcwgfwfml", "rev": "30c793b388312e5044afb7549b50996bf2b71941" }, "recipe": { "sha256": "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10", "deps": [] }, "highlight-symbol": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/highlight-symbol.el.git", - "sha256": "d878a11e94cf23173b5d91819cca8a61aed633eb1aadc1fc7a10c5dacfaa5b9e", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "highlight-symbol.el", + "sha256": "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6", "rev": "6136dac6d4328c19077a838dfbae2efc4caa4db2" }, "recipe": { "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "ppd-sr-speedbar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/ppd-sr-speedbar.git", - "sha256": "209984df0ae73c549afaeded5bf820a47f275068390f65ba66201d422fa3f946", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "ppd-sr-speedbar", + "sha256": "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq", "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" }, "recipe": { "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6", "deps": [ @@ -18389,21 +19605,22 @@ }, "recipe": { "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "vbasense": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/emacs-vbasense.git", - "sha256": "f631dc0c3adcf84c1d1e9e39283d86880c4e3f8c9e499f07967bf96b9cc045a6", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-vbasense", + "sha256": "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn", "rev": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db" }, "recipe": { "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -18420,21 +19637,22 @@ }, "recipe": { "sha256": "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "creds": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ardumont/emacs-creds.git", - "sha256": "83f8ce55aa2f6346c359a302fefb1f4e42cf603dfc5d5e40a67f982243be8105", + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-creds", + "sha256": "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs", "rev": "00ebefd10005c170b790a01380cb6a98f798ce5c" }, "recipe": { "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.6.1", "deps": [ @@ -18444,14 +19662,15 @@ }, "helm-project-persist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sliim/helm-project-persist.git", - "sha256": "33a2bcaa44d86821983183c22fe8f6d7e806acdeb7689bae843bf2469174f0e0", + "tag": "fetchFromGitHub", + "owner": "Sliim", + "repo": "helm-project-persist", + "sha256": "1q7hfj8ldwivhjp9ns5pvsn0ds6pyvl2zhl366c22s6q8jmbr8ik", "rev": "df63a21b9118f9639f0f4a336127b4fb8ec6deec" }, "recipe": { "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -18461,28 +19680,30 @@ }, "eval-sexp-fu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/hchbaw/eval-sexp-fu.el.git", - "sha256": "259a6dda365422bc4f0c809254f16e28d733cf035bbf1b8a4bb4f63655a29753", + "tag": "fetchFromGitHub", + "owner": "hchbaw", + "repo": "eval-sexp-fu.el", + "sha256": "0lwpl9akdxml9f51pgsv0g7k7mr8dvqm94l01i7vq8jl6vd6v6i5", "rev": "b28d9c4d57511072aa17b2464693e38b769482e0" }, "recipe": { "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [] }, "httprepl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gregsexton/httprepl.el.git", - "sha256": "6a8dcdd3de194f8f55e37ab6291f54eabe02b12a1c712dc0c1e3a7179614f8f6", + "tag": "fetchFromGitHub", + "owner": "gregsexton", + "repo": "httprepl.el", + "sha256": "0dd257988bdar9hl2711ch5qshx9jc11fqxcvbrd7rc1va5cshs9", "rev": "d2de8a676544deed1a5e084631a7799e487dbe55" }, "recipe": { "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -18493,14 +19714,15 @@ }, "tern-auto-complete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/marijnh/tern.git", - "sha256": "79f3f4ccd845f186a2afce2086efc112ff3373718ec6dca8c09696bd2aa6563a", + "tag": "fetchFromGitHub", + "owner": "marijnh", + "repo": "tern", + "sha256": "14s9740f0kgvgwz17y01f6lg9nv2jmzjilljdli064izsw474i0a", "rev": "d4803588928d22cb18044b2e20fedd97e2d348ee" }, "recipe": { "sha256": "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.16.0", "deps": [ @@ -18512,14 +19734,15 @@ }, "ox-ioslide": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/coldnew/org-ioslide.git", - "sha256": "9c684f010d49207e9b483ad788f657423e3efbdb4e16dd8d8320efed501ab4e6", + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "org-ioslide", + "sha256": "047fcvpvwzaqisw4q3p6hxgjyqsi2n9nms1qx9w4znvxrnjq8jz3", "rev": "e81f7a6dab512da7eaa8c2c50c673538b97db267" }, "recipe": { "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -18531,14 +19754,15 @@ }, "quasi-monochrome-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lbolla/emacs-quasi-monochrome.git", - "sha256": "6807ae76325c6506c1e4495c9ae63355e1bb09b29ca94deb7a631961166dd551", + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-quasi-monochrome", + "sha256": "0lfmdlb626b3gbmlvacwn84vpqam6gk9lp29wk0hcraw69vaw1v8", "rev": "e329a8d55b22151e29df1f81552a4361f85aeafa" }, "recipe": { "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] @@ -18551,21 +19775,22 @@ }, "recipe": { "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "editorconfig": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/editorconfig/editorconfig-emacs.git", - "sha256": "b5854f8953ddb065c57dff2b7a13116a941eafbe9e7f19f7cf04f7d1399caf53", + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "1z073j9bf31izj05k0vgpv6iwhx0k4m7ikdxgj4sd99svsv84nv9", "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" }, "recipe": { "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.1", "deps": [ @@ -18574,14 +19799,15 @@ }, "evil-anzu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-evil-anzu.git", - "sha256": "635af6719d5aa3e38525f9646ee3e28c8e29b4b5fcd78984d979dd34328c9089", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-evil-anzu", + "sha256": "0lw7fg4gqwj30r0l6k2ni36sxqkf65zf0d0z3rxnpwbxlf8dlkrr", "rev": "64cc08a3546373f28cd7bfd76a3e93bd78efa251" }, "recipe": { "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.03", "deps": [ @@ -18591,14 +19817,15 @@ }, "hl-anything": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/boyw165/hl-anything.git", - "sha256": "b47802d0a59f6e45ad6729686d4a1636b7e681e450cc1ae44b29b810e785f3fb", + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "hl-anything", + "sha256": "12ab825dldiqymy4md8ssfnbbhrgczkwdiwd3llsdq6sayar16as", "rev": "990fe4b323b6222d6c6a35898d8128cddda34848" }, "recipe": { "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.9", "deps": [ @@ -18607,14 +19834,15 @@ }, "restart-emacs": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iqbalansari/restart-emacs.git", - "sha256": "97ef135d16e568cefa6f0ef1b80e9731a47d773d361ead6599d2961447e8acf5", + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "restart-emacs", + "sha256": "0y4ga1lj2x2f0r535ivs09m2l0q76iz72w42wknhsw9lmdsyl5nz", "rev": "e9292fe88d8be7d0ecf9f4f30ed98ffbc6bd689b" }, "recipe": { "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] @@ -18627,21 +19855,22 @@ }, "recipe": { "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "passthword": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/passthword.git", - "sha256": "d167ccbd4f4e3566fc3aa51fb29d7ca9cbf9c969a482451663583814d3db15bc", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "passthword", + "sha256": "1g0mvg9i8f2qccb4b0m4d74zkjx9gjfv47x57by6cdaf9yywqryi", "rev": "58a91defdbeec9014b4e46f909a7411b3a627285" }, "recipe": { "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4", "deps": [ @@ -18650,28 +19879,30 @@ }, "s": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/s.el.git", - "sha256": "c95259ab71d1f953b7300e29f5c16108f44337db2e0f210ec1698f6105ec6099", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "s.el", + "sha256": "16b0xh2n33v9q47223rfvcvl7x08c70zaa8f62vm7yfif6mmjln9", "rev": "b16c6641649cb79435f745863bd76aaed3da3698" }, "recipe": { "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10.0", "deps": [] }, "sweetgreen": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CestDiego/sweetgreen.el.git", - "sha256": "b834e70ecc2cdda6e930b1d392fe85de583cda6fa17af950a11a5614e9b31cf3", + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "sweetgreen.el", + "sha256": "1h56qkbx5abz1l94wrdpbzspiz24mfgkppzfalvbvx5qwl079cvs", "rev": "9de3916023872ab054e1c7301175fa27fdb1de0c" }, "recipe": { "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [ @@ -18683,42 +19914,45 @@ }, "immutant-server": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leathekd/immutant-server.el.git", - "sha256": "9da08d58efc99c5fffe1730295ff62d2b189b0bbb6dcfd1f81db7f8f20bec7dd", + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "immutant-server.el", + "sha256": "1pf7pqh8yzyvh4gzvp5npfq8kcfjcbzra0kkw7zmz769xxc8v84x", "rev": "6f3d303354a229780a33e6bae64460a95bfefe60" }, "recipe": { "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.0", "deps": [] }, "git-ps1-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/10sr/git-ps1-mode-el.git", - "sha256": "867282922b84a0e78a6fc80ae3497a12b25b47b60bcade9f73a077daf11894e6", + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "git-ps1-mode-el", + "sha256": "0pkzpihn94z2xy28nwaiv7883hq604xbmhrpxz2xh8cjix81h8ha", "rev": "003d9dd264afdc71ae4635fef8c5d7bc901e3ddf" }, "recipe": { "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [] }, "evil-textobj-anyblock": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/noctuid/evil-textobj-anyblock.git", - "sha256": "725fcc86659326299879749e9d94f1faa693820f685a765861478a45bf3f4e6f", + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "evil-textobj-anyblock", + "sha256": "0vsf7yzlb2j7c5c7cnk81y1979psy6a9v7klg6c2j9lkcn3cqpvj", "rev": "068d26a625cd6202aaf70a8ff399f9130c0ffa68" }, "recipe": { "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [ @@ -18728,42 +19962,45 @@ }, "osx-plist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsmirror/osx-plist.git", - "sha256": "db5963b9f18431b1c1cd7aaaa67c771dd6a3cb91e373879f3f5a0fb6eb9c6020", + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "osx-plist", + "sha256": "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv", "rev": "5e6de2622fdfe552d4902904f05ea03bc5a6ebd0" }, "recipe": { "sha256": "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "cyberpunk-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/n3mo/cyberpunk-theme.el.git", - "sha256": "48d9d161170c7af95a4d7f2f5685ee91b40461e4a7f03f3c2b8c23123585938a", + "tag": "fetchFromGitHub", + "owner": "n3mo", + "repo": "cyberpunk-theme.el", + "sha256": "12lkhlsi48wc5cy3zw57wihh9d4ixs2mcbvz9mdgjyhc2xhx3na8", "rev": "08ac966ce38be4a3de0a6f6051b8763b5c85e534" }, "recipe": { "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.16", "deps": [] }, "elwm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Fuco1/elwm.git", - "sha256": "a2a32a6ad854864c032fbfc7a1e2a377e37ff3a31ff5030cd6b9ae3e92bbf6cc", + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "elwm", + "sha256": "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2", "rev": "c33b183f006ad476c3a44dab316f580f8b369930" }, "recipe": { "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -18772,14 +20009,15 @@ }, "airline-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/AnthonyDiGirolamo/airline-themes.git", - "sha256": "971f8e6bfa542e167ddc184447643b4c1958f46cfd6e7cb33f179803233d3561", + "tag": "fetchFromGitHub", + "owner": "AnthonyDiGirolamo", + "repo": "airline-themes", + "sha256": "0q9m7lih760p7yrpqvpxdks5h6ac7dj4fi0qviyicbjlz9mqw7wp", "rev": "b7d06424ce7d596f5bff3105d3eaa416f173436a" }, "recipe": { "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [ @@ -18788,14 +20026,15 @@ }, "shackle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/wasamasa/shackle.git", - "sha256": "543bdf111a1221da53e2eaf19b4ba0ac7f62203a2a0be922eacb4dec32aa17ed", + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "shackle", + "sha256": "1v8pm8rfqkfbx8ifj2ra78h64zxcl15rpwgaw99xl88j388xyfsl", "rev": "7542039876325d9b2051b77a0cbe15986154ac1a" }, "recipe": { "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.1", "deps": [ @@ -18804,14 +20043,15 @@ }, "scpaste": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/technomancy/scpaste.git", - "sha256": "f5bafb3ad1ea01909f4b649f87e39b5324933bb0ad00f7d072a9756ec285488f", + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "scpaste", + "sha256": "13s8hp16wxd9fb8gf05dn0xr692kkgiqg7v49fgr00gas4xgpfpm", "rev": "cca8f4ee5402bbf9a4bbb24e81372067cb21bba4" }, "recipe": { "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.5", "deps": [ @@ -18820,14 +20060,15 @@ }, "helm-themes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-helm-themes.git", - "sha256": "6fad66e983daaa7bd17ca4315836b6bebbbe5bd991fdeffc8fb1744164d16464", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-themes", + "sha256": "0rzbdrs5d5a0icpxrqik2iaz8i5bacw6nm2caf75s9w9j0j6s9li", "rev": "8c979f4efc6174eed7df5f3b62db955246202818" }, "recipe": { "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.05", "deps": [ @@ -18836,28 +20077,30 @@ }, "gnuplot": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bruceravel/gnuplot-mode.git", - "sha256": "1c844c79b48b597f31c01a02f1e093b80c9028627b691f3739cee2d1667d8bbb", + "tag": "fetchFromGitHub", + "owner": "bruceravel", + "repo": "gnuplot-mode", + "sha256": "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn", "rev": "aefd4f671485fbcea42511ce79a7a60e5e0110a3" }, "recipe": { "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [] }, "ac-etags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-ac-etags.git", - "sha256": "a20500d1add2940e44f8c63dbeb6e3f064960a650fe608ed871299f6f0885646", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-etags", + "sha256": "0ijni3qgd68jhznhirhgcl59cr7hwfvbwgf6z120x56jmp8h01d2", "rev": "8cd188b2e4908285ba8178bbd18a555edd7282e8" }, "recipe": { "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.06", "deps": [ @@ -18866,28 +20109,30 @@ }, "rect+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-rectplus.git", - "sha256": "0fca6cf13046301f9ed9897304687e4bb71141dcc2fbbc49aeb7c33d10202183", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-rectplus", + "sha256": "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj", "rev": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc" }, "recipe": { "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.10", "deps": [] }, "flymake-hlint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-hlint.git", - "sha256": "a38ac0d1a28b5e2ff9b2807037c468ae9dee6029d31ffe7d4a9f7685bcce9bda", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-hlint", + "sha256": "1ygg51r4ym4x7h4svizwllsvr72x9np6jvjqpk8ayv3w2fpb9l31", "rev": "d540e250a80a09da3036c16bf86f9deb6d738c9c" }, "recipe": { "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -18896,14 +20141,15 @@ }, "flycheck-ycmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/emacs-ycmd.git", - "sha256": "143753f1866721ab82dbadd5242e3b9fa4769235e7fe98674eee6791a4797e85", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia", "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" }, "recipe": { "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -18915,14 +20161,15 @@ }, "ansible-doc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/ansible-doc.el.git", - "sha256": "b79e6e46242288cf7741d768d26f5ad608c862cedc9bad4565cd6b7e6304a61e", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "ansible-doc.el", + "sha256": "05z379k6a7xq9d2zapf687x3f37jpmh6kfghpgxdd18v0hzca8ds", "rev": "6ab94392c860e23439ea3213b74ca56834d1ab14" }, "recipe": { "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -18931,28 +20178,30 @@ }, "ido-vertical-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/creichert/ido-vertical-mode.el.git", - "sha256": "075a402e74e760a09eba5a1812de96c0cc7ad223592340a21aea6e515c1a7a53", + "tag": "fetchFromGitHub", + "owner": "creichert", + "repo": "ido-vertical-mode.el", + "sha256": "1lv82q639xjnmvby56nwqn23ijh6f163bk675s33dkingm8csj8k", "rev": "c3e0514405ba5c15b5527e7f8e2d42dff259788f" }, "recipe": { "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.6", "deps": [] }, "stan-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/stan-dev/stan-mode.git", - "sha256": "b168aa58354ec69fa61f58bd95c133d14b862dc3c774bfb7dac05094bbb31c15", + "tag": "fetchFromGitHub", + "owner": "stan-dev", + "repo": "stan-mode", + "sha256": "1yx8n2c9bls0cvc53d69nyrg44yc3py51lzci0cviwszmnbbrljx", "rev": "3a1b9a714ae7a547638a449f5a9ac487003c55b8" }, "recipe": { "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "7.1.0", "deps": [ @@ -18962,14 +20211,15 @@ }, "emacsql-mysql": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/emacsql.git", - "sha256": "8f3b3a4af316ee6e23934519d1de832b341509b68f74e852e5c0886a1365ed89", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i", "rev": "03d478870834a683f433e7f0e288476748eec624" }, "recipe": { "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0.0", "deps": [ @@ -18980,28 +20230,30 @@ }, "cdlatex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cdominik/cdlatex.git", - "sha256": "2d45f8847aaaacfd72dfebc80cc40d3fa0c8bb60a1ca8500647e68c260dd49ca", + "tag": "fetchFromGitHub", + "owner": "cdominik", + "repo": "cdlatex", + "sha256": "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d", "rev": "b7183c2200392b6d85fca69390f4a65fac7a7b19" }, "recipe": { "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "4.7", "deps": [] }, "sourcekit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nathankot/company-sourcekit.git", - "sha256": "cb2eff547a3bd71ea6e160f6f72fbd13bf0970f3e8df6e140384132425c2b760", + "tag": "fetchFromGitHub", + "owner": "nathankot", + "repo": "company-sourcekit", + "sha256": "1l9xrw88wq32wm3qx922ihdb9mlv9rrdalwvz9i2790fmw7y84vz", "rev": "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9" }, "recipe": { "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [ @@ -19012,28 +20264,30 @@ }, "guru-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bbatsov/guru-mode.git", - "sha256": "a06bbf201e2c47ecd42775916ca568f09ceb99957a6e262e07cbcdc752c386f8", + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "guru-mode", + "sha256": "1y46qd9cgkfb0wp2cvksjncyp77hd2jnr4bm4zafqirc3qhbysx0", "rev": "62a9a0025249f2f8866b94683c4114c39f48e1fa" }, "recipe": { "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "msvc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yaruopooner/msvc.git", - "sha256": "03213023196270362c218b8028bd984b942730766f546b64ce2438498f00bb6c", + "tag": "fetchFromGitHub", + "owner": "yaruopooner", + "repo": "msvc", + "sha256": "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3", "rev": "e7a61fa5b98a129637f970ac6db9163e330b3d02" }, "recipe": { "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.2", "deps": [ @@ -19045,14 +20299,15 @@ }, "describe-number": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/netromdk/describe-number.git", - "sha256": "98792e2a86cdf48b5102e108451186a6bcb574a9af08cf06948471d9e0d2ca8d", + "tag": "fetchFromGitHub", + "owner": "netromdk", + "repo": "describe-number", + "sha256": "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq", "rev": "40618345a37831804b29589849a785ef5aa5ac24" }, "recipe": { "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.1", "deps": [ @@ -19061,28 +20316,30 @@ }, "smex": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nonsequitur/smex.git", - "sha256": "45364a69b81d20776b7bdbb98b38634490b0c4238ba38c44b771fc7e4e8192c1", + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "smex", + "sha256": "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5", "rev": "97b4a4d82a4449e3f1a3fa8a93387d6eb0ef9c26" }, "recipe": { "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.0", "deps": [] }, "fancy-battery": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/lunaryorn/fancy-battery.el.git", - "sha256": "63b4cd1df91529341c713dc85c3fa9b5ee67b27378d76ed72881f3e83c6dbd93", + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "fancy-battery.el", + "sha256": "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g", "rev": "5b8115bbeb67c52d4202a12dcd5726fb66e0a1ff" }, "recipe": { "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [ @@ -19091,14 +20348,15 @@ }, "org-trello": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/org-trello/org-trello.git", - "sha256": "aedae59ff245df4c11960ef1d0f6c73ad7edef9af63cfe9adf56cc0927347ae6", + "tag": "fetchFromGitHub", + "owner": "org-trello", + "repo": "org-trello", + "sha256": "1561nxjva8892via0l8315y3fih4r4q9gzycmvh33db8gqzq4l86", "rev": "3718ed704094e5e5a491749f1f722d76ba4b7d73" }, "recipe": { "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.5", "deps": [ @@ -19112,28 +20370,30 @@ }, "know-your-http-well": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/for-GET/know-your-http-well.git", - "sha256": "2f2e03c099dacf13aff312763dacb2af3bd51837f89bf65a0ca57fd3e6dd218e", + "tag": "fetchFromGitHub", + "owner": "for-GET", + "repo": "know-your-http-well", + "sha256": "077hidc464kpmgd1vz50j0pygl956llhbqy1c9mwl3r0jh86q0rg", "rev": "a7fb26fd5a8bf658d1c7d62f77a37fd772a144b0" }, "recipe": { "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "homebrew-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dunn/homebrew-mode.git", - "sha256": "252a82e0203233ccbace28fe557a20df9138eb5ee7c57104aa5c3e33bd1e8488", + "tag": "fetchFromGitHub", + "owner": "dunn", + "repo": "homebrew-mode", + "sha256": "1n8r4jrk71dg25ca6bsw11ky0dszdj4pvqwsmy3msqlji1ckvqyn", "rev": "359b5a0e42c6dab618bb9bcf03ad3dfe3b2a3d12" }, "recipe": { "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.2", "deps": [ @@ -19142,6 +20402,20 @@ "inf-ruby" ] }, + "caml": { + "fetch": { + "tag": "fetchsvn", + "url": "http://caml.inria.fr/svn/ocaml/trunk/emacs/", + "sha256": "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw", + "rev": "16548" + }, + "recipe": { + "sha256": "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "deft": { "fetch": { "tag": "fetchgit", @@ -19151,35 +20425,37 @@ }, "recipe": { "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [] }, "autodisass-java-bytecode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gbalats/autodisass-java-bytecode.git", - "sha256": "3f3637a5af9850efb764e3a02dae38b6eb66af0b49c6d9d3f7857c0089315f04", + "tag": "fetchFromGitHub", + "owner": "gbalats", + "repo": "autodisass-java-bytecode", + "sha256": "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s", "rev": "3d61dbe266133c950b39e880f78d142751c7dc4c" }, "recipe": { "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3", "deps": [] }, "helm-bundle-show": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/masutaka/emacs-helm-bundle-show.git", - "sha256": "b2b31cc89c0d2f6d88515e27704cc8a4616484e9aa1219f469d7849eec221df0", + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-bundle-show", + "sha256": "1w0x4bn9x16pd7s1j4max6268qd4r16709sya646sbqdkk41rcxj", "rev": "6dffd602a4cc5d85eade7de3be99a22b246fc437" }, "recipe": { "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.4", "deps": [ @@ -19188,14 +20464,15 @@ }, "irony": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sarcasm/irony-mode.git", - "sha256": "bac2fbf0bdbc5b105502ee8928d42cc040836604b5a5e62c530904dd4a38a423", + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "irony-mode", + "sha256": "1wsh72dzm54srxdnlhnmbi8llc30syhbckycj5wmsamw8b89p7c2", "rev": "9f0b33a5369806ba9c2f62238f64d6455a67af9e" }, "recipe": { "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -19204,14 +20481,15 @@ }, "swiper-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/swiper-helm.git", - "sha256": "c47414370da836bac42ab54b931f3b709c237a9e1284df51dcf2b619475b4df8", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper-helm", + "sha256": "1y2dbd3ikdpjvi8xz10jkrx2773h7cgr6jxm5b2bldm81lvi8x64", "rev": "f3d6dba865629eed8fb14f92dab1fad50734891b" }, "recipe": { "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -19222,14 +20500,15 @@ }, "e2wm-sww": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-sww.git", - "sha256": "af8ccce28cf07e4a8d641a50b8ba1555f6d6a5a5ce9e956e6281f9c7781de457", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-sww", + "sha256": "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g", "rev": "1063f9854bd34db5ac771cd1036cecc89834729d" }, "recipe": { "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -19245,21 +20524,22 @@ }, "recipe": { "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0", "deps": [] }, "syntactic-sugar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/syntactic-sugar.git", - "sha256": "f99d0ce0d23f308180186b0c748a3f8e66347beaf0f38be92cd9e5215072b8e0", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "syntactic-sugar", + "sha256": "1pn69f4w48jdj3wd1myj6qq2mhvygmlzbq2dws2qkjlp3kbwa6da", "rev": "06d943c6ad9507603bb6ab6d37be2d359d0763a9" }, "recipe": { "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.4", "deps": [] @@ -19272,35 +20552,37 @@ }, "recipe": { "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "smartrep": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/myuhe/smartrep.el.git", - "sha256": "6e30c6384aab88d6a26b9bd5910203aaf3c40075228f86f85f1b519f5f7ab448", + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "smartrep.el", + "sha256": "0j5lg9gryl8vbzw8d3r2fl0c9wxa0c193mcvdfidd25b98wccc3f", "rev": "0b73bf3d1a3c795671bfee0a36cecfaa54729446" }, "recipe": { "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "prodigy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/prodigy.el.git", - "sha256": "e4a2630ee03593ab8c4f1d05647f11500e3aa14d75c54e659d0ea52717c32596", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "prodigy.el", + "sha256": "0r32rjfsbna0g2376gdv0c0im1lzw1cwbp9690rgqjj95ls4saa3", "rev": "7034873908a616853b3a65258a7580a3b402e8a2" }, "recipe": { "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.0", "deps": [ @@ -19312,32 +20594,48 @@ }, "scss-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/antonj/scss-mode.git", - "sha256": "0936cd77ffb8cc071c8cb3869a47c59f266795e597c2fab87d993c745972f27e", + "tag": "fetchFromGitHub", + "owner": "antonj", + "repo": "scss-mode", + "sha256": "0zpjf9cp8g4rgnwgmhlpwnanf9lzqm3rm1mkihf0gk5qzxvwsdh9", "rev": "d663069667d9b158d56e863b80dd4cc02984e49f" }, "recipe": { "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [] }, "buttercup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jorgenschaefer/emacs-buttercup.git", - "sha256": "700de58289e3cf15637c4b59a6df1c01704340639153adb1385b29d9b21fe4ff", + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "emacs-buttercup", + "sha256": "1xmzvl9l87adw7kqznnzhnh8l3iplbf82vmqax38bd8ykbw92jlf", "rev": "87e0c0dab4b04d1c1a76a952b741ba6de3121bb5" }, "recipe": { "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, + "maude-mode": { + "fetch": { + "tag": "fetchsvn", + "url": "svn://svn.code.sf.net/p/maude-mode/code/trunk", + "sha256": "06k07qvhm2mbqasn72649lx3pwzb0r466854a18g6lciwhiww7vy", + "rev": "63" + }, + "recipe": { + "sha256": "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "list-register": { "fetch": { "tag": "fetchurl", @@ -19346,7 +20644,7 @@ }, "recipe": { "sha256": "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -19359,7 +20657,7 @@ }, "recipe": { "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -19372,21 +20670,22 @@ }, "recipe": { "sha256": "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "emms-player-mpv": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dochang/emms-player-mpv.git", - "sha256": "a3e7b955d60dd0b71e08dfe538148eb7717e6317a0fa17c74eed43ca6537cf19", + "tag": "fetchFromGitHub", + "owner": "dochang", + "repo": "emms-player-mpv", + "sha256": "1yy4dmjp53l2df5qix31g4vizhv80wm88vjqq6qqa9p822732n0m", "rev": "a1be1d266530ede3780dd69a7243d898f1016127" }, "recipe": { "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.7", "deps": [ @@ -19395,14 +20694,15 @@ }, "kibit-helper": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brunchboy/kibit-helper.git", - "sha256": "fb0b2e37e33849513572b5d8fc82fef2fd28b187f22fdfa8c635c300fb31c14f", + "tag": "fetchFromGitHub", + "owner": "brunchboy", + "repo": "kibit-helper", + "sha256": "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv", "rev": "ec5f154db3bb0c838e86f527353f08644cede926" }, "recipe": { "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -19412,14 +20712,15 @@ }, "slime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/slime/slime.git", - "sha256": "83978dda1e08373fa2e4de859401de2b892f9808cb0af513aca144ddaa27460c", + "tag": "fetchFromGitHub", + "owner": "slime", + "repo": "slime", + "sha256": "10ydinwsm7m5jlggynhsihxl18zl8cph4rliic8i72hjc3nhqfmy", "rev": "da7c32d0c54a6f2d9a4be0662c7b2d576b11eda1" }, "recipe": { "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.15", "deps": [ @@ -19428,30 +20729,46 @@ }, "define-word": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/define-word.git", - "sha256": "2f211540bd9abd369e262aa3eab2155d5b8e64e1cc1ba715158b1df9586ad8d3", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "define-word", + "sha256": "1lyqd9cgj7cb2lasf6ycw5j8wnsx2nrfm8ra4sg3dgcspm01a89g", "rev": "38e2f94779652fc6280a51b68dc910431513a8e1" }, "recipe": { "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ "emacs" ] }, + "zeitgeist": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:zeitgeist-datasources", + "sha256": "0f80fxh0y9lfa08fnic7ln0jn8vngfbiygy6sizdmrcxz67559vc", + "rev": "181" + }, + "recipe": { + "sha256": "0gzmiwxmzcrl5mf0s7vs09p2wl7slq8xbl6ynl76iwzwjxjizahk", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [] + }, "ecukes": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ecukes/ecukes.git", - "sha256": "7fa51478598883ba688536380cd98c94b382b27c8727b291145d8aa31b59ed2b", + "tag": "fetchFromGitHub", + "owner": "ecukes", + "repo": "ecukes", + "sha256": "1r5hlcspznvfm111l1z0r4isd582qj64sa8cqk6hyi3y1hyp1xxs", "rev": "2bba6266a3fff772cd54a6cd1b1aee2c36872aa5" }, "recipe": { "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.15", "deps": [ @@ -19465,42 +20782,45 @@ }, "shell-switcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/shell-switcher.git", - "sha256": "8b6b97c3572256493ee03e2fbba3da156562eb55cff7f0d4fab9018c39f533d9", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "shell-switcher", + "sha256": "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria", "rev": "2c5575ae859a82041a4bacd1793b844bfc24c34f" }, "recipe": { "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [] }, "dash": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/dash.el.git", - "sha256": "e34780da0a976138dc2031f468a9c77aa0f0a18c30baf4681f3e183c8146406b", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "dash.el", + "sha256": "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa", "rev": "fec6f5480d0ce03ead0e6117ac77dc7e757e76f8" }, "recipe": { "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.12.1", "deps": [] }, "haml-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nex3/haml-mode.git", - "sha256": "168924444661a40ce3a04b230b2e60994eee74ac4cdb66d06b36735f7170d1c4", + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "haml-mode", + "sha256": "0fmr7ji8x5ki9fzybpbg3xbhzws6n7ffk7d0zf9jl1x3jd8d6988", "rev": "5e0baf7b795b9e41ac03b55f8feff6b51027c43b" }, "recipe": { "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "3.1.9", "deps": [ @@ -19509,14 +20829,15 @@ }, "helm-github-stars": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sliim/helm-github-stars.git", - "sha256": "2f40b37d4bb7865819714459e72c10ab9165872f984b9c8c018fdce62daf85dc", + "tag": "fetchFromGitHub", + "owner": "Sliim", + "repo": "helm-github-stars", + "sha256": "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn", "rev": "9211be3fbb65ca8819e0d1a54524ed8abbfaa4fa" }, "recipe": { "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.2", "deps": [ @@ -19526,28 +20847,30 @@ }, "elmine": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoc/elmine.git", - "sha256": "dfad27564b59011c73deb420a54a25ff4a81b324fcdb2339a8055c9b4202f1e9", + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "elmine", + "sha256": "080nnw6ddsczbm7gk50x4dkahi77fsybfiki5iyp39fjpa7lfzq3", "rev": "091f61c70c9e7630a74b7b127488051d143a35e7" }, "recipe": { "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "ace-jump-zap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/waymondo/ace-jump-zap.git", - "sha256": "8ad57561be7bc861478564045c86558c340a1f4131c7dd18994de1ef1536cf7a", + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "ace-jump-zap", + "sha256": "0yng6qayzqadk4cdviri84ghld4can35q134hm3n3j3vprhpbmca", "rev": "0acdd83a5abd59606495e67a4ee01f7856e5d359" }, "recipe": { "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -19563,21 +20886,22 @@ }, "recipe": { "sha256": "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "smeargle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-smeargle.git", - "sha256": "83235ec6befe1000f80d16ae9dcaf05636a7c4ebd1f0413201d8e4463da517f8", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-smeargle", + "sha256": "1pcpg3lalbrc24z3vwcaysps8dbdzmncdgqdd5ig6yk2a9wyj9ng", "rev": "fe0494bb859ea51800d6e7ae7d9eda2fe98e0097" }, "recipe": { "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [ @@ -19587,14 +20911,15 @@ }, "epc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/kiwanami/emacs-epc.git", - "sha256": "1f254cf7bfa6fe944c67242bea23c2cebc30a195e874f0987eb92df8fea92217", + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-epc", + "sha256": "05r2m7zghbdrgscg0x78jnhk1g6fq8iylar4cx699zm6pzvlq98z", "rev": "152e6e10a79b56ebc7568054589cf6c3c44595c7" }, "recipe": { "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -19604,28 +20929,30 @@ }, "suomalainen-kalenteri": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tlikonen/suomalainen-kalenteri.git", - "sha256": "d6aac951f59bcb326e8178fa2f8c4360c25f95276aedb4f1400a31cfc43dc3ac", + "tag": "fetchFromGitHub", + "owner": "tlikonen", + "repo": "suomalainen-kalenteri", + "sha256": "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann", "rev": "b7991cb35624ebc04a89bbe759d40f186c9c097e" }, "recipe": { "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2015.11.29", "deps": [] }, "init-loader": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-jp/init-loader.git", - "sha256": "d9e5689702f7a229afc6ec9a80a66306ce7b472c3ed726c44e1fd9c4b98ea686", + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "init-loader", + "sha256": "031vb7ndz68x0119v4pyizz0ykd341ywcp5s7i4z35zx1vcqj8az", "rev": "128ee76adbf431f0b8c30a3a29cb20c9c5100cde" }, "recipe": { "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [] @@ -19638,35 +20965,37 @@ }, "recipe": { "sha256": "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "session": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacsorphanage/session.git", - "sha256": "3b4dab2c1569f54f111cb995ae7f09bce069b9adffcf8916c2b39dbf9428e96a", + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "session", + "sha256": "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v", "rev": "19ea0806873daac3539a4b956e15655e99e3dd6c" }, "recipe": { "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3a", "deps": [] }, "bundler": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tobiassvn/bundler.el.git", - "sha256": "0dd553d24d928787bec405c592d4f5fdf4daa1bbb614bb69dec74b8221d96e0a", + "tag": "fetchFromGitHub", + "owner": "tobiassvn", + "repo": "bundler.el", + "sha256": "18d74nwcpk1i8adxzfwz1lgqqcxsc4wkrb490v64pph79dxsi80h", "rev": "4cb4fafe092d587cc9e58ff61cf900fb7f409adf" }, "recipe": { "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [ @@ -19675,42 +21004,45 @@ }, "jsfmt": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/brettlangdon/jsfmt.el.git", - "sha256": "1d1c1914b5a70a06c690bba51bf8e73e3c1a70f7dae122c76269d1ca3bd5555e", + "tag": "fetchFromGitHub", + "owner": "brettlangdon", + "repo": "jsfmt.el", + "sha256": "0pjmslxwmlb9cb3j5qfsyxq1lg1ywzw1p9dvj330c2m7nla1j70x", "rev": "c5d9742872509143db0250a77db705ef78f02cd0" }, "recipe": { "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [] }, "go-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dominikh/go-mode.el.git", - "sha256": "04bf758fafd269d176985fd84a241f3eb5fa0bf5e6acf805f30c43ea23d61ee9", + "tag": "fetchFromGitHub", + "owner": "dominikh", + "repo": "go-mode.el", + "sha256": "1qqsck11v3ki18qld7hrb7dis60c2ylmq15s7srsppzwil8wm3fx", "rev": "dce210fdde620bed3d179816fda79dc83a66b8de" }, "recipe": { "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [] }, "xtest": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/promethial/xtest.git", - "sha256": "09ac67e5e3125da57124d65f240e47cf00de12eaaec0d8bca411578629341df3", + "tag": "fetchFromGitHub", + "owner": "promethial", + "repo": "xtest", + "sha256": "1wqx6hlqcmqiljydih5fx89dw06g8w728pyn4iqsap8jwgjngb09", "rev": "b227414d714e7baddef79bd306a43024b9a34d45" }, "recipe": { "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [ @@ -19719,14 +21051,15 @@ }, "noccur": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/noccur.el.git", - "sha256": "b455a68e120488e1d22c66c4fbb69747ebf2357467cca252493a46e39caa9214", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "noccur.el", + "sha256": "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7", "rev": "6cc02ce07178a61ae38a849f80472c01969272bc" }, "recipe": { "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] @@ -19739,35 +21072,37 @@ }, "recipe": { "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "lispyscript-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/lispyscript-mode.git", - "sha256": "f2771440e04eb3e0063fd4269f9b41ad74bc5a6864a47656f4f4b426e1fa948b", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "lispyscript-mode", + "sha256": "0qyj04p63fdh3iasp5cna1z5fhibmfyl9lvwyh22ajzsfbr3nhnk", "rev": "9a4200085e2a15725a58616d131a56f5edce214b" }, "recipe": { "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.5", "deps": [] }, "ac-anaconda": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/proofit404/ac-anaconda.git", - "sha256": "6ff3ad3795ee08f407fab18e737e4244d8789c58f6203e257c9e48d3b5e5ffe9", + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "ac-anaconda", + "sha256": "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44", "rev": "d0dec5c026235f65f9fd6594540df8886ed1b6a8" }, "recipe": { "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -19784,21 +21119,22 @@ }, "recipe": { "sha256": "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "magit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd", "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" }, "recipe": { "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.1", "deps": [ @@ -19812,28 +21148,30 @@ }, "sly": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/capitaomorte/sly.git", - "sha256": "9eba7edf46db8987d3d8d42fcf4dde7fbbdcef15a7f29f09ef6d32322442770c", + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly", + "sha256": "1aihr5pbdqjb5j6xsghi7qbrmp46kddv76xmyx5z98m93n70wzqf", "rev": "1942c53fc40fd6ace0e822b5c9bf551f59061f32" }, "recipe": { "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.14", "deps": [] }, "magit-stgit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit-stgit.git", - "sha256": "cb5bc9a005e41bcf3ddef010343685361cf6d01d43ea5a4195c8ed94337a68d6", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-stgit", + "sha256": "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb", "rev": "d1793345a8d32b2c509077d634ca73148a68de4b" }, "recipe": { "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.1.2", "deps": [ @@ -19843,28 +21181,30 @@ }, "shelltest-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rtrn/shelltest-mode.git", - "sha256": "bacfb378ce6ccd095e2ccbbc865d9bec7a239348578651842a67fb20375fc756", + "tag": "fetchFromGitHub", + "owner": "rtrn", + "repo": "shelltest-mode", + "sha256": "0mn7bwvj1yv75a2531jp929j6ypckdfqdg6b5ig0kkbcrrwb7kxs", "rev": "fead97c7ff1b39715ec033a793de41176f1788f5" }, "recipe": { "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "tagedit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/tagedit.git", - "sha256": "950cdd0b92e25fc9bfe7d60061cee1d3a22e688a2b1f5983f98b996a3ff93035", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "tagedit", + "sha256": "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb", "rev": "3fcf54b824b75c5ad68f5438d5638103049a389f" }, "recipe": { "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.0", "deps": [ @@ -19874,28 +21214,30 @@ }, "navi-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tj64/navi.git", - "sha256": "72a4847930f56b502ddcc2ea3730410965c1f652cca89a3e0f8e2cbe21ec9ec6", + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "navi", + "sha256": "15jh1lsgqfnpbmrikm8kdh5bj60yb96f2as2anppjjsgl6w96glh", "rev": "5c979b3b3873b0e67751a1321a9e271d066f2022" }, "recipe": { "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "flymake-sass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/flymake-sass.git", - "sha256": "e189465dc3913a629853321f5144fe92d9a6a8969e187a951f04bed13860cdae", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-sass", + "sha256": "0c74qdgy9c4hv3nyjnbqdzypbg9399vq3p5ngp5lasc7iz6vi0h8", "rev": "1c7664818db539de7f3dab396c013528a3f5b8b4" }, "recipe": { "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6", "deps": [ @@ -19904,28 +21246,30 @@ }, "sackspace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cofi/sackspace.el.git", - "sha256": "8d1bf7aa2247b9954f411cb894593693f1f0a99cda09e1d06db2e58c8320bb28", + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "sackspace.el", + "sha256": "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl", "rev": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708" }, "recipe": { "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.2", "deps": [] }, "org2blog": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/punchagan/org2blog.git", - "sha256": "f46457d13a51f2ffdccd86395bcbda6790adc05afab4ea67d1440f2bcf21612b", + "tag": "fetchFromGitHub", + "owner": "punchagan", + "repo": "org2blog", + "sha256": "0av1477jn3s4s5kymd7sbb0av437vb5mnfc6rpfgzwji7b8mfr7l", "rev": "ad389ae994d269a57e56fbea68df7e6fe5c2ff55" }, "recipe": { "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.2", "deps": [ @@ -19936,14 +21280,15 @@ }, "mhc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/yoshinari-nomura/mhc.git", - "sha256": "5de67a67ba5c00b4003fd07a939e989395db60d3dc4129ce228961ff50e6f290", + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "mhc", + "sha256": "1bp4xqklf422n0zwwyj0ag3a4nndg8klazrga6rlvpy01hgg3drl", "rev": "46d2a983b77b3139c9694ffba16ae875edc7d5b0" }, "recipe": { "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.1", "deps": [ @@ -19952,14 +21297,15 @@ }, "company-ghc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/iquiw/company-ghc.git", - "sha256": "afea0aefdb018729e8c73b2ef59a9800fc7a666088e544ab824806248b4b8f13", + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-ghc", + "sha256": "0y9i0q37xjbnlnlxq7xjvnpn6ykzbd55g6nbw10z1wg0m2v7f96r", "rev": "64e4f9d0cf9377138a8dee34c69e7d578fd71090" }, "recipe": { "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [ @@ -19978,7 +21324,7 @@ }, "recipe": { "sha256": "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2.8", "deps": [ @@ -19988,28 +21334,30 @@ }, "ruby-end": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/ruby-end.git", - "sha256": "6467b8c73cd98f11a4402415753f3189fcf0511d7042db0a593cb709f2d1b29b", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ruby-end", + "sha256": "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds", "rev": "648b81af136a581bcef387744d93c011d9cdf54b" }, "recipe": { "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.1", "deps": [] }, "f": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rejeep/f.el.git", - "sha256": "fad74e0febe9e7bb8a7dde19366b6b44b20a96cdf839aeb44b242502b7e3790a", + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "f.el", + "sha256": "13issmwp77mswrqwhx2qcyxavv68x7lrql5za5cz24yzzy6zrp2x", "rev": "7003428ead6d80e81ff14c3614239efdbce7391b" }, "recipe": { "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.18.0", "deps": [ @@ -20019,14 +21367,15 @@ }, "ac-cider": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/ac-cider.git", - "sha256": "c979c406c5fd29220ad7f46dbf558497417078028126f18574aed3bd3a05f2ee", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "ac-cider", + "sha256": "1vpj0lxbvlxffj2z29l109w70hcphiavyvglsw524agxql3c8yf9", "rev": "0dcb8e3028f9f658cacbe1ac3e99b02575e2ecd4" }, "recipe": { "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -20044,7 +21393,7 @@ }, "recipe": { "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [] @@ -20057,7 +21406,7 @@ }, "recipe": { "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -20070,7 +21419,7 @@ }, "recipe": { "sha256": "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -20079,14 +21428,15 @@ }, "sound-wav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-sound-wav.git", - "sha256": "465fd9213339a245b3f93c692860247cf5c52807bf4bd33a120b38c60c3ac26f", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-sound-wav", + "sha256": "0q2ragq4hw89d3w48ykwljb19n2nhz8z6bsmb10shimaf203652g", "rev": "215e23b118fba11a7132b7c79326ad0a723e2605" }, "recipe": { "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.01", "deps": [ @@ -20096,14 +21446,15 @@ }, "psession": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thierryvolpiatto/psession.git", - "sha256": "e8edec68eb59df2342363fa2a95f0685054f5c117db7fb072c1eca9604434a57", + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "psession", + "sha256": "0msa8c29djhy5h3zpdvx25f4y1c50rgsk8iz6r127psrxdlfrvg8", "rev": "138b27f57bdc3ff53ec5896439e8ed00294a5ea2" }, "recipe": { "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -20113,14 +21464,15 @@ }, "elfeed-web": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/elfeed.git", - "sha256": "76b58563cc5fc1d87e1326a3d61288746da17e84f370672a23ab86c1c42ad9d7", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elfeed", + "sha256": "0132jl4fl2ycais9l0csykg466ppq8cc4181d3dx87zf7fdhrgwp", "rev": "4c15ed9f9559285df196c9b793bd5168662b6532" }, "recipe": { "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.0", "deps": [ @@ -20131,14 +21483,15 @@ }, "cljr-helm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/philjackson/cljr-helm.git", - "sha256": "0a426d4c392c271125a19207b17516beb0bac4b4295b829909d8c75beb46fba1", + "tag": "fetchFromGitHub", + "owner": "philjackson", + "repo": "cljr-helm", + "sha256": "18gv8vmmpiyq16cq4nr9nk2bmc5y2rsv21wjl4ji29rc7566shha", "rev": "916d070503d0f484f36626c7a42f156b737e3fab" }, "recipe": { "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [ @@ -20148,14 +21501,15 @@ }, "ansible": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/emacs-ansible.git", - "sha256": "1c29ec9e88727a7dd25e691b7d7a3d9b7af907c753e56ee58593a12e51fadb2c", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ansible", + "sha256": "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2", "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" }, "recipe": { "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -20165,42 +21519,45 @@ }, "japanlaw": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/japanlaw.el.git", - "sha256": "27bac59678cc9b4e59e965bde09d819531ecc77c2acb26ec1c83761bd01cdf22", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "japanlaw.el", + "sha256": "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h", "rev": "d90b204b018893d5d75286c92948c0bddf94cce2" }, "recipe": { "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.1", "deps": [] }, "link-hint": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/noctuid/link-hint.el.git", - "sha256": "68a0a230e419b312634adc5a75b69c31ef32c5bf5d349b00a3a6fab37b538eec", + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "link-hint.el", + "sha256": "1v4fadxv7ym6lc09nd2xpz2k5vrikjv7annw99ii5cqrwhqa5838", "rev": "d26b5330e6e42b4bed4e4730054b4c5e308ceab2" }, "recipe": { "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "git-commit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd", "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" }, "recipe": { "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.1", "deps": [ @@ -20211,14 +21568,15 @@ }, "json-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/joshwnj/json-mode.git", - "sha256": "23b6fcf9caef54ed9b6790d314ac8bcf165e50d754a2bc1a726e67646abab36b", + "tag": "fetchFromGitHub", + "owner": "joshwnj", + "repo": "json-mode", + "sha256": "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3", "rev": "ce275e004dc7265047a80dec68b24eb058b200f0" }, "recipe": { "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.6.0", "deps": [ @@ -20228,14 +21586,15 @@ }, "fountain-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rnkn/fountain-mode.git", - "sha256": "b8fd1d7d825997599cfe1cd9ff33909e15e494968811bd82b7f4e19dc6b0cc7b", + "tag": "fetchFromGitHub", + "owner": "rnkn", + "repo": "fountain-mode", + "sha256": "0yycn339vqglny1bs4c8jsaf85cyj0rzzn8wzsf5k5srh9yivzdq", "rev": "167238b3cdd5e510300abe3afd02b820f026b501" }, "recipe": { "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.0", "deps": [ @@ -20244,28 +21603,30 @@ }, "ace-jump-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/winterTTr/ace-jump-mode.git", - "sha256": "6893c9ba9c6bed8157c926c0eebcd8f676ed01c12f1115625d6329b247898832", + "tag": "fetchFromGitHub", + "owner": "winterTTr", + "repo": "ace-jump-mode", + "sha256": "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb", "rev": "a62a6867811cd739dd98a5e00a2d2e17edfb5b71" }, "recipe": { "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "ob-translate": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/krisajenkins/ob-translate.git", - "sha256": "3b2a963f859474741476a547a7b959c0ac13b7d8610aef13749d126cba1dd5c0", + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "ob-translate", + "sha256": "10hm20dzhkxk61ass3bd5gdn1bs2l60y3zjnpkxinzn7m6aaniia", "rev": "6b39cc1a94a1071107a4391684b1bffb5b9826f3" }, "recipe": { "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -20275,28 +21636,30 @@ }, "default-text-scale": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/default-text-scale.git", - "sha256": "0161a470d5da1fc590d5cc335868de67f2339abc6499c74e3812201c34452e0c", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "default-text-scale", + "sha256": "031f8ls1q80j717cg6b4pjd37wk7vrl5hcycsn8ca7yssmqa8q81", "rev": "c90c08b9fe5f25474067a00c4a4babdb413b25b1" }, "recipe": { "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "shm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisdone/structured-haskell-mode.git", - "sha256": "b496595dcf8d87b822f3effa1a85a36b6a13cb1fe7959efc28d6037798690ed6", + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "structured-haskell-mode", + "sha256": "1vf766ja8f4xp1f5pmwgz6a85km0nxvc5dn571lwidfrrdbr9rkk", "rev": "8abc5cd73e59ea85bef906e14e87dc388c4f350f" }, "recipe": { "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.20", "deps": [] @@ -20309,7 +21672,7 @@ }, "recipe": { "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -20322,21 +21685,22 @@ }, "recipe": { "sha256": "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "git-gutter-fringe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-git-gutter-fringe.git", - "sha256": "66cce8dfe64ea79ca1e62472f160f44f741f39801f7da57f75698641876b55c2", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-gutter-fringe", + "sha256": "1cw5x1w14lxy8mqpxdrd9brgps0nig2prjjjda4a19wfsvy3clmv", "rev": "3efa997ec8330d3e408a225616273d1d40327aec" }, "recipe": { "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.22", "deps": [ @@ -20348,42 +21712,45 @@ }, "flyspell-lazy": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rolandwalker/flyspell-lazy.git", - "sha256": "68cfd8c5dbf3c4908acb905abe1319717d582eb69b92512573fe66d589c65e05", + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "flyspell-lazy", + "sha256": "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm", "rev": "31786fe04a4732d2f845e1c7e96fcb030182ef10" }, "recipe": { "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.6.10", "deps": [] }, "insert-shebang": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/psachin/insert-shebang.git", - "sha256": "31b6c945adcd80ba8b36fc26b703b9532ee68343c8a600aada2a239bb7e9753a", + "tag": "fetchFromGitHub", + "owner": "psachin", + "repo": "insert-shebang", + "sha256": "1mqnz40zirnyn3wa71wzzjph3a0sbgvzcywcr7xnzqpl6sp7g93f", "rev": "4161cc8c7d07d0979684838fa8e3eec582351d97" }, "recipe": { "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.4", "deps": [] }, "anything-exuberant-ctags": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/k1LoW/anything-exuberant-ctags.git", - "sha256": "2d0fbc1db0d4be6a839f2388b9b1ae5f80c43ea9a5f87657e2e575954a489c06", + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "anything-exuberant-ctags", + "sha256": "01lw9159axg5w9bpdy55m4zc902zmsqvk213ky1nmgnln0fvq3rd", "rev": "97fa91eb04df11bdf4558fe7bb2f6aebf8be0d6c" }, "recipe": { "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -20392,14 +21759,15 @@ }, "py-autopep8": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/paetzke/py-autopep8.el.git", - "sha256": "3f5910d49d95da08ec0a2f4ed37ea9555ea5e487b2afd5ad9a92a4cc9bddb500", + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-autopep8.el", + "sha256": "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd", "rev": "685414b19106b99a4384fa0c9ce4817c659e0e81" }, "recipe": { "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7.0", "deps": [] @@ -20413,107 +21781,114 @@ }, "recipe": { "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "nyan-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/TeMPOraL/nyan-mode.git", - "sha256": "4b0a710b2c25392a3f20940935999d4b491c60271d50eacd99886263b49191dd", + "tag": "fetchFromGitHub", + "owner": "TeMPOraL", + "repo": "nyan-mode", + "sha256": "14vd0f4y5l470hx7kg54sx3352459mhjnrh7jl822gkl8c904lmw", "rev": "251d8f9c3686183294d76abcd816c8d69b6a71a3" }, "recipe": { "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, "repeatable-motion": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/willghatch/emacs-repeatable-motion.git", - "sha256": "6da320bd363ec0f4d025389c65c0b8692d7a64633e3327e15fa687701cbbae6f", - "rev": "69f71c02a1dbec5d7406492449f5c03048d6e529" + "tag": "fetchFromGitHub", + "owner": "willghatch", + "repo": "emacs-repeatable-motion", + "sha256": "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck", + "rev": "e664b0a4a3e39c4085378a28b5136b349a0afb22" }, "recipe": { "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "0.1", + "version": "0.2", "deps": [ "emacs" ] }, "abc-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkjunker/abc-mode.git", - "sha256": "db675eb1f68af49c9150acd4c427b00bf030e04f64cd09502db593fe7ba2c48d", + "tag": "fetchFromGitHub", + "owner": "mkjunker", + "repo": "abc-mode", + "sha256": "13f4l9xzx4xm5m80kkb49zh31w0bn0kw9m5ca28rrx4aysqmwryv", "rev": "6b5ab7402287dab5a091e94fec9982dc45d9d287" }, "recipe": { "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20140225.944", "deps": [] }, "enotify": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/laynor/enotify.git", - "sha256": "c5671705a16324e4da80ff60525f5d22f6b266743364fa254809462393b66ebd", + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "enotify", + "sha256": "1in4wbwkxn8qfcsfjbczzk73z74w4ixlml61wk666dw0kpscgbs5", "rev": "75c84b53703e5d52cb18acc9251b87ffa400f388" }, "recipe": { "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.3", "deps": [] }, "org-outlook": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mattfidler/org-outlook.el.git", - "sha256": "eb3cdcf784b90f61dea05aa6f54871e59bb83c52b53615d3af657e4f2fe04cf8", + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-outlook.el", + "sha256": "15fy6xpz6mk4j3nkrhiqal2dp77rhxmk8a7xiw037xr1jgq9sd9a", "rev": "070c37d017ccb71d94c3c69c99632fa6570ec2cc" }, "recipe": { "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.11", "deps": [] }, "kill-ring-search": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nschum/kill-ring-search.el.git", - "sha256": "52cd2895527401bf21354be6ea23f3eef50f707ebdb9ad63080b957c6354ac9d", + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "kill-ring-search.el", + "sha256": "0axvhikhg4fikiz4ifg0p4a5ygphbpjs0wd0gcbx29n0y54d1i93", "rev": "3a5bc1767f742c91aa788df79ecec836a0946edb" }, "recipe": { "sha256": "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "scala-outline-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ancane/scala-outline-popup.git", - "sha256": "23f20d5776753125ead2be6e5417a87ea2618039b033ad90661ebe0f43c8f2e6", + "tag": "fetchFromGitHub", + "owner": "ancane", + "repo": "scala-outline-popup", + "sha256": "1sq0p0na0yxkipv6fv4wcrfpl1k9sb8nyqmwg0ql2i7gwlpiqrx9", "rev": "f950e026ffbf471046f02edea56f0d329cca0e01" }, "recipe": { "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.4", "deps": [ @@ -20524,28 +21899,30 @@ }, "smart-tabs-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jcsalomon/smarttabs.git", - "sha256": "9f349f0f0abaa9f7319d83b96cdedec99d15e3b8b3d8ef3167e814a40984d1cd", + "tag": "fetchFromGitHub", + "owner": "jcsalomon", + "repo": "smarttabs", + "sha256": "1kfihh4s8578cwqyzn5kp3iib7f9vvg6rfc3klqzgads187ryd4z", "rev": "8b196d596b331f03fba0efdb4e31d2fd0752c4a7" }, "recipe": { "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "amd-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/amd-mode.el.git", - "sha256": "db1e25df20688e9a290ece00cf7d28d553b6a54714e439761253f71cc22deab2", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "amd-mode.el", + "sha256": "00kfnkr0rclzbir2xxzr9wf2g0hf1alc004v8i9mqf3ab6dgdqiy", "rev": "16500ccc16e98bf28395b576afa83ec7bcb7b101" }, "recipe": { "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -20560,28 +21937,30 @@ }, "lua-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/immerrr/lua-mode.git", - "sha256": "986d196c800b9b677ca410032e1589c1a328a51235d07de07a4e307582b0c6b7", + "tag": "fetchFromGitHub", + "owner": "immerrr", + "repo": "lua-mode", + "sha256": "1psk4202rmkkfy1ir1ax4x4djfngd5pfry7x30ybq2ifqzymb9qb", "rev": "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45" }, "recipe": { "sha256": "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20151025", "deps": [] }, "ace-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abo-abo/ace-window.git", - "sha256": "0607ef26eef8f351173745fccf9dc0791797e72a563892b4dc0de757e56fac1e", + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ace-window", + "sha256": "07mcdzjmgrqdvjs94f2n5bkrf5vrq2fwzz256wbm3wzqxqkfy1q6", "rev": "eef897e590c4ce63c28fd29ebff3c97aec8a69ae" }, "recipe": { "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0", "deps": [ @@ -20590,14 +21969,15 @@ }, "ace-popup-menu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/ace-popup-menu.git", - "sha256": "b38c602a7c718376ac55d607e1e2f49071eb40d432ec8626581313c5bf6e84cd", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "ace-popup-menu", + "sha256": "061gi4w43dvdys2i0ffc3bnzhrkc83h5x2c43yv4fwb3xz0zn9h0", "rev": "eb8d0d938debdf89575d2ed204aeb7c0b52060b0" }, "recipe": { "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -20608,28 +21988,30 @@ }, "zoom-window": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-zoom-window.git", - "sha256": "529cca01315230346f1e4e4a818544c2f7eaef3b7a438cba089cc13c2c938cec", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-zoom-window", + "sha256": "1dwf3980rnwc85s73j8accwgpcdhsa6fqdrppbrqb8f7c05q8303", "rev": "d92dcf265170cf8ea0294d1aaf2e6025eda228e6" }, "recipe": { "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [] }, "ghc-imported-from": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/ghc-imported-from-el.git", - "sha256": "321a56135157ba7c6f969d8b32255de291b5022180a68ae16e51a25761e2b0d8", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "ghc-imported-from-el", + "sha256": "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi", "rev": "fcff08628a19f5d26151564659218cc677779b79" }, "recipe": { "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.2", "deps": [ @@ -20638,14 +22020,15 @@ }, "company-emoji": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dunn/company-emoji.git", - "sha256": "89bd9629aa8d549711d274a9158df1b96b1848aac45db654dcc6a4ed55f5ca4c", + "tag": "fetchFromGitHub", + "owner": "dunn", + "repo": "company-emoji", + "sha256": "1f8sjjms9kxni153pia6b45p2ih2mhm2r07d0j3fmxmz3q2jdldd", "rev": "c77e9c6f87a7853787c70eae885e12b6162d4cc5" }, "recipe": { "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.0", "deps": [ @@ -20655,28 +22038,30 @@ }, "graphene-meta-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rdallasgray/graphene-meta-theme.git", - "sha256": "274caee80b5b99b32b4305c43ad093670a4a5e01ce3705a96f66d1d289752dae", + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "graphene-meta-theme", + "sha256": "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17", "rev": "5d848233ac91c1e3560160a4eba60944f5837d35" }, "recipe": { "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [] }, "e2wm-term": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-term.git", - "sha256": "fc4b601344d34c3e5b6cddca3b9b49d78df814ea4574d4b47bfbe0810d9c6363", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-term", + "sha256": "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw", "rev": "65b5ac88043d5c4048920a048f3599904ca55981" }, "recipe": { "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -20693,21 +22078,22 @@ }, "recipe": { "sha256": "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "x86-lookup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/skeeto/x86-lookup.git", - "sha256": "18caaa766347837d28de5476e6a7507909f9047ed54038f904ec8154dc0e2d8e", + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "x86-lookup", + "sha256": "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq", "rev": "cac42bd9f27bff92e0b1cf6fb20563061885239f" }, "recipe": { "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -20717,14 +22103,15 @@ }, "badwolf-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/bkruczyk/badwolf-emacs.git", - "sha256": "b230a774f1aa5f7eeeeb6b73fbc742f6eb59b3b3f4dcb3273eb768f8493c90de", + "tag": "fetchFromGitHub", + "owner": "bkruczyk", + "repo": "badwolf-emacs", + "sha256": "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j", "rev": "24a557f92a702f632901a5b7bee59945a0a8cde9" }, "recipe": { "sha256": "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [ @@ -20733,14 +22120,15 @@ }, "rspec-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pezra/rspec-mode.git", - "sha256": "d52d765c4b396436bfb9e133c34fcab50a99a033459e1315a333f8acff592358", + "tag": "fetchFromGitHub", + "owner": "pezra", + "repo": "rspec-mode", + "sha256": "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp", "rev": "e289e52ec4b3aa1caf35957d721e5568eca2a3bb" }, "recipe": { "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.11", "deps": [ @@ -20750,14 +22138,15 @@ }, "mb-url": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/dochang/mb-url.git", - "sha256": "42e575014e3756a0328301cfb2dfb48e960d62942810df8205928178a5e08b64", + "tag": "fetchFromGitHub", + "owner": "dochang", + "repo": "mb-url", + "sha256": "1si2givpzihjb1szbcdm3iy9kkm7bj0hq10s0h2dfm8axdnlirm5", "rev": "34234214d1e62b9980cc64dac582e6771c92638d" }, "recipe": { "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [ @@ -20766,42 +22155,45 @@ }, "shell-toggle": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/shell-toggle.el.git", - "sha256": "f8d40d6363946fd69d53d8a1567e3f8f7b415263467af9b7f48aae956d516a73", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "shell-toggle.el", + "sha256": "0wvaa5nrbblayjvzjyj6cd942ywg7xz5d8fqaffxcvwlcdihvm7q", "rev": "9820b0ad6f22c700759555aae8a454a7dc5a46b3" }, "recipe": { "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [] }, "idomenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/birkenfeld/idomenu.git", - "sha256": "8264c3b375e802f319cfcf7261deffd7f4dffdb8d2cb4a3c37678f6bf8251e2f", + "tag": "fetchFromGitHub", + "owner": "birkenfeld", + "repo": "idomenu", + "sha256": "0bq0kx0889rdy8aasxbpmb0a4awpk2b24zv6x1dmhacmc5rj11i0", "rev": "5daaf7e06e4704ae43c825488109d7eb8c049321" }, "recipe": { "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "goto-gem": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/pidu/goto-gem.git", - "sha256": "a79f1941e3925dd8cefc66b6b762f04b50be8da3a88ac18756e2201fb23c18a1", + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "goto-gem", + "sha256": "188q7jr1y872as3w32m8lf6vwl2by1ibgdk6zk7dhpcjwd0ik7x7", "rev": "6f5bd405c096ef879fed1298c09d0daa0bae5dac" }, "recipe": { "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.2", "deps": [ @@ -20810,28 +22202,46 @@ }, "minibuffer-cua": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/minibuffer-cua.el.git", - "sha256": "924fe22b5dfa26a4bd5a0efcd9d1285ac2d63e35557733429e635ccaafb0cb1e", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "minibuffer-cua.el", + "sha256": "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj", "rev": "e8dcddc24d4f2e8d7987336fb58259e3cc78bbcb" }, "recipe": { "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] }, + "clang-format": { + "fetch": { + "tag": "fetchsvn", + "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format", + "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr", + "rev": "256039" + }, + "recipe": { + "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah", + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" + }, + "version": "nil", + "deps": [ + "cl-lib" + ] + }, "yagist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/yagist.el.git", - "sha256": "10ed1b028dc775e876754c32b92416b74b1c1380fa3b362124529ccd11422b51", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "yagist.el", + "sha256": "0l9b888wv72j4hhkcfzsh09iqjxp2qjbjcjcfmvfhxf7il11pv8h", "rev": "97723a34750ccab5439eb9f6a2f67e4e0e234167" }, "recipe": { "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8.12", "deps": [ @@ -20840,28 +22250,30 @@ }, "maxframe": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/rmm5t/maxframe.el.git", - "sha256": "1e20817a8f5fdfdcfb1e8abd30560b9e2f984669ff83db7d920959ca519beb21", + "tag": "fetchFromGitHub", + "owner": "rmm5t", + "repo": "maxframe.el", + "sha256": "08gbkd8wln89j9yxp0zzd539hbwy1db31gca3vxxrpszixx8280y", "rev": "4f1dbbe68048864037eae277b9280b90fd701ff1" }, "recipe": { "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [] }, "company-irony": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sarcasm/company-irony.git", - "sha256": "9f25a2de3007af631a0d45d0be2a5dd4fdf04b5bcd0ebba3577468f69152babd", + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "company-irony", + "sha256": "1gdsaa8zcs3layivn3ndbd5z1zflblmbxl251ld67bq763ga49cz", "rev": "29becb8824cacb1ea6f8c823d06ba65512c62e3d" }, "recipe": { "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -20873,14 +22285,15 @@ }, "easy-kill": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoliu/easy-kill.git", - "sha256": "35359ebb02fd6424042547ec66643b3b523f71c10d43a3fd295f452333b6a664", + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "easy-kill", + "sha256": "0r56nqrj6iaz57ys6hqdq5qkyliv7dj6dv274l228r7x0axrwd9m", "rev": "e3b2442e2096cefff94ea8656e49af07fee58f47" }, "recipe": { "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.3", "deps": [ @@ -20890,42 +22303,45 @@ }, "dired-imenu": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/DamienCassou/dired-imenu.git", - "sha256": "580f918fcfb2580be25b9313f07ddaa2d114343b3c12f018d7b57fde81b956c9", + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "dired-imenu", + "sha256": "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid", "rev": "610e21fe0988c85931d34894d3eee2442c79ab0a" }, "recipe": { "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5.0", "deps": [] }, "nix-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NixOS/nix.git", - "sha256": "acbc789f5aca62495c5f53bd4fb519fe41b1cf0517f9bca4f516e59060f2572c", + "tag": "fetchFromGitHub", + "owner": "NixOS", + "repo": "nix", + "sha256": "03kbdrar5w475qng4j7bbak5y6ipb7pgpxj3hblcn3pnvgh7whv6", "rev": "71a5161365f40699092e491bbff88473237fc432" }, "recipe": { "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.10", "deps": [] }, "angular-snippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magnars/angular-snippets.el.git", - "sha256": "4a8050fb380c8fe2d1245276b86f3049e73286b24932e0f1827b595563043141", + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "angular-snippets.el", + "sha256": "0h9i0iimanbvhbqy0cj9na335rs961pvhxjj4k8y53qc73xm102a", "rev": "8f737c2cf5fce758a7a3833ebad2952b5398568d" }, "recipe": { "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.3", "deps": [ @@ -20935,14 +22351,15 @@ }, "emacsagist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/echosa/emacsagist.git", - "sha256": "3782e44a49a577a414d3e0e5de7832ab665754e074193100fa37f9592aeeb3c0", + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacsagist", + "sha256": "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2", "rev": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83" }, "recipe": { "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -20951,56 +22368,60 @@ }, "yafolding": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenozeng/yafolding.el.git", - "sha256": "d1a8d0f5d9b527a3f97483c611a31f46d801badec6bc7e648ebad16aaa53f4e6", + "tag": "fetchFromGitHub", + "owner": "zenozeng", + "repo": "yafolding.el", + "sha256": "1rplafm6mldsirj7xg66vsx03n263yii3il3fkws69xmv7sx1a6i", "rev": "9b5a3f1b8dff6ddaf6369681820753afbbd1f388" }, "recipe": { "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [] }, "term-cmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/CallumCameron/term-cmd.git", - "sha256": "2e00d60dfe2e0999c77f0739d22280150a88c79c5339512411c1f237004f291b", + "tag": "fetchFromGitHub", + "owner": "CallumCameron", + "repo": "term-cmd", + "sha256": "1idz9c38q47lll55w1znya00hlkwa42029ys70sb14inc51cml51", "rev": "52651fcfbd0b0be0bddc66bf27f36243140698a4" }, "recipe": { "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [] }, "shell-split-string": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/10sr/shell-split-string-el.git", - "sha256": "e8d7b425c91d840384798cfe7b5626a1a2edcbd5fd675b8552096265ab18a505", + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "shell-split-string-el", + "sha256": "0mcxp74sk9bn36gbhhimgns07iqa4dgbq2pvpqy41igqwb84w306", "rev": "6d01c9249853fe1f8fd925ee80f97232d4e3e5eb" }, "recipe": { "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "evil-visual-mark-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/roman/evil-visual-mark-mode.git", - "sha256": "ffbdb57265ad39695ed4913e1f664b8978b596c7e3568121c3e163fd11c5951d", + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "evil-visual-mark-mode", + "sha256": "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz", "rev": "094ee37599492885ff3144918fcdd9b74dadaaa0" }, "recipe": { "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.3", "deps": [ @@ -21010,14 +22431,15 @@ }, "package+": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/zenspider/package.git", - "sha256": "27c9894e816000b9d58a6c1677e6397832b0edd5d792889f9ee0613082ca60f7", + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "package", + "sha256": "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97", "rev": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b" }, "recipe": { "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] @@ -21030,49 +22452,52 @@ }, "recipe": { "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "rvm": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/senny/rvm.el.git", - "sha256": "0ec861813dfc9c9d9e8728d96254cf9fadf2c4668177e3d8d152b5bc82d0dc01", + "tag": "fetchFromGitHub", + "owner": "senny", + "repo": "rvm.el", + "sha256": "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm", "rev": "8e45a9bad8e317ff195f384dab14d3402497dc79" }, "recipe": { "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.0", "deps": [] }, "isgd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chmouel/isgd.el.git", - "sha256": "90a9804710de3eea82c9ed06f3c76d2e8116c9e8182821faf8a7365a29121d26", + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "isgd.el", + "sha256": "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach", "rev": "764306dadd5a9213799081a48aba22f7c75cca9a" }, "recipe": { "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "swift-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/chrisbarrett/swift-mode.git", - "sha256": "4d702c5eddb989254cf779c753d4e646e949d686c0e7cdfcb71e5d576be45609", + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "swift-mode", + "sha256": "1fi5zdvplw7h5hnyi37k92c8s8qnjgizbnv1mah18y8d30n1r77n", "rev": "e09694f0f95a64b2c96487cbdcb66636a77ea22a" }, "recipe": { "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -21081,14 +22506,15 @@ }, "logview": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/doublep/logview.git", - "sha256": "e8879cbfad63ab4707d951715d68ab76f97a55a612980930319cc306d62361da", + "tag": "fetchFromGitHub", + "owner": "doublep", + "repo": "logview", + "sha256": "1yacic778ranlqblrcdhyf5igbrcin8aj30vjdm4klpmqb73hf1s", "rev": "f53693b37b46af448d0ac102ebbb152a1cb915aa" }, "recipe": { "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.2", "deps": [ @@ -21103,21 +22529,22 @@ }, "recipe": { "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "narrow-reindent": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emallson/narrow-reindent.el.git", - "sha256": "239069b6cbe9808b2c4c90b6f12cfd4583a6e7d409cb10eae25d61e5141f7718", + "tag": "fetchFromGitHub", + "owner": "emallson", + "repo": "narrow-reindent.el", + "sha256": "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh", "rev": "87466aac4dbeb79597124dd077bf5c704872fd3d" }, "recipe": { "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.0", "deps": [ @@ -21126,14 +22553,15 @@ }, "epl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cask/epl.git", - "sha256": "f2f8994650b852285a09dce3ff9b65d3acd0c0b57766108e669c49721d3bb6a3", + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "epl", + "sha256": "0sjxd5y5hxhrbgfkpwx6m724r3841b53hgc61a0g5zwispw5pmrr", "rev": "a76ec344a7fee3ca7e7dfb98b86ebc3b8c1a3837" }, "recipe": { "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -21142,14 +22570,15 @@ }, "paradox": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/paradox.git", - "sha256": "838e99809dfdfd006927e2949ad5fd965cdf33f33c2de1d5d4e70abe7e280030", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "paradox", + "sha256": "06c2a55bmnhfvjpd43kq6d2l9yijgiq16yq19x6m8050f8hzxnyb", "rev": "d62d883b8c980d679970bed79c12091df9120a77" }, "recipe": { "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.6", "deps": [ @@ -21164,14 +22593,15 @@ }, "ix": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/theanalyst/ix.el.git", - "sha256": "eaa0ad3db29d0e79210d7e573683a113920fce9474ca46cb4ab4a1b46580fd66", + "tag": "fetchFromGitHub", + "owner": "theanalyst", + "repo": "ix.el", + "sha256": "0rpxh1jv98dl9b5ldjkljk70z4hkl61kcmvy1lhpj3lxn8ysv87a", "rev": "498dac674f4f1910d39087b1457c5da5465a0614" }, "recipe": { "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [ @@ -21180,14 +22610,15 @@ }, "req-package": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/edvorg/req-package.git", - "sha256": "ece8ab206556d4c27045d9a9e5351af1a3782ae6daf3eceabcd26b46497bece7", + "tag": "fetchFromGitHub", + "owner": "edvorg", + "repo": "req-package", + "sha256": "1xzp2hnkr9lsjx50cxlpki9mvyhjsv0vyc77480jrlnpspakj7qs", "rev": "374c6d1a81b5448a66295be8c132c42ca44eeddb" }, "recipe": { "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -21198,14 +22629,15 @@ }, "cmake-project": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/alamaison/emacs-cmake-project.git", - "sha256": "b3af015dad9677d00245ec6e0ebc0f66b4b13c0b84db26edb653f6a784b7b483", + "tag": "fetchFromGitHub", + "owner": "alamaison", + "repo": "emacs-cmake-project", + "sha256": "10xlny2agxjknvnjdnw41cyb3d361yy0wvpc8l1d0xwnmmfh3bxk", "rev": "ec61f687772cccdb699f64ebe1e8dc8ba83f790f" }, "recipe": { "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.7", "deps": [] @@ -21219,21 +22651,22 @@ }, "recipe": { "sha256": "06s7mrbfbkk6baf8j1vc26nb2bg3ma1n7d297zqz8ay90cv81y76", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "org-time-budgets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/leoc/org-time-budgets.git", - "sha256": "86b8707d377d16c69dc7700a3665554ef1323592a1fd0372e9198be59c143c26", + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "org-time-budgets", + "sha256": "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46", "rev": "f2a8fe3d9d6104f3dd61fabbb385a596363b360b" }, "recipe": { "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.1", "deps": [ @@ -21243,14 +22676,15 @@ }, "fancy-narrow": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/fancy-narrow.git", - "sha256": "21e9872e1f435e6e1fc4c7acf88c8d075e9b3fc5a2a851aeee4587faa935ba81", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "fancy-narrow", + "sha256": "10ds6nlzm1s5xsp53a52qlzrnph7in6gib67qhgnwpj33wp8gs91", "rev": "cd381c1acd5e0d9b6acd7f3e76c3b1de21e8b6df" }, "recipe": { "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.4", "deps": [] @@ -21263,7 +22697,7 @@ }, "recipe": { "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [ @@ -21273,14 +22707,15 @@ }, "test-case-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ieure/test-case-mode.git", - "sha256": "bd618ace09584d69e30fef55183008d153426aac52170227492ed2b2a7ff2b24", + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "test-case-mode", + "sha256": "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f", "rev": "26e397c0f930b7eb0be413ef7dd257b1da052bec" }, "recipe": { "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0", "deps": [ @@ -21289,14 +22724,15 @@ }, "fiplr": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/d11wtq/fiplr.git", - "sha256": "9bb9875b2c8110ddcd9c21aef65ae8f88e71a9648d675980719da62c13626a6f", + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "fiplr", + "sha256": "0lwgbd9zwdv7qs39c3fp4hrc17d9wrwwjgba7a14zwrhb27m7j07", "rev": "100dfc33f43da8c49e50e8a2222b9d95532f6e24" }, "recipe": { "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.4", "deps": [ @@ -21305,14 +22741,15 @@ }, "rainbow-blocks": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/istib/rainbow-blocks.git", - "sha256": "4e847677bcfeb865edc73399c7370d4c22a649f78584d5fa676f0f74f3b9dc66", + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "rainbow-blocks", + "sha256": "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c", "rev": "8335993563aadd4290c5fa09dd7a6a81691b0690" }, "recipe": { "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [] @@ -21325,7 +22762,7 @@ }, "recipe": { "sha256": "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -21338,21 +22775,22 @@ }, "recipe": { "sha256": "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ido-grid-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/larkery/ido-grid-mode.el.git", - "sha256": "8b8ac3b031fa3ddccbaece48689cdf7e9d4b1dc3362518bc602c2b402d333738", + "tag": "fetchFromGitHub", + "owner": "larkery", + "repo": "ido-grid-mode.el", + "sha256": "0f1p6cnl0arcc2y1h99nqcflp7byvyf6hj6fmv5xqggs66qc72lb", "rev": "8bbd66e365d4f6f352bbb17673be5869ab26d7ab" }, "recipe": { "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.5", "deps": [ @@ -21361,14 +22799,15 @@ }, "company-sourcekit": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/nathankot/company-sourcekit.git", - "sha256": "cb2eff547a3bd71ea6e160f6f72fbd13bf0970f3e8df6e140384132425c2b760", + "tag": "fetchFromGitHub", + "owner": "nathankot", + "repo": "company-sourcekit", + "sha256": "1l9xrw88wq32wm3qx922ihdb9mlv9rrdalwvz9i2790fmw7y84vz", "rev": "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9" }, "recipe": { "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.4", "deps": [ @@ -21381,14 +22820,15 @@ }, "kaesar-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mhayashi1120/Emacs-kaesar.git", - "sha256": "aea707d4ea0911a3232dfa42b704381f3a96b8584faec048acafd32ff0afa108", + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8", "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" }, "recipe": { "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9.0", "deps": [ @@ -21398,14 +22838,15 @@ }, "e2wm-pkgex4pl": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/e2wm-pkgex4pl.git", - "sha256": "0dbc18c29f6cd1c0a43e9fd3c826360d4f7f6adc88de53493fd57a1efc7734ef", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-pkgex4pl", + "sha256": "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d", "rev": "7ea994450727190c4f3cb46cb429ba41b692ecc0" }, "recipe": { "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -21415,14 +22856,15 @@ }, "org-linkany": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/org-linkany.git", - "sha256": "77d478ac162504ad503a7c10d89979057e57d7f4a16c73b8321f4426d0f9efad", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-linkany", + "sha256": "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p", "rev": "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2" }, "recipe": { "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.2", "deps": [ @@ -21432,28 +22874,30 @@ }, "powershell": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jschaf/powershell.el.git", - "sha256": "e2e60483f0e4fb1bed2b0625b896efd79bf1e9795573fd777a47762f6906f0b5", + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "powershell.el", + "sha256": "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn", "rev": "7316f44d0b528552f5a0692f778e5f0efd964299" }, "recipe": { "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "underwater-theme": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/jmdeldin/underwater-theme.el.git", - "sha256": "125eafa3c23b23cee42764d051517500cecd46d2a4c1fd6817716041be6f34bc", + "tag": "fetchFromGitHub", + "owner": "jmdeldin", + "repo": "underwater-theme.el", + "sha256": "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj", "rev": "1fbd4ecd4538256c6c46f9638f883072c73ac927" }, "recipe": { "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1.0", "deps": [] @@ -21466,21 +22910,22 @@ }, "recipe": { "sha256": "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "magit-popup": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/magit/magit.git", - "sha256": "038c4d9864d791f6d3a6f98513b70fb5206fe8a1fb73c468085a2f7d44dee2b0", + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd", "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" }, "recipe": { "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.1", "deps": [ @@ -21491,28 +22936,30 @@ }, "bbdb-vcard": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tohojo/bbdb-vcard.git", - "sha256": "f62474f3cf4e1657fb80ebdef0ed75893d60cbff3fff27035a2daa9525531a22", + "tag": "fetchFromGitHub", + "owner": "tohojo", + "repo": "bbdb-vcard", + "sha256": "0fg72qnb40djyciy4gzj359lqlcbbrq0indbkzd0dj09zipkx0df", "rev": "9e11fafef1a94bc6395bd1eeacd00f94848ac560" }, "recipe": { "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [] }, "helm-hayoo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/markus1189/helm-hayoo.git", - "sha256": "0d07855c576fd17d9adbdd3f3050df3cc4b25132a618541dc09236e001625c41", + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "helm-hayoo", + "sha256": "1imfzz6cfdq7fgrcgrafy2nln929mgh31vybk9frm7a9jpamqdxp", "rev": "f49a77e8b8704bb7eb0d1097eefb8010a6617664" }, "recipe": { "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.5", "deps": [ @@ -21529,35 +22976,37 @@ }, "recipe": { "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "gnome-calendar": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/gnome-calendar.el.git", - "sha256": "cc5a30c42299dece6663f9ca37384fefeeb2e0f40c5d51d6f3f079e03aaa1898", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "gnome-calendar.el", + "sha256": "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc", "rev": "58c3a3c32aff9901c679bdf9091ed934897b84a0" }, "recipe": { "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2", "deps": [] }, "evil-org": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/edwtjo/evil-org-mode.git", - "sha256": "675e87b22f0ae0c3611c000808563ed46077046f007f144e9e81249613bc8026", + "tag": "fetchFromGitHub", + "owner": "edwtjo", + "repo": "evil-org-mode", + "sha256": "09l0ph9rc941kr718zq0dw27fq6l7rb0h2003ihw7q0a5yr8fpk7", "rev": "2d7c58dbeca0d4ac7b4eab5f47b77946951f27e9" }, "recipe": { "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -21567,14 +23016,15 @@ }, "modalka": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/modalka.git", - "sha256": "4f6463d8db0cbf332b8acc16a461a605b041f30296782fbe0d651f0fbfa448f0", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "modalka", + "sha256": "1pgr1zlp26c7xy77qfvjfmv5i2j1c45xp59x83k8nllyhckxyqn6", "rev": "f8ee86264a8e961b5821e11fdd490d5c4fc489c3" }, "recipe": { "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -21583,14 +23033,15 @@ }, "subshell-proc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/andrewmains12/subshell-proc.git", - "sha256": "ae1f2c78b2c628f3480a80bb534a1cb4bdf0f516aee208866b622862b748a857", + "tag": "fetchFromGitHub", + "owner": "andrewmains12", + "repo": "subshell-proc", + "sha256": "0mx892vn4a32df30iqmf2vsz1gdl3i557fw0194g6a66n9w2q7xf", "rev": "bf475eb7b0684af967755e91c9cabd19f953b03b" }, "recipe": { "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] @@ -21603,21 +23054,22 @@ }, "recipe": { "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "phi-search-mc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/knu/phi-search-mc.el.git", - "sha256": "5b2fb5c9bc162e7d036b37c6161281e85670a39a547a5dbce64607f26ca0cc64", + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "phi-search-mc.el", + "sha256": "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv", "rev": "4c6d2d39feb502febb81fc98b7b5854d88150c69" }, "recipe": { "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.2.1", "deps": [ @@ -21627,42 +23079,45 @@ }, "bury-successful-compilation": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/EricCrosson/bury-successful-compilation.git", - "sha256": "dc476a3cbce544b2146a265560d53dcea251d9e19a7f20a89a4c4ac1e3580a0e", + "tag": "fetchFromGitHub", + "owner": "EricCrosson", + "repo": "bury-successful-compilation", + "sha256": "03hab3iw2jjckal20zwsw7cm38nf7pan0m96d8ab4i75phy6liyw", "rev": "ca58a5df0aa3f266a8df0e3e5d3d962c086be0a9" }, "recipe": { "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "html-to-markdown": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Malabarba/html-to-markdown.git", - "sha256": "da321b02f003277a25dc90c4d20ad8967dd1bfb7267f6353c759f25f6843c430", + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "html-to-markdown", + "sha256": "0c648dl5zwjrqx9n6zr6nyzx2zcnv05d5i4hvhjpl9q3y011ncns", "rev": "0fa0effd71acd8981a425ef11e0e63d53aea3199" }, "recipe": { "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.5.1", "deps": [] }, "srefactor": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tuhdo/semantic-refactor.git", - "sha256": "2c931ef7fcc4afc2b1220465d2932e64ce6aef2bc325129e702b23381fa2a873", + "tag": "fetchFromGitHub", + "owner": "tuhdo", + "repo": "semantic-refactor", + "sha256": "0wx8l8gkh8rbf2g149f35gpnmkk45s9x4r844aqw5by4zkvix4rc", "rev": "ecd40713f736b243285c07f4cfd77113794d4f9f" }, "recipe": { "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.5", "deps": [ @@ -21671,14 +23126,15 @@ }, "wacspace": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/shosti/wacspace.el.git", - "sha256": "83ddb67e606e103356d8df08df8e9653b5e9d59235efba14ad19cf8c8a9492f7", + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "wacspace.el", + "sha256": "0jl3n79wmbxnrbf83qjq0v5pzhvv67i9r5sp2zj8nc86hh7dvjsd", "rev": "b951995c204ff23699d2bda515a96221147a725d" }, "recipe": { "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.2", "deps": [ @@ -21688,14 +23144,15 @@ }, "helm-pages": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/david-christiansen/helm-pages.git", - "sha256": "52a1e29e2d1eea8df36d04ce5c0639d8299a00c68a2aa06195f9938253fc5ed9", + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "helm-pages", + "sha256": "1r2ndmrw5ivawb940j8jnmqzxv46qrzd3cqh9fvxx5yicf020fjf", "rev": "e334ca3312e51d6fdfa989df5d3ebe683d673c0e" }, "recipe": { "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.1", "deps": [ @@ -21706,14 +23163,15 @@ }, "php-auto-yasnippets": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/ejmr/php-auto-yasnippets.git", - "sha256": "86624c94b77fd9d672fd17ea6ffe514a0341f8438dc5c0de0fddf419020a417f", + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "php-auto-yasnippets", + "sha256": "0zs11811kx6x1zgc1icd8gw420saa7z6zshpzmrddnbznya4qql6", "rev": "1950d83cbcc5c5d62cd3bc432e1595870fe8cabf" }, "recipe": { "sha256": "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.3.1", "deps": [ @@ -21729,21 +23187,22 @@ }, "recipe": { "sha256": "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "helm-ls-git": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/emacs-helm/helm-ls-git.git", - "sha256": "e3aa5dbd1ed838f8fbb52ee43b3aef767cbb486a73adda2cfcf99f9bcb0e6d90", + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-ls-git", + "sha256": "0azs971d7pqd4ddxzy7bfs52cmrjbafwrcnf57afw39d772rzpdf", "rev": "c5e43f4083af3949c5d5afdfbbf26d01881cb0e2" }, "recipe": { "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.8.0", "deps": [ @@ -21752,42 +23211,45 @@ }, "hl-todo": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tarsius/hl-todo.git", - "sha256": "b83b44813262ed7a5976a7aa96a1f5af48a72c0d71b1daa3fecd9174dee5391e", + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "hl-todo", + "sha256": "07irwpg794fdzsixmcbi1lnafj5gynhrdam7frcpmvb26a0l8fxq", "rev": "878220c111add155b9ee1aeb3d3475cc5e488525" }, "recipe": { "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.4.5", "deps": [] }, "cython-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/cython/cython.git", - "sha256": "76a34abcc29b2cdfb377f36fa550ce7ec678a729ff1b28d8e4e7e92eb642d48d", + "tag": "fetchFromGitHub", + "owner": "cython", + "repo": "cython", + "sha256": "0kbk2gp2avp0da32mr003ziigmi98zi0fvwia4knylllmrkl3pvq", "rev": "dc00a176d896f0df892aad8b305d946d3ed632a0" }, "recipe": { "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.23.4", "deps": [] }, "cider": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/cider.git", - "sha256": "235fe476a251fcaec6b1e363c27a98ecd9976dcfcbbe1d911c3c5bde6c4f62bf", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider", + "sha256": "1bcmqbqc5p4m31rximdpzwlrv2nann5mkbfxiba2xm7fgl2iym64", "rev": "7cc4a192323ef0911c150e6150d3bbd319253342" }, "recipe": { "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.10.0", "deps": [ @@ -21807,7 +23269,7 @@ }, "recipe": { "sha256": "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] @@ -21820,21 +23282,22 @@ }, "recipe": { "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "ac-slime": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/purcell/ac-slime.git", - "sha256": "7cf66d36d9dac4e2e297cd858072ffc813e85f62f67ddcadc61fff101c276f54", + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-slime", + "sha256": "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88", "rev": "df6c4e88b5ba2d15d47a651ecf7edc0986624112" }, "recipe": { "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.8", "deps": [ @@ -21845,14 +23308,15 @@ }, "fastnav": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gleber/fastnav.el.git", - "sha256": "cbf0e87027006fde039286dbe5be2e6bc05cc957727991d1b75bd9d2bc11947a", + "tag": "fetchFromGitHub", + "owner": "gleber", + "repo": "fastnav.el", + "sha256": "0h32w63vv451797zi6206j529fd4j8l3fp7rqip3s8xn8d4728x1", "rev": "54626e9e7cc7be5bc2bd01732e95ed2afc2312a1" }, "recipe": { "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.7", "deps": [] @@ -21865,35 +23329,37 @@ }, "recipe": { "sha256": "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "traad-autocomplete": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/traad.git", - "sha256": "1d4f3a933f0200f939ccd2f05fc5f417dbd9856f56ba293be05a849c01202048", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "traad", + "sha256": "1w2haj7grs4h9wiqkcpb28kl7zqlyba4pcgc07n1mvgksvnj729m", "rev": "8852b4dc2b2113a1597301c0b03712b65f50747f" }, "recipe": { "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4", "deps": [] }, "el-init-viewer": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/HKey/el-init-viewer.git", - "sha256": "f181a535e9c34ea1d000ef84444d17e9eb7a72523860a54323c45da14822b7f2", + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "el-init-viewer", + "sha256": "1488wv0f9ihzzf9fl8cki044k61b0kva604hdwpb2qk9gnjr4g1l", "rev": "dcc595ba51b5aff972292278aa528c7ddb46f1b5" }, "recipe": { "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -21907,14 +23373,15 @@ }, "gist": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/defunkt/gist.el.git", - "sha256": "e89b2f4a41a7b682f95aed343c35f445991f2a839a076c8df330e56a5cd17760", + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "gist.el", + "sha256": "0q3ps5f6mr9hyf6nq1wshcm1z6a5yhskqd7dbbwq5dm78552z6z8", "rev": "144280f5353bceb902d5278fa64078337e99fa4d" }, "recipe": { "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.3.1", "deps": [ @@ -21924,14 +23391,15 @@ }, "clojure-mode-extra-font-locking": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clojure-mode.git", - "sha256": "dc4a2e8d35b68bc06ee8a0ad9faa7833c7b5522776da356abeb4c8ef01ef3489", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-mode", + "sha256": "0mrkw8l736pddddl0vx9j910g1l492mascqb93h0sxv8ps4xcc53", "rev": "8b01df6c881929540b59444a54b37c03ffe6fc17" }, "recipe": { "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "5.0.1", "deps": [ @@ -21940,28 +23408,30 @@ }, "ggo-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mkjunker/ggo-mode.git", - "sha256": "ff073c756976e25246e3698260552e4225d58735c57aecac32eead73715239d5", + "tag": "fetchFromGitHub", + "owner": "mkjunker", + "repo": "ggo-mode", + "sha256": "1m9ra9qp7bgf6anfqyn56n3xa9a25ran10k9wd355qknd5skq1zz", "rev": "ea5097f87072309c7b77204888d459d084bf630f" }, "recipe": { "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "20130521", "deps": [] }, "clojure-cheatsheet": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/clojure-emacs/clojure-cheatsheet.git", - "sha256": "70610f4067e1bb3f5b2d8e14a638a0d3f2f88699850cdb38f0067411a0010c5a", + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-cheatsheet", + "sha256": "1x1kfycf3023z0r3v7xqci59k8jv5wn2vqc9y0nx7k5qgifmswrx", "rev": "f8db406b7b13a580c142d08865c9a03c101235fa" }, "recipe": { "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.4.0", "deps": [ @@ -21971,14 +23441,15 @@ }, "org-gnome": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/org-gnome.el.git", - "sha256": "41ea1129cd5ee91e363516b4a514edb5433297f6d32499ed80a2ab58c08ca72c", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "org-gnome.el", + "sha256": "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1", "rev": "1012d47886cfd30eed25b73d9f18e475e0155f88" }, "recipe": { "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3", "deps": [ @@ -21989,14 +23460,15 @@ }, "osx-dictionary": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/xuchunyang/osx-dictionary.el.git", - "sha256": "7b77e62a818833d7a3cdd516c993ba8ed7bdd7ea0f3e820949b17988f8c7dcef", + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "osx-dictionary.el", + "sha256": "1vywqzw8hydi944q4ghgxbbvvmwfpa9wj5nmrnixfcw8h4mfcxvv", "rev": "b909e38723caa37157ad6be90ac107c1c7102e07" }, "recipe": { "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.2.1", "deps": [ @@ -22006,14 +23478,15 @@ }, "zzz-to-char": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/mrkkrp/zzz-to-char.git", - "sha256": "72e4ea3baaa2f5f29a3780d1e301faecdda8691e5b359c734663d194f423b670", + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "zzz-to-char", + "sha256": "1hif9jrp4w7xvca0a4qm29scpkwhf5n61c4i5x8n5p7gbwjhh98q", "rev": "82dc3382e58091ae32160a91e8c781b813faf856" }, "recipe": { "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -22024,14 +23497,15 @@ }, "pass": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/NicolasPetton/pass.git", - "sha256": "5848c7b1eaca4a08c28859acbd04785f0ed0809fe4b1968f02a38eaf26bb7a68", + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "pass", + "sha256": "18m0973l670cjbzpa1vfv06gymhsa2f1pjcp329s0npb735x5whj", "rev": "93d99883a95e70f931d2abad87e697f5243115d3" }, "recipe": { "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [ @@ -22042,14 +23516,15 @@ }, "request": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/tkf/emacs-request.git", - "sha256": "cca4b7bc7720b98b805698b572dbae58b44b960313fc01c70e5eac3591cb6a68", + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-request", + "sha256": "0j7nakxj750rhdnm0nk075s7rx38rc9npbb55kg7r9vb2qilnvmr", "rev": "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff" }, "recipe": { "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] @@ -22063,21 +23538,22 @@ }, "recipe": { "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "2.0", "deps": [] }, "sphinx-doc": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/naiquevin/sphinx-doc.el.git", - "sha256": "4feff4aaaf956ac45e63534e9948778cf60508afd9c7139e5f9feffe5132a3fe", + "tag": "fetchFromGitHub", + "owner": "naiquevin", + "repo": "sphinx-doc.el", + "sha256": "1q6v0xfdxm57lyj4zxyqv6n5ik5w9drk7yf9w8spb5r22jg0dg8c", "rev": "b3459ecb9e6d3fffdee3cb7342563a56a32ce666" }, "recipe": { "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [ @@ -22087,14 +23563,15 @@ }, "evil-smartparens": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/expez/evil-smartparens.git", - "sha256": "441faf9df12c2ed062fbd39b3b318599088c9943161d46b1a6373e08d528529a", + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "evil-smartparens", + "sha256": "0j2m3rsszivyjhv8bjid5fdqaf1vwp8rf55b27y4vc2489wrw415", "rev": "12521212b8e4a02cbec733882bb89c6fac37301f" }, "recipe": { "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.3.0", "deps": [ @@ -22106,42 +23583,45 @@ }, "org-protocol-jekyll": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/vonavi/org-protocol-jekyll.git", - "sha256": "3e2718635958f26ff64bac708921fa35c2d667bd2e9ebb640477e75292fcb2b3", + "tag": "fetchFromGitHub", + "owner": "vonavi", + "repo": "org-protocol-jekyll", + "sha256": "1cxjzj955rvp0ijbp7ifpmkxdhimz8hqjw5c9gv6zwjqb5iih9ry", "rev": "c1ac46793eb9bf22b1a601e841947428be5c9766" }, "recipe": { "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1", "deps": [] }, "autodisass-llvm-bitcode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/gbalats/autodisass-llvm-bitcode.git", - "sha256": "1821eaaa3f6ccff93fea6692df48090142951452bd7cfb6efc3269a139225dfe", + "tag": "fetchFromGitHub", + "owner": "gbalats", + "repo": "autodisass-llvm-bitcode", + "sha256": "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85", "rev": "14bb1bfe2be3b04d6e0c87a7a9d1e88ce15506d0" }, "recipe": { "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.1", "deps": [] }, "sourcemap": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-sourcemap.git", - "sha256": "b11a36528c0f01ccf8561aa73c386f17c8e59fbaa76bc8b1089fceac7fff3a29", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-sourcemap", + "sha256": "1k2gfw4dydzqxbfdmcghajbb2lyg1j4wgdhp8chlql3dax1f503d", "rev": "065a0c3bd8ca5fe6a45e8f983f932c3c9fac5db9" }, "recipe": { "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.02", "deps": [ @@ -22151,14 +23631,15 @@ }, "json-snatcher": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/Sterlingg/json-snatcher.git", - "sha256": "3fcbfd635ecf0e873c0d94261acd2a3147eb1f2f10576379fc085b08964d5d3e", + "tag": "fetchFromGitHub", + "owner": "Sterlingg", + "repo": "json-snatcher", + "sha256": "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw", "rev": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c" }, "recipe": { "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "1.0.0", "deps": [ @@ -22173,21 +23654,22 @@ }, "recipe": { "sha256": "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "nil", "deps": [] }, "org-link-travis": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/aki2o/org-link-travis.git", - "sha256": "089627b60fc04ccaf038234777333f4a4c7e0df72eda91e64fc17e6244bb279d", + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-link-travis", + "sha256": "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8", "rev": "596615ad8373d9090bd4138da683524f0ad0bda5" }, "recipe": { "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.0.1", "deps": [ @@ -22196,28 +23678,30 @@ }, "cryptol-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/thoughtpolice/cryptol-mode.git", - "sha256": "470781cb9844aaabd2ebb4cbf737b4736e60d00b0c81449487bab9575cc04dfd", + "tag": "fetchFromGitHub", + "owner": "thoughtpolice", + "repo": "cryptol-mode", + "sha256": "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w", "rev": "a54d000d24757fad2a91ae2853b16a97ebe52771" }, "recipe": { "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.1.0", "deps": [] }, "company-ycmd": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/abingham/emacs-ycmd.git", - "sha256": "143753f1866721ab82dbadd5242e3b9fa4769235e7fe98674eee6791a4797e85", + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia", "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" }, "recipe": { "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.9", "deps": [ @@ -22229,14 +23713,15 @@ }, "literate-coffee-mode": { "fetch": { - "tag": "fetchgit", - "url": "git://github.com/syohex/emacs-literate-coffee-mode.git", - "sha256": "2c388ff418ba113bc02f45c5ff7c2e45692dacbfe45688d21e0cf7e123e1d5bc", + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-literate-coffee-mode", + "sha256": "1fh9wrw5irn0g3dy8gkk63csdcxgi3w2038mxx3sk6ki3r2bmhw8", "rev": "39fe3bfa1f68a7b8b91160875589219b214a2cd6" }, "recipe": { "sha256": "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40", - "commit": "7f766319c3e18a41017684ea503b0382e96ab31b" + "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, "version": "0.04", "deps": [ From c39058852e2231c0bd6abe0d751e0c51ae301587 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 18 Dec 2015 17:08:39 -0600 Subject: [PATCH 127/289] elpa-packages 2015-12-18 --- pkgs/applications/editors/emacs-modes/elpa-packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.json b/pkgs/applications/editors/emacs-modes/elpa-packages.json index 9e78fb7c1ca..a3813435f63 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.json @@ -734,10 +734,10 @@ "ggtags": { "fetch": { "tag": "fetchurl", - "url": "http://elpa.gnu.org/packages/ggtags-0.8.10.el", - "sha256": "0bigf87idd2rh40akyjiy1qvym6y3hvvx6khyb233b231s400aj9" + "url": "http://elpa.gnu.org/packages/ggtags-0.8.11.el", + "sha256": "1q2bp2b7lylf7n6c1psfn5swyjg0y78ykm0ak2kd84pbyhqak2mq" }, - "version": "0.8.10", + "version": "0.8.11", "deps": [ "cl-lib", "emacs" From b72161608a20419199ea6a555ce762489fe19cbd Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:08:02 -0600 Subject: [PATCH 128/289] melpa-packages: include fetchFromGitHub --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index d94a34cd2de..c75717f408d 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -23,13 +23,13 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl, fetchcvs, fetchgit, fetchhg }: + { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchgit, fetchhg }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchgit fetchhg; + inherit fetchurl fetchcvs fetchFromGitHub fetchgit fetchhg; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From be568d55da5d847985d2895a29f3227bd4a19018 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:08:17 -0600 Subject: [PATCH 129/289] melpa-stable-packages: include fetchFromGitHub --- .../editors/emacs-modes/melpa-stable-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index d65ce4db80e..8a8b7d4eb19 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -25,13 +25,13 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl, fetchcvs, fetchgit, fetchhg }: + { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchgit, fetchhg }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchgit fetchhg; + inherit fetchurl fetchcvs fetchFromGitHub fetchgit fetchhg; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From ecc50e9285ec0246bb9c5305114dd88324316199 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:19:49 -0600 Subject: [PATCH 130/289] melpa-packages: use fetchFromGitLab --- .../editors/emacs-modes/melpa-packages.json | 74 +++++++++++-------- .../editors/emacs-modes/melpa-packages.nix | 5 +- 2 files changed, 45 insertions(+), 34 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.json b/pkgs/applications/editors/emacs-modes/melpa-packages.json index c5d8fe80a2a..39e720553ca 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json @@ -8526,16 +8526,17 @@ }, "python-mode": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/python-mode-devs/python-mode.git", - "sha256": "2c17d1a6cdff6a910fe868c46924cc37e88d776db28b673d23450c77eeab9316", - "rev": "0740af7b7fff37eb0fe74f9221f8eb3b3f09e5b0" + "tag": "fetchFromGitLab", + "owner": "python-mode-devs", + "repo": "python-mode", + "sha256": "1204804m31kfsb0vlfm6ndvxs16maqpghw96s8wmvyg16s8vnczj", + "rev": "c6dd413218221a0b7c85d12b6733229fac8f7788" }, "recipe": { "sha256": "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k", "commit": "a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753" }, - "version": "20151218.630", + "version": "20151219.555", "deps": [] }, "ob-sml": { @@ -10767,9 +10768,10 @@ }, "bbdb-csv-import": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/iankelling/bbdb-csv-import.git", - "sha256": "34248f4f6ec5afeb8960cb563c5487fa7fa78099d7bb5f7896ffb7b1788a3bc1", + "tag": "fetchFromGitLab", + "owner": "iankelling", + "repo": "bbdb-csv-import", + "sha256": "1h9vi9wb3dzzjrw5zfypk60afzzshxa3qmnbc24ypby5dr7qy91l", "rev": "7739d10ebe1787a72aa74085e9baedd0f4988b00" }, "recipe": { @@ -11821,9 +11823,10 @@ }, "git-commit-insert-issue": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/emacs-stuff/git-commit-insert-issue.git", - "sha256": "e17279ceedb59f98913c2425d2842af952723d7ee79ea277d7ad22cd4046be2b", + "tag": "fetchFromGitLab", + "owner": "emacs-stuff", + "repo": "git-commit-insert-issue", + "sha256": "0axy8r0cs8mdsxvs57p7gqyp4lpr5a2d49947j8ri7xmxp77jwp1", "rev": "1bdfd1960bc279ca830e034a6708b25493b3f460" }, "recipe": { @@ -11927,9 +11930,10 @@ }, "org-if": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/elzair/org-if.git", - "sha256": "dccac99a2e668144209efa19c764640473d9614777bad32b747a245249d53ab7", + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "org-if", + "sha256": "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq", "rev": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8" }, "recipe": { @@ -15318,9 +15322,10 @@ }, "totd": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/egh/emacs-totd.git", - "sha256": "e2234b4c1f04d87beffdb1c6479be478c26e34aaeef44b8d1588a8a5a37ee157", + "tag": "fetchFromGitLab", + "owner": "egh", + "repo": "emacs-totd", + "sha256": "188cdgic25wrb4jdgdcj070a0pxsh3m0rd9d2r6i1s1n1nalrs6g", "rev": "ca47b618ea8290776cdb5b0f1c2c335691f69660" }, "recipe": { @@ -19328,9 +19333,10 @@ }, "visible-mark": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/iankelling/visible-mark.git", - "sha256": "cf1745da4f5fc3b4104e73bc7a2c961a80328a8ed7de3691b9672ce1d7a2909c", + "tag": "fetchFromGitLab", + "owner": "iankelling", + "repo": "visible-mark", + "sha256": "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv", "rev": "c1852e13b6b61982738b56977a452ec9026faf1b" }, "recipe": { @@ -21433,9 +21439,10 @@ }, "punctuality-logger": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/elzair/punctuality-logger.git", - "sha256": "d8f8e1bc61f21b3217ac92c532925a626997d49053521a77e400f8a7847e73ae", + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "punctuality-logger", + "sha256": "1bkkgs2agy00wivilljkj3a9fsb2ba935icjmhbk46zjc6yf3y6q", "rev": "e09e5dd37bc92289fa2f7dc44aed51a7b5e04bb0" }, "recipe": { @@ -27740,9 +27747,10 @@ }, "majapahit-theme": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/franksn/majapahit-theme.git", - "sha256": "ab910e3f9ddaec984d05be53cf4f4a593e67d95fbe90705d9fa708ca41377c45", + "tag": "fetchFromGitLab", + "owner": "franksn", + "repo": "majapahit-theme", + "sha256": "0ibw6x0wl257kxfp145ybzcnfgjr997wylxy0m6riv6sklzhx4db", "rev": "09a038826ef00b82684e569eaca07ceff7228219" }, "recipe": { @@ -31688,9 +31696,10 @@ }, "sexp-move": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/elzair/sexp-move.git", - "sha256": "7564a95c172eae85ce9b69ad3bd11c136f3daf4a4cc88f1f6107605e9ff80586", + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "sexp-move", + "sha256": "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m", "rev": "117f7a91ab7c25e438413753e916570122011ce7" }, "recipe": { @@ -33313,9 +33322,10 @@ }, "zotxt": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/egh/zotxt-emacs.git", - "sha256": "f47b0203b523bb56da6cec85af00db38f33d783c0e996c60e164eba7a37ebd04", + "tag": "fetchFromGitLab", + "owner": "egh", + "repo": "zotxt-emacs", + "sha256": "015xgsisgsv4w5h6r68f7iw3vwrqvc0az1gcdkd5dfr3nl1h4yzl", "rev": "3809f0932660c09910639eaecb3d0a8e784420b3" }, "recipe": { diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index c75717f408d..af5a2c220c5 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -23,13 +23,14 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchgit, fetchhg }: + { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab + , fetchgit, fetchhg }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchFromGitHub fetchgit fetchhg; + inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From fbc345fd69a512388bdf5428f2706891cf41ed46 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:20:17 -0600 Subject: [PATCH 131/289] melpa-stable-packages: use fetchFromGitLab --- .../emacs-modes/melpa-stable-packages.json | 21 +++++++++++-------- .../emacs-modes/melpa-stable-packages.nix | 5 +++-- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json index 50e11182e44..bc8c2fd0b0d 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json @@ -6195,9 +6195,10 @@ }, "org-if": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/elzair/org-if.git", - "sha256": "dccac99a2e668144209efa19c764640473d9614777bad32b747a245249d53ab7", + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "org-if", + "sha256": "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq", "rev": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8" }, "recipe": { @@ -11066,9 +11067,10 @@ }, "punctuality-logger": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/elzair/punctuality-logger.git", - "sha256": "fea22e9fc260da054ab2c081a709ad6b6d63b06391e935bc5f3c671ccf8888ec", + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "punctuality-logger", + "sha256": "1v48i37iqrrwbyy3bscicfq66vbbml4sg0f0n950bnk0qagjx8py", "rev": "708cae8e67dbae293c7c4be0ca5e49d76fac6714" }, "recipe": { @@ -16040,9 +16042,10 @@ }, "sexp-move": { "fetch": { - "tag": "fetchgit", - "url": "https://gitlab.com/elzair/sexp-move.git", - "sha256": "7564a95c172eae85ce9b69ad3bd11c136f3daf4a4cc88f1f6107605e9ff80586", + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "sexp-move", + "sha256": "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m", "rev": "117f7a91ab7c25e438413753e916570122011ce7" }, "recipe": { diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index 8a8b7d4eb19..ce5bfe6f7d6 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -25,13 +25,14 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchgit, fetchhg }: + { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab + , fetchgit, fetchhg }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchFromGitHub fetchgit fetchhg; + inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From e5b082fc7bb6c14a977782beb88cfc31e5e7c1bb Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:44:21 -0600 Subject: [PATCH 132/289] melpa-packages: fix evaluation error --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index af5a2c220c5..b39e3d04127 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -24,13 +24,14 @@ let mkPackage = self: name: recipe: let drv = { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab - , fetchgit, fetchhg }: + , fetchgit, fetchhg, fetchsvn }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg; + inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg + fetchsvn; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From 752e4095ecf07e5aeb077ccbee39587f3a3d1b22 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:44:55 -0600 Subject: [PATCH 133/289] melpa-stable-packages: fix evaluation error --- .../editors/emacs-modes/melpa-stable-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index ce5bfe6f7d6..ce9dc42554e 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -26,13 +26,14 @@ let mkPackage = self: name: recipe: let drv = { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab - , fetchgit, fetchhg }: + , fetchgit, fetchhg, fetchsvn }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg; + inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg + fetchsvn; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From 3fbd697b24fd869addb2cc5660c77f6ea0d2a5ee Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:49:23 -0600 Subject: [PATCH 134/289] melpa-packages: fix evaluation error --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index b39e3d04127..43d48d0d298 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -23,15 +23,15 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab - , fetchgit, fetchhg, fetchsvn }: + { melpaBuild, stdenv, fetchbzr, fetchcvs, fetchFromGitHub, fetchFromGitLab + , fetchgit, fetchhg, fetchsvn, fetchurl }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg - fetchsvn; + inherit fetchbzr fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg + fetchsvn fetchurl; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From 274678b38cee731d19a1d33d2581a84f3830d1ef Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 09:49:57 -0600 Subject: [PATCH 135/289] melpa-stable-packages: fix evaluation error --- .../editors/emacs-modes/melpa-stable-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index ce9dc42554e..aa940016b5e 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -25,15 +25,15 @@ let mkPackage = self: name: recipe: let drv = - { melpaBuild, stdenv, fetchurl, fetchcvs, fetchFromGitHub, fetchFromGitLab - , fetchgit, fetchhg, fetchsvn }: + { melpaBuild, stdenv, fetchbzr, fetchcvs, fetchFromGitHub, fetchFromGitLab + , fetchgit, fetchhg, fetchsvn, fetchurl }: let unknownFetcher = abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'"; fetch = { - inherit fetchurl fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg - fetchsvn; + inherit fetchbzr fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg + fetchsvn fetchurl; }."${recipe.fetch.tag}" or unknownFetcher; args = builtins.removeAttrs recipe.fetch [ "tag" ]; From 53a3294e956fbb91c884e0dfe43ee749b23334c3 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Sat, 19 Dec 2015 02:07:09 +0100 Subject: [PATCH 136/289] pkgs.slurm-llnl-full: Add full variant of slurm-llnl Add a variant of slurm-llnl that includes sview (based on gtk). pkgs.slurm-llnl also gains the ncurses-based smap tool. --- pkgs/servers/computing/slurm/default.nix | 15 +++++++-------- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/pkgs/servers/computing/slurm/default.nix b/pkgs/servers/computing/slurm/default.nix index 5e55724a290..6df27eaf328 100644 --- a/pkgs/servers/computing/slurm/default.nix +++ b/pkgs/servers/computing/slurm/default.nix @@ -1,6 +1,5 @@ -{ stdenv, fetchurl, python, munge, perl, pam, openssl, mysql }: - -#TODO: add sview support based on gtk2 +{ stdenv, fetchurl, pkgconfig, curl, python, munge, perl, pam, openssl, + ncurses, mysql, gtk }: stdenv.mkDerivation rec { name = "slurm-llnl-${version}"; @@ -11,12 +10,12 @@ stdenv.mkDerivation rec { sha256 = "05si1cn7zivggan25brsqfdw0ilvrlnhj96pwv16dh6vfkggzjr1"; }; - buildInputs = [ python munge perl pam openssl mysql.lib ]; + buildInputs = [ pkgconfig curl python munge perl pam openssl mysql.lib ncurses gtk ]; - configureFlags = '' - --with-munge=${munge} - --with-ssl=${openssl} - ''; + configureFlags = + [ "--with-munge=${munge}" + "--with-ssl=${openssl}" + ] ++ stdenv.lib.optional (gtk == null) "--disable-gtktest"; preConfigure = '' substituteInPlace ./doc/html/shtml2html.py --replace "/usr/bin/env python" "${python.interpreter}" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c8781b13329..1c6350d3e5f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9556,7 +9556,9 @@ let storm = callPackage ../servers/computing/storm { }; - slurm-llnl = callPackage ../servers/computing/slurm { }; + slurm-llnl = callPackage ../servers/computing/slurm { gtk = null; }; + + slurm-llnl-full = appendToName "full" (callPackage ../servers/computing/slurm { }); tomcat5 = callPackage ../servers/http/tomcat/5.0.nix { }; From 563ea391e94410dd9681a5ccc3dd594c1a19f263 Mon Sep 17 00:00:00 2001 From: koral Date: Sat, 19 Dec 2015 16:33:50 +0000 Subject: [PATCH 137/289] mediainfo: 0.7.79 -> 0.7.80 --- pkgs/applications/misc/mediainfo-gui/default.nix | 4 ++-- pkgs/applications/misc/mediainfo/default.nix | 12 ++++++------ pkgs/development/libraries/libmediainfo/default.nix | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix index a7dfac1eb0d..9bed20c0c73 100644 --- a/pkgs/applications/misc/mediainfo-gui/default.nix +++ b/pkgs/applications/misc/mediainfo-gui/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, wxGTK, desktop_file_utils, libSM, imagemagick }: stdenv.mkDerivation rec { - version = "0.7.79"; + version = "0.7.80"; name = "mediainfo-gui-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0qwb3msw9gfzdymlirpvzah0lcszc2p67jg8k5ca2camymnfcvx3"; + sha256 = "12iwiw4vcmyi8l04j540kbqifmr1wnlfw5cway185iqia43s6c10"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo wxGTK desktop_file_utils libSM imagemagick ]; diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix index 560e0ef1433..b45bee56de0 100644 --- a/pkgs/applications/misc/mediainfo/default.nix +++ b/pkgs/applications/misc/mediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, zlib }: stdenv.mkDerivation rec { - version = "0.7.79"; + version = "0.7.80"; name = "mediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0qwb3msw9gfzdymlirpvzah0lcszc2p67jg8k5ca2camymnfcvx3"; + sha256 = "12iwiw4vcmyi8l04j540kbqifmr1wnlfw5cway185iqia43s6c10"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo zlib ]; @@ -15,15 +15,15 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-libmediainfo=${libmediainfo}" ]; preConfigure = "sh autogen.sh"; - meta = { + meta = with stdenv.lib; { description = "Supplies technical and tag information about a video or audio file"; longDescription = '' MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files. ''; homepage = http://mediaarea.net/; - license = stdenv.lib.licenses.bsd2; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.devhell ]; + license = licenses.bsd2; + platforms = platforms.unix; + maintainers = [ maintainers.devhell ]; }; } diff --git a/pkgs/development/libraries/libmediainfo/default.nix b/pkgs/development/libraries/libmediainfo/default.nix index d9619fd2712..5fbc6bb1dbf 100644 --- a/pkgs/development/libraries/libmediainfo/default.nix +++ b/pkgs/development/libraries/libmediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, zlib }: stdenv.mkDerivation rec { - version = "0.7.79"; + version = "0.7.80"; name = "libmediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; - sha256 = "0lanhx1zg7s36wgi9ndv4zz7dbhkqz4dc99mva6x9rcj2p5p8c6d"; + sha256 = "0v9px37qx0dkx67gqwi1rd9x4m7zm1ml8sdj5fx0isj6qymbd1z5"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen zlib ]; From d3d39376a21dc668749b54606d15b7090e077430 Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Mon, 14 Dec 2015 17:17:35 +0100 Subject: [PATCH 138/289] dropbox: 3.12.4 -> 3.12.5 --- pkgs/applications/networking/dropbox/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix index 69ebdb429ff..6b3034424f5 100644 --- a/pkgs/applications/networking/dropbox/default.nix +++ b/pkgs/applications/networking/dropbox/default.nix @@ -20,11 +20,11 @@ let # NOTE: When updating, please also update in current stable, as older versions stop working - version = "3.12.4"; + version = "3.12.5"; sha256 = { - "x86_64-linux" = "0xq5gjqmrl4fn6vp7krj44jhb71npxvsjzbqb01whyyw7mdlc8gf"; - "i686-linux" = "093bfnak5xv50p9fxpr68w25hc1d08fcvrqnb4a6nb9wdfv3lkr6"; + "x86_64-linux" = "1agy20b8vrvdfyzjf7wr2z6vradvvg49wn31vzrl38f0m1l3gb7s"; + "i686-linux" = "0a68m2i5lyyadf12g82rvzryw9b1v6sfq5szx94jsc4qhyl7mcaj"; }."${stdenv.system}" or (throw "system ${stdenv.system} not supported"); arch = From 3b9619e8042bdb18eb2881dbe905ac1520b2faf0 Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Thu, 17 Dec 2015 14:04:37 +0100 Subject: [PATCH 139/289] wine: 1.8-rc3 -> 1.8-rc4 --- pkgs/misc/emulators/wine/versions.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/misc/emulators/wine/versions.nix b/pkgs/misc/emulators/wine/versions.nix index bfdbd0177da..971baee0fec 100644 --- a/pkgs/misc/emulators/wine/versions.nix +++ b/pkgs/misc/emulators/wine/versions.nix @@ -1,7 +1,7 @@ { unstable = { - wineVersion = "1.8-rc3"; - wineSha256 = "0j65v0jr1z56p9g16c0412ssx44zif8gfna7a6m865wz8gs1fnm6"; + wineVersion = "1.8-rc4"; + wineSha256 = "0c4mb49ad11jd880wdl4gs1478q2rkdjw2qxjzskr08bdlcq7h5f"; geckoVersion = "2.40"; geckoSha256 = "00nkaxhb9dwvf53ij0q75fb9fh7pf43hmwx6rripcax56msd2a8s"; gecko64Version = "2.40"; @@ -20,8 +20,8 @@ monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; }; staging = { - version = "1.8-rc3"; - sha256 = "1jp91w4sn10ycd21rwqsgxmpr425r4in4d2g085dhiw6g57ixfnj"; + version = "1.8-rc4"; + sha256 = "11kd4id0zyqqjz1006d27ahmhy3gzai7h0wir9lkxnv3pdld0dxn"; }; winetricks = { version = "20151116"; From 016e88b2d2497a9e237c986eeaaff84f894a6859 Mon Sep 17 00:00:00 2001 From: koral Date: Sat, 19 Dec 2015 17:37:37 +0000 Subject: [PATCH 140/289] git: 2.6.3 -> 2.6.4 --- .../version-management/git-and-tools/git/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index d060acef53e..84b033f981f 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -9,7 +9,7 @@ }: let - version = "2.6.3"; + version = "2.6.4"; svn = subversionClient.override { perlBindings = true; }; in @@ -18,7 +18,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"; - sha256 = "18vxb5fmwmrps504m23a4xdl29m7ibca3hmz0mn9jc38sz9y95yn"; + sha256 = "0rnlbp7l4ggq3lk96v24rzw7qqawp6477i3b4m0b5q3346ap008w"; }; patches = [ From 8b890cac072b08540c9434b9d3a2f83d180e8757 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 11:56:50 -0600 Subject: [PATCH 141/289] qt55.qtbase: manage patches with quilt --- .../qt-5/5.5/qtbase/0002-dlopen-resolv.patch | 39 ------ .../qt-5/5.5/qtbase/0003-dlopen-gl.patch | 25 ---- .../5.5/qtbase/0005-dlopen-libXcursor.patch | 29 ----- .../qt-5/5.5/qtbase/0007-dlopen-dbus.patch | 25 ---- .../5.5/qtbase/0009-decrypt-ssl-traffic.patch | 25 ---- .../qt-5/5.5/qtbase/0010-mkspecs-libgl.patch | 27 ---- .../qt-5/5.5/qtbase/decrypt-ssl-traffic.patch | 13 ++ .../libraries/qt-5/5.5/qtbase/default.nix | 115 +++++++++--------- .../qt-5/5.5/qtbase/dlopen-dbus.patch | 13 ++ .../libraries/qt-5/5.5/qtbase/dlopen-gl.patch | 13 ++ ...n-gtkstyle.patch => dlopen-gtkstyle.patch} | 35 ++---- .../qt-5/5.5/qtbase/dlopen-libXcursor.patch | 17 +++ ...pen-openssl.patch => dlopen-openssl.patch} | 24 +--- .../qt-5/5.5/qtbase/dlopen-resolv.patch | 26 ++++ .../qt-5/5.5/qtbase/mkspecs-libgl.patch | 15 +++ ...patch => nix-profiles-library-paths.patch} | 22 +--- .../libraries/qt-5/5.5/qtbase/series | 7 ++ .../qtbase/{0004-tzdir.patch => tzdir.patch} | 24 +--- ...onfig-dirs.patch => xdg-config-dirs.patch} | 31 ++--- 19 files changed, 196 insertions(+), 329 deletions(-) delete mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/0002-dlopen-resolv.patch delete mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/0003-dlopen-gl.patch delete mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/0005-dlopen-libXcursor.patch delete mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/0007-dlopen-dbus.patch delete mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/0009-decrypt-ssl-traffic.patch delete mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/0010-mkspecs-libgl.patch create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/decrypt-ssl-traffic.patch create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-dbus.patch create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch rename pkgs/development/libraries/qt-5/5.5/qtbase/{0001-dlopen-gtkstyle.patch => dlopen-gtkstyle.patch} (73%) create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-libXcursor.patch rename pkgs/development/libraries/qt-5/5.5/qtbase/{0006-dlopen-openssl.patch => dlopen-openssl.patch} (66%) create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch rename pkgs/development/libraries/qt-5/5.5/qtbase/{0011-nix-profiles-library-paths.patch => nix-profiles-library-paths.patch} (57%) create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/series rename pkgs/development/libraries/qt-5/5.5/qtbase/{0004-tzdir.patch => tzdir.patch} (68%) rename pkgs/development/libraries/qt-5/5.5/qtbase/{0008-xdg-config-dirs.patch => xdg-config-dirs.patch} (64%) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0002-dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0002-dlopen-resolv.patch deleted file mode 100644 index ce768fec80c..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0002-dlopen-resolv.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 51ae02d8c9de1cb93bf22b2519efb119dd2e39d9 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:22:55 -0600 -Subject: [PATCH 02/11] dlopen-resolv - ---- - qtbase/src/network/kernel/qdnslookup_unix.cpp | 2 +- - qtbase/src/network/kernel/qhostinfo_unix.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/qtbase/src/network/kernel/qdnslookup_unix.cpp b/qtbase/src/network/kernel/qdnslookup_unix.cpp -index fa782da..912ecc7 100644 ---- a/qtbase/src/network/kernel/qdnslookup_unix.cpp -+++ b/qtbase/src/network/kernel/qdnslookup_unix.cpp -@@ -79,7 +79,7 @@ static void resolveLibrary() - if (!lib.load()) - #endif - { -- lib.setFileName(QLatin1String("resolv")); -+ lib.setFileName(QLatin1String("@glibc/lib/resolv")); - if (!lib.load()) - return; - } -diff --git a/qtbase/src/network/kernel/qhostinfo_unix.cpp b/qtbase/src/network/kernel/qhostinfo_unix.cpp -index 90a6f76..758407a 100644 ---- a/qtbase/src/network/kernel/qhostinfo_unix.cpp -+++ b/qtbase/src/network/kernel/qhostinfo_unix.cpp -@@ -95,7 +95,7 @@ static void resolveLibrary() - if (!lib.load()) - #endif - { -- lib.setFileName(QLatin1String("resolv")); -+ lib.setFileName(QLatin1String("@glibc@/lib/libresolv")); - if (!lib.load()) - return; - } --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0003-dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0003-dlopen-gl.patch deleted file mode 100644 index 0f8bd78aa32..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0003-dlopen-gl.patch +++ /dev/null @@ -1,25 +0,0 @@ -From d1f7bf62e4bab26df5deea37f08cfdd278cca47c Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:23:08 -0600 -Subject: [PATCH 03/11] dlopen-gl - ---- - .../plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp b/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp -index 5166372..bdeb69a 100644 ---- a/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp -+++ b/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp -@@ -560,7 +560,7 @@ void (*QGLXContext::getProcAddress(const QByteArray &procName)) () - { - extern const QString qt_gl_library_name(); - // QLibrary lib(qt_gl_library_name()); -- QLibrary lib(QLatin1String("GL")); -+ QLibrary lib(QLatin1String("@openglDriver@/lib/libGL")); - glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); - } - } --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0005-dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0005-dlopen-libXcursor.patch deleted file mode 100644 index 61c9b9846f5..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0005-dlopen-libXcursor.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 9fbdfd6c1231ee4778acc9a2edf297cf4b9314ac Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:33:51 -0600 -Subject: [PATCH 05/11] dlopen-libXcursor - ---- - qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp b/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -index e51ab85..7ec4b0b 100644 ---- a/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -+++ b/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -@@ -303,10 +303,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *conn, QXcbScreen *screen) - #ifdef XCB_USE_XLIB - static bool function_ptrs_not_initialized = true; - if (function_ptrs_not_initialized) { -- QLibrary xcursorLib(QLatin1String("Xcursor"), 1); -+ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1); - bool xcursorFound = xcursorLib.load(); - if (!xcursorFound) { // try without the version number -- xcursorLib.setFileName(QLatin1String("Xcursor")); -+ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor")); - xcursorFound = xcursorLib.load(); - } - if (xcursorFound) { --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0007-dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0007-dlopen-dbus.patch deleted file mode 100644 index dcd5855e824..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0007-dlopen-dbus.patch +++ /dev/null @@ -1,25 +0,0 @@ -From d060d32d8df3e320a12567ebdfc2c1d01c648168 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 08:52:27 -0500 -Subject: [PATCH 07/11] dlopen dbus - ---- - qtbase/src/dbus/qdbus_symbols.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/qtbase/src/dbus/qdbus_symbols.cpp b/qtbase/src/dbus/qdbus_symbols.cpp -index b82d92b..f72c9cb 100644 ---- a/qtbase/src/dbus/qdbus_symbols.cpp -+++ b/qtbase/src/dbus/qdbus_symbols.cpp -@@ -89,7 +89,7 @@ bool qdbus_loadLibDBus() - #ifdef Q_OS_WIN - QLatin1String("dbus-1"), - #endif -- QLatin1String("libdbus-1") -+ QLatin1String("@dbus_libs@/lib/libdbus-1") - }; - - lib->unload(); --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0009-decrypt-ssl-traffic.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0009-decrypt-ssl-traffic.patch deleted file mode 100644 index 1d7202924cd..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0009-decrypt-ssl-traffic.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 44378743aa6ca21eb61de93476daa8356081c0fc Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 08:53:42 -0500 -Subject: [PATCH 09/11] decrypt ssl traffic - ---- - qtbase/src/network/ssl/qsslsocket_openssl.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/qtbase/src/network/ssl/qsslsocket_openssl.cpp b/qtbase/src/network/ssl/qsslsocket_openssl.cpp -index 049666b..e8342ab 100644 ---- a/qtbase/src/network/ssl/qsslsocket_openssl.cpp -+++ b/qtbase/src/network/ssl/qsslsocket_openssl.cpp -@@ -48,7 +48,7 @@ - ****************************************************************************/ - - //#define QSSLSOCKET_DEBUG --//#define QT_DECRYPT_SSL_TRAFFIC -+#define QT_DECRYPT_SSL_TRAFFIC - - #include "qssl_p.h" - #include "qsslsocket_openssl_p.h" --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0010-mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/0010-mkspecs-libgl.patch deleted file mode 100644 index 0f418e600f1..00000000000 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0010-mkspecs-libgl.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 5113406661f06afa01da48ebc0567a4d0f69051c Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sat, 17 Oct 2015 09:12:46 -0500 -Subject: [PATCH 10/11] mkspecs libgl - ---- - qtbase/mkspecs/common/linux.conf | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/qtbase/mkspecs/common/linux.conf b/qtbase/mkspecs/common/linux.conf -index 8d6fb6f..0ff9181 100644 ---- a/qtbase/mkspecs/common/linux.conf -+++ b/qtbase/mkspecs/common/linux.conf -@@ -12,8 +12,8 @@ QMAKE_INCDIR = - QMAKE_LIBDIR = - QMAKE_INCDIR_X11 = - QMAKE_LIBDIR_X11 = --QMAKE_INCDIR_OPENGL = --QMAKE_LIBDIR_OPENGL = -+QMAKE_INCDIR_OPENGL = @mesa@/include -+QMAKE_LIBDIR_OPENGL = @mesa@/lib - QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL - QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL - QMAKE_INCDIR_EGL = --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/decrypt-ssl-traffic.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/decrypt-ssl-traffic.patch new file mode 100644 index 00000000000..2cb3f7dfa70 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/decrypt-ssl-traffic.patch @@ -0,0 +1,13 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/ssl/qsslsocket_openssl.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/ssl/qsslsocket_openssl.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/ssl/qsslsocket_openssl.cpp +@@ -48,7 +48,7 @@ + ****************************************************************************/ + + //#define QSSLSOCKET_DEBUG +-//#define QT_DECRYPT_SSL_TRAFFIC ++#define QT_DECRYPT_SSL_TRAFFIC + + #include "qssl_p.h" + #include "qsslsocket_openssl_p.h" diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 7c48c4571d9..3bbbefefa3c 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, substituteAll, makeWrapper +{ stdenv, lib, fetchurl, copyPathsToStore, makeWrapper , srcs , xlibs, libX11, libxcb, libXcursor, libXext, libXrender, libXi @@ -23,11 +23,9 @@ , decryptSslTraffic ? false }: -with stdenv.lib; - let inherit (srcs.qt5) version; - system-x86_64 = elem stdenv.system platforms.x86_64; + system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64; in stdenv.mkDerivation { @@ -54,47 +52,44 @@ stdenv.mkDerivation { ''; patches = - let dlopen-gtkstyle = substituteAll { - src = ./0001-dlopen-gtkstyle.patch; - # substituteAll ignores env vars starting with capital letter - gconf = GConf; - inherit gnome_vfs libgnomeui gtk; - }; - dlopen-resolv = substituteAll { - src = ./0002-dlopen-resolv.patch; - glibc = stdenv.cc.libc; - }; - dlopen-gl = substituteAll { - src = ./0003-dlopen-gl.patch; - openglDriver = if mesaSupported then mesa.driverLink else "/no-such-path"; - }; - tzdir = ./0004-tzdir.patch; - dlopen-libXcursor = substituteAll { - src = ./0005-dlopen-libXcursor.patch; - inherit libXcursor; - }; - dlopen-openssl = substituteAll { - src = ./0006-dlopen-openssl.patch; - inherit openssl; - }; - dlopen-dbus = substituteAll { - src = ./0007-dlopen-dbus.patch; - dbus_libs = dbus; - }; - xdg-config-dirs = ./0008-xdg-config-dirs.patch; - decrypt-ssl-traffic = ./0009-decrypt-ssl-traffic.patch; - mkspecs-libgl = substituteAll { - src = ./0010-mkspecs-libgl.patch; - inherit mesa; - }; - nix-profiles-library-paths = ./0011-nix-profiles-library-paths.patch; - in [ - dlopen-resolv dlopen-gl tzdir dlopen-libXcursor dlopen-openssl - dlopen-dbus xdg-config-dirs nix-profiles-library-paths - ] - ++ optional gtkStyle dlopen-gtkstyle - ++ optional decryptSslTraffic decrypt-ssl-traffic - ++ optional mesaSupported mkspecs-libgl; + copyPathsToStore (lib.readPathsFromFile ./. ./series) + ++ lib.optional gtkStyle ./dlopen-gtkstyle.patch + ++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch + ++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ]; + + inherit decryptSslTraffic gtkStyle mesaSupported; + + postPatch = '' + substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \ + --replace "@glibc@" "${stdenv.cc.libc}" + substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \ + --replace "@glibc@" "${stdenv.cc.libc}" + + substituteInPlace qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp \ + --replace "@libXcursor@" "${libXcursor}" + + substituteInPlace qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp \ + --replace "@openssl@" "${openssl}" + + substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \ + --replace "@dbus_libs@" "${dbus}" + + if [[ -n "$gtkStyle" ]]; then + substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" + substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ + --replace "@gtk@" "${gtk}" \ + --replace "@gnome_vfs@" "${gnome_vfs}" \ + --replace "@libgnomeui@" "${libgnomeui}" \ + --replace "@gconf@" "${GConf}" + fi + + if [[ -n "$mesaSupported" ]]; then + substituteInPlace \ + qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ + --replace "@openglDriver@" "${mesa.driverLink}" + substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" + fi + ''; preConfigure = '' export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$PWD/qttools/lib:$LD_LIBRARY_PATH" @@ -121,7 +116,7 @@ stdenv.mkDerivation { -release -shared -c++11 - ${optionalString developerBuild "-developer-build"} + ${lib.optionalString developerBuild "-developer-build"} -largefile -accessibility -rpath @@ -142,15 +137,15 @@ stdenv.mkDerivation { -glib -xcb -qpa xcb - -${optionalString (cups == null) "no-"}cups - -${optionalString (!gtkStyle) "no-"}gtkstyle + -${lib.optionalString (cups == null) "no-"}cups + -${lib.optionalString (!gtkStyle) "no-"}gtkstyle -no-eglfs -no-directfb -no-linuxfb -no-kms - ${optionalString (!system-x86_64) "-no-sse2"} + ${lib.optionalString (!system-x86_64) "-no-sse2"} -no-sse3 -no-ssse3 -no-sse4.1 @@ -174,14 +169,14 @@ stdenv.mkDerivation { -make libs -make tools - -${optionalString (buildExamples == false) "no"}make examples - -${optionalString (buildTests == false) "no"}make tests + -${lib.optionalString (buildExamples == false) "no"}make examples + -${lib.optionalString (buildTests == false) "no"}make tests ''; # PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag # if dependency paths contain the string "pq", which can occur in the hash. # To prevent these failures, we need to override PostgreSQL detection. - PSQL_LIBS = optionalString (postgresql != null) "-L${postgresql}/lib -lpq"; + PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql}/lib -lpq"; propagatedBuildInputs = [ xlibs.libXcomposite libX11 libxcb libXext libXrender libXi @@ -191,15 +186,15 @@ stdenv.mkDerivation { ] # Qt doesn't directly need GLU (just GL), but many apps use, it's small and # doesn't remain a runtime-dep if not used - ++ optionals mesaSupported [ mesa mesa_glu ] - ++ optional (cups != null) cups - ++ optional (mysql != null) mysql.lib - ++ optional (postgresql != null) postgresql - ++ optionals gtkStyle [gnome_vfs libgnomeui gtk GConf]; + ++ lib.optionals mesaSupported [ mesa mesa_glu ] + ++ lib.optional (cups != null) cups + ++ lib.optional (mysql != null) mysql.lib + ++ lib.optional (postgresql != null) postgresql + ++ lib.optionals gtkStyle [gnome_vfs libgnomeui gtk GConf]; buildInputs = [ bison flex gperf ruby ] - ++ optional developerBuild gdb; + ++ lib.optional developerBuild gdb; nativeBuildInputs = [ python perl pkgconfig ]; @@ -210,7 +205,7 @@ stdenv.mkDerivation { postInstall = '' - ${optionalString buildDocs '' + ${lib.optionalString buildDocs '' make docs && make install_docs ''} @@ -223,7 +218,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = { + meta = with lib; { homepage = http://qt-project.org; description = "A cross-platform application framework for C++"; license = "GPL/LGPL"; diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-dbus.patch new file mode 100644 index 00000000000..401cfd5c295 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-dbus.patch @@ -0,0 +1,13 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/dbus/qdbus_symbols.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/dbus/qdbus_symbols.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/dbus/qdbus_symbols.cpp +@@ -89,7 +89,7 @@ bool qdbus_loadLibDBus() + #ifdef Q_OS_WIN + QLatin1String("dbus-1"), + #endif +- QLatin1String("libdbus-1") ++ QLatin1String("@dbus_libs@/lib/libdbus-1") + }; + + lib->unload(); diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch new file mode 100644 index 00000000000..8e25a12b069 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch @@ -0,0 +1,13 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp +@@ -563,7 +563,7 @@ void (*QGLXContext::getProcAddress(const + { + extern const QString qt_gl_library_name(); + // QLibrary lib(qt_gl_library_name()); +- QLibrary lib(QLatin1String("GL")); ++ QLibrary lib(QLatin1String("@openglDriver@/lib/libGL")); + glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); + } + } diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0001-dlopen-gtkstyle.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gtkstyle.patch similarity index 73% rename from pkgs/development/libraries/qt-5/5.5/qtbase/0001-dlopen-gtkstyle.patch rename to pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gtkstyle.patch index a4211378b90..ad1719c46e2 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0001-dlopen-gtkstyle.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gtkstyle.patch @@ -1,17 +1,7 @@ -From 5334f7d5d3e7be31ea25c3553dfb60f283a14669 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:21:58 -0600 -Subject: [PATCH 01/11] dlopen-gtkstyle - ---- - qtbase/src/widgets/styles/qgtk2painter.cpp | 2 +- - qtbase/src/widgets/styles/qgtkstyle_p.cpp | 12 ++++++------ - 2 files changed, 7 insertions(+), 7 deletions(-) - -diff --git a/qtbase/src/widgets/styles/qgtk2painter.cpp b/qtbase/src/widgets/styles/qgtk2painter.cpp -index 489d456..c38e986 100644 ---- a/qtbase/src/widgets/styles/qgtk2painter.cpp -+++ b/qtbase/src/widgets/styles/qgtk2painter.cpp +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtk2painter.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/widgets/styles/qgtk2painter.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtk2painter.cpp @@ -96,7 +96,7 @@ static void initGtk() static bool initialized = false; if (!initialized) { @@ -21,11 +11,11 @@ index 489d456..c38e986 100644 QGtk2PainterPrivate::gdk_pixmap_new = (Ptr_gdk_pixmap_new)libgtk.resolve("gdk_pixmap_new"); QGtk2PainterPrivate::gdk_pixbuf_get_from_drawable = (Ptr_gdk_pixbuf_get_from_drawable)libgtk.resolve("gdk_pixbuf_get_from_drawable"); -diff --git a/qtbase/src/widgets/styles/qgtkstyle_p.cpp b/qtbase/src/widgets/styles/qgtkstyle_p.cpp -index 0e119a1..ad6caa1 100644 ---- a/qtbase/src/widgets/styles/qgtkstyle_p.cpp -+++ b/qtbase/src/widgets/styles/qgtkstyle_p.cpp -@@ -327,7 +327,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus(GtkWidget *widget, bool focus) +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtkstyle_p.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/widgets/styles/qgtkstyle_p.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtkstyle_p.cpp +@@ -327,7 +327,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus void QGtkStylePrivate::resolveGtk() const { // enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0 @@ -34,7 +24,7 @@ index 0e119a1..ad6caa1 100644 gtk_init = (Ptr_gtk_init)libgtk.resolve("gtk_init"); gtk_window_new = (Ptr_gtk_window_new)libgtk.resolve("gtk_window_new"); -@@ -425,8 +425,8 @@ void QGtkStylePrivate::resolveGtk() const +@@ -425,8 +425,8 @@ void QGtkStylePrivate::resolveGtk() cons pango_font_description_get_family = (Ptr_pango_font_description_get_family)libgtk.resolve("pango_font_description_get_family"); pango_font_description_get_style = (Ptr_pango_font_description_get_style)libgtk.resolve("pango_font_description_get_style"); @@ -45,7 +35,7 @@ index 0e119a1..ad6caa1 100644 } /* \internal -@@ -594,9 +594,9 @@ void QGtkStylePrivate::cleanupGtkWidgets() +@@ -594,9 +594,9 @@ void QGtkStylePrivate::cleanupGtkWidgets static bool resolveGConf() { if (!QGtkStylePrivate::gconf_client_get_default) { @@ -58,6 +48,3 @@ index 0e119a1..ad6caa1 100644 } return (QGtkStylePrivate::gconf_client_get_default !=0); } --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-libXcursor.patch new file mode 100644 index 00000000000..e66ce1676d3 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-libXcursor.patch @@ -0,0 +1,17 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp +@@ -303,10 +303,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *c + #ifdef XCB_USE_XLIB + static bool function_ptrs_not_initialized = true; + if (function_ptrs_not_initialized) { +- QLibrary xcursorLib(QLatin1String("Xcursor"), 1); ++ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1); + bool xcursorFound = xcursorLib.load(); + if (!xcursorFound) { // try without the version number +- xcursorLib.setFileName(QLatin1String("Xcursor")); ++ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor")); + xcursorFound = xcursorLib.load(); + } + if (xcursorFound) { diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0006-dlopen-openssl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-openssl.patch similarity index 66% rename from pkgs/development/libraries/qt-5/5.5/qtbase/0006-dlopen-openssl.patch rename to pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-openssl.patch index ad48133d93f..1cc6fac583b 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0006-dlopen-openssl.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-openssl.patch @@ -1,17 +1,8 @@ -From 2d7e4e21291238e2b41d0e173f918cd3530c8ade Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 08:52:04 -0500 -Subject: [PATCH 06/11] dlopen openssl - ---- - qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp b/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -index e2700df..a7ccf88 100644 ---- a/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -+++ b/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -@@ -640,8 +640,8 @@ static QPair loadOpenSsl() +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp +@@ -640,8 +640,8 @@ static QPair loadO #endif #if defined(SHLIB_VERSION_NUMBER) && !defined(Q_OS_QNX) // on QNX, the libs are always libssl.so and libcrypto.so // first attempt: the canonical name is libssl.so. @@ -22,7 +13,7 @@ index e2700df..a7ccf88 100644 if (libcrypto->load() && libssl->load()) { // libssl.so. and libcrypto.so. found return pair; -@@ -658,8 +658,8 @@ static QPair loadOpenSsl() +@@ -658,8 +658,8 @@ static QPair loadO // OS X's /usr/lib/libssl.dylib, /usr/lib/libcrypto.dylib will be picked up in the third // attempt, _after_ /Contents/Frameworks has been searched. // iOS does not ship a system libssl.dylib, libcrypto.dylib in the first place. @@ -33,6 +24,3 @@ index e2700df..a7ccf88 100644 if (libcrypto->load() && libssl->load()) { // libssl.so.0 and libcrypto.so.0 found return pair; --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch new file mode 100644 index 00000000000..a79c806462f --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-resolv.patch @@ -0,0 +1,26 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qdnslookup_unix.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp +@@ -79,7 +79,7 @@ static void resolveLibrary() + if (!lib.load()) + #endif + { +- lib.setFileName(QLatin1String("resolv")); ++ lib.setFileName(QLatin1String("@glibc/lib/resolv")); + if (!lib.load()) + return; + } +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qhostinfo_unix.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp +@@ -95,7 +95,7 @@ static void resolveLibrary() + if (!lib.load()) + #endif + { +- lib.setFileName(QLatin1String("resolv")); ++ lib.setFileName(QLatin1String("@glibc@/lib/libresolv")); + if (!lib.load()) + return; + } diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch new file mode 100644 index 00000000000..10115e8144a --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch @@ -0,0 +1,15 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/mkspecs/common/linux.conf ++++ qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf +@@ -12,8 +12,8 @@ QMAKE_INCDIR = + QMAKE_LIBDIR = + QMAKE_INCDIR_X11 = + QMAKE_LIBDIR_X11 = +-QMAKE_INCDIR_OPENGL = +-QMAKE_LIBDIR_OPENGL = ++QMAKE_INCDIR_OPENGL = @mesa@/include ++QMAKE_LIBDIR_OPENGL = @mesa@/lib + QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL + QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL + QMAKE_INCDIR_EGL = diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0011-nix-profiles-library-paths.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/nix-profiles-library-paths.patch similarity index 57% rename from pkgs/development/libraries/qt-5/5.5/qtbase/0011-nix-profiles-library-paths.patch rename to pkgs/development/libraries/qt-5/5.5/qtbase/nix-profiles-library-paths.patch index 8eaf2f4ffac..470526b1dcd 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0011-nix-profiles-library-paths.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/nix-profiles-library-paths.patch @@ -1,17 +1,8 @@ -From 2da5e660c4b470444e756f2ec88cb520a124bc99 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sat, 17 Oct 2015 09:20:35 -0500 -Subject: [PATCH] nix profiles library paths - ---- - qtbase/src/corelib/kernel/qcoreapplication.cpp | 15 +++++++++++++++ - 1 file changed, 15 insertions(+) - -diff --git a/qtbase/src/corelib/kernel/qcoreapplication.cpp b/qtbase/src/corelib/kernel/qcoreapplication.cpp -index ecafe91..96e3eb5 100644 ---- a/qtbase/src/corelib/kernel/qcoreapplication.cpp -+++ b/qtbase/src/corelib/kernel/qcoreapplication.cpp -@@ -2496,6 +2496,21 @@ QStringList QCoreApplication::libraryPaths() +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/kernel/qcoreapplication.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/corelib/kernel/qcoreapplication.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/kernel/qcoreapplication.cpp +@@ -2498,6 +2498,21 @@ QStringList QCoreApplication::libraryPat } } } @@ -33,6 +24,3 @@ index ecafe91..96e3eb5 100644 } return *(coreappdata()->app_libpaths); } --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/series b/pkgs/development/libraries/qt-5/5.5/qtbase/series new file mode 100644 index 00000000000..d4b356a2918 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/series @@ -0,0 +1,7 @@ +dlopen-resolv.patch +tzdir.patch +dlopen-libXcursor.patch +dlopen-openssl.patch +dlopen-dbus.patch +xdg-config-dirs.patch +nix-profiles-library-paths.patch diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0004-tzdir.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/tzdir.patch similarity index 68% rename from pkgs/development/libraries/qt-5/5.5/qtbase/0004-tzdir.patch rename to pkgs/development/libraries/qt-5/5.5/qtbase/tzdir.patch index c2564df4e1a..92adeda8273 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0004-tzdir.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/tzdir.patch @@ -1,17 +1,8 @@ -From 26c73d6da84f1b4797421b9ddecef18d6ce588f0 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:23:22 -0600 -Subject: [PATCH 04/11] tzdir - ---- - qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp | 21 +++++++++++++++------ - 1 file changed, 15 insertions(+), 6 deletions(-) - -diff --git a/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp b/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -index 29f0e17..3878974 100644 ---- a/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -+++ b/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -@@ -62,7 +62,10 @@ typedef QHash QTzTimeZoneHash; +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp +@@ -62,7 +62,10 @@ typedef QHash Q // Parse zone.tab table, assume lists all installed zones, if not will need to read directories static QTzTimeZoneHash loadTzTimeZones() { @@ -23,7 +14,7 @@ index 29f0e17..3878974 100644 if (!QFile::exists(path)) path = QStringLiteral("/usr/lib/zoneinfo/zone.tab"); -@@ -553,12 +556,18 @@ void QTzTimeZonePrivate::init(const QByteArray &ianaId) +@@ -560,12 +563,18 @@ void QTzTimeZonePrivate::init(const QByt if (!tzif.open(QIODevice::ReadOnly)) return; } else { @@ -47,6 +38,3 @@ index 29f0e17..3878974 100644 } } --- -2.5.2 - diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/0008-xdg-config-dirs.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/xdg-config-dirs.patch similarity index 64% rename from pkgs/development/libraries/qt-5/5.5/qtbase/0008-xdg-config-dirs.patch rename to pkgs/development/libraries/qt-5/5.5/qtbase/xdg-config-dirs.patch index ebb572081bf..24dc3bde148 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/0008-xdg-config-dirs.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/xdg-config-dirs.patch @@ -1,18 +1,8 @@ -From 253c0829d4bc30da0152a22114a949449796ec7d Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 23 Aug 2015 08:52:57 -0500 -Subject: [PATCH 08/11] xdg config dirs - ---- - qtbase/src/corelib/io/qsettings.cpp | 18 ++++++++++++++++++ - qtbase/src/corelib/io/qsettings_p.h | 2 +- - 2 files changed, 19 insertions(+), 1 deletion(-) - -diff --git a/qtbase/src/corelib/io/qsettings.cpp b/qtbase/src/corelib/io/qsettings.cpp -index 413f569..8ff4974 100644 ---- a/qtbase/src/corelib/io/qsettings.cpp -+++ b/qtbase/src/corelib/io/qsettings.cpp -@@ -1131,6 +1131,24 @@ QConfFileSettingsPrivate::QConfFileSettingsPrivate(QSettings::Format format, +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/io/qsettings.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/corelib/io/qsettings.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/io/qsettings.cpp +@@ -1131,6 +1131,24 @@ QConfFileSettingsPrivate::QConfFileSetti if (!application.isEmpty()) confFiles[F_System | F_Application].reset(QConfFile::fromName(systemPath + appFile, false)); confFiles[F_System | F_Organization].reset(QConfFile::fromName(systemPath + orgFile, false)); @@ -37,10 +27,10 @@ index 413f569..8ff4974 100644 #else QString confName = getPath(format, QSettings::UserScope) + org; if (!application.isEmpty()) -diff --git a/qtbase/src/corelib/io/qsettings_p.h b/qtbase/src/corelib/io/qsettings_p.h -index 93d63fd..160b197 100644 ---- a/qtbase/src/corelib/io/qsettings_p.h -+++ b/qtbase/src/corelib/io/qsettings_p.h +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/io/qsettings_p.h +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/corelib/io/qsettings_p.h ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/corelib/io/qsettings_p.h @@ -240,7 +240,7 @@ public: F_Organization = 0x1, F_User = 0x0, @@ -50,6 +40,3 @@ index 93d63fd..160b197 100644 #else SandboxConfFile = 0, NumConfFiles = 1 --- -2.5.2 - From 14f27e5eb737260457c248ff54e35b114498ecec Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 11:59:05 -0600 Subject: [PATCH 142/289] qt55.qtbase: move sed scripts to postPatch --- .../libraries/qt-5/5.5/qtbase/default.nix | 28 +++++++++---------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 3bbbefefa3c..a39d9996b1d 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -41,16 +41,6 @@ stdenv.mkDerivation { mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase ''; - prePatch = '' - substituteInPlace configure --replace /bin/pwd pwd - substituteInPlace qtbase/configure --replace /bin/pwd pwd - substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls - substituteInPlace qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ - --replace /usr/share/X11/locale ${libX11}/share/X11/locale \ - --replace /usr/lib/X11/locale ${libX11}/share/X11/locale - sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf - ''; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series) ++ lib.optional gtkStyle ./dlopen-gtkstyle.patch @@ -60,6 +50,19 @@ stdenv.mkDerivation { inherit decryptSslTraffic gtkStyle mesaSupported; postPatch = '' + substituteInPlace configure --replace /bin/pwd pwd + substituteInPlace qtbase/configure --replace /bin/pwd pwd + substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls + substituteInPlace qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ + --replace /usr/share/X11/locale ${libX11}/share/X11/locale \ + --replace /usr/lib/X11/locale ${libX11}/share/X11/locale + sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf + + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake" + sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" + substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \ --replace "@glibc@" "${stdenv.cc.libc}" substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \ @@ -95,11 +98,6 @@ stdenv.mkDerivation { export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$PWD/qttools/lib:$LD_LIBRARY_PATH" export MAKEFLAGS=-j$NIX_BUILD_CORES - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake" - sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in" - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" - export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml" export configureFlags+=" -docdir $out/share/doc/qt5" ''; From 081b1f1707a20fbf12768d855c6a7880059e4bbe Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 12:02:57 -0600 Subject: [PATCH 143/289] qt55.qtbase: set compose search path This was previously set using substituteInPlace, but this leads to duplicate search paths. --- .../qt-5/5.5/qtbase/compose-search-path.patch | 16 ++++++++++++++++ .../libraries/qt-5/5.5/qtbase/default.nix | 7 ++++--- .../development/libraries/qt-5/5.5/qtbase/series | 1 + 3 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 pkgs/development/libraries/qt-5/5.5/qtbase/compose-search-path.patch diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/compose-search-path.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/compose-search-path.patch new file mode 100644 index 00000000000..08d12087f08 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/compose-search-path.patch @@ -0,0 +1,16 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp +@@ -68,10 +68,7 @@ void TableGenerator::initPossibleLocatio + // the QTCOMPOSE environment variable + if (qEnvironmentVariableIsSet("QTCOMPOSE")) + m_possibleLocations.append(QString::fromLocal8Bit(qgetenv("QTCOMPOSE"))); +- m_possibleLocations.append(QStringLiteral("/usr/share/X11/locale")); +- m_possibleLocations.append(QStringLiteral("/usr/local/share/X11/locale")); +- m_possibleLocations.append(QStringLiteral("/usr/lib/X11/locale")); +- m_possibleLocations.append(QStringLiteral("/usr/local/lib/X11/locale")); ++ m_possibleLocations.append(QStringLiteral("${libX11}/share/X11/locale")); + m_possibleLocations.append(QStringLiteral(X11_PREFIX "/share/X11/locale")); + m_possibleLocations.append(QStringLiteral(X11_PREFIX "/lib/X11/locale")); + } diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index a39d9996b1d..0cb06301046 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -53,9 +53,6 @@ stdenv.mkDerivation { substituteInPlace configure --replace /bin/pwd pwd substituteInPlace qtbase/configure --replace /bin/pwd pwd substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls - substituteInPlace qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ - --replace /usr/share/X11/locale ${libX11}/share/X11/locale \ - --replace /usr/lib/X11/locale ${libX11}/share/X11/locale sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" @@ -77,6 +74,10 @@ stdenv.mkDerivation { substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \ --replace "@dbus_libs@" "${dbus}" + substituteInPlace \ + qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ + --replace "@libX11@" "${libX11}" + if [[ -n "$gtkStyle" ]]; then substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/series b/pkgs/development/libraries/qt-5/5.5/qtbase/series index d4b356a2918..3cfa50e85b7 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/series +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/series @@ -5,3 +5,4 @@ dlopen-openssl.patch dlopen-dbus.patch xdg-config-dirs.patch nix-profiles-library-paths.patch +compose-search-path.patch From 9f62af08854a446e6e87434895ae0032d19778f4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 12:15:33 -0600 Subject: [PATCH 144/289] qt55.qtbase: fallback libGL path If libGL is not found on the system library path, fall back to the default Mesa driver. --- pkgs/development/libraries/qt-5/5.5/qtbase/default.nix | 2 +- .../libraries/qt-5/5.5/qtbase/dlopen-gl.patch | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 0cb06301046..57ae127c908 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -90,7 +90,7 @@ stdenv.mkDerivation { if [[ -n "$mesaSupported" ]]; then substituteInPlace \ qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ - --replace "@openglDriver@" "${mesa.driverLink}" + --replace "@mesa@" "${mesa}" substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" fi ''; diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch index 8e25a12b069..14411a95f3a 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch @@ -2,12 +2,16 @@ Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_in =================================================================== --- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp +++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp -@@ -563,7 +563,7 @@ void (*QGLXContext::getProcAddress(const +@@ -563,7 +563,12 @@ void (*QGLXContext::getProcAddress(const { extern const QString qt_gl_library_name(); // QLibrary lib(qt_gl_library_name()); -- QLibrary lib(QLatin1String("GL")); -+ QLibrary lib(QLatin1String("@openglDriver@/lib/libGL")); ++ // Check system library paths first + QLibrary lib(QLatin1String("GL")); ++ if (!lib.load()) { ++ // Fallback to Mesa driver ++ lib.setFileName(QLatin1String("@mesa@/lib/libGL")); ++ } glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); } } From 0a54898a20468ddc62d7ff4a3f0f0df2ac40ba3a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 12:18:06 -0600 Subject: [PATCH 145/289] qt55.qtbase: don't include optional dependencies unconditionally --- .../libraries/qt-5/5.5/qtbase/default.nix | 32 ++++++++----------- 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 57ae127c908..589f2a1de1e 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -47,8 +47,6 @@ stdenv.mkDerivation { ++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch ++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ]; - inherit decryptSslTraffic gtkStyle mesaSupported; - postPatch = '' substituteInPlace configure --replace /bin/pwd pwd substituteInPlace qtbase/configure --replace /bin/pwd pwd @@ -77,22 +75,20 @@ stdenv.mkDerivation { substituteInPlace \ qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ --replace "@libX11@" "${libX11}" - - if [[ -n "$gtkStyle" ]]; then - substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" - substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ - --replace "@gtk@" "${gtk}" \ - --replace "@gnome_vfs@" "${gnome_vfs}" \ - --replace "@libgnomeui@" "${libgnomeui}" \ - --replace "@gconf@" "${GConf}" - fi - - if [[ -n "$mesaSupported" ]]; then - substituteInPlace \ - qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ - --replace "@mesa@" "${mesa}" - substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" - fi + '' + + lib.optionalString gtkStyle '' + substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" + substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ + --replace "@gtk@" "${gtk}" \ + --replace "@gnome_vfs@" "${gnome_vfs}" \ + --replace "@libgnomeui@" "${libgnomeui}" \ + --replace "@gconf@" "${GConf}" + '' + + lib.optionalString mesaSupported '' + substituteInPlace \ + qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ + --replace "@mesa@" "${mesa}" + substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" ''; preConfigure = '' From 98e2fbe6302b5f642340e80770d75aab9c658a44 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 12:18:48 -0600 Subject: [PATCH 146/289] qt55.qtbase: remove non-existent paths from LD_LIBRARY_PATH --- pkgs/development/libraries/qt-5/5.5/qtbase/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 589f2a1de1e..9854ba6b392 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation { ''; preConfigure = '' - export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$PWD/qttools/lib:$LD_LIBRARY_PATH" + export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH" export MAKEFLAGS=-j$NIX_BUILD_CORES export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml" From 09e9e3e35963c27857b38900625bf5a474305f24 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 12:26:45 -0600 Subject: [PATCH 147/289] fixup! qt55.qtbase: don't include optional dependencies unconditionally --- .../libraries/qt-5/5.5/qtbase/default.nix | 75 ++++++++++--------- 1 file changed, 38 insertions(+), 37 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 9854ba6b392..7bfaafaf69a 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -47,49 +47,50 @@ stdenv.mkDerivation { ++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch ++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ]; - postPatch = '' - substituteInPlace configure --replace /bin/pwd pwd - substituteInPlace qtbase/configure --replace /bin/pwd pwd - substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls - sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf + postPatch = + '' + substituteInPlace configure --replace /bin/pwd pwd + substituteInPlace qtbase/configure --replace /bin/pwd pwd + substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls + sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake" - sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in" - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake" + sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" - substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \ - --replace "@glibc@" "${stdenv.cc.libc}" - substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \ - --replace "@glibc@" "${stdenv.cc.libc}" + substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \ + --replace "@glibc@" "${stdenv.cc.libc}" + substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \ + --replace "@glibc@" "${stdenv.cc.libc}" - substituteInPlace qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp \ - --replace "@libXcursor@" "${libXcursor}" + substituteInPlace qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp \ + --replace "@libXcursor@" "${libXcursor}" - substituteInPlace qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp \ - --replace "@openssl@" "${openssl}" + substituteInPlace qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp \ + --replace "@openssl@" "${openssl}" - substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \ - --replace "@dbus_libs@" "${dbus}" + substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \ + --replace "@dbus_libs@" "${dbus}" - substituteInPlace \ - qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ - --replace "@libX11@" "${libX11}" - '' - + lib.optionalString gtkStyle '' - substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" - substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ - --replace "@gtk@" "${gtk}" \ - --replace "@gnome_vfs@" "${gnome_vfs}" \ - --replace "@libgnomeui@" "${libgnomeui}" \ - --replace "@gconf@" "${GConf}" - '' - + lib.optionalString mesaSupported '' - substituteInPlace \ - qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ - --replace "@mesa@" "${mesa}" - substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" - ''; + substituteInPlace \ + qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ + --replace "@libX11@" "${libX11}" + '' + + lib.optionalString gtkStyle '' + substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" + substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ + --replace "@gtk@" "${gtk}" \ + --replace "@gnome_vfs@" "${gnome_vfs}" \ + --replace "@libgnomeui@" "${libgnomeui}" \ + --replace "@gconf@" "${GConf}" + '' + + lib.optionalString mesaSupported '' + substituteInPlace \ + qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ + --replace "@mesa@" "${mesa}" + substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" + ''; preConfigure = '' export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH" From 36dda9231794e7a9fb2bd808e1fdf49dab94c718 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 12:26:54 -0600 Subject: [PATCH 148/289] qt55.qtbase: don't interpolate needlessly --- pkgs/development/libraries/qt-5/5.5/qtbase/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 7bfaafaf69a..24e5ccb36f3 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -201,12 +201,11 @@ stdenv.mkDerivation { postInstall = '' - ${lib.optionalString buildDocs '' - make docs && make install_docs - ''} - # Don't retain build-time dependencies like gdb and ruby. sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $out/mkspecs/qconfig.pri + '' + + lib.optionalString buildDocs '' + make docs && make install_docs ''; inherit lndir; From dac2c651098012c96848819c48890cf158e62caf Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Sat, 19 Dec 2015 22:09:20 +0200 Subject: [PATCH 149/289] azure agent service: provide SSL certificates path --- nixos/modules/virtualisation/azure-agent.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/modules/virtualisation/azure-agent.nix b/nixos/modules/virtualisation/azure-agent.nix index e657cc51939..ef4e3e1e48d 100644 --- a/nixos/modules/virtualisation/azure-agent.nix +++ b/nixos/modules/virtualisation/azure-agent.nix @@ -156,6 +156,12 @@ in after = [ "ip-up.target" ]; wants = [ "ip-up.target" ]; + environment = { + GIT_SSL_CAINFO = "/etc/ssl/certs/ca-certificates.crt"; + OPENSSL_X509_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt"; + SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt"; + }; + path = [ pkgs.e2fsprogs ]; description = "Windows Azure Agent Service"; unitConfig.ConditionPathExists = "/etc/waagent.conf"; From 1402c20bfd59d0584884b74d53e8cb1214c259e1 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 16:20:27 -0600 Subject: [PATCH 150/289] qt54: backport Qt infrastructure changes from Qt 5.5 --- .../libraries/qt-5/5.4/0003-glib-2.32.patch | 25 -- .../qt-5/5.4/0004-dlopen-resolv.patch | 39 -- .../libraries/qt-5/5.4/0005-dlopen-gl.patch | 25 -- .../qt-5/5.4/0010-dlopen-libXcursor.patch | 29 -- .../libraries/qt-5/5.4/0012-dlopen-dbus.patch | 13 - .../qt-5/5.4/0014-mkspecs-libgl.patch | 17 - .../libraries/qt-5/5.4/0100-ssl.patch | 13 - .../libraries/qt-5/5.4/default.nix | 400 ++++-------------- .../libraries/qt-5/5.4/fetchsrcs.sh | 47 ++ .../libraries/qt-5/5.4/make-qt-wrapper.sh | 42 ++ .../libraries/qt-5/5.4/manifest.json | 301 ------------- .../libraries/qt-5/5.4/manifest.sh | 9 - .../libraries/qt-5/5.4/qt-submodule.nix | 54 --- .../development/libraries/qt-5/5.4/qtbase.nix | 211 --------- .../qt-5/5.4/qtbase/compose-search-path.patch | 16 + .../qt-5/5.4/qtbase/decrypt-ssl-traffic.patch | 13 + .../libraries/qt-5/5.4/qtbase/default.nix | 224 ++++++++++ .../qt-5/5.4/qtbase/dlopen-dbus.patch | 13 + .../libraries/qt-5/5.4/qtbase/dlopen-gl.patch | 17 + .../dlopen-gtkstyle.patch} | 37 +- .../qt-5/5.4/qtbase/dlopen-libXcursor.patch | 17 + .../dlopen-openssl.patch} | 12 +- .../qt-5/5.4/qtbase/dlopen-resolv.patch | 26 ++ .../qt-5/5.4/qtbase/mkspecs-libgl.patch | 15 + .../qtbase/nix-profiles-library-paths.patch | 26 ++ .../libraries/qt-5/5.4/qtbase/series | 8 + .../libraries/qt-5/5.4/qtbase/setup-hook.sh | 100 +++++ .../{0006-tzdir.patch => qtbase/tzdir.patch} | 24 +- .../xdg-config-dirs.patch} | 20 +- .../libraries/qt-5/5.4/qtconnectivity.nix | 6 + .../0001-nix-profiles-import-paths.patch | 37 ++ .../qt-5/5.4/qtdeclarative/default.nix | 8 + pkgs/development/libraries/qt-5/5.4/qtdoc.nix | 6 + .../libraries/qt-5/5.4/qtenginio.nix | 6 + .../libraries/qt-5/5.4/qtgraphicaleffects.nix | 6 + .../libraries/qt-5/5.4/qtimageformats.nix | 6 + .../libraries/qt-5/5.4/qtlocation.nix | 6 + .../libraries/qt-5/5.4/qtmultimedia.nix | 12 + .../0001-nix-profiles-import-paths.patch | 37 ++ .../libraries/qt-5/5.4/qtquick1/default.nix | 7 + .../libraries/qt-5/5.4/qtquickcontrols.nix | 6 + .../qt-5/5.4/qtscript/0001-glib-2.32.patch | 25 ++ .../libraries/qt-5/5.4/qtscript/default.nix | 7 + .../libraries/qt-5/5.4/qtsensors.nix | 6 + .../0001-dlopen-serialport-udev.patch} | 20 +- .../qt-5/5.4/qtserialport/default.nix | 7 + pkgs/development/libraries/qt-5/5.4/qtsvg.nix | 6 + .../libraries/qt-5/5.4/qttools.nix | 6 + .../libraries/qt-5/5.4/qttranslations.nix | 6 + .../libraries/qt-5/5.4/qtwebkit-examples.nix | 6 + .../0001-dlopen-webkit-nsplugin.patch} | 36 +- .../0002-dlopen-webkit-gtk.patch} | 16 +- .../0003-dlopen-webkit-udev.patch} | 16 +- .../libraries/qt-5/5.4/qtwebkit/default.nix | 33 ++ .../libraries/qt-5/5.4/qtwebsockets.nix | 6 + .../libraries/qt-5/5.4/qtx11extras.nix | 6 + .../libraries/qt-5/5.4/qtxmlpatterns.nix | 6 + .../libraries/qt-5/5.4/setup-hook.sh | 77 ---- pkgs/development/libraries/qt-5/5.4/srcs.nix | 245 +++++++++++ pkgs/top-level/all-packages.nix | 2 +- 60 files changed, 1225 insertions(+), 1243 deletions(-) delete mode 100644 pkgs/development/libraries/qt-5/5.4/0003-glib-2.32.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/0004-dlopen-resolv.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/0005-dlopen-gl.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/0010-dlopen-libXcursor.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/0012-dlopen-dbus.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/0014-mkspecs-libgl.patch delete mode 100644 pkgs/development/libraries/qt-5/5.4/0100-ssl.patch create mode 100755 pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh create mode 100644 pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh delete mode 100644 pkgs/development/libraries/qt-5/5.4/manifest.json delete mode 100755 pkgs/development/libraries/qt-5/5.4/manifest.sh delete mode 100644 pkgs/development/libraries/qt-5/5.4/qt-submodule.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/compose-search-path.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/decrypt-ssl-traffic.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-dbus.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch rename pkgs/development/libraries/qt-5/5.4/{0001-dlopen-gtkstyle.patch => qtbase/dlopen-gtkstyle.patch} (72%) create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch rename pkgs/development/libraries/qt-5/5.4/{0011-dlopen-openssl.patch => qtbase/dlopen-openssl.patch} (75%) create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/series create mode 100644 pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh rename pkgs/development/libraries/qt-5/5.4/{0006-tzdir.patch => qtbase/tzdir.patch} (68%) rename pkgs/development/libraries/qt-5/5.4/{0013-xdg_config_dirs.patch => qtbase/xdg-config-dirs.patch} (68%) create mode 100644 pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtdoc.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtenginio.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtimageformats.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtlocation.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch create mode 100644 pkgs/development/libraries/qt-5/5.4/qtscript/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtsensors.nix rename pkgs/development/libraries/qt-5/5.4/{0009-dlopen-serialport-udev.patch => qtserialport/0001-dlopen-serialport-udev.patch} (60%) create mode 100644 pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtsvg.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qttools.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qttranslations.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix rename pkgs/development/libraries/qt-5/5.4/{0002-dlopen-webkit-nsplugin.patch => qtwebkit/0001-dlopen-webkit-nsplugin.patch} (50%) rename pkgs/development/libraries/qt-5/5.4/{0007-dlopen-webkit-gtk.patch => qtwebkit/0002-dlopen-webkit-gtk.patch} (50%) rename pkgs/development/libraries/qt-5/5.4/{0008-dlopen-webkit-udev.patch => qtwebkit/0003-dlopen-webkit-udev.patch} (62%) create mode 100644 pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtx11extras.nix create mode 100644 pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix delete mode 100644 pkgs/development/libraries/qt-5/5.4/setup-hook.sh create mode 100644 pkgs/development/libraries/qt-5/5.4/srcs.nix diff --git a/pkgs/development/libraries/qt-5/5.4/0003-glib-2.32.patch b/pkgs/development/libraries/qt-5/5.4/0003-glib-2.32.patch deleted file mode 100644 index 4abb69da4d8..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0003-glib-2.32.patch +++ /dev/null @@ -1,25 +0,0 @@ -From a41c3e3a3a1ce4b373b1bbb98f3a835e9e8a0718 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:22:39 -0600 -Subject: [PATCH] glib-2.32 - ---- - qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h b/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h -index 1f6d25e..087c3fb 100644 ---- a/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h -+++ b/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h -@@ -81,7 +81,7 @@ - #include - #elif PLATFORM(GTK) - #include --typedef struct _GMutex GMutex; -+typedef union _GMutex GMutex; - typedef struct _GCond GCond; - #endif - --- -2.1.3 - diff --git a/pkgs/development/libraries/qt-5/5.4/0004-dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.4/0004-dlopen-resolv.patch deleted file mode 100644 index e6b921b771d..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0004-dlopen-resolv.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 63af41c6eeca28c911c13b1a77afeaf860863c2d Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:22:55 -0600 -Subject: [PATCH] dlopen-resolv - ---- - qtbase/src/network/kernel/qdnslookup_unix.cpp | 2 +- - qtbase/src/network/kernel/qhostinfo_unix.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/qtbase/src/network/kernel/qdnslookup_unix.cpp b/qtbase/src/network/kernel/qdnslookup_unix.cpp -index 8c5a0eb..27ebf16 100644 ---- a/qtbase/src/network/kernel/qdnslookup_unix.cpp -+++ b/qtbase/src/network/kernel/qdnslookup_unix.cpp -@@ -87,7 +87,7 @@ static void resolveLibrary() - if (!lib.load()) - #endif - { -- lib.setFileName(QLatin1String("resolv")); -+ lib.setFileName(QLatin1String("@glibc/lib/resolv")); - if (!lib.load()) - return; - } -diff --git a/qtbase/src/network/kernel/qhostinfo_unix.cpp b/qtbase/src/network/kernel/qhostinfo_unix.cpp -index df8c8b1..613d0e0 100644 ---- a/qtbase/src/network/kernel/qhostinfo_unix.cpp -+++ b/qtbase/src/network/kernel/qhostinfo_unix.cpp -@@ -103,7 +103,7 @@ static void resolveLibrary() - if (!lib.load()) - #endif - { -- lib.setFileName(QLatin1String("resolv")); -+ lib.setFileName(QLatin1String("@glibc@/lib/libresolv")); - if (!lib.load()) - return; - } --- -2.1.3 - diff --git a/pkgs/development/libraries/qt-5/5.4/0005-dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.4/0005-dlopen-gl.patch deleted file mode 100644 index d112427bdd6..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0005-dlopen-gl.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 6aaf6858bf817172a4c503158e1701c4837ee790 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:23:08 -0600 -Subject: [PATCH] dlopen-gl - ---- - qtbase/src/plugins/platforms/xcb/qglxintegration.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp b/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp -index 67235e0..2220a2e 100644 ---- a/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp -+++ b/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp -@@ -434,7 +434,7 @@ void (*QGLXContext::getProcAddress(const QByteArray &procName)) () - { - extern const QString qt_gl_library_name(); - // QLibrary lib(qt_gl_library_name()); -- QLibrary lib(QLatin1String("GL")); -+ QLibrary lib(QLatin1String("@openglDriver@/lib/libGL")); - glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); - } - } --- -2.1.3 - diff --git a/pkgs/development/libraries/qt-5/5.4/0010-dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.4/0010-dlopen-libXcursor.patch deleted file mode 100644 index 49ade86fae3..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0010-dlopen-libXcursor.patch +++ /dev/null @@ -1,29 +0,0 @@ -From b56e3737ca97e3de664603976989da4419297eb3 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:33:51 -0600 -Subject: [PATCH] dlopen-libXcursor - ---- - qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp b/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -index 6dbac90..4b23fc2 100644 ---- a/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -+++ b/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -@@ -305,10 +305,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *conn, QXcbScreen *screen) - #ifdef XCB_USE_XLIB - static bool function_ptrs_not_initialized = true; - if (function_ptrs_not_initialized) { -- QLibrary xcursorLib(QLatin1String("Xcursor"), 1); -+ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1); - bool xcursorFound = xcursorLib.load(); - if (!xcursorFound) { // try without the version number -- xcursorLib.setFileName(QLatin1String("Xcursor")); -+ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor")); - xcursorFound = xcursorLib.load(); - } - if (xcursorFound) { --- -2.1.3 - diff --git a/pkgs/development/libraries/qt-5/5.4/0012-dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.4/0012-dlopen-dbus.patch deleted file mode 100644 index 77eb7bc85af..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0012-dlopen-dbus.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/qtbase/src/dbus/qdbus_symbols.cpp b/qtbase/src/dbus/qdbus_symbols.cpp -index 6764309..33f25f9 100644 ---- a/qtbase/src/dbus/qdbus_symbols.cpp -+++ b/qtbase/src/dbus/qdbus_symbols.cpp -@@ -88,7 +88,7 @@ bool qdbus_loadLibDBus() - #ifdef Q_OS_WIN - QLatin1String("dbus-1"), - #endif -- QLatin1String("libdbus-1") -+ QLatin1String("@dbus_libs@/lib/libdbus-1") - }; - - lib->unload(); diff --git a/pkgs/development/libraries/qt-5/5.4/0014-mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.4/0014-mkspecs-libgl.patch deleted file mode 100644 index 1fc4bbd6076..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0014-mkspecs-libgl.patch +++ /dev/null @@ -1,17 +0,0 @@ -Ensure Qt knows where libGL is. - -Author: Bjørn Forsman -diff -uNr qt-everywhere-opensource-src-5.3.2.orig/qtbase/mkspecs/common/linux.conf qt-everywhere-opensource-src-5.3.2/qtbase/mkspecs/common/linux.conf ---- qt-everywhere-opensource-src-5.3.2.orig/qtbase/mkspecs/common/linux.conf 2014-09-11 12:48:07.000000000 +0200 -+++ qt-everywhere-opensource-src-5.3.2/qtbase/mkspecs/common/linux.conf 2015-08-23 13:03:30.617473019 +0200 -@@ -12,8 +12,8 @@ - QMAKE_LIBDIR = - QMAKE_INCDIR_X11 = - QMAKE_LIBDIR_X11 = --QMAKE_INCDIR_OPENGL = --QMAKE_LIBDIR_OPENGL = -+QMAKE_INCDIR_OPENGL = @mesa@/include -+QMAKE_LIBDIR_OPENGL = @mesa@/lib - QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL - QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL - QMAKE_INCDIR_EGL = diff --git a/pkgs/development/libraries/qt-5/5.4/0100-ssl.patch b/pkgs/development/libraries/qt-5/5.4/0100-ssl.patch deleted file mode 100644 index 4607274de74..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/0100-ssl.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/qtbase/src/network/ssl/qsslsocket_openssl.cpp b/qtbase/src/network/ssl/qsslsocket_openssl.cpp -index 8833e3f..c56d381 100644 ---- a/qtbase/src/network/ssl/qsslsocket_openssl.cpp -+++ b/qtbase/src/network/ssl/qsslsocket_openssl.cpp -@@ -47,7 +47,7 @@ - ****************************************************************************/ - - //#define QSSLSOCKET_DEBUG --//#define QT_DECRYPT_SSL_TRAFFIC -+#define QT_DECRYPT_SSL_TRAFFIC - - #include "qssl_p.h" - #include "qsslsocket_openssl_p.h" diff --git a/pkgs/development/libraries/qt-5/5.4/default.nix b/pkgs/development/libraries/qt-5/5.4/default.nix index 136c352d1aa..4bb24427b9f 100644 --- a/pkgs/development/libraries/qt-5/5.4/default.nix +++ b/pkgs/development/libraries/qt-5/5.4/default.nix @@ -1,8 +1,8 @@ # Maintainer's Notes: # # Minor updates: -# 1. Edit ./manifest.sh to point to the updated URL. -# 2. Run ./manifest.sh. +# 1. Edit ./fetchsrcs.sh to point to the updated URL. +# 2. Run ./fetchsrcs.sh. # 3. Build and enjoy. # # Major updates: @@ -11,350 +11,98 @@ # if it exists. Then follow the minor update instructions. Be sure to check if # any new components have been added and package them as necessary. -{ autonix, fetchurl, newScope, stdenv - -, bison2 -, mesa_noglu -, cups -, gnome +{ pkgs # options , developerBuild ? false , decryptSslTraffic ? false }: -with autonix; +let inherit (pkgs) makeSetupHook makeWrapper stdenv; in + with stdenv.lib; let - srcs = + + mirror = "http://download.qt.io"; + srcs = import ./srcs.nix { inherit mirror; inherit (pkgs) fetchurl; }; + + qtSubmodule = args: let - manifest = builtins.fromJSON (builtins.readFile ./manifest.json); - mirror = "http://download.qt.io"; - fetch = src: fetchurl (src // { url = "${mirror}/${src.url}"; }); - mkPair = pkg: nameValuePair (builtins.parseDrvName pkg.name).name (fetch pkg.src); - pairs = map mkPair manifest; - in listToAttrs pairs; + inherit (args) name; + inherit (srcs."${args.name}") version src; + inherit (pkgs.stdenv) mkDerivation; + in mkDerivation (args // { + name = "${name}-${version}"; + inherit src; - version = "5.4.2"; + propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []); - callPackage = newScope (self // { inherit qtSubmodule; }); + NIX_QT_SUBMODULE = args.NIX_QT_SUBMODULE or true; + dontAddPrefix = args.dontAddPrefix or true; + dontFixLibtool = args.dontFixLibtool or true; + configureScript = args.configureScript or "qmake"; - qtSubmodule = callPackage ./qt-submodule.nix { - inherit srcs version; - inherit (stdenv) mkDerivation; - }; + enableParallelBuilding = args.enableParallelBuilding or true; - self = - { + meta = { + homepage = http://qt-project.org; + description = "A cross-platform application framework for C++"; + license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ]; + maintainers = with maintainers; [ bbenoist qknight ttuegel ]; + platforms = platforms.linux; + } // (args.meta or {}); + }); - activeqt = callPackage - ( - { qtSubmodule, base }: + addPackages = self: with self; + let + callPackage = self.newScope { inherit qtSubmodule srcs; }; + in { - qtSubmodule { - name = "qtactiveqt"; - qtInputs = [ base ]; - } - ) - {}; - - /* androidextras = not packaged */ - - base = callPackage ./qtbase.nix { - mesa = mesa_noglu; - cups = if stdenv.isLinux then cups else null; + qtbase = callPackage ./qtbase { + mesa = pkgs.mesa_noglu; + cups = if stdenv.isLinux then pkgs.cups else null; # GNOME dependencies are not used unless gtkStyle == true - inherit (gnome) libgnomeui GConf gnome_vfs; - bison = bison2; # error: too few arguments to function 'int yylex(... - inherit developerBuild srcs version decryptSslTraffic; + inherit (pkgs.gnome) libgnomeui GConf gnome_vfs; + bison = pkgs.bison2; # error: too few arguments to function 'int yylex(... + inherit developerBuild decryptSslTraffic; }; - connectivity = callPackage - ( - { qtSubmodule, base, declarative }: + /* qt3d = not packaged */ + /* qtactiveqt = not packaged */ + /* qtandroidextras = not packaged */ + /* qtcanvas3d = not packaged */ + qtconnectivity = callPackage ./qtconnectivity.nix {}; + qtdeclarative = callPackage ./qtdeclarative {}; + qtdoc = callPackage ./qtdoc.nix {}; + qtenginio = callPackage ./qtenginio.nix {}; + qtgraphicaleffects = callPackage ./qtgraphicaleffects.nix {}; + qtimageformats = callPackage ./qtimageformats.nix {}; + qtlocation = callPackage ./qtlocation.nix {}; + /* qtmacextras = not packaged */ + qtmultimedia = callPackage ./qtmultimedia.nix { + inherit (pkgs.gst_all_1) gstreamer gst-plugins-base; + }; + qtquick1 = callPackage ./qtquick1 {}; + qtquickcontrols = callPackage ./qtquickcontrols.nix {}; + qtscript = callPackage ./qtscript {}; + qtsensors = callPackage ./qtsensors.nix {}; + qtserialport = callPackage ./qtserialport {}; + qtsvg = callPackage ./qtsvg.nix {}; + qttools = callPackage ./qttools.nix {}; + qttranslations = callPackage ./qttranslations.nix {}; + /* qtwayland = not packaged */ + /* qtwebchannel = not packaged */ + /* qtwebengine = not packaged */ + qtwebkit = callPackage ./qtwebkit {}; + qtwebkit-examples = callPackage ./qtwebkit-examples.nix {}; + qtwebsockets = callPackage ./qtwebsockets.nix {}; + /* qtwinextras = not packaged */ + qtx11extras = callPackage ./qtx11extras.nix {}; + qtxmlpatterns = callPackage ./qtxmlpatterns.nix {}; - qtSubmodule { - name = "qtconnectivity"; - qtInputs = [ base declarative ]; - } - ) - {}; - - declarative = callPackage - ( - { qtSubmodule, python, base, svg, xmlpatterns }: - - qtSubmodule { - name = "qtdeclarative"; - qtInputs = [ base svg xmlpatterns ]; - nativeBuildInputs = [ python ]; - } - ) - {}; - - doc = callPackage - ( - { qtSubmodule, declarative }: - - qtSubmodule { - name = "qtdoc"; - qtInputs = [ declarative ]; - } - ) - {}; - - enginio = callPackage - ( - { qtSubmodule, declarative }: - - qtSubmodule { - name = "qtenginio"; - qtInputs = [ declarative ]; - } - ) - {}; - - graphicaleffects = callPackage - ( - { qtSubmodule, declarative }: - - qtSubmodule { - name = "qtgraphicaleffects"; - qtInputs = [ declarative ]; - } - ) - {}; - - imageformats = callPackage - ( - { qtSubmodule, base }: - - qtSubmodule { - name = "qtimageformats"; - qtInputs = [ base ]; - } - ) - {}; - - location = callPackage - ( - { qtSubmodule, base, multimedia }: - - qtSubmodule { - name = "qtlocation"; - qtInputs = [ base multimedia ]; - } - ) - {}; - - /* macextras = not packaged */ - - multimedia = callPackage - ( - { qtSubmodule, base, declarative, pkgconfig - , alsaLib, gstreamer, gst_plugins_base, libpulseaudio - }: - - qtSubmodule { - name = "qtmultimedia"; - qtInputs = [ base declarative ]; - buildInputs = [ - pkgconfig alsaLib gstreamer gst_plugins_base libpulseaudio - ]; - } - ) - {}; - - quick1 = callPackage - ( - { qtSubmodule, script, svg, webkit, xmlpatterns }: - - qtSubmodule { - name = "qtquick1"; - qtInputs = [ script svg webkit xmlpatterns ]; - } - ) - {}; - - quickcontrols = callPackage - ( - { qtSubmodule, declarative }: - - qtSubmodule { - name = "qtquickcontrols"; - qtInputs = [ declarative ]; - } - ) - {}; - - script = callPackage - ( - { qtSubmodule, base, tools }: - - qtSubmodule { - name = "qtscript"; - qtInputs = [ base tools ]; - patchFlags = "-p2"; # patches originally for monolithic build - patches = [ ./0003-glib-2.32.patch ]; - } - ) - {}; - - sensors = callPackage - ( - { qtSubmodule, base, declarative }: - - qtSubmodule { - name = "qtsensors"; - qtInputs = [ base declarative ]; - } - ) - {}; - - serialport = callPackage - ( - { qtSubmodule, base }: - - qtSubmodule { - name = "qtserialport"; - qtInputs = [ base ]; - patchFlags = "-p2"; # patches originally for monolithic build - patches = [ ./0009-dlopen-serialport-udev.patch ]; - } - ) - {}; - - svg = callPackage - ( - { qtSubmodule, base }: - - qtSubmodule { - name = "qtsvg"; - qtInputs = [ base ]; - } - ) - {}; - - tools = callPackage - ( - { qtSubmodule, activeqt, base, declarative, webkit }: - - qtSubmodule { - name = "qttools"; - qtInputs = [ activeqt base declarative webkit ]; - } - ) - {}; - - translations = callPackage - ( - { qtSubmodule, tools }: - - qtSubmodule { - name = "qttranslations"; - qtInputs = [ tools ]; - } - ) - {}; - - /* wayland = not packaged */ - - /* webchannel = not packaged */ - - /* webengine = not packaged */ - - webkit = callPackage - ( - { qtSubmodule, declarative, location, multimedia, sensors - , fontconfig, gdk_pixbuf, gtk, libwebp, libxml2, libxslt - , sqlite, udev - , bison2, flex, gdb, gperf, perl, pkgconfig, python, ruby - , substituteAll - , flashplayerFix ? false - }: - - qtSubmodule { - name = "qtwebkit"; - qtInputs = [ declarative location multimedia sensors ]; - buildInputs = [ fontconfig libwebp libxml2 libxslt sqlite ]; - nativeBuildInputs = [ - bison2 flex gdb gperf perl pkgconfig python ruby - ]; - patchFlags = "-p2"; # patches originally for monolithic build - patches = - optional flashplayerFix - (substituteAll - { - src = ./0002-dlopen-webkit-nsplugin.patch; - inherit gtk gdk_pixbuf; - } - ) - ++ optional flashplayerFix - (substituteAll - { - src = ./0007-dlopen-webkit-gtk.patch; - inherit gtk; - } - ) - ++ [ - (substituteAll - { - src = ./0008-dlopen-webkit-udev.patch; - inherit udev; - } - ) - ]; - } - ) - {}; - - webkit-examples = callPackage - ( - { qtSubmodule, tools, webkit }: - - qtSubmodule { - name = "qtwebkit-examples"; - qtInputs = [ tools webkit ]; - } - ) - {}; - - websockets = callPackage - ( - { qtSubmodule, base, declarative }: - - qtSubmodule { - name = "qtwebsockets"; - qtInputs = [ base declarative ]; - } - ) - {}; - - /* winextras = not packaged */ - - x11extras = callPackage - ( - { qtSubmodule, base }: - - qtSubmodule { - name = "qtx11extras"; - qtInputs = [ base ]; - } - ) - {}; - - xmlpatterns = callPackage - ( - { qtSubmodule, base }: - - qtSubmodule { - name = "qtxmlpatterns"; - qtInputs = [ base ]; - } - ) - {}; + makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; }; -in self +in makeScope pkgs.newScope addPackages diff --git a/pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh b/pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh new file mode 100755 index 00000000000..0fd5bb8d5fe --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/fetchsrcs.sh @@ -0,0 +1,47 @@ +#! /usr/bin/env nix-shell +#! nix-shell -i bash -p coreutils findutils gnused nix wget + +set -x + +# The trailing slash at the end is necessary! +RELEASE_URL="http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/" +EXTRA_WGET_ARGS='-A *.tar.xz' + +mkdir tmp; cd tmp + +wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS + +cat >../srcs.nix <>../srcs.nix <>../srcs.nix + +cd .. diff --git a/pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh b/pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh new file mode 100644 index 00000000000..d61665455bf --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/make-qt-wrapper.sh @@ -0,0 +1,42 @@ +addQtDependency() { + addToSearchPath QT_PLUGIN_PATH "$1/lib/qt5/plugins" + addToSearchPath QML_IMPORT_PATH "$1/lib/qt5/imports" + addToSearchPath QML2_IMPORT_PATH "$1/lib/qt5/qml" + addToSearchPath XDG_CONFIG_DIRS "$1/etc/xdg" + addToSearchPath XDG_DATA_DIRS "$1/share" +} + +wrapQtProgram() { + local prog="$1" + shift + wrapProgram "$prog" \ + --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ + --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ + --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ + --prefix XDG_CONFIG_DIRS : "$XDG_CONFIG_DIRS" \ + --prefix XDG_DATA_DIRS : "$XDG_DATA_DIRS" \ + "$@" +} + +makeQtWrapper() { + local old="$1" + local new="$2" + shift + shift + makeWrapper "$old" "$new" \ + --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ + --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ + --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ + --prefix XDG_CONFIG_DIRS : "$XDG_CONFIG_DIRS" \ + --prefix XDG_DATA_DIRS : "$XDG_DATA_DIRS" \ + "$@" +} + +# cannot use addToSearchPath because these directories may not exist yet +export QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}$out/lib/qt5/plugins" +export QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}$out/lib/qt5/imports" +export QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}$out/lib/qt5/qml" +export XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}$out/etc/xdg" +export XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}$out/share" + +envHooks+=(addQtDependency) diff --git a/pkgs/development/libraries/qt-5/5.4/manifest.json b/pkgs/development/libraries/qt-5/5.4/manifest.json deleted file mode 100644 index 83dedb41706..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/manifest.json +++ /dev/null @@ -1,301 +0,0 @@ -[ - { - "name": "qtbase-opensource-src-5.4.2", - "store": "/nix/store/60xy2xnsl5kwraqkgh8d950nj1pk3kmi-qtbase-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtbase-opensource-src-5.4.2.tar.xz", - "sha256": "0x2szpjjvsrpcqw0dd3gsim7b1jv9p716pnllzjbia5mp0hggi4z", - "name": "qtbase-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtenginio-opensource-src-5.4.2", - "store": "/nix/store/4iprnq6sm0b1pnxmxb5krip7kk40xqmr-qtenginio-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtenginio-opensource-src-5.4.2.tar.xz", - "sha256": "082i3fapjw6xs0jkz7x529dn3pb6w1pfli3cjrgvggff86gwlgwn", - "name": "qtenginio-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtserialport-opensource-src-5.4.2", - "store": "/nix/store/l9k1v23ddnhjch5b2p3l28xbqkhz63yl-qtserialport-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtserialport-opensource-src-5.4.2.tar.xz", - "sha256": "1h6p5rb0ldxgzd4md3n79gy0j9blhj736670xqjd9vlvh1743kck", - "name": "qtserialport-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtscript-opensource-src-5.4.2", - "store": "/nix/store/n4ixnakw3fiflyimshkp43h7ijlpiif6-qtscript-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtscript-opensource-src-5.4.2.tar.xz", - "sha256": "0izsmy0cr8iii78r10ndkidyljxqd2k9g03f5xb9nxacvr2f8hp0", - "name": "qtscript-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwebchannel-opensource-src-5.4.2", - "store": "/nix/store/qbkqkn4ck0fqbndl9fzp7iaz6c475xq8-qtwebchannel-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebchannel-opensource-src-5.4.2.tar.xz", - "sha256": "0vy1zjbghfa1wirxd8fd2n2n8yryykzr09913qm2nlfbcxdsgqsn", - "name": "qtwebchannel-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwinextras-opensource-src-5.4.2", - "store": "/nix/store/9kmig3lg8d8s5r1jl3xj5q3jrkp3p8sx-qtwinextras-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwinextras-opensource-src-5.4.2.tar.xz", - "sha256": "0sgybvr1y2xsddlqc95ninxj3rfmd4gv7a8f7rqcxdynjan5gij0", - "name": "qtwinextras-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwebsockets-opensource-src-5.4.2", - "store": "/nix/store/zk4s5pgp3mh6xdq6z3svi305vn0pli27-qtwebsockets-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebsockets-opensource-src-5.4.2.tar.xz", - "sha256": "0lv1la8333qnirxmscs42xnnra0xry1gjbhi3bxrf1hrfs2im9j4", - "name": "qtwebsockets-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtmultimedia-opensource-src-5.4.2", - "store": "/nix/store/n8wpy6b8jw1rf51z1qhxbbym7j8rr8ay-qtmultimedia-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtmultimedia-opensource-src-5.4.2.tar.xz", - "sha256": "0h29cs8ajnjarhjx1aczdnxqwvg6pqs9s8w28hw488s149wqqrnj", - "name": "qtmultimedia-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtgraphicaleffects-opensource-src-5.4.2", - "store": "/nix/store/2q2vk530mf32zzd1v8bpax8iixviw6q5-qtgraphicaleffects-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtgraphicaleffects-opensource-src-5.4.2.tar.xz", - "sha256": "02p8xm5ajicjam30ry3g1lm2p4nja2q0sls8dzimqrxhw5xlg3xs", - "name": "qtgraphicaleffects-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtxmlpatterns-opensource-src-5.4.2", - "store": "/nix/store/3fqgpa668hb1xmwjw056cw58qzb3r0g4-qtxmlpatterns-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtxmlpatterns-opensource-src-5.4.2.tar.xz", - "sha256": "0ar7znqp1i02ha5ngy2kzk3hlgkafjbn2xa8j2k78gzmwsmdhzxa", - "name": "qtxmlpatterns-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qttranslations-opensource-src-5.4.2", - "store": "/nix/store/mg9b5z2nznzxrz501hm06b7l27jjwaca-qttranslations-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qttranslations-opensource-src-5.4.2.tar.xz", - "sha256": "0b4l69c16z8gjd4mq75zz3lj2gxarr9wyk0vk60jg1mi62vxvdls", - "name": "qttranslations-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtdeclarative-opensource-src-5.4.2", - "store": "/nix/store/bjmv4fgphx9bggzcwy4lcdas9phbwjsg-qtdeclarative-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtdeclarative-opensource-src-5.4.2.tar.xz", - "sha256": "1bj1wwms6lpj8s70y8by3j0hjsw6g9v8m6fybx68krzzizbj2c5p", - "name": "qtdeclarative-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwebkit-opensource-src-5.4.2", - "store": "/nix/store/pfhq8ask8jhzdh2x882d014b10ddywma-qtwebkit-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebkit-opensource-src-5.4.2.tar.xz", - "sha256": "0vffbpiczag2n2hp5gc0nii8n7vkidr8f8pp8a47px0183hl6hiy", - "name": "qtwebkit-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtquick1-opensource-src-5.4.2", - "store": "/nix/store/n807cxddkvhbzw3ciqs29zc5mw47z2qs-qtquick1-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtquick1-opensource-src-5.4.2.tar.xz", - "sha256": "0178z15a31fw3l6933fwxs7sk0csifpwckydp3rqnn3fg5f2fwvp", - "name": "qtquick1-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtquickcontrols-opensource-src-5.4.2", - "store": "/nix/store/gq8afk8zr2vrrsfmp4caqv02209qk9xb-qtquickcontrols-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtquickcontrols-opensource-src-5.4.2.tar.xz", - "sha256": "137z3c3drxlvkdfc7zgcl0xqmavw0ladzqy0i3bq51h756qdc877", - "name": "qtquickcontrols-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtimageformats-opensource-src-5.4.2", - "store": "/nix/store/cmpx0338z1j0wzk6scfpay5k10023d46-qtimageformats-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtimageformats-opensource-src-5.4.2.tar.xz", - "sha256": "1nny6j9pm5ri3n1vwl5lrfrdz0fl81rx127wa49rkg2rjai2aawb", - "name": "qtimageformats-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtdoc-opensource-src-5.4.2", - "store": "/nix/store/jv4wgs6pz9xqmin9m4q4mifr2vfcjn3h-qtdoc-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtdoc-opensource-src-5.4.2.tar.xz", - "sha256": "15lamv6jvd7v33ldpcrazcdksv6qibdcgh4ncbyh774k8avgrlh8", - "name": "qtdoc-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwayland-opensource-src-5.4.2", - "store": "/nix/store/qa3yi9lyx2dm4wqzb3qzvzba1sgnj74z-qtwayland-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwayland-opensource-src-5.4.2.tar.xz", - "sha256": "14pmpkfq70plw07igxjaiji4vnjg5kg7izlb0wwym1lisg7bwkg0", - "name": "qtwayland-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtmacextras-opensource-src-5.4.2", - "store": "/nix/store/wdq1z3bzr9n11yln8avx10sgzgyvp8cl-qtmacextras-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtmacextras-opensource-src-5.4.2.tar.xz", - "sha256": "0h0p3s0rvd3g9rgr4hwcggdbsav2g30vijqwmdxgxd8c00yply80", - "name": "qtmacextras-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtactiveqt-opensource-src-5.4.2", - "store": "/nix/store/0ik7vc3zwdjvrp4fpyqf1zpyqdxvvqvq-qtactiveqt-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtactiveqt-opensource-src-5.4.2.tar.xz", - "sha256": "014kwficqydciwdm1yw88yms81qm8pmi6xfhhfpbc9k85pc6jlla", - "name": "qtactiveqt-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtlocation-opensource-src-5.4.2", - "store": "/nix/store/sa4dawsw2wv45ld3afbz9nfc64qkyx1s-qtlocation-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtlocation-opensource-src-5.4.2.tar.xz", - "sha256": "1v43hl2zzi90vaw11y8dvsksrjn0r2v0br7pw6njl8lqadpg4jnw", - "name": "qtlocation-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtconnectivity-opensource-src-5.4.2", - "store": "/nix/store/v2aiscvf582azyzg696rglway56l7xl2-qtconnectivity-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtconnectivity-opensource-src-5.4.2.tar.xz", - "sha256": "1nj68bzgm3r1gg171kj0acnifzb3jx0m5pf4f81xb7zl4hfxasrs", - "name": "qtconnectivity-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtx11extras-opensource-src-5.4.2", - "store": "/nix/store/nz62qld9h96z5a0b7fg52fsh5d6q0kqw-qtx11extras-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtx11extras-opensource-src-5.4.2.tar.xz", - "sha256": "0jgyywjxavfpiz8202g3s0g9izfl185mmak4fs9h80w1i3gn5zzn", - "name": "qtx11extras-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qttools-opensource-src-5.4.2", - "store": "/nix/store/i8n6xrhalg3z4i0min4w79rq9h9hch0x-qttools-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qttools-opensource-src-5.4.2.tar.xz", - "sha256": "1d5nx01r7wxhdg9f1i9xhsvsbwgaz3yv516s068riy970bhdgwzd", - "name": "qttools-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtsensors-opensource-src-5.4.2", - "store": "/nix/store/0ar28gp8klqxynjnc1r4kj9x7g8cknk2-qtsensors-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtsensors-opensource-src-5.4.2.tar.xz", - "sha256": "1yawvjbdymgw8af7ir9zcin89xxck9dm2l6hnc43lwrky0frcvcf", - "name": "qtsensors-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwebengine-opensource-src-5.4.2", - "store": "/nix/store/ikr8cc3bn62jlv9afpzhxvqs5qhsc2yc-qtwebengine-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebengine-opensource-src-5.4.2.tar.xz", - "sha256": "06cyl733prakniqrn8sd807lclk5im2vmysjdcijry2mcyah2ih8", - "name": "qtwebengine-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtsvg-opensource-src-5.4.2", - "store": "/nix/store/0llm31zpiaqig940a8dsp1dk2npxsnjc-qtsvg-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtsvg-opensource-src-5.4.2.tar.xz", - "sha256": "1dsyncp154xvb7d82nmnfjm0ngymnhqmliq58ljwxsjmpjlncakz", - "name": "qtsvg-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qt5-opensource-src-5.4.2", - "store": "/nix/store/0jrx1clg8vqid9b2n9z8f0xbwjm0yynr-qt5-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qt5-opensource-src-5.4.2.tar.xz", - "sha256": "17a0pybr4bpyv9pj7cr5hl4g31biv89bjr8zql723h0b12ql1w44", - "name": "qt5-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtwebkit-examples-opensource-src-5.4.2", - "store": "/nix/store/6pmmi9bjbdxkbw2xkkc1srk5ambnjcxv-qtwebkit-examples-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtwebkit-examples-opensource-src-5.4.2.tar.xz", - "sha256": "0pm9ik1j09jfb5xflc16449nff2xsfyfms7vxlcdjg4dhcqfmll8", - "name": "qtwebkit-examples-opensource-src-5.4.2.tar.xz" - } - } -, - { - "name": "qtandroidextras-opensource-src-5.4.2", - "store": "/nix/store/grrsklibvplaj5pdwjp2zirxmqnq10hf-qtandroidextras-opensource-src-5.4.2.tar.xz", - "src": { - "url": "official_releases/qt/5.4/5.4.2/submodules/qtandroidextras-opensource-src-5.4.2.tar.xz", - "sha256": "0krfm0wg26x7575p8isswdhrkb0jxyp169grwklil7mfw8yg3xhx", - "name": "qtandroidextras-opensource-src-5.4.2.tar.xz" - } - } -] diff --git a/pkgs/development/libraries/qt-5/5.4/manifest.sh b/pkgs/development/libraries/qt-5/5.4/manifest.sh deleted file mode 100755 index 780269a6417..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/manifest.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -set -x - -# The extra slash at the end of the URL is necessary to stop wget -# from recursing over the whole server! (No, it's not a bug.) -$(nix-build ../../../../.. --no-out-link -A autonix.manifest) \ - http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/ \ - -A '*.tar.xz' diff --git a/pkgs/development/libraries/qt-5/5.4/qt-submodule.nix b/pkgs/development/libraries/qt-5/5.4/qt-submodule.nix deleted file mode 100644 index 4012b637e28..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/qt-submodule.nix +++ /dev/null @@ -1,54 +0,0 @@ -{ stdenv, mkDerivation -, srcs, version -, lndir -, base -}: - -with stdenv.lib; - -args: - -mkDerivation (args // { - - name = "${args.name}-${version}"; - inherit version; - - srcs = args.srcs or [srcs."${args.name}-opensource-src"]; - - qtSubmodule = args.qtSubmodule or true; - dontAddPrefix = args.dontAddPrefix or true; - dontFixLibtool = args.dontFixLibtool or true; - configureScript = args.configureScript or "qmake"; - - postInstall = '' - rm "$out/bin/qmake" "$out/bin/qt.conf" - - cat "$out/nix-support/qt-inputs" | while read file; do - if [[ -h "$out/$file" ]]; then - rm "$out/$file" - fi - done - - cat "$out/nix-support/qt-inputs" | while read file; do - if [[ -d "$out/$file" ]]; then - rmdir --ignore-fail-on-non-empty -p "$out/$file" - fi - done - - rm "$out/nix-support/qt-inputs" - ''; - - propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []); - - enableParallelBuilding = - args.enableParallelBuilding or true; # often fails on Hydra, as well as qt4 - - meta = args.meta or { - homepage = http://qt-project.org; - description = "A cross-platform application framework for C++"; - license = "GPL/LGPL"; - maintainers = with maintainers; [ bbenoist qknight ttuegel ]; - platforms = platforms.linux; - }; - -}) diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase.nix b/pkgs/development/libraries/qt-5/5.4/qtbase.nix deleted file mode 100644 index 30d53eb874b..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase.nix +++ /dev/null @@ -1,211 +0,0 @@ -{ stdenv, substituteAll -, srcs, version - -, xorg, libX11, libxcb, libXcursor, libXext, libXrender, libXi -, xcbutil, xcbutilimage, xcbutilkeysyms, xcbutilwm, libxkbcommon -, fontconfig, freetype, openssl, dbus, glib, udev, libxml2, libxslt, pcre -, zlib, libjpeg, libpng, libtiff, sqlite, icu - -, coreutils, bison, flex, gdb, gperf, lndir, ruby -, python, perl, pkgconfig - -# optional dependencies -, cups ? null -, mysql ? null, postgresql ? null - -# options -, mesaSupported, mesa, mesa_glu -, buildDocs ? false -, buildExamples ? false -, buildTests ? false -, developerBuild ? false -, gtkStyle ? false, libgnomeui, GConf, gnome_vfs, gtk -, decryptSslTraffic ? false -}: - -with stdenv.lib; - -let system-x86_64 = elem stdenv.system platforms.x86_64; in - -stdenv.mkDerivation { - - name = "qtbase-${version}"; - inherit version; - - srcs = with srcs; [ qt5-opensource-src qtbase-opensource-src ]; - sourceRoot = "qt-everywhere-opensource-src-${version}"; - - postUnpack = '' - mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase - ''; - - prePatch = '' - substituteInPlace configure --replace /bin/pwd pwd - substituteInPlace qtbase/configure --replace /bin/pwd pwd - substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls - substituteInPlace qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ - --replace /usr/share/X11/locale ${libX11}/share/X11/locale \ - --replace /usr/lib/X11/locale ${libX11}/share/X11/locale - sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf - ''; - - patches = - optional gtkStyle - (substituteAll { - src = ./0001-dlopen-gtkstyle.patch; - # substituteAll ignores env vars starting with capital letter - gconf = GConf; - inherit gnome_vfs libgnomeui gtk; - }) - ++ [ - (substituteAll { - src = ./0004-dlopen-resolv.patch; - glibc = stdenv.cc.libc; - }) - (substituteAll { - src = ./0005-dlopen-gl.patch; - openglDriver = if mesaSupported then mesa.driverLink else "/no-such-path"; - }) - ./0006-tzdir.patch - (substituteAll { src = ./0010-dlopen-libXcursor.patch; inherit libXcursor; }) - (substituteAll { src = ./0011-dlopen-openssl.patch; inherit openssl; }) - (substituteAll { src = ./0012-dlopen-dbus.patch; dbus_libs = dbus; }) - ./0013-xdg_config_dirs.patch - ] ++ optional mesaSupported - (substituteAll { src = ./0014-mkspecs-libgl.patch; inherit mesa; }) - ++ (optional decryptSslTraffic ./0100-ssl.patch); - - preConfigure = '' - export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$PWD/qttools/lib:$LD_LIBRARY_PATH" - export MAKEFLAGS=-j$NIX_BUILD_CORES - - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake" - sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in" - sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" - - export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml" - export configureFlags+=" -docdir $out/share/doc/qt5" - ''; - - prefixKey = "-prefix "; - - # -no-eglfs, -no-directfb, -no-linuxfb and -no-kms because of the current minimalist mesa - # TODO Remove obsolete and useless flags once the build will be totally mastered - configureFlags = '' - -verbose - -confirm-license - -opensource - - -release - -shared - -c++11 - ${optionalString developerBuild "-developer-build"} - -largefile - -accessibility - -rpath - -optimized-qmake - -strip - -reduce-relocations - -system-proxies - -pkg-config - - -gui - -widgets - -opengl desktop - -qml-debug - -nis - -iconv - -icu - -pch - -glib - -xcb - -qpa xcb - -${optionalString (cups == null) "no-"}cups - -${optionalString (!gtkStyle) "no-"}gtkstyle - - -no-eglfs - -no-directfb - -no-linuxfb - -no-kms - - ${optionalString (!system-x86_64) "-no-sse2"} - -no-sse3 - -no-ssse3 - -no-sse4.1 - -no-sse4.2 - -no-avx - -no-avx2 - -no-mips_dsp - -no-mips_dspr2 - - -system-zlib - -system-libpng - -system-libjpeg - -system-xcb - -system-xkbcommon - -openssl-linked - -dbus-linked - - -system-sqlite - -${if mysql != null then "plugin" else "no"}-sql-mysql - -${if postgresql != null then "plugin" else "no"}-sql-psql - - -make libs - -make tools - -${optionalString (buildExamples == false) "no"}make examples - -${optionalString (buildTests == false) "no"}make tests - ''; - - # PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag - # if dependency paths contain the string "pq", which can occur in the hash. - # To prevent these failures, we need to override PostgreSQL detection. - PSQL_LIBS = optionalString (postgresql != null) "-L${postgresql}/lib -lpq"; - - propagatedBuildInputs = [ - xorg.libXcomposite libX11 libxcb libXext libXrender libXi - fontconfig freetype openssl dbus.libs glib udev libxml2 libxslt pcre - zlib libjpeg libpng libtiff sqlite icu - xcbutil xcbutilimage xcbutilkeysyms xcbutilwm libxkbcommon - ] - # Qt doesn't directly need GLU (just GL), but many apps use, it's small and - # doesn't remain a runtime-dep if not used - ++ optionals mesaSupported [ mesa mesa_glu ] - ++ optional (cups != null) cups - ++ optional (mysql != null) mysql.lib - ++ optional (postgresql != null) postgresql - ++ optionals gtkStyle [gnome_vfs libgnomeui gtk GConf]; - - buildInputs = - [ bison flex gperf ruby ] - ++ optional developerBuild gdb; - - nativeBuildInputs = [ python perl pkgconfig ]; - - # freetype-2.5.4 changed signedness of some struct fields - NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; - - postInstall = - '' - ${optionalString buildDocs '' - make docs && make install_docs - ''} - - # Don't retain build-time dependencies like gdb and ruby. - sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $out/mkspecs/qconfig.pri - ''; - - inherit lndir; - setupHook = ./setup-hook.sh; - - enableParallelBuilding = true; # often fails on Hydra, as well as qt4 - - meta = { - homepage = http://qt-project.org; - description = "A cross-platform application framework for C++"; - license = "GPL/LGPL"; - maintainers = with maintainers; [ bbenoist qknight ttuegel ]; - platforms = platforms.linux; - }; - -} diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/compose-search-path.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/compose-search-path.patch new file mode 100644 index 00000000000..08d12087f08 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/compose-search-path.patch @@ -0,0 +1,16 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp +@@ -68,10 +68,7 @@ void TableGenerator::initPossibleLocatio + // the QTCOMPOSE environment variable + if (qEnvironmentVariableIsSet("QTCOMPOSE")) + m_possibleLocations.append(QString::fromLocal8Bit(qgetenv("QTCOMPOSE"))); +- m_possibleLocations.append(QStringLiteral("/usr/share/X11/locale")); +- m_possibleLocations.append(QStringLiteral("/usr/local/share/X11/locale")); +- m_possibleLocations.append(QStringLiteral("/usr/lib/X11/locale")); +- m_possibleLocations.append(QStringLiteral("/usr/local/lib/X11/locale")); ++ m_possibleLocations.append(QStringLiteral("${libX11}/share/X11/locale")); + m_possibleLocations.append(QStringLiteral(X11_PREFIX "/share/X11/locale")); + m_possibleLocations.append(QStringLiteral(X11_PREFIX "/lib/X11/locale")); + } diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/decrypt-ssl-traffic.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/decrypt-ssl-traffic.patch new file mode 100644 index 00000000000..10e7e01a07f --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/decrypt-ssl-traffic.patch @@ -0,0 +1,13 @@ +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/network/ssl/qsslsocket_openssl.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl.cpp +@@ -47,7 +47,7 @@ + ****************************************************************************/ + + //#define QSSLSOCKET_DEBUG +-//#define QT_DECRYPT_SSL_TRAFFIC ++#define QT_DECRYPT_SSL_TRAFFIC + + #include "qssl_p.h" + #include "qsslsocket_openssl_p.h" diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix new file mode 100644 index 00000000000..36bd3822bf7 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix @@ -0,0 +1,224 @@ +{ stdenv, lib, fetchurl, copyPathsToStore, makeWrapper +, srcs + +, xlibs, libX11, libxcb, libXcursor, libXext, libXrender, libXi +, xcbutil, xcbutilimage, xcbutilkeysyms, xcbutilwm, libxkbcommon +, fontconfig, freetype, openssl, dbus, glib, udev, libxml2, libxslt, pcre +, zlib, libjpeg, libpng, libtiff, sqlite, icu + +, coreutils, bison, flex, gdb, gperf, lndir, ruby +, python, perl, pkgconfig + +# optional dependencies +, cups ? null +, mysql ? null, postgresql ? null + +# options +, mesaSupported, mesa, mesa_glu +, buildDocs ? false +, buildExamples ? false +, buildTests ? false +, developerBuild ? false +, gtkStyle ? false, libgnomeui, GConf, gnome_vfs, gtk +, decryptSslTraffic ? false +}: + +let + inherit (srcs.qt5) version; + system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64; +in + +stdenv.mkDerivation { + + name = "qtbase-${version}"; + inherit version; + + srcs = with srcs; [ qt5.src qtbase.src ]; + + sourceRoot = "qt-everywhere-opensource-src-${version}"; + + postUnpack = '' + mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase + ''; + + patches = + copyPathsToStore (lib.readPathsFromFile ./. ./series) + ++ lib.optional gtkStyle ./dlopen-gtkstyle.patch + ++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch + ++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ]; + + postPatch = + '' + substituteInPlace configure --replace /bin/pwd pwd + substituteInPlace qtbase/configure --replace /bin/pwd pwd + substituteInPlace qtbase/src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls + sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i qtbase/mkspecs/*/*.conf + + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5Config.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/src/corelib/Qt5CoreMacros.cmake" + sed -i 's/NO_DEFAULT_PATH//' "qtbase/src/gui/Qt5GuiConfigExtras.cmake.in" + sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" + + substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \ + --replace "@glibc@" "${stdenv.cc.libc}" + substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \ + --replace "@glibc@" "${stdenv.cc.libc}" + + substituteInPlace qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp \ + --replace "@libXcursor@" "${libXcursor}" + + substituteInPlace qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp \ + --replace "@openssl@" "${openssl}" + + substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \ + --replace "@dbus_libs@" "${dbus}" + + substituteInPlace \ + qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ + --replace "@libX11@" "${libX11}" + '' + + lib.optionalString gtkStyle '' + substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" + substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ + --replace "@gtk@" "${gtk}" \ + --replace "@gnome_vfs@" "${gnome_vfs}" \ + --replace "@libgnomeui@" "${libgnomeui}" \ + --replace "@gconf@" "${GConf}" + '' + + lib.optionalString mesaSupported '' + substituteInPlace \ + qtbase/src/plugins/platforms/xcb/qglxintegration.cpp \ + --replace "@mesa@" "${mesa}" + substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" + ''; + + preConfigure = '' + export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH" + export MAKEFLAGS=-j$NIX_BUILD_CORES + + export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml" + export configureFlags+=" -docdir $out/share/doc/qt5" + ''; + + prefixKey = "-prefix "; + + # -no-eglfs, -no-directfb, -no-linuxfb and -no-kms because of the current minimalist mesa + # TODO Remove obsolete and useless flags once the build will be totally mastered + configureFlags = '' + -verbose + -confirm-license + -opensource + + -release + -shared + -c++11 + ${lib.optionalString developerBuild "-developer-build"} + -largefile + -accessibility + -rpath + -optimized-qmake + -strip + -reduce-relocations + -system-proxies + -pkg-config + + -gui + -widgets + -opengl desktop + -qml-debug + -nis + -iconv + -icu + -pch + -glib + -xcb + -qpa xcb + -${lib.optionalString (cups == null) "no-"}cups + -${lib.optionalString (!gtkStyle) "no-"}gtkstyle + + -no-eglfs + -no-directfb + -no-linuxfb + -no-kms + + ${lib.optionalString (!system-x86_64) "-no-sse2"} + -no-sse3 + -no-ssse3 + -no-sse4.1 + -no-sse4.2 + -no-avx + -no-avx2 + -no-mips_dsp + -no-mips_dspr2 + + -system-zlib + -system-libpng + -system-libjpeg + -system-xcb + -system-xkbcommon + -openssl-linked + -dbus-linked + + -system-sqlite + -${if mysql != null then "plugin" else "no"}-sql-mysql + -${if postgresql != null then "plugin" else "no"}-sql-psql + + -make libs + -make tools + -${lib.optionalString (buildExamples == false) "no"}make examples + -${lib.optionalString (buildTests == false) "no"}make tests + ''; + + # PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag + # if dependency paths contain the string "pq", which can occur in the hash. + # To prevent these failures, we need to override PostgreSQL detection. + PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql}/lib -lpq"; + + propagatedBuildInputs = [ + xlibs.libXcomposite libX11 libxcb libXext libXrender libXi + fontconfig freetype openssl dbus.libs glib udev libxml2 libxslt pcre + zlib libjpeg libpng libtiff sqlite icu + xcbutil xcbutilimage xcbutilkeysyms xcbutilwm libxkbcommon + ] + # Qt doesn't directly need GLU (just GL), but many apps use, it's small and + # doesn't remain a runtime-dep if not used + ++ lib.optionals mesaSupported [ mesa mesa_glu ] + ++ lib.optional (cups != null) cups + ++ lib.optional (mysql != null) mysql.lib + ++ lib.optional (postgresql != null) postgresql + ++ lib.optionals gtkStyle [gnome_vfs libgnomeui gtk GConf]; + + buildInputs = + [ bison flex gperf ruby ] + ++ lib.optional developerBuild gdb; + + nativeBuildInputs = [ python perl pkgconfig ]; + + propagatedNativeBuildInputs = [ makeWrapper ]; + + # freetype-2.5.4 changed signedness of some struct fields + NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; + + postInstall = + '' + # Don't retain build-time dependencies like gdb and ruby. + sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $out/mkspecs/qconfig.pri + '' + + lib.optionalString buildDocs '' + make docs && make install_docs + ''; + + inherit lndir; + setupHook = ./setup-hook.sh; + + enableParallelBuilding = true; + + meta = with lib; { + homepage = http://qt-project.org; + description = "A cross-platform application framework for C++"; + license = "GPL/LGPL"; + maintainers = with maintainers; [ bbenoist qknight ttuegel ]; + platforms = platforms.linux; + }; + +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-dbus.patch new file mode 100644 index 00000000000..05e98d8be71 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-dbus.patch @@ -0,0 +1,13 @@ +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/dbus/qdbus_symbols.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/dbus/qdbus_symbols.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/dbus/qdbus_symbols.cpp +@@ -88,7 +88,7 @@ bool qdbus_loadLibDBus() + #ifdef Q_OS_WIN + QLatin1String("dbus-1"), + #endif +- QLatin1String("libdbus-1") ++ QLatin1String("@dbus_libs@/lib/libdbus-1") + }; + + lib->unload(); diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch new file mode 100644 index 00000000000..d6e08cd2410 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch @@ -0,0 +1,17 @@ +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qglxintegration.cpp +@@ -560,7 +560,12 @@ void (*QGLXContext::getProcAddress(const + { + extern const QString qt_gl_library_name(); + // QLibrary lib(qt_gl_library_name()); ++ // Check system library paths first + QLibrary lib(QLatin1String("GL")); ++ if (!lib.load()) { ++ // Fallback to Mesa driver ++ lib.setFileName(QLatin1String("@mesa@/lib/libGL")); ++ } + glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); + } + } diff --git a/pkgs/development/libraries/qt-5/5.4/0001-dlopen-gtkstyle.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch similarity index 72% rename from pkgs/development/libraries/qt-5/5.4/0001-dlopen-gtkstyle.patch rename to pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch index 3f411139f5b..c2be7377949 100644 --- a/pkgs/development/libraries/qt-5/5.4/0001-dlopen-gtkstyle.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gtkstyle.patch @@ -1,18 +1,8 @@ -From 35d5995a58c86a6addbf0aaf0d1be64d39182872 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:21:58 -0600 -Subject: [PATCH] dlopen-gtkstyle - ---- - qtbase/src/widgets/styles/qgtk2painter.cpp | 2 +- - qtbase/src/widgets/styles/qgtkstyle_p.cpp | 12 ++++++------ - 2 files changed, 7 insertions(+), 7 deletions(-) - -diff --git a/qtbase/src/widgets/styles/qgtk2painter.cpp b/qtbase/src/widgets/styles/qgtk2painter.cpp -index 7b9bd97..075947a 100644 ---- a/qtbase/src/widgets/styles/qgtk2painter.cpp -+++ b/qtbase/src/widgets/styles/qgtk2painter.cpp -@@ -104,7 +104,7 @@ static void initGtk() +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtk2painter.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/widgets/styles/qgtk2painter.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtk2painter.cpp +@@ -96,7 +96,7 @@ static void initGtk() static bool initialized = false; if (!initialized) { // enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0 @@ -21,11 +11,11 @@ index 7b9bd97..075947a 100644 QGtk2PainterPrivate::gdk_pixmap_new = (Ptr_gdk_pixmap_new)libgtk.resolve("gdk_pixmap_new"); QGtk2PainterPrivate::gdk_pixbuf_get_from_drawable = (Ptr_gdk_pixbuf_get_from_drawable)libgtk.resolve("gdk_pixbuf_get_from_drawable"); -diff --git a/qtbase/src/widgets/styles/qgtkstyle_p.cpp b/qtbase/src/widgets/styles/qgtkstyle_p.cpp -index 2c64225..3343d32 100644 ---- a/qtbase/src/widgets/styles/qgtkstyle_p.cpp -+++ b/qtbase/src/widgets/styles/qgtkstyle_p.cpp -@@ -334,7 +334,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus(GtkWidget *widget, bool focus) +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtkstyle_p.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/widgets/styles/qgtkstyle_p.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/widgets/styles/qgtkstyle_p.cpp +@@ -326,7 +326,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus void QGtkStylePrivate::resolveGtk() const { // enforce the "0" suffix, so we'll open libgtk-x11-2.0.so.0 @@ -34,7 +24,7 @@ index 2c64225..3343d32 100644 gtk_init = (Ptr_gtk_init)libgtk.resolve("gtk_init"); gtk_window_new = (Ptr_gtk_window_new)libgtk.resolve("gtk_window_new"); -@@ -432,8 +432,8 @@ void QGtkStylePrivate::resolveGtk() const +@@ -424,8 +424,8 @@ void QGtkStylePrivate::resolveGtk() cons pango_font_description_get_family = (Ptr_pango_font_description_get_family)libgtk.resolve("pango_font_description_get_family"); pango_font_description_get_style = (Ptr_pango_font_description_get_style)libgtk.resolve("pango_font_description_get_style"); @@ -45,7 +35,7 @@ index 2c64225..3343d32 100644 } /* \internal -@@ -601,9 +601,9 @@ void QGtkStylePrivate::cleanupGtkWidgets() +@@ -593,9 +593,9 @@ void QGtkStylePrivate::cleanupGtkWidgets static bool resolveGConf() { if (!QGtkStylePrivate::gconf_client_get_default) { @@ -58,6 +48,3 @@ index 2c64225..3343d32 100644 } return (QGtkStylePrivate::gconf_client_get_default !=0); } --- -2.1.3 - diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch new file mode 100644 index 00000000000..608c68b6d5b --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-libXcursor.patch @@ -0,0 +1,17 @@ +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp +@@ -297,10 +297,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *c + #ifdef XCB_USE_XLIB + static bool function_ptrs_not_initialized = true; + if (function_ptrs_not_initialized) { +- QLibrary xcursorLib(QLatin1String("Xcursor"), 1); ++ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1); + bool xcursorFound = xcursorLib.load(); + if (!xcursorFound) { // try without the version number +- xcursorLib.setFileName(QLatin1String("Xcursor")); ++ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor")); + xcursorFound = xcursorLib.load(); + } + if (xcursorFound) { diff --git a/pkgs/development/libraries/qt-5/5.4/0011-dlopen-openssl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch similarity index 75% rename from pkgs/development/libraries/qt-5/5.4/0011-dlopen-openssl.patch rename to pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch index a79f0f36389..b648a58b570 100644 --- a/pkgs/development/libraries/qt-5/5.4/0011-dlopen-openssl.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-openssl.patch @@ -1,8 +1,8 @@ -diff --git a/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp b/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -index c1fea93..bc1c0f0 100644 ---- a/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -+++ b/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -@@ -611,8 +611,8 @@ static QPair loadOpenSsl() +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp +@@ -611,8 +611,8 @@ static QPair loadO #endif #if defined(SHLIB_VERSION_NUMBER) && !defined(Q_OS_QNX) // on QNX, the libs are always libssl.so and libcrypto.so // first attempt: the canonical name is libssl.so. @@ -13,7 +13,7 @@ index c1fea93..bc1c0f0 100644 if (libcrypto->load() && libssl->load()) { // libssl.so. and libcrypto.so. found return pair; -@@ -629,8 +629,8 @@ static QPair loadOpenSsl() +@@ -629,8 +629,8 @@ static QPair loadO // OS X's /usr/lib/libssl.dylib, /usr/lib/libcrypto.dylib will be picked up in the third // attempt, _after_ /Contents/Frameworks has been searched. // iOS does not ship a system libssl.dylib, libcrypto.dylib in the first place. diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch new file mode 100644 index 00000000000..a79c806462f --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-resolv.patch @@ -0,0 +1,26 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qdnslookup_unix.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qdnslookup_unix.cpp +@@ -79,7 +79,7 @@ static void resolveLibrary() + if (!lib.load()) + #endif + { +- lib.setFileName(QLatin1String("resolv")); ++ lib.setFileName(QLatin1String("@glibc/lib/resolv")); + if (!lib.load()) + return; + } +Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/network/kernel/qhostinfo_unix.cpp ++++ qt-everywhere-opensource-src-5.5.1/qtbase/src/network/kernel/qhostinfo_unix.cpp +@@ -95,7 +95,7 @@ static void resolveLibrary() + if (!lib.load()) + #endif + { +- lib.setFileName(QLatin1String("resolv")); ++ lib.setFileName(QLatin1String("@glibc@/lib/libresolv")); + if (!lib.load()) + return; + } diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch new file mode 100644 index 00000000000..10115e8144a --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch @@ -0,0 +1,15 @@ +Index: qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf +=================================================================== +--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/mkspecs/common/linux.conf ++++ qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf +@@ -12,8 +12,8 @@ QMAKE_INCDIR = + QMAKE_LIBDIR = + QMAKE_INCDIR_X11 = + QMAKE_LIBDIR_X11 = +-QMAKE_INCDIR_OPENGL = +-QMAKE_LIBDIR_OPENGL = ++QMAKE_INCDIR_OPENGL = @mesa@/include ++QMAKE_LIBDIR_OPENGL = @mesa@/lib + QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL + QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL + QMAKE_INCDIR_EGL = diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch new file mode 100644 index 00000000000..824d2ea0817 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/nix-profiles-library-paths.patch @@ -0,0 +1,26 @@ +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/kernel/qcoreapplication.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/kernel/qcoreapplication.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/kernel/qcoreapplication.cpp +@@ -2442,6 +2442,21 @@ QStringList QCoreApplication::libraryPat + } + } + } ++ ++ // Add library paths derived from NIX_PROFILES. ++ const QByteArray nixProfilesEnv = qgetenv("NIX_PROFILES"); ++ if (!nixProfilesEnv.isEmpty()) { ++ QLatin1Char pathSep(' '); ++ QStringList paths = QFile::decodeName(nixProfilesEnv).split(pathSep, QString::SkipEmptyParts); ++ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { ++ it->append("/lib/qt5/plugins"); ++ QString canonicalPath = QDir(*it).canonicalPath(); ++ if (!canonicalPath.isEmpty() ++ && !app_libpaths->contains(canonicalPath)) { ++ app_libpaths->append(canonicalPath); ++ } ++ } ++ } + } + return *(coreappdata()->app_libpaths); + } diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/series b/pkgs/development/libraries/qt-5/5.4/qtbase/series new file mode 100644 index 00000000000..3cfa50e85b7 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/series @@ -0,0 +1,8 @@ +dlopen-resolv.patch +tzdir.patch +dlopen-libXcursor.patch +dlopen-openssl.patch +dlopen-dbus.patch +xdg-config-dirs.patch +nix-profiles-library-paths.patch +compose-search-path.patch diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh b/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh new file mode 100644 index 00000000000..b86b6df28ac --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh @@ -0,0 +1,100 @@ +if [[ -z "$QMAKE" ]]; then + +linkDependencyDir() { + @lndir@/bin/lndir -silent "$1/$2" "$qtOut/$2" + if [[ -n "$NIX_QT_SUBMODULE" ]]; then + find "$1/$2" -printf "$2/%P\n" >> "$out/nix-support/qt-inputs" + fi +} + +addQtModule() { + if [[ -d "$1/mkspecs" ]]; then + # $1 is a Qt module + linkDependencyDir "$1" mkspecs + + for dir in bin include lib share; do + if [[ -d "$1/$dir" ]]; then + linkDependencyDir "$1" "$dir" + fi + done + fi +} + +propagateRuntimeDeps() { + local propagated + for dir in "etc/xdg" "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports" "share"; do + if [[ -d "$1/$dir" ]]; then + propagated= + for pkg in $propagatedBuildInputs; do + if [[ "z$pkg" == "z$1" ]]; then + propagated=1 + break + fi + done + if [[ -z $propagated ]]; then + propagatedBuildInputs="$propagatedBuildInputs $1" + fi + break + fi + done +} + +rmQtModules() { + cat "$out/nix-support/qt-inputs" | while read file; do + if [[ -h "$out/$file" ]]; then + rm "$out/$file" + fi + done + + cat "$out/nix-support/qt-inputs" | while read file; do + if [[ -d "$out/$file" ]]; then + rmdir --ignore-fail-on-non-empty -p "$out/$file" + fi + done + + rm "$out/nix-support/qt-inputs" +} + +rmQMake() { + rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf" +} + +setQMakePath() { + export PATH="$qtOut/bin${PATH:+:}$PATH" +} + +qtOut="" +if [[ -z "$NIX_QT_SUBMODULE" ]]; then + qtOut=`mktemp -d` +else + qtOut=$out +fi + +mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share" + +cp "@out@/bin/qmake" "$qtOut/bin" +cat >"$qtOut/bin/qt.conf" < -Date: Mon, 1 Dec 2014 17:23:22 -0600 -Subject: [PATCH] tzdir - ---- - qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp | 21 +++++++++++++++------ - 1 file changed, 15 insertions(+), 6 deletions(-) - -diff --git a/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp b/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -index b4ea91e..a56a245 100644 ---- a/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -+++ b/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -@@ -68,7 +68,10 @@ typedef QHash QTzTimeZoneHash; +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp +@@ -61,7 +61,10 @@ typedef QHash Q // Parse zone.tab table, assume lists all installed zones, if not will need to read directories static QTzTimeZoneHash loadTzTimeZones() { @@ -23,7 +14,7 @@ index b4ea91e..a56a245 100644 if (!QFile::exists(path)) path = QStringLiteral("/usr/lib/zoneinfo/zone.tab"); -@@ -559,12 +562,18 @@ void QTzTimeZonePrivate::init(const QByteArray &ianaId) +@@ -552,12 +555,18 @@ void QTzTimeZonePrivate::init(const QByt if (!tzif.open(QIODevice::ReadOnly)) return; } else { @@ -47,6 +38,3 @@ index b4ea91e..a56a245 100644 } } --- -2.1.3 - diff --git a/pkgs/development/libraries/qt-5/5.4/0013-xdg_config_dirs.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch similarity index 68% rename from pkgs/development/libraries/qt-5/5.4/0013-xdg_config_dirs.patch rename to pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch index 63066658f0f..dbf5eac52e6 100644 --- a/pkgs/development/libraries/qt-5/5.4/0013-xdg_config_dirs.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/xdg-config-dirs.patch @@ -1,8 +1,8 @@ -diff --git a/qsettings.cpp b/qsettings.cpp -index 35b3ed4..210dfeb 100644 ---- a/qsettings.cpp -+++ b/qtbase/src/corelib/io/qsettings.cpp -@@ -1174,6 +1174,24 @@ QConfFileSettingsPrivate::QConfFileSettingsPrivate(QSettings::Format format, +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings.cpp +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/io/qsettings.cpp ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings.cpp +@@ -1128,6 +1128,24 @@ QConfFileSettingsPrivate::QConfFileSetti if (!application.isEmpty()) confFiles[F_System | F_Application].reset(QConfFile::fromName(systemPath + appFile, false)); confFiles[F_System | F_Organization].reset(QConfFile::fromName(systemPath + orgFile, false)); @@ -27,11 +27,11 @@ index 35b3ed4..210dfeb 100644 #else QString confName = getPath(format, QSettings::UserScope) + org; if (!application.isEmpty()) -diff --git a/qsettings_p.h b/qsettings_p.h -index a28b583..b2a240d 100644 ---- a/qsettings_p.h -+++ b/qtbase/src/corelib/io/qsettings_p.h -@@ -244,7 +244,7 @@ public: +Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings_p.h +=================================================================== +--- qt-everywhere-opensource-src-5.4.2.orig/qtbase/src/corelib/io/qsettings_p.h ++++ qt-everywhere-opensource-src-5.4.2/qtbase/src/corelib/io/qsettings_p.h +@@ -240,7 +240,7 @@ public: F_Organization = 0x1, F_User = 0x0, F_System = 0x2, diff --git a/pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix b/pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix new file mode 100644 index 00000000000..95cd6fea79b --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtconnectivity.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase, qtdeclarative }: + +qtSubmodule { + name = "qtconnectivity"; + qtInputs = [ qtbase qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch new file mode 100644 index 00000000000..8e86f97a947 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/0001-nix-profiles-import-paths.patch @@ -0,0 +1,37 @@ +From 3f6fa74067aacd0e595e45b4ef7ce754514cb205 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sat, 17 Oct 2015 09:28:18 -0500 +Subject: [PATCH] nix profiles import paths + +--- + src/qml/qml/qqmlimport.cpp | 14 ++++++++++++++ + 1 file changed, 14 insertions(+) + +diff --git a/src/qml/qml/qqmlimport.cpp b/src/qml/qml/qqmlimport.cpp +index 5a54609..f33c2f9 100644 +--- a/src/qml/qml/qqmlimport.cpp ++++ b/src/qml/qml/qqmlimport.cpp +@@ -1549,6 +1549,20 @@ QQmlImportDatabase::QQmlImportDatabase(QQmlEngine *e) + QString installImportsPath = QLibraryInfo::location(QLibraryInfo::Qml2ImportsPath); + addImportPath(installImportsPath); + ++ // Add import paths derived from NIX_PROFILES. ++ const QByteArray nixProfilesEnv = qgetenv("NIX_PROFILES"); ++ if (!nixProfilesEnv.isEmpty()) { ++ QLatin1Char pathSep(' '); ++ QStringList paths = QFile::decodeName(nixProfilesEnv).split(pathSep, QString::SkipEmptyParts); ++ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { ++ it->append("/lib/qt5/qml"); ++ QString canonicalPath = QDir(*it).canonicalPath(); ++ if (!canonicalPath.isEmpty()) { ++ addImportPath(canonicalPath); ++ } ++ } ++ } ++ + // env import paths + QByteArray envImportPath = qgetenv("QML2_IMPORT_PATH"); + if (!envImportPath.isEmpty()) { +-- +2.5.2 + diff --git a/pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix new file mode 100644 index 00000000000..9181c37b225 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtdeclarative/default.nix @@ -0,0 +1,8 @@ +{ qtSubmodule, python, qtbase, qtsvg, qtxmlpatterns }: + +qtSubmodule { + name = "qtdeclarative"; + patches = [ ./0001-nix-profiles-import-paths.patch ]; + qtInputs = [ qtbase qtsvg qtxmlpatterns ]; + nativeBuildInputs = [ python ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtdoc.nix b/pkgs/development/libraries/qt-5/5.4/qtdoc.nix new file mode 100644 index 00000000000..578ea6ba0b2 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtdoc.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtdeclarative }: + +qtSubmodule { + name = "qtdoc"; + qtInputs = [ qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtenginio.nix b/pkgs/development/libraries/qt-5/5.4/qtenginio.nix new file mode 100644 index 00000000000..b860a73ef89 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtenginio.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtdeclarative }: + +qtSubmodule { + name = "qtenginio"; + qtInputs = [ qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix b/pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix new file mode 100644 index 00000000000..3273f12eb83 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtgraphicaleffects.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtdeclarative }: + +qtSubmodule { + name = "qtgraphicaleffects"; + qtInputs = [ qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtimageformats.nix b/pkgs/development/libraries/qt-5/5.4/qtimageformats.nix new file mode 100644 index 00000000000..03d0fffbe80 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtimageformats.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtimageformats"; + qtInputs = [ qtbase ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtlocation.nix b/pkgs/development/libraries/qt-5/5.4/qtlocation.nix new file mode 100644 index 00000000000..1e134057c4b --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtlocation.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase, qtmultimedia }: + +qtSubmodule { + name = "qtlocation"; + qtInputs = [ qtbase qtmultimedia ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix b/pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix new file mode 100644 index 00000000000..b6b4d8ea0cf --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtmultimedia.nix @@ -0,0 +1,12 @@ +{ qtSubmodule, qtbase, qtdeclarative, pkgconfig +, alsaLib, gstreamer, gst-plugins-base, libpulseaudio +}: + +qtSubmodule { + name = "qtmultimedia"; + qtInputs = [ qtbase qtdeclarative ]; + buildInputs = [ + pkgconfig alsaLib gstreamer gst-plugins-base libpulseaudio + ]; + configureFlags = "GST_VERSION=1.0"; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch b/pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch new file mode 100644 index 00000000000..63b141f6ce5 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtquick1/0001-nix-profiles-import-paths.patch @@ -0,0 +1,37 @@ +From bbc706b3fcb90ca3b2b51d5e3434145572152711 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sat, 17 Oct 2015 09:29:51 -0500 +Subject: [PATCH] nix profiles import paths + +--- + src/declarative/qml/qdeclarativeimport.cpp | 14 ++++++++++++++ + 1 file changed, 14 insertions(+) + +diff --git a/src/declarative/qml/qdeclarativeimport.cpp b/src/declarative/qml/qdeclarativeimport.cpp +index 9404834..d185ed5 100644 +--- a/src/declarative/qml/qdeclarativeimport.cpp ++++ b/src/declarative/qml/qdeclarativeimport.cpp +@@ -725,6 +725,20 @@ QDeclarativeImportDatabase::QDeclarativeImportDatabase(QDeclarativeEngine *e) + + addImportPath(installImportsPath); + ++ // Add import paths derived from NIX_PROFILES. ++ const QByteArray nixProfilesEnv = qgetenv("NIX_PROFILES"); ++ if (!nixProfilesEnv.isEmpty()) { ++ QLatin1Char pathSep(' '); ++ QStringList paths = QFile::decodeName(nixProfilesEnv).split(pathSep, QString::SkipEmptyParts); ++ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { ++ it->append("/lib/qt5/imports"); ++ QString canonicalPath = QDir(*it).canonicalPath(); ++ if (!canonicalPath.isEmpty()) { ++ addImportPath(canonicalPath); ++ } ++ } ++ } ++ + // env import paths + QByteArray envImportPath = qgetenv("QML_IMPORT_PATH"); + if (!envImportPath.isEmpty()) { +-- +2.5.2 + diff --git a/pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix b/pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix new file mode 100644 index 00000000000..d1c7bb389a4 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtquick1/default.nix @@ -0,0 +1,7 @@ +{ qtSubmodule, qtscript, qtsvg, qtwebkit, qtxmlpatterns }: + +qtSubmodule { + name = "qtquick1"; + patches = [ ./0001-nix-profiles-import-paths.patch ]; + qtInputs = [ qtscript qtsvg qtwebkit qtxmlpatterns ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix b/pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix new file mode 100644 index 00000000000..93a864621b8 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtquickcontrols.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtdeclarative }: + +qtSubmodule { + name = "qtquickcontrols"; + qtInputs = [ qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch b/pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch new file mode 100644 index 00000000000..887e107b6c1 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtscript/0001-glib-2.32.patch @@ -0,0 +1,25 @@ +From abd80356449bb36c8adcc5c9ca1df6b47715d265 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sun, 23 Aug 2015 09:13:34 -0500 +Subject: [PATCH] glib-2.32 + +--- + src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h +index 1f6d25e..087c3fb 100644 +--- a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h ++++ b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h +@@ -81,7 +81,7 @@ + #include + #elif PLATFORM(GTK) + #include +-typedef struct _GMutex GMutex; ++typedef union _GMutex GMutex; + typedef struct _GCond GCond; + #endif + +-- +2.5.0 + diff --git a/pkgs/development/libraries/qt-5/5.4/qtscript/default.nix b/pkgs/development/libraries/qt-5/5.4/qtscript/default.nix new file mode 100644 index 00000000000..127766e2ebd --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtscript/default.nix @@ -0,0 +1,7 @@ +{ qtSubmodule, qtbase, qttools }: + +qtSubmodule { + name = "qtscript"; + qtInputs = [ qtbase qttools ]; + patches = [ ./0001-glib-2.32.patch ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtsensors.nix b/pkgs/development/libraries/qt-5/5.4/qtsensors.nix new file mode 100644 index 00000000000..61e64dc47e4 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtsensors.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase, qtdeclarative }: + +qtSubmodule { + name = "qtsensors"; + qtInputs = [ qtbase qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/0009-dlopen-serialport-udev.patch b/pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch similarity index 60% rename from pkgs/development/libraries/qt-5/5.4/0009-dlopen-serialport-udev.patch rename to pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch index e1e66a3ce95..6636cc9265a 100644 --- a/pkgs/development/libraries/qt-5/5.4/0009-dlopen-serialport-udev.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtserialport/0001-dlopen-serialport-udev.patch @@ -1,17 +1,17 @@ -From 17c7257e54c00ea2121f2cf95fb2be5e5db6b4ad Mon Sep 17 00:00:00 2001 +From d81c2c870b9bea8fb8e6b85baefb06542f568338 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:31:03 -0600 -Subject: [PATCH] dlopen-serialport-udev +Date: Sun, 23 Aug 2015 09:16:02 -0500 +Subject: [PATCH] dlopen serialport udev --- - qtserialport/src/serialport/qtudev_p.h | 4 ++-- + src/serialport/qtudev_p.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -diff --git a/qtserialport/src/serialport/qtudev_p.h b/qtserialport/src/serialport/qtudev_p.h -index 09940ab..45460f9 100644 ---- a/qtserialport/src/serialport/qtudev_p.h -+++ b/qtserialport/src/serialport/qtudev_p.h -@@ -119,9 +119,9 @@ inline void *resolveSymbol(QLibrary *udevLibrary, const char *symbolName) +diff --git a/src/serialport/qtudev_p.h b/src/serialport/qtudev_p.h +index 6f2cabd..81b9849 100644 +--- a/src/serialport/qtudev_p.h ++++ b/src/serialport/qtudev_p.h +@@ -105,9 +105,9 @@ inline QFunctionPointer resolveSymbol(QLibrary *udevLibrary, const char *symbolN inline bool resolveSymbols(QLibrary *udevLibrary) { if (!udevLibrary->isLoaded()) { @@ -24,5 +24,5 @@ index 09940ab..45460f9 100644 qWarning("Failed to load the library: %s, supported version(s): %i and %i", qPrintable(udevLibrary->fileName()), 1, 0); return false; -- -2.1.3 +2.5.0 diff --git a/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix b/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix new file mode 100644 index 00000000000..fa7383fc1e7 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix @@ -0,0 +1,7 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtserialport"; + qtInputs = [ qtbase ]; + patches = [ ./0001-dlopen-serialport-udev.patch ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtsvg.nix b/pkgs/development/libraries/qt-5/5.4/qtsvg.nix new file mode 100644 index 00000000000..b9ccac7cf93 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtsvg.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtsvg"; + qtInputs = [ qtbase ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qttools.nix b/pkgs/development/libraries/qt-5/5.4/qttools.nix new file mode 100644 index 00000000000..65edc450812 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qttools.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qttools"; + qtInputs = [ qtbase ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qttranslations.nix b/pkgs/development/libraries/qt-5/5.4/qttranslations.nix new file mode 100644 index 00000000000..50fc8cf6826 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qttranslations.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qttools }: + +qtSubmodule { + name = "qttranslations"; + qtInputs = [ qttools ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix b/pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix new file mode 100644 index 00000000000..64f85c42d19 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit-examples.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qttools, qtwebkit }: + +qtSubmodule { + name = "qtwebkit-examples"; + qtInputs = [ qttools qtwebkit ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/0002-dlopen-webkit-nsplugin.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch similarity index 50% rename from pkgs/development/libraries/qt-5/5.4/0002-dlopen-webkit-nsplugin.patch rename to pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch index 0752cdcf479..0eeacce1bc0 100644 --- a/pkgs/development/libraries/qt-5/5.4/0002-dlopen-webkit-nsplugin.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0001-dlopen-webkit-nsplugin.patch @@ -1,19 +1,19 @@ -From 8c30f72dbe11752e8ed25f292c6e5695d7733f72 Mon Sep 17 00:00:00 2001 +From 862ce7d357a3ec32683ac6ec7c0ebdc9346b44ba Mon Sep 17 00:00:00 2001 From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:22:23 -0600 -Subject: [PATCH] dlopen-webkit-nsplugin +Date: Sun, 23 Aug 2015 09:18:54 -0500 +Subject: [PATCH 1/3] dlopen webkit nsplugin --- - qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp | 2 +- - qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp | 2 +- - .../WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp | 2 +- + Source/WebCore/plugins/qt/PluginPackageQt.cpp | 2 +- + Source/WebCore/plugins/qt/PluginViewQt.cpp | 2 +- + Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) -diff --git a/qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp b/qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp -index 679480b..2c373cc 100644 ---- a/qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp -+++ b/qtwebkit/Source/WebCore/plugins/qt/PluginPackageQt.cpp -@@ -132,7 +132,7 @@ static void initializeGtk(QLibrary* module = 0) +diff --git a/Source/WebCore/plugins/qt/PluginPackageQt.cpp b/Source/WebCore/plugins/qt/PluginPackageQt.cpp +index a923d49..2731d05 100644 +--- a/Source/WebCore/plugins/qt/PluginPackageQt.cpp ++++ b/Source/WebCore/plugins/qt/PluginPackageQt.cpp +@@ -136,7 +136,7 @@ static void initializeGtk(QLibrary* module = 0) } } @@ -22,10 +22,10 @@ index 679480b..2c373cc 100644 if (library.load()) { typedef void *(*gtk_init_check_ptr)(int*, char***); gtk_init_check_ptr gtkInitCheck = (gtk_init_check_ptr)library.resolve("gtk_init_check"); -diff --git a/qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp b/qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp +diff --git a/Source/WebCore/plugins/qt/PluginViewQt.cpp b/Source/WebCore/plugins/qt/PluginViewQt.cpp index de06a2f..363bde5 100644 ---- a/qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp -+++ b/qtwebkit/Source/WebCore/plugins/qt/PluginViewQt.cpp +--- a/Source/WebCore/plugins/qt/PluginViewQt.cpp ++++ b/Source/WebCore/plugins/qt/PluginViewQt.cpp @@ -697,7 +697,7 @@ static Display *getPluginDisplay() // support gdk based plugins (like flash) that use a different X connection. // The code below has the same effect as this one: @@ -35,10 +35,10 @@ index de06a2f..363bde5 100644 if (!library.load()) return 0; -diff --git a/qtwebkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp b/qtwebkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp +diff --git a/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp b/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp index d734ff6..62a2197 100644 ---- a/qtwebkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp -+++ b/qtwebkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp +--- a/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp ++++ b/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp @@ -64,7 +64,7 @@ static Display* getPluginDisplay() // The code below has the same effect as this one: // Display *gdkDisplay = gdk_x11_display_get_xdisplay(gdk_display_get_default()); @@ -49,5 +49,5 @@ index d734ff6..62a2197 100644 return 0; -- -2.1.3 +2.5.0 diff --git a/pkgs/development/libraries/qt-5/5.4/0007-dlopen-webkit-gtk.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch similarity index 50% rename from pkgs/development/libraries/qt-5/5.4/0007-dlopen-webkit-gtk.patch rename to pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch index 9582b714c90..bb5d1f74364 100644 --- a/pkgs/development/libraries/qt-5/5.4/0007-dlopen-webkit-gtk.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0002-dlopen-webkit-gtk.patch @@ -1,16 +1,16 @@ -From 089db8835c80bf2b7dd91a97a5c6eb26636b6ab9 Mon Sep 17 00:00:00 2001 +From 6a407d30357c2551abceac75c82f4a1688e47437 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:26:39 -0600 -Subject: [PATCH] dlopen-webkit-gtk +Date: Sun, 23 Aug 2015 09:19:16 -0500 +Subject: [PATCH 2/3] dlopen webkit gtk --- - qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp | 2 +- + Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -diff --git a/qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp b/qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp +diff --git a/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp b/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp index 8de6521..0b25748 100644 ---- a/qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp -+++ b/qtwebkit/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp +--- a/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp ++++ b/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp @@ -53,7 +53,7 @@ static void messageHandler(QtMsgType type, const QMessageLogContext&, const QStr static bool initializeGtk() @@ -21,5 +21,5 @@ index 8de6521..0b25748 100644 return false; typedef void* (*gtk_init_ptr)(void*, void*); -- -2.1.3 +2.5.0 diff --git a/pkgs/development/libraries/qt-5/5.4/0008-dlopen-webkit-udev.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch similarity index 62% rename from pkgs/development/libraries/qt-5/5.4/0008-dlopen-webkit-udev.patch rename to pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch index e8a4ba6a215..f3b9d407bd7 100644 --- a/pkgs/development/libraries/qt-5/5.4/0008-dlopen-webkit-udev.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch @@ -1,16 +1,16 @@ -From 25d2922cce383fcaa4c138e0cc6c8d92328eeacb Mon Sep 17 00:00:00 2001 +From 864020dd47c3b6d532d9f26b82185904cf9324f2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel -Date: Mon, 1 Dec 2014 17:30:41 -0600 -Subject: [PATCH] dlopen-webkit-udev +Date: Sun, 23 Aug 2015 09:19:29 -0500 +Subject: [PATCH 3/3] dlopen webkit udev --- - qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp | 4 ++-- + Source/WebCore/platform/qt/GamepadsQt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -diff --git a/qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp b/qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp +diff --git a/Source/WebCore/platform/qt/GamepadsQt.cpp b/Source/WebCore/platform/qt/GamepadsQt.cpp index 60ff317..da8ac69 100644 ---- a/qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp -+++ b/qtwebkit/Source/WebCore/platform/qt/GamepadsQt.cpp +--- a/Source/WebCore/platform/qt/GamepadsQt.cpp ++++ b/Source/WebCore/platform/qt/GamepadsQt.cpp @@ -111,12 +111,12 @@ private: bool load() { @@ -27,5 +27,5 @@ index 60ff317..da8ac69 100644 return resolveMethods(); } -- -2.1.3 +2.5.0 diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix b/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix new file mode 100644 index 00000000000..596c02d39af --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix @@ -0,0 +1,33 @@ +{ qtSubmodule, stdenv, qtdeclarative, qtlocation, qtmultimedia, qtsensors +, fontconfig, gdk_pixbuf, gtk, libwebp, libxml2, libxslt +, sqlite, udev +, bison2, flex, gdb, gperf, perl, pkgconfig, python, ruby +, substituteAll +, flashplayerFix ? false +}: + +with stdenv.lib; + +qtSubmodule { + name = "qtwebkit"; + qtInputs = [ qtdeclarative qtlocation qtmultimedia qtsensors ]; + buildInputs = [ fontconfig libwebp libxml2 libxslt sqlite ]; + nativeBuildInputs = [ + bison2 flex gdb gperf perl pkgconfig python ruby + ]; + patches = + let dlopen-webkit-nsplugin = substituteAll { + src = ./0001-dlopen-webkit-nsplugin.patch; + inherit gtk gdk_pixbuf; + }; + dlopen-webkit-gtk = substituteAll { + src = ./0002-dlopen-webkit-gtk.patch; + inherit gtk; + }; + dlopen-webkit-udev = substituteAll { + src = ./0003-dlopen-webkit-udev.patch; + inherit udev; + }; + in optionals flashplayerFix [ dlopen-webkit-nsplugin dlopen-webkit-gtk ] + ++ [ dlopen-webkit-udev ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix b/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix new file mode 100644 index 00000000000..fbdfbbcf0db --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase, qtdeclarative }: + +qtSubmodule { + name = "qtwebsockets"; + qtInputs = [ qtbase qtdeclarative ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix b/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix new file mode 100644 index 00000000000..a765161e2d7 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtx11extras"; + qtInputs = [ qtbase ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix b/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix new file mode 100644 index 00000000000..9a8ddbba2bd --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix @@ -0,0 +1,6 @@ +{ qtSubmodule, qtbase }: + +qtSubmodule { + name = "qtxmlpatterns"; + qtInputs = [ qtbase ]; +} diff --git a/pkgs/development/libraries/qt-5/5.4/setup-hook.sh b/pkgs/development/libraries/qt-5/5.4/setup-hook.sh deleted file mode 100644 index 3bc4890f3bb..00000000000 --- a/pkgs/development/libraries/qt-5/5.4/setup-hook.sh +++ /dev/null @@ -1,77 +0,0 @@ -addQtModule() { - if [[ -d "$1/mkspecs" ]]; then - - @lndir@/bin/lndir -silent "$1/mkspecs" "$qtOut/mkspecs" - if [[ -n $qtSubmodule ]]; then - find "$1/mkspecs" -printf 'mkspecs/%P\n' >> "$qtOut/nix-support/qt-inputs" - fi - - if [[ -d "$1/bin" ]]; then - @lndir@/bin/lndir -silent "$1/bin" "$qtOut/bin" - if [[ -n $qtSubmodule ]]; then - find "$1/bin" -printf 'bin/%P\n' >> "$qtOut/nix-support/qt-inputs" - fi - fi - - if [[ -d "$1/include" ]]; then - @lndir@/bin/lndir -silent "$1/include" "$qtOut/include" - if [[ -n $qtSubmodule ]]; then - find "$1/include" -printf 'include/%P\n' >> "$qtOut/nix-support/qt-inputs" - fi - fi - - if [[ -d "$1/lib" ]]; then - @lndir@/bin/lndir -silent "$1/lib" "$qtOut/lib" - if [[ -n $qtSubmodule ]]; then - find "$1/lib" -printf 'lib/%P\n' >> "$qtOut/nix-support/qt-inputs" - fi - - if [[ -d "$1/lib/qt5/plugins" ]]; then - QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}$1/lib/qt5/plugins"; - fi - - if [[ -d "$1/lib/qt5/imports" ]]; then - QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}$1/lib/qt5/imports"; - fi - - if [[ -d "$1/lib/qt5/qml" ]]; then - QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}$1/lib/qt5/qml"; - fi - fi - - if [[ -d "$1/share" ]]; then - @lndir@/bin/lndir -silent "$1/share" "$qtOut/share" - if [[ -n $qtSubmodule ]]; then - find "$1/share" -printf 'share/%P\n' >> "$qtOut/nix-support/qt-inputs" - fi - fi - fi -} - -setQMakePath() { - export PATH="$qtOut/bin${PATH:+:}$PATH" -} - -qtOut="" -if [[ -z $qtSubmodule ]]; then - qtOut="$PWD/qmake-$name" -else - qtOut=$out -fi - -mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" \ - "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share" - -cp "@out@/bin/qmake" "$qtOut/bin" -cat >"$qtOut/bin/qt.conf" < Date: Sat, 19 Dec 2015 23:28:16 +0100 Subject: [PATCH 151/289] wine stable: 1.6.2 -> 1.8 restructure versions file for clarity and brevity --- pkgs/misc/emulators/wine/versions.nix | 28 +++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/pkgs/misc/emulators/wine/versions.nix b/pkgs/misc/emulators/wine/versions.nix index 971baee0fec..c308dd3c87f 100644 --- a/pkgs/misc/emulators/wine/versions.nix +++ b/pkgs/misc/emulators/wine/versions.nix @@ -1,26 +1,26 @@ -{ - unstable = { - wineVersion = "1.8-rc4"; - wineSha256 = "0c4mb49ad11jd880wdl4gs1478q2rkdjw2qxjzskr08bdlcq7h5f"; +rec { + stable = { + wineVersion = "1.8"; + wineSha256 = "1x66lzpk7v8qx57clmcq5ag7yh3mqplf1plypwghgchjh70lafzk"; + ## see http://wiki.winehq.org/Gecko geckoVersion = "2.40"; geckoSha256 = "00nkaxhb9dwvf53ij0q75fb9fh7pf43hmwx6rripcax56msd2a8s"; gecko64Version = "2.40"; gecko64Sha256 = "0c4jikfzb4g7fyzp0jcz9fk2rpdl1v8nkif4dxcj28nrwy48kqn3"; + ## see http://wiki.winehq.org/Mono monoVersion = "4.5.6"; monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; }; - stable = { - wineVersion = "1.6.2"; - wineSha256 = "1gmc0ljgfz3qy50mdxcwwjcr2yrpz54jcs2hdszsrk50wpnrxazh"; - geckoVersion = "2.21"; - geckoSha256 = "1n0zccnvchkg0m896sjx5psk4bxw9if32xyxib1rbfdasykay7zh"; - gecko64Version = "2.21"; - gecko64Sha256 = "0grc86dkq90i59zw43hakh62ra1ajnk11m64667xjrlzi7f0ndxw"; - monoVersion = "4.5.6"; - monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; + unstable = { + wineVersion = "1.8-rc4"; ## wait for staging 1.8 + wineSha256 = "0c4mb49ad11jd880wdl4gs1478q2rkdjw2qxjzskr08bdlcq7h5f"; + inherit (stable) + geckoVersion geckoSha256 + gecko64Version gecko64Sha256 + monoVersion monoSha256; }; staging = { - version = "1.8-rc4"; + version = unstable.wineVersion; sha256 = "11kd4id0zyqqjz1006d27ahmhy3gzai7h0wir9lkxnv3pdld0dxn"; }; winetricks = { From 758901397b3c6ce971d1b8b3e2c5b8d7d7137238 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 17:25:04 -0600 Subject: [PATCH 152/289] qt5LibsFun: build against all Qt 5 versions --- pkgs/top-level/all-packages.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e9764ee6e3c..342f35a5581 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8153,8 +8153,13 @@ let developerBuild = true; }); - qt54 = recurseIntoAttrs (import ../development/libraries/qt-5/5.4 { inherit pkgs; }); - qt55 = recurseIntoAttrs (import ../development/libraries/qt-5/5.5 { inherit pkgs; }); + qt54 = + let imported = import ../development/libraries/qt-5/5.4 { inherit pkgs; }; + in recurseIntoAttrs (imported.override (super: qt5LibsFun)); + + qt55 = + let imported = import ../development/libraries/qt-5/5.5 { inherit pkgs; }; + in recurseIntoAttrs (imported.override (super: qt5LibsFun)); qt5 = qt54; From 986f446674271385baaf28313555c8686a60ab7b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Dec 2015 03:15:36 +0100 Subject: [PATCH 153/289] include-what-you-use: 0.4 -> 0.5 Compatible with llvm+clang 3.7. Changes: - Added Boost and Qt mappings. - Better support for using declarations. - Allow size_t from multiple headers. - Fixed handling includes with common path prefix. More: http://include-what-you-use.org/ --- .../tools/analysis/include-what-you-use/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/analysis/include-what-you-use/default.nix b/pkgs/development/tools/analysis/include-what-you-use/default.nix index 57d5cadf98c..4ad8b3f8380 100644 --- a/pkgs/development/tools/analysis/include-what-you-use/default.nix +++ b/pkgs/development/tools/analysis/include-what-you-use/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchurl, cmake, llvmPackages_36 }: +{ stdenv, fetchurl, cmake, llvmPackages_37 }: let - version = "0.4"; - llvmPackages = llvmPackages_36; + version = "0.5"; + llvmPackages = llvmPackages_37; in stdenv.mkDerivation rec { name = "include-what-you-use-${version}"; From ca8903c3c2b96bef02f04168e4322b81d0a02e2f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Dec 2015 03:22:24 +0100 Subject: [PATCH 154/289] include-what-you-use: use unversioned llvm attribute ...in the expression itself, while hard-coding the officially supported version in all-packages.nix for sanity's sake (mine). --- .../tools/analysis/include-what-you-use/default.nix | 9 ++++----- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/analysis/include-what-you-use/default.nix b/pkgs/development/tools/analysis/include-what-you-use/default.nix index 4ad8b3f8380..75e4dba003b 100644 --- a/pkgs/development/tools/analysis/include-what-you-use/default.nix +++ b/pkgs/development/tools/analysis/include-what-you-use/default.nix @@ -1,9 +1,8 @@ -{ stdenv, fetchurl, cmake, llvmPackages_37 }: +{ stdenv, fetchurl, cmake, llvmPackages }: -let - version = "0.5"; - llvmPackages = llvmPackages_37; -in stdenv.mkDerivation rec { +# Also bump llvmPackages in all-packages.nix to the supported version! +let version = "0.5"; in +stdenv.mkDerivation rec { name = "include-what-you-use-${version}"; src = fetchurl { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 305ed0a4735..9cd7dfafdc0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5746,7 +5746,9 @@ let inherit (perlPackages) XMLSimple; }; - include-what-you-use = callPackage ../development/tools/analysis/include-what-you-use { }; + include-what-you-use = callPackage ../development/tools/analysis/include-what-you-use { + llvmPackages = llvmPackages_37; + }; indent = callPackage ../development/tools/misc/indent { }; From 1b6128cdc9e7201d9741a487bf48cc4a3b89da2a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Dec 2015 03:34:43 +0100 Subject: [PATCH 155/289] clipgrab: 3.5.4 -> 3.5.5 --- pkgs/applications/video/clipgrab/default.nix | 34 ++++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix index 7d136de779a..4075c87146b 100644 --- a/pkgs/applications/video/clipgrab/default.nix +++ b/pkgs/applications/video/clipgrab/default.nix @@ -1,29 +1,15 @@ -{ stdenv, fetchurl, ffmpeg, makeDesktopItem, qt4 }: +{ stdenv, fetchurl, makeDesktopItem, ffmpeg, qt4 }: -let version = "3.5.4"; in +let version = "3.5.5"; in stdenv.mkDerivation rec { name = "clipgrab-${version}"; src = fetchurl { - sha256 = "1zvicmxnkldqnfri8y0q0vx6f5whsc7jc9jcsfzhpw47w92qvx5r"; + sha256 = "01si6mqfmdwins6l18l6qyhkak0mj4yksbg30qhwywm8wmwl08jd"; # The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz! url = "http://download.clipgrab.de/${name}.tar.gz"; }; - meta = with stdenv.lib; { - inherit version; - description = "Video downloader for YouTube and other sites"; - longDescription = '' - ClipGrab is a free downloader and converter for YouTube, Vimeo, Metacafe, - Dailymotion and many other online video sites. It converts downloaded - videos to MPEG4, MP3 or other formats in just one easy step. - ''; - homepage = http://clipgrab.org/; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ nckx ]; - }; - buildInputs = [ ffmpeg qt4 ]; postPatch = stdenv.lib.optionalString (ffmpeg != null) '' @@ -53,4 +39,18 @@ stdenv.mkDerivation rec { install -Dm644 icon.png $out/share/pixmaps/clipgrab.png cp -r ${desktopItem}/share/applications $out/share ''; + + meta = with stdenv.lib; { + inherit version; + description = "Video downloader for YouTube and other sites"; + longDescription = '' + ClipGrab is a free downloader and converter for YouTube, Vimeo, Metacafe, + Dailymotion and many other online video sites. It converts downloaded + videos to MPEG4, MP3 or other formats in just one easy step. + ''; + homepage = http://clipgrab.org/; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; } From 10a7021c830de157dfb27f599625315778008679 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 19 Dec 2015 22:42:16 -0600 Subject: [PATCH 156/289] nixpkgs: duperemove 0.09.4 -> 0.10 Signed-off-by: Austin Seipp --- pkgs/tools/filesystems/duperemove/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/filesystems/duperemove/default.nix b/pkgs/tools/filesystems/duperemove/default.nix index 4836e39d439..146414a47e1 100644 --- a/pkgs/tools/filesystems/duperemove/default.nix +++ b/pkgs/tools/filesystems/duperemove/default.nix @@ -1,17 +1,18 @@ -{ lib, stdenv, fetchFromGitHub, libgcrypt, pkgconfig, glib, linuxHeaders }: +{ lib, stdenv, fetchFromGitHub, libgcrypt +, pkgconfig, glib, linuxHeaders, sqlite }: stdenv.mkDerivation rec { name = "duperemove-${version}"; - version = "0.09.4"; + version = "0.10"; src = fetchFromGitHub { owner = "markfasheh"; repo = "duperemove"; rev = "v${version}"; - sha256 = "1d586k6rbfqb5557i1p5xq8ngbppbwpxlkw8wqm7d900a3hp36nl"; + sha256 = "1fll0xjg1p3pabgjiddild4ragk9spbdmdzrkq0hv5pxb1qrv7lp"; }; - buildInputs = [ libgcrypt pkgconfig glib linuxHeaders ]; + buildInputs = [ libgcrypt pkgconfig glib linuxHeaders sqlite ]; makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ]; @@ -19,8 +20,7 @@ stdenv.mkDerivation rec { description = "A simple tool for finding duplicated extents and submitting them for deduplication"; homepage = https://github.com/markfasheh/duperemove; license = lib.licenses.gpl2; - - maintainers = [ lib.maintainers.bluescreen303 ]; + maintainers = with lib.maintainers; [ bluescreen303 thoughtpolice ]; platforms = lib.platforms.all; }; } From 5b553893c18cdee7226ca563d21220e76e283d4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Kemetm=C3=BCller?= Date: Fri, 18 Dec 2015 15:16:39 +0000 Subject: [PATCH 157/289] grib-api: init at 1.14.4 --- .../libraries/grib-api/default.nix | 32 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/development/libraries/grib-api/default.nix diff --git a/pkgs/development/libraries/grib-api/default.nix b/pkgs/development/libraries/grib-api/default.nix new file mode 100644 index 00000000000..ee505b54e7e --- /dev/null +++ b/pkgs/development/libraries/grib-api/default.nix @@ -0,0 +1,32 @@ +{ fetchurl, stdenv, curl, + netcdf, jasper, openjpeg }: + +stdenv.mkDerivation rec{ + name = "grib-api-${version}"; + version = "1.14.4"; + + src = fetchurl { + url = https://software.ecmwf.int/wiki/download/attachments/3473437/grib_api-1.14.4-Source.tar.gz; + sha256 = "1w8z9y79wakhwv1r4rb4dwlh9pbyw367klcm6laxz91hhvfrpfq8"; + }; + + buildInputs = [ netcdf + jasper + openjpeg + curl # Used for downloading during make test + ]; + doCheck = true; + + meta = with stdenv.lib; { + homepage = "https://software.ecmwf.int/wiki/display/GRIB/Home"; + license = licenses.asl20; + description = "ECMWF Library for the GRIB file format"; + longDescription = '' + The ECMWF GRIB API is an application program interface accessible from C, + FORTRAN and Python programs developed for encoding and decoding WMO FM-92 + GRIB edition 1 and edition 2 messages. + ''; + + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2b4541cc550..e29a20e78b2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6567,6 +6567,8 @@ let gperftools = callPackage ../development/libraries/gperftools { }; + grib-api = callPackage ../development/libraries/grib-api { }; + gst_all_1 = recurseIntoAttrs(callPackage ../development/libraries/gstreamer { callPackage = pkgs.newScope (pkgs // { libav = pkgs.ffmpeg; }); }); From e24211df8ff785fc36045b0d9feb4d453f4e4819 Mon Sep 17 00:00:00 2001 From: taku0 Date: Sun, 20 Dec 2015 22:26:25 +0900 Subject: [PATCH 158/289] firefox-bin: 43.0 -> 43.0.1 --- .../browsers/firefox-bin/sources.nix | 358 +++++++++--------- 1 file changed, 179 insertions(+), 179 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index 5f409d32799..e9b171dc94d 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -4,185 +4,185 @@ # ruby generate_sources.rb > sources.nix { - version = "43.0"; + version = "43.0.1"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha256 = "982ba19766fd7d4a1f795ce6737f87be6b990d2272fce4f867cf3dfddd3a21cb"; } - { locale = "ach"; arch = "linux-x86_64"; sha256 = "d2f09953fa7abd561a660d57ce9b7e8e44537119d09eb0161edd0acd9c9a6e9b"; } - { locale = "af"; arch = "linux-i686"; sha256 = "45fa84f6ee80c781268ae665f8510b00fff7faa77fb52e620e2337d660a24e25"; } - { locale = "af"; arch = "linux-x86_64"; sha256 = "c18a542f753299a192acf70b221b07d7146e0e25b4c417d5af315f6f447b8080"; } - { locale = "an"; arch = "linux-i686"; sha256 = "7552d4f6dd4cf1fb3541ab991b85e76877d038eeaee480d8e4a036c289732877"; } - { locale = "an"; arch = "linux-x86_64"; sha256 = "5493af457fe9ec4a5c4265814610d3227dd491221dbf407f39428b7c6d876d30"; } - { locale = "ar"; arch = "linux-i686"; sha256 = "e543731d752c5b24b1247e8088dae8423d957b199da57f57e02d545885d20083"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "e8bd2be14e44ac51848090ca3f024a4a948742cbf8c5cf3ef46ef91fc3141bf5"; } - { locale = "as"; arch = "linux-i686"; sha256 = "a536eb962a704c63072bca9da947d3b8908dec1c635a7c28e634ed086c116b6f"; } - { locale = "as"; arch = "linux-x86_64"; sha256 = "e69ebae4c9a85a3c6a7c3a0d89361c17ae31330db294e2407363c2c2f9ce0698"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "bcd1139f78453f9bf36d1476e66025301f52122a7e93816abec0c7a8c798a25a"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "7462ce0b7481ca65fc29972c5601862386be5b60ae1da55b955b3bd4b2383286"; } - { locale = "az"; arch = "linux-i686"; sha256 = "75860f86e7f7b558c9ae0de86efc6e4ec26abaf097fccea7d2e220849c76f90d"; } - { locale = "az"; arch = "linux-x86_64"; sha256 = "d3499b08d94980f89aa92a444023014f15f327180171984eb30198bc312b39c3"; } - { locale = "be"; arch = "linux-i686"; sha256 = "125d6fe56fffeec2d13ff4d222552249573490b621f4c4b891f9741e54f4b97f"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "d29b2645fdf3ada8ad1cac6ad72a0184c850d17e0ad13d8495c22185d49d2cc1"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "9f484b9ef919f5e62f5762f46ebba098d87270f263dfffeb1671e4badeb7ce4c"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "4ca360eee75a93ecff0ca75ffc533802b5acdff225c8d494792d57b5a5822674"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "6270cb85d1b11e36a38933d1dd2b1592302844220530bc099cc06ccb9632bf2e"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "7547142fac57bb305c159e9ec63b42e7d47e399418de9ca98ad0e44c189bb13a"; } - { locale = "bn-IN"; arch = "linux-i686"; sha256 = "e17b2c5930666d9a6f7b523dbbbd118e74665b351a1002f92cb979b7e95ff695"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "6e689634aface136ff1ca4af4e51f54b2f116a48aec7b738ca7bb8e7ad0ae714"; } - { locale = "br"; arch = "linux-i686"; sha256 = "e9045c2bfe041eb9e6d69562ebaf170a93d164cc15ea99f6cd4ddc70614b82e4"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "bc9e9bf595aa4f27b275b913756c952dd2d9f6079022b22355ef6f76b67b8b3c"; } - { locale = "bs"; arch = "linux-i686"; sha256 = "2ba45e18275193d0d693fa195e8ccaa7e171dd5d155b4943f6e0aeb1f4ce1664"; } - { locale = "bs"; arch = "linux-x86_64"; sha256 = "d1e39ade01b628df66c1bf106c81a7d7c2f3ed8f81cf21610a78d767f7bd5309"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "32ba458dadb02eddf7b54989bf00bd3484143625b601866a0b1560eeffcd3934"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "3ff4b423e3b524e80c2275a064f35c96612fc8e0d95ec18233941313c1f43305"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "73fd0275d55e396f7c2ae88baa0d6d163ccda3d6ba6a5d9f371058bc7142ff5b"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "cafedf882d49e5f91ab3f31a99b65474a8c9044bc21db7f8a1cd6ce8fd7e9ada"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "1544de88d5388142e256521c268a9aa6c694c0abec483833b889a0a91d13bb19"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "2fffc929b935961eab53eb41bf74af80a152863c87b15f651bc9b63ee287c602"; } - { locale = "da"; arch = "linux-i686"; sha256 = "eb3ae8ddc10da4b6b4d3d0449577db8025d728f17447ea0d75b2538a6de01cc7"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "29670adf7370200052ebfe37457859568e4246e9bebf19424d22aa08bd209b23"; } - { locale = "de"; arch = "linux-i686"; sha256 = "ca070f4a12756f7f524ef286375561239229150d55e418c9911dc0f13a82a8aa"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "3186bae10e7ccd49b2d92f61ac34ff05de88aac497f3823216b119102bcb6505"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "3488156b5c0c1d0832d65e7fe3d9ecfb858cb6bfccaf4eb849b55391be750472"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "73ae802fcef1bce7ee360eebddee7f21624e3949c81f4ca0e5a14234398654f9"; } - { locale = "el"; arch = "linux-i686"; sha256 = "baf75fd4b6bb45e8e2be9a685b38858edaef26fae2e761f11dfa09c0623fbfef"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "eef57f4ff6fd1dc43d80aaf5e20d064dcb53d50031f363901cd249593c6023c6"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "93fd10d7a97b817b94924db0a16eea6932c1858c3bc113231354ff9e1183da49"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "6f6c8d1985b224bf3d6e1c5b5bf7f2b209f3bf4a7c676f9a5d12c97872e9106b"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "e01575f0145514c814c3d9a607a6d633de0fd0782e7e6758405bb745ffe73c35"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "54c84a972c53de4bfc75f126435cf7d7c07710235e6556d1e8214302da6349bc"; } - { locale = "en-ZA"; arch = "linux-i686"; sha256 = "8290bd4d9d22a46240d9c3e7a573a0a79613bfdf6de20a463ccee9cd5630d69c"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "3d639e60082922c330ed45d2caeb0706425e2722d137c18841c9cbce3a1a0360"; } - { locale = "eo"; arch = "linux-i686"; sha256 = "4db791125c5856fb191434df45ee95dc2909525911ca8a503546b6176d80e935"; } - { locale = "eo"; arch = "linux-x86_64"; sha256 = "6feb494c6b1d822084ebc021de6bde1e13263da75cd7a93d7050b727656edf51"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "62c5043ddff9a4f53a98f0be119dbaecc1a67fa6aa2437c7e0d129f152dc4649"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "2f073e925474eff6c323529eec0796ba88d4df118d9f660044af72a7598a115d"; } - { locale = "es-CL"; arch = "linux-i686"; sha256 = "ba865758213094e1bfff0450d464fd8cc04234636889cc3b61aefe5e2ec991d0"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "c4d6201ab240e9448e427ff0c99454d91d85bf83442ed1fbe1b1540921fe299e"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "f9a569785dd6dea163c3218f9f5cbf8ab257aa4e2f54f85ba94cff735ffd3888"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "6895fdc030d92521e157279f07a0f4f45aa09638d6306f3dd14de497ad28ff25"; } - { locale = "es-MX"; arch = "linux-i686"; sha256 = "323eaec354645ed5bcc89dbde31c68024af86c048e09fec8928009fd63c540ff"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "16b44182b8340f55456c101501284237b564a7f8ec7904a747a77812ea36e26e"; } - { locale = "et"; arch = "linux-i686"; sha256 = "93796e0c0998dbdbbeb9774abfde33ffecb2120747de35bdf9a4fe716b5c5c26"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "6959270bbc217a4e6ed574690a1350796601076b66fc5a2d399199fb361724a7"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "b902d0ffa5a8f470258ac32f0d044206353348609b5f7058fb9c919d04dde4d9"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "19144f8b85e1c95a1651e5284ae2bf306dfc0cc44a0479e96e8f8eeb024210b6"; } - { locale = "fa"; arch = "linux-i686"; sha256 = "c2555942a22d4b98b300dc59103c909bf87cff72004fde3898b37a0159c27b1d"; } - { locale = "fa"; arch = "linux-x86_64"; sha256 = "da9c4471ad0ee6d7e251b66cb16c28a17c1eeffb8e5ffc3ba3671b50abb54ba8"; } - { locale = "ff"; arch = "linux-i686"; sha256 = "bff3ed957cd63e9c563fcd9c3d22656ac6ad0249ce1b508ca6c2e2bd704b33ff"; } - { locale = "ff"; arch = "linux-x86_64"; sha256 = "aaff9be56db81c295d979a70bff85d7f714ce2f0cc7c0e6b16641ee2da98e053"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "47fa1bbf54704447f2beb1561895a0c564bf29dd260d6517763d2bc7646a81f5"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "c49d524dd277da165dfe267367b3a05e007e5ce0a71ce68d5d2ee6365307dbf3"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "61c974883e7a6ceedf9c500763db6ea805538389991b1741e34033d7f5a1d803"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "e9afcc65a47aad3c287c9dfa3885c2c64340dc53a95f2cc6f2dc78da71876fe3"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "32cc4754a5415edc0c8ac2a081560ee0b783c4101fce31c63d83489459008748"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "3d5947f09ca893f28d9cb5d5fcc9b052c6e9dfca4af791084ca3ff4480205882"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "8924881fa49579ace5c1421b4c51ee6aff0489d15a2b70d53372af8c10f1d788"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "ca643791c3611b9a266907d03082d51b9b363556cc044f638c8551f523c505fd"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "9fc96c7c11b9a0faf3e19f910a0af03ddfa66f64adbae4a4bef3dec9d9cbcfb2"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "bc129515675937c1db6b90721ce12cb832024f2234d48d8750ff8b78e7d8b48f"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "972dc9dfbc81fe0d541103c17791f3e101c7d5caa4b7fac9f6c6021f2292eb23"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "903aaa2c69984b6270e73c6d64fb9d78e70bbef18fa8abae1c13eb39d5016000"; } - { locale = "gu-IN"; arch = "linux-i686"; sha256 = "fa7e415da478db2431676fdce4f12c1f751644a2e30cf544ddc3222a3b6d2927"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "1373df42590573aabae82990da82f529b9809f7b5221077af4c0f6e2c4f60bf8"; } - { locale = "he"; arch = "linux-i686"; sha256 = "19fd9098441adfd0956c20d5b188e3e621718c9ec7a7d8f45d999c5d216c1008"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "49bef59a55547c3b633a1bf4b60e48d0a28fe0a320218835462086da8d352010"; } - { locale = "hi-IN"; arch = "linux-i686"; sha256 = "af57e15c754c805a90fb0712784f1632dadb59d05e414ec0507e997a7f5e2fb8"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "3fd560f148816ca2d7926eabea8d786fd6e7602266b4620c78cc6515bd307168"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "e955e7d6d97ae6ebec3df7a079ce1f81e007711548dc294ee7372a730411f9ed"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "a49eb1c665736fa48f3411833ebcadf209e316be020e04e0b0cbba194c041de3"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "443be07db7e46c182aef031d96505698cf66db97b5e6537b7b1c4f3d76da7a6f"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "c4ecf15c893bb5d284782daf4ff1f732e8a3d56d21907c8496bb8ed36e9dc36d"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "f8b994f5a243d5c43ffb57911080b88aaf1d2ec453a614aa34c441ea6e432e12"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "a18897a597551eef6976a2c920dbad32c69d8467d21b3a194c56b7234d99c13e"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "6772f390516c4315e434cb4d191282c3f4604e935ab7fa9be9c20251af8feafc"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "4cdfdab611336f2bd2bddfd5d7f3c268321f8837777307f1cbef312857cdba23"; } - { locale = "id"; arch = "linux-i686"; sha256 = "f65a4cd2b3abb198fc1fe911814c1ac6660723740c20b6d3c7db9edc462c5bf7"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "502090306fce236ffa979ed762fbca37fc9fe088bb576d9ad64e96b0814b97a7"; } - { locale = "is"; arch = "linux-i686"; sha256 = "f7a91b3fe7d7ec8f2e06d2c1aa2c018f60e79f0b62cadb09b65be78ee72110db"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "13d183ff7e2944b4ed86013d6f3e9f7016e5ef2bc24bce853ca91e15da4a89c0"; } - { locale = "it"; arch = "linux-i686"; sha256 = "097d8d24721f01c4891c12fe36058b68b37febcd44e29ca7669a5a4939c8d6b7"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "59d045ee4ce4823ce031f870f1f9c4864143bf5dcd49355d0bae3af541d50c65"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "be055054270cdb6487f48355a41e81414a4f4467ee4c057f204ebb854e3c53f5"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "bc69790970be93c0d6eac9f3d9c8f6ba714f398bd0b35313a5ba04b584c18c3e"; } - { locale = "kk"; arch = "linux-i686"; sha256 = "a1450ef10e3901d0a3b10e15cb5b4b53e6500b62342ad9008ef69df0bb3b133c"; } - { locale = "kk"; arch = "linux-x86_64"; sha256 = "175b5326133c4243d0141a892346db1f573ee6be6260fbf79ee16a76c073f3f3"; } - { locale = "km"; arch = "linux-i686"; sha256 = "f75d50c214ae66007dc3a31567f7fd527a4a9753b0bee320883b7e3d7c7585ce"; } - { locale = "km"; arch = "linux-x86_64"; sha256 = "5be1306bcb56a3af227de5fabe2e80bf29403e9fefe6e12c36f9ca16070a341a"; } - { locale = "kn"; arch = "linux-i686"; sha256 = "16676e0d00bc33d15222a56c3bd426708c265c2ac64bb31198c0f75417b917ec"; } - { locale = "kn"; arch = "linux-x86_64"; sha256 = "6002d7dcdb2d927a8dccb035c87b452604d8e284752fdac0766f0a2fd11b9b06"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "e01319a0e2f08c0c7d610696b8820049d22c43efb1a434574d46c52ce69ef5ce"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "f539ab8f0f9d1edbd3d85985f369cc9824d8a19ac8888739f95195b63869239b"; } - { locale = "lij"; arch = "linux-i686"; sha256 = "1afd8f5d8ba61aaf659106f096ab35588e04d7b72f8b159ffc00dec604d3f3ec"; } - { locale = "lij"; arch = "linux-x86_64"; sha256 = "30f1bca8be807a3e12a7caf37da9e0f41d0268e98feb02ea5b58357e8ffc5eaf"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "bfd0e553b91750d42541e0832ee4b3a1e82e4d98691518c4b88fe8307186f1eb"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "64c36d2b1f856fd8c2d980007895d0680ad5193791fb4a40b1791b00418551dc"; } - { locale = "lv"; arch = "linux-i686"; sha256 = "3893e87f6e3f3ced6bcbb05a2fcf35f00c2720bc5c15a6ecbae9e2294e274739"; } - { locale = "lv"; arch = "linux-x86_64"; sha256 = "37b2494ae6ce999d7aa30b44f2d558a7e38465d08add4bd428882886623fe80a"; } - { locale = "mai"; arch = "linux-i686"; sha256 = "a350cab87ee54f2be47897787648cc5f489383b32441966bc9e908d4324d72af"; } - { locale = "mai"; arch = "linux-x86_64"; sha256 = "9e9fe30e4e096b35be58225fe666715954891b685744f3ca1f4a1ef264f15876"; } - { locale = "mk"; arch = "linux-i686"; sha256 = "3675909d4168548f29ece3e5f7612214da8b82715244b7e99adcd3c514ff1638"; } - { locale = "mk"; arch = "linux-x86_64"; sha256 = "8abeb1a0c0a35dac15b4213ffdab7d5c9f6c2e053be96f0cdfa30fc3bef88877"; } - { locale = "ml"; arch = "linux-i686"; sha256 = "52366a36b292d24d5a226119ccb703085a129c9ff8db05cbce45a51d40d062d7"; } - { locale = "ml"; arch = "linux-x86_64"; sha256 = "88ca8b418251df0a862917dfc2e129bc563f5e6f9812cc470460aec745dd7d57"; } - { locale = "mr"; arch = "linux-i686"; sha256 = "af94fb37ecb6aaabba88a987d509b2049a74dff741243608d5126c2a95df17a1"; } - { locale = "mr"; arch = "linux-x86_64"; sha256 = "4f99abcc53d92677c4b0ac59141b5e499d74fc850316ea4a4ffe085b7e7e5259"; } - { locale = "ms"; arch = "linux-i686"; sha256 = "79b6fee1cac2dba877b849f2850fe030995d2b805b1717ffa968979ffb487f89"; } - { locale = "ms"; arch = "linux-x86_64"; sha256 = "6f4b381f5d5d0b99bb3ace8e29fa60289abcffcc0abc2aa2b006b344a5747385"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "182632c120fb86fb0a6b7ab1aa294ae4afb31b886dbc2876257b050fbf625de6"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "41acd3dff5ce040c3efcb7a52910f7332ddc603fafb3e1c4c3a306676d7307cb"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "f04b2f1ee8352293910f99efc27d0bfc1d419844059073d72ba2e807c1006a1d"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "823d167ef1ad2006fdcc460d6212a3d5c1296658445b061b874c548671641acd"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "eb98445046c7a8f47edfab5731b0b11813883afdd9b0254505d24254cf92138e"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "7e649da6fa32382fe8211ca42d0ec182b140672d4666c5b7efc819fd3ccdf669"; } - { locale = "or"; arch = "linux-i686"; sha256 = "b7ed61ccf3c5894b7867389cc1ae7a7d0412f90ce1c0e9a30ce5a15fc6e9a42d"; } - { locale = "or"; arch = "linux-x86_64"; sha256 = "9f704141d9d9f15b043e0dea43b7e916506e654631ca1ef4e17a35aeb7e9bcc6"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "0e18759ce39decd72fe6e61bfa731867ce882cebc4825b8635f5a11a7cc1d1d8"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "da7ce2cccc02524514cebb7829efd5f9be827464d0a481389c3d7dbe706fd19e"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "0a6d86210cd4db00f1d841ee505ca15eca4cd88c99fc1172fcc4ddb1c58b787c"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "24d7c14626243859b3e69733d39566e0f4ab12bd7b92cff84abc74dc22470809"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "82f9d5e5dd7b4898b43f0e7cf02128a985c2b7c320683c088310608eed9d5612"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "ff27814b5b4eccca0d038feb2dfa85c7e88cd8cabd8575fa36d9eabf1a66f518"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "330ce0315724345c94ed58fa6c1c5a6aae5616014c1ffc4713094a26559cf2a5"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "fe0c98295399b31f96b2caf873d72874fbd088679b13c1d01153ad257f8175b4"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "681430fda3ce3ca1da2b12069b7f6062c97a57144667f72f515d2b3e0ac9e97f"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "09d7676c37f46e6668302f36c6435158a8a518220fce3137313f858faf10f9eb"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "43dead80097cb96988f10945c0545714ddccb28ccfb795028807f1c80888f0e5"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "31f4acde5c7173760d9dd242c851cbc7ba36cd420c107d80bd1008cdcc4572ba"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "252151abbcb3af9e9eb7ba7d973903ffd377d06b9211ec267d1a79b71290f803"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "117040737bf87263c0f476871adb2cbd3a35e63aff4e3f4e51c9e587bccec8a4"; } - { locale = "si"; arch = "linux-i686"; sha256 = "1a77467ca7f830dec897fac26f6ca0ababa05b5dbe953bcacc7474be20245841"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "7508411a21b32572f33acca6ba898d43806fe15cbe55759617d1cc5a3cdbd8ff"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "5bb1c4bb6cce5250427cb5aa21a14397d80ca9f7a883b0107c15427015337646"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "1bbec6fe4aee6114b3c26a1b7b2dd51c4110426ef05c03d6d635bf7238fdbb3a"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "a2d2d3c63c7992a06b5860c29d2d1d8dafd4f45379f96d749cfb1b841f392dbc"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "4db1e2b45a8ea66b13dab359034ebacdfa15fcef753eaeb4969271e911c8782f"; } - { locale = "son"; arch = "linux-i686"; sha256 = "bce8f2cff7c86479ae0c60428a4c6fdb228467edeaee95b0fdac6968b1e89f38"; } - { locale = "son"; arch = "linux-x86_64"; sha256 = "2a799848da011fb14eb401e32876afcc8c3fb443008bf4cec9b058925c930777"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "0e6f9bb41ee9bd9898f09f8c71f1c93c646e01a3bf5e8f221673ad1fa102971b"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "feb0d974833e5a51505a25edc6cc20d70e23663b1b1b83f6897f24c42e08ca5a"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "b2cf68237c0508809ee5364fc3b8c9fdf6e3ecade6425af3bbdbdadcaaef05f2"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "ada2a925357962c7a3a65f1dd5d5bc219bd6e34a24c695f3b1d8a51821e9bda0"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "b6354dc50b354a51c6ca71b24ca4d4c382b04f1e45b12669c70a170531c382bd"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "d1141b2e01f58aab45d79ecf18b9116b79e1338e7a06524cf7ec85b6be5234b1"; } - { locale = "ta"; arch = "linux-i686"; sha256 = "bdfede4d8b5594838d5cafc66f7f4895b0e0ca0c9b9c6d2cafc677cd26dbd943"; } - { locale = "ta"; arch = "linux-x86_64"; sha256 = "7e277836132360a58b048ded166e74d5b8f4ea41f8aea3f2c9d2e73f7202808c"; } - { locale = "te"; arch = "linux-i686"; sha256 = "8bd3ce91d690b7f93c409aac981513175b72d291c9d6e0cede3448d8c4a66687"; } - { locale = "te"; arch = "linux-x86_64"; sha256 = "2395676f9e4dcbe6dc09add685190f106c2299fd78fdee747898b85379715e24"; } - { locale = "th"; arch = "linux-i686"; sha256 = "52505a11229622bb2f65c0f8da9a27b0c5c33b6078c89163e65f6ee0b879211f"; } - { locale = "th"; arch = "linux-x86_64"; sha256 = "23cc6ffd71b2efa6f330addf1c901843b3e18569a375571be502c0c16b32e785"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "9bc4e40737e63a57906378f60b5f14720ee212878f13f370565d54047e81a769"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "5c16aa2c664c78e9b11f23fa466e23d99ee35da93b44b1315c37055b2a447233"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "54a46561dc3f10dc15a16f644383026d51369e61e573cc0d63e98549bf6afcd9"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "953a40460342a0e7ebf8e3236e853503042278ba89347c58929b3e7b75c27a54"; } - { locale = "uz"; arch = "linux-i686"; sha256 = "88ac21648110aedd354c9c3ecd66017543cf55bfcb9c1939bc45af984d9bafed"; } - { locale = "uz"; arch = "linux-x86_64"; sha256 = "f25374c2ea2b874a081e1e18618c4cd95f3b47f2242780b476f24550868d54b4"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "edc208611860bceddfa56239793f566375a45c4e56d5e2d366b0f9c9860efb7d"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "0fb1a8b32e9a923e56278001ca515b49e17bcd1455819cabe5d432ed97ef9e09"; } - { locale = "xh"; arch = "linux-i686"; sha256 = "36f88783ff39d9a22708fcec5f442c953061004552052388a54f71ed775b7900"; } - { locale = "xh"; arch = "linux-x86_64"; sha256 = "047897075676154b56134389adc81bc3192e0b61206914aaab9fc744572eb895"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "f91ef1bb954412ad75ae1a17bddc080897f70994a20cca3647ee2e7814f076af"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "87114eaf80a0b9666db5aec0ac13467a1104267436c6c73ee8d6e4b89e799e5d"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "29be9c6dcea74c18f668d6b3535cf8fb642115c2f9f5d41cc136b26fc914e301"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "93af78e3a309a381e352acaa2ebf218c99f858d3fd9ddc40ed15b032745a4ac6"; } + { locale = "ach"; arch = "linux-i686"; sha256 = "77cd7332ecebd3e51cb45896d61494e95e57707dcc1393af00695f8232274c17"; } + { locale = "ach"; arch = "linux-x86_64"; sha256 = "792d25a8d536d32dc89b655f5e3961b704fa27618395d3ae637180242eae2b71"; } + { locale = "af"; arch = "linux-i686"; sha256 = "fe211798f211a316a5ecf5a5c4dd61389e448b45166c681f886fa1e97bff4734"; } + { locale = "af"; arch = "linux-x86_64"; sha256 = "7a6e077c0702e7c832a9b9c5f35a70f19dd4c0c9f910a8a254fe165a5f3d8331"; } + { locale = "an"; arch = "linux-i686"; sha256 = "a01769decb90c7235f2cffcb6eaa135ba0a838e182f8398e12ff664e8be500c0"; } + { locale = "an"; arch = "linux-x86_64"; sha256 = "8e4b243cca233a6f00b07ccb5ac2330edc5de590d2d6b787d753e965fd6e777c"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "e572f980f5d28b994b930d3a5665e92f8ab5c149a19a99132bf93cdf2bf75fbc"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "b42f56de042899d67461fab43d41f9b23817e879df23cd0c4be748b701a8d5da"; } + { locale = "as"; arch = "linux-i686"; sha256 = "652919614ebd2775d3a13706ffb09959655f9bb12f0a120698c1deec6c244554"; } + { locale = "as"; arch = "linux-x86_64"; sha256 = "62793f511b7a4244beca42d5dbb235df8431f7156a09fc4c1227cfaf19fe8885"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "e6a8ab24ef5585cc5204b5150066c8e96fb30c15b89a7c885fb8def445f2734f"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "e8c286528d5149c58bbae4a75b2d95c408e81de85cfe68e431d97f51c19ec0b0"; } + { locale = "az"; arch = "linux-i686"; sha256 = "829728affcb12321102bee38eb5b0e428d9a9d910a69bb299e77452c5bca6f02"; } + { locale = "az"; arch = "linux-x86_64"; sha256 = "aed06f78b55620e2632a9fcb4cbbf36f34ad1510ab7df2dc3de94c8c57f79263"; } + { locale = "be"; arch = "linux-i686"; sha256 = "257afd489537fa53ae84daf819a859a62757122d824d501d95c5010235c345e1"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "7021ac97b762b7d17a498c86c52551056b0cc388a8e10e81e034b845e05f0925"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "a2c74efe9233c4b3bf1a6b9beee417b869ef129e6b60a3078e9528a84d354149"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "a492710cc54c9bc6e406d558063bd16158059fe2e87bf172405b3c6ea38eb391"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "465bad32dc16f8ddb669d032a217ca5863410384b40a86b81290f85b2fc85811"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "063b1642e0ea6ac8b07baa3969698337bfc3a96db724b7a32a668c2e4cf516f1"; } + { locale = "bn-IN"; arch = "linux-i686"; sha256 = "cebcf89bafe0cb88e1d725bf4b4caf72f845a6abd7d5c0ff9b9ed02c99eba686"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "85b51db611b917d3ffddc6b1bf39405eadb69d64473731780fb21f4db42a94af"; } + { locale = "br"; arch = "linux-i686"; sha256 = "997ae06800cf75ec62084db0f453caebe9e6ef0cc43abaf14a623785ca365a2e"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "4455965e809900bb42595c7c05365ec1d26b7508c9d7ca24ac636be4b6583147"; } + { locale = "bs"; arch = "linux-i686"; sha256 = "0e88abaa021e9e435e41baf59590e4d2ee7c3ec442b01620297671f4c4fa023e"; } + { locale = "bs"; arch = "linux-x86_64"; sha256 = "229ad924b0c72823e7599f8a53df0c1fe46fc4d9972e18a32caa78bbd7f72dec"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "5f03a177cd4ea81732329f7ee62494ad25f79e65f12ad4e0cb244aaa95c66e0a"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "67f29e97d323fa8ccf1e14f1638beeecf5489701a13509cd824b61e6c64e0b96"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "100c1ce1bcdbfc9b4a6f3e576e71ca9cbc771ac7d28d916fbfbbf40c7e37a42c"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "178373db4c0ca4edd6150595529d62fa38912a71ab0d6122fe8ba2ee5947f7dd"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "fbdf1b10f6f07c21669a5d515e9c14b3ad8b2a606e2bb997cb75df4928021f48"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "7444923521bf421fe60c721fa16b6005f40a108813e547ef32c0c1263d687630"; } + { locale = "da"; arch = "linux-i686"; sha256 = "4277aa0783b92e5a101ef52ea191347fb873700f8366d06480dc2445fe7c391e"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "9300787407ca226bf1ac9a25f8f4e9428793c032ca102c65b1841a12ebb508b6"; } + { locale = "de"; arch = "linux-i686"; sha256 = "ceaef87cf7553368a919396c3c303033fe6e1bb23477549ff25d2426473127e6"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "55b7296fa2643d7caee38fa0e282959cd0160fb7f8a89bca11085d6bba40a679"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "7b92682d19f457d162c537bea71f9c026b36cefdda440f2a1ea489f44fc57f63"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "be235c2af381500a5cbc4f0c400106a31b00a49fcf19d2a981f5ee7221f7617e"; } + { locale = "el"; arch = "linux-i686"; sha256 = "832c7f65d97795a284e93bec61c14ffcffaf74fa3fc844f1ae896058f0409e72"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "4758c97ab627cd7818f4a38febca52c11084e2c8e0ee2d05f70a6e1f2b67661f"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "02b926d46100116ab7bab27ecbfa60ded6674d5d687f76412443a52e5fdb4283"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "98d83b9434d948d7fbc24708363d1c8e8d37551711994c7b8448f6e924f49be7"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "a8530e2b5d5c16c1afef6759a9015e83767271046537a050442fd6c457986746"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "ea797acf50c2efb39968773864aeac0bd17dc3a1dc726b3ff95780aec01ea669"; } + { locale = "en-ZA"; arch = "linux-i686"; sha256 = "4baa2cc65dd053e226f4391a975c162c8c709f31f82c31d7707ab168f8c249c2"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "93ddb0c696131e9a7a258fc44eed88d5aecac50f101106211e69220e602c949a"; } + { locale = "eo"; arch = "linux-i686"; sha256 = "eabb1fad074ccc3887fb56eda2d71f51af3aa22541d310f0c25ddab0a52ba7a8"; } + { locale = "eo"; arch = "linux-x86_64"; sha256 = "280f9010cad2583eaca8892cbb2600e3b98d77181ef30f5cf233951e26414df9"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "82741dd5a2bdb7541d931ed8606ec483f44b0d6416a3f4d9b3fa1c1e57cd3390"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "10499b8c57d6d6c8976e80e5b50c278846c45d408a2ead66328c780cb5a40ed2"; } + { locale = "es-CL"; arch = "linux-i686"; sha256 = "e5879a71124b429250f6bea231f0411e80c28718a7cecdd7713e9512d21c22f6"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "177b19854746c70fbe1243db51b22e3a96e660def60763d79a340b08c7537d6d"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "b1f2baa7fdeb2a670289fdbea089084f01171c1a5295142aff38a36efe7c4f3f"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "231e9d0d9588732d4aa440e7d56eaa4d6a94457b0805802643c4ab6b5be46087"; } + { locale = "es-MX"; arch = "linux-i686"; sha256 = "917e235734993f4a121eb01fd91cf1788b018f52477116b1848a2faebdf6c4d0"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "de6ec93363ae0f814737bb63ff17d5beb2e756d5990ca15f7dca445bfcf83331"; } + { locale = "et"; arch = "linux-i686"; sha256 = "dacfc817b23972d066a89c2430d0e4ae450fa7c05cc148c726e0a739aa248dcc"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "e114477a85c27f199e807b203c78c148b9b594d3dcf8fefa08bb6b15c1b60deb"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "0fba5ce5724309e251cc010b5bdff861b21934fe21ce810c11bc8f25ef6f2854"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "d43fa45c2e78c112a2dfc00e5486dad0150aca3d14ea87e6184392a394ca0e0a"; } + { locale = "fa"; arch = "linux-i686"; sha256 = "fb37966eca9e8077b96187b73925e3ff9d2725954db4ce6a9dcf8fe7004d1213"; } + { locale = "fa"; arch = "linux-x86_64"; sha256 = "46e103d2bbaf66e123a2f178b29c20fc7e87dec3cd1ef4cf7edbee379104774a"; } + { locale = "ff"; arch = "linux-i686"; sha256 = "46658e4701c21276a2731efa1c64783dce29fd3cfca35edebb36dd094f826280"; } + { locale = "ff"; arch = "linux-x86_64"; sha256 = "aae29a8ab6a2245536a7828dc688973589d46c32f60e3e08424d417b2fdca1ce"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "45c19f14327a5ec2a6ca64e9126467d88ff43995e98a9954a3b50b5440a2cc46"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "2ea74f89de5af4ffdcc27746a524114f5160ddc38d041a344367c85856830c7e"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "05b2998f27e59ef1a771deceef92888995503b220b4bd6e60bf62d5bf5bb3b91"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "8b39731c52323fda138e82a6152cefa5f90bed9b3997415feb508498faa96c34"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "b51c3801e852f6ded7f5cc166dba95398e14a316103e34dab71b7bb82260880f"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "44f8629a19a48748b10246df108b2dfb3b685b261462a925c64c337649ee6b55"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "62d5eda1223150bb402ab56a5bd106e5b5e95229b5f4f7542d786d7d6b4e55d0"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "8b1329faf13cd75e960f5958c98002ef486cbd76d8429e800b8930707d23bbc4"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "6f572140ee8ff1a299613c6f459a7de0097519f04fb4094bfd9736fb13bd9d58"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "4d03d82c86cf1e574264786ff2cf6d70201d0ec657ab729530ae90303a160fdc"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "f0f1ab79f93a5467f097b7c5c4ac20847c1029b975ea2bd40b772a9a6ae8c759"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "093cad0eac9c3f399a24ed5cc954f520a997562e05920cb833b44f19dfe35807"; } + { locale = "gu-IN"; arch = "linux-i686"; sha256 = "1ab234f32b8fbedbcf80965661f0db0245826e965d6f6266a329723ea2f5a19f"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "d10681ce58b2b2ff00b0219b0807707efb4005dcb1bb7d63ce4c297d2c6f6213"; } + { locale = "he"; arch = "linux-i686"; sha256 = "10f8c4ce42dc5a74754bc18d1f2883eee7c02884900435f432be01a7fdb4b8ed"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "9bc878bc21c03717f75f6a24ba604f7822dc2872afe02a00d01fefec593679d0"; } + { locale = "hi-IN"; arch = "linux-i686"; sha256 = "e5cf142f1aedbaee1044ef07e2ab78f9a11658d11544dd4a0f2d5a756862e8ba"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "adea7b2dffbd2b354c1fbb395c661ddf433e65ba2ea0e121e3275ecc0d691df4"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "12152b2510a30b0961715af872c93f16e178d9251b76e69e036f48576795fff9"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "37013843d5ec1056139cfd54d12c490314cf22cd0cef54dd95540baeeee6230c"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "5f9cda6b0a8a86bf22697d05625abb0b12776a5dd28e696ccece9a2eb5147bc6"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "d927c16ad103a0b2c2fa701e474d68b89cf45813b94714d1fed82140ae699d66"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "26522239478dad6fc04c06cf1a4e13998cdc69dd026afe127f5c62cf40114332"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "3742d3f582d5229e58fe918d022b8bd55e856957b95f7d75aed4aefa2983713f"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "d847834c540d40344678d20e4c0a9f30cb3af3b28e0147da9905522c1e43d553"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "672bb8abca09194ffcf402ac89296c31d46c5dd10cec7d98e7588faf98112d15"; } + { locale = "id"; arch = "linux-i686"; sha256 = "d6388edc053ffd8d1c8b96d09edacec503109f33b42ba89a3a35fee8593e1b58"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "7968be1865b6381f970e514f1f9268bd41cfda5b8e5695544dd93627ec0c8124"; } + { locale = "is"; arch = "linux-i686"; sha256 = "7239ce4db17389e1717a63827faad3ef4957ef496f2f7b4d7e1e9fc96aa864cd"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "babbec58f631050242183926f0956a3c5ff2a064a8aafdc2d1bdd945b0c353ad"; } + { locale = "it"; arch = "linux-i686"; sha256 = "75b5f2fa097819a5de8450422b368f0b2bd4fb8e5ff67b60abc9a014939113f5"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "63737299f29d8f52f9ef00e43160ecc3c8a9046c050e6b78c651079750853505"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "6ee7bc9487d9ac5d121a706920e8efaabe9bdc5bb7527f02f38fe27771aa1042"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "f9add10fe74ad4b1fb42618a93f686ae3929e862b24248eed7abb3ab8129808d"; } + { locale = "kk"; arch = "linux-i686"; sha256 = "8e10163a29fd333f31bbfa57ad92f2b3cfedec23726779cafa567de80e217548"; } + { locale = "kk"; arch = "linux-x86_64"; sha256 = "b20fcb23b481ad30089bf94b704847ae8deae3841c3d032b39d3ec43eef0eda5"; } + { locale = "km"; arch = "linux-i686"; sha256 = "6df67080e6e2b8236432bdf7d215b674ef2d534c63dcabeb3a894966e4e8866f"; } + { locale = "km"; arch = "linux-x86_64"; sha256 = "983571f48d4517f25e22a0c828240bd00e8cdf5f643c7ad0b094b2a73d7cd2f5"; } + { locale = "kn"; arch = "linux-i686"; sha256 = "27e20cc9794805763539683407d3e40a02b8cc77ea7e4ec6d63a73bad36d6a74"; } + { locale = "kn"; arch = "linux-x86_64"; sha256 = "6d4733730e57ea4aac60e0fb55b8db00c41d9848f1b9b28811cbada781b557d8"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "81cc34afd043bebd79760ec759eb47b5ac32374ee1e3698327a3520d51f308b8"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "2401953e6f1fdf8a7b5c3bf01c9ae7b0873697f8519ac8c27495053e1a23990c"; } + { locale = "lij"; arch = "linux-i686"; sha256 = "3d3917d0fad2cea34325d95e21208f7bc33a5f8823b633c5c4c3e38979f0e4d4"; } + { locale = "lij"; arch = "linux-x86_64"; sha256 = "85e8b23f22a5349a649f892b5134ece615ba2832257cdbeebe4d44900d140070"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "4ac4805e59b4a9546b5a035d5599be3bb828d06f53ceaef1a38d7e906da40030"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "b9f0ae9691e2c956a7e7227552d86624a03e99258caab7a4fa8a028f28a50551"; } + { locale = "lv"; arch = "linux-i686"; sha256 = "552e9bd5a00373135a165bbf05d2edfbc6ee6708b0b6e2ff71c7762d44baa303"; } + { locale = "lv"; arch = "linux-x86_64"; sha256 = "7591d8edf125a3c98383b2fdcb84016659ada7314cf15390401183641fffbe2a"; } + { locale = "mai"; arch = "linux-i686"; sha256 = "c25de9a04ae447b39c1ba33e0e1ab56a1e085a2fc6d0bffe4d47f3c2e6353587"; } + { locale = "mai"; arch = "linux-x86_64"; sha256 = "b8bd88d4e472f12518e848900947fea0070dd6acba698fe7330a0aec0e2241c4"; } + { locale = "mk"; arch = "linux-i686"; sha256 = "baa001a2118908ec106717260b6aa8e8a66372f72a6424c4ec77545ddfc586c5"; } + { locale = "mk"; arch = "linux-x86_64"; sha256 = "cbb8e8c9184ae617809603c0ab0704d0271d7bc5a84b0d7697dd5ab980a1108e"; } + { locale = "ml"; arch = "linux-i686"; sha256 = "5defd3a75c2f7858335b5bd2f5d46e555e237af7be3cb671f324a107fecc04dc"; } + { locale = "ml"; arch = "linux-x86_64"; sha256 = "bc5dadffe98a2fb127fa0a83442880359123630e944516410b48a923659f0f70"; } + { locale = "mr"; arch = "linux-i686"; sha256 = "fa324f6e164be65b94e5d9dd56f52dfed744f71403d06e1ee6db6d653fa9c56e"; } + { locale = "mr"; arch = "linux-x86_64"; sha256 = "e52a794c144c062925e310d2aae725152e70b2c1c61657772ae639f2a36bf656"; } + { locale = "ms"; arch = "linux-i686"; sha256 = "a27bf493efba61fc01f2c64308338e510671708895567af4b209fa3bc41718da"; } + { locale = "ms"; arch = "linux-x86_64"; sha256 = "da349192ee2a36ed48e3ae8ff4d1acea55877544c77a2b07dd2f017ce4f6e1b7"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "37245f0291b519b436b1b862299960a7961bfb496ca18c247cc5014ccddf9427"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "02c93155e20775db45d05cd46a8b28e2e88c2a20dc4c847ca0ac4844691c4a2a"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "c449d3b9b9b1aa3e438e7380f7c9c89c3d91f207f798a7a5dea11ea05371caa5"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "15ccabff42c778fdff18757bfca234e0bf1bde589b76c7fb950783437cd9c0b8"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "1ec5fea33f0a150c1039386ebefef81acb004142ca4d18023d6e86852969cffb"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "3a8d31dd02895a7113ed3eb4cc004b2748c39badff206f69f2f9fe0aceb1b013"; } + { locale = "or"; arch = "linux-i686"; sha256 = "fa93ce73fa59876f7beb0f48e484dd4561a4d4c2c187d8c896f5e1e5f9306342"; } + { locale = "or"; arch = "linux-x86_64"; sha256 = "bd3cdf10fce0ac75bfa2e5fac591b09c8351a3ae2f2018e45546e77d85c384f5"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "5f2917636c1b193b3b7136bf6444a0924f693916f981456965cb452d58812400"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "a8f440c37462a4712df9cd274fd939a4c5bd1a5e4d38435499f598be36b18e1a"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "757cc7c6d9e6cfd701b0a84cce6973f356b0f16781ba80ad92b66c5bc8389d65"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "45702d113636970e97222bb7ff48f8e54e16912e39f9c576a17b1ee3fd2530a0"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "241ba56480c8e7a983e26fa8382c3a5f177d31858fd4453b6ba42578d1d0c9ef"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "90f03fbbe12256824024050698e231c3093630ebd09be56e372d4f76e89b55b2"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "af2e770bd86a2d683883ce9e28be32837be55c3e705430dd5b60d6684154969f"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "dbaefe62b8285931e1a09b70f6082c7c52404117d0ee92a343250b419a2399e3"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "b559d1ffb96587ecf335b6cefcd8f4155161780f6121d19f244d59b051f2145f"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "247029e16aa38a83aec68e7269a93a1ee6f6cb9846aca97fd4a2c44a22ff2b64"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "d3555d64bb64958c577af8ffd958eebaec8cba00a9755b2005bf480527fa52cf"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "e81aeb9737cfece9ae9e886fcf32a85aea943ef4211af8a4fee46cca8b9c9027"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "ab93abbabb9f0d605cc8a0775d3a25e383e5d16c19eda2c5d88fbb7353f4983e"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "304c4eec5ddb2416b71fec38bb2eb0bb9260a9746bccc4c31b9ebf97351d09fb"; } + { locale = "si"; arch = "linux-i686"; sha256 = "4f946959e40dfff8fa83654c733e3c7dc5cd4bfe2d166d454a1f9c98cf3a7d65"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "e06e5d2ea19ea5f4e8db666a53c1854f7861a06f53d2bfac8bc3c128bddc9f87"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "10aa224b3e7eac73f196d4c8ef836b903938c326ee86024f56847afb667cad35"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "376e803c1626a6cd47f1627c4d735fba422e48385bfb5333b58a52115ce13ae8"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "fb15fc51459c916a9c9c6e3969dedd873fdd89d7864d17d6cbedb29e905b6749"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "ae545eae7e637aff1825913b454eb9be87321a1fd6d9777c6aea33aa4159f629"; } + { locale = "son"; arch = "linux-i686"; sha256 = "9df97e243e34df135c91476a4bfb632e0a1e0935afc643f142b1536d0f6c3c1a"; } + { locale = "son"; arch = "linux-x86_64"; sha256 = "f8f0ba26226d12bc5896d67fb52e4f5166f307dcc1ea4a09faf11a3a57bdefa4"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "0478e708713d8a8d966442d26f02654945e8b888213e1df017b09de066ddbeb0"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "516a655ac44e81f530673aecfd3ce2d50487b79e00a89ad196ba8772bd87eb3b"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "777d1582a745eaa1134282cf9b299fabf1eaabfefa045701fdf5ccc33ea7f439"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "2675e68d168baa851bd8c7b320818add6135ac96f938ef9039807286c82d9321"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "a2af1b6c6f2a054176e2ae19d4a8d1ff659fdf25fbb6dda1ae01fe1d3e20fce6"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "dc8ed365766fe29849f3840d05516be2c68018b3165a2a83bce4c4f1fff63a9e"; } + { locale = "ta"; arch = "linux-i686"; sha256 = "d24f0fe9ee72cb88a214873a49d7734b9a0e78fbcf39baaa5bf72a50aea34ff7"; } + { locale = "ta"; arch = "linux-x86_64"; sha256 = "5a88e39ccad7f3aca46d5f0558194b13c33e557c58c24683eadd4484566be219"; } + { locale = "te"; arch = "linux-i686"; sha256 = "78b61877ba4b89b9a7d2198d59c3331b2e697f8bf9c55a3e6e734cb3f4e3df91"; } + { locale = "te"; arch = "linux-x86_64"; sha256 = "693e5253f4564ae69a21a25e18fbbf5902e2e5e39b388d1cc30e35f9a49029c4"; } + { locale = "th"; arch = "linux-i686"; sha256 = "372f36a5ea8fe5b92c2aa1ec7fcde80ca0bd006cdc220b14d1175eeb11fb7679"; } + { locale = "th"; arch = "linux-x86_64"; sha256 = "03b1f0037809b14f7e2daafa7dd43471ed914e445fdf4d12c5bba50c4b66e0aa"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "d030908f9ed247e93a4417d48ef3b4ab136dd5325d5a7e8894f186a6a5179a3f"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "9e15c843feff5d071a4a8e3be64cb2faba9021846c7d5bfe13f206ce91300eb9"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "1b377aec5af5af4021b5385f2a46198d181d1c4d8994b2a1a4108bf9cacdcac3"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "0b158a684610ca92d95868605f18dd61040e0bab820ef7e858505d04d8b5685f"; } + { locale = "uz"; arch = "linux-i686"; sha256 = "8d905bac16fd022354aa54743ae12afabc6f823609586f9ca12ea6b9717ef9e7"; } + { locale = "uz"; arch = "linux-x86_64"; sha256 = "e22740daf104694323437ae5885aaba67fb7392719c0872ba6f07e2ea73557c1"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "372904386e107a595179b6a0f6bed84e7f986878e054c7e052c3e0378b2a9b2e"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "9c6e2f5cfec7d468dbbf3bda667b00865fec1f10d90a0ba9971ca4c33e8e87b9"; } + { locale = "xh"; arch = "linux-i686"; sha256 = "b056ba0741f09be1d2d2e7980ecc17e813c587080328959e7f4362409fabac3e"; } + { locale = "xh"; arch = "linux-x86_64"; sha256 = "075effe19f422430948c0a90255ba26bcbf0a4b21153652c1d582ab626eb6be6"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "e3e8b0e0bba1a9a583cb0f82e24d3898f453a9fc478f119ca15f9a8c280dc1e8"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "92236719b5553aad48215b51d13173f7c2673afc4f05d16d92d74a102efa8a22"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "7400fe4f31e95472ca7ddaf2fc0ededa7b8fe709d32674a264639bd065885aaf"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "7f5dd7597600175f7d049d99558c44910ca5a3d07b4ee1140d1ad7e5fb4e6c16"; } ]; } From 6f32a29f54475da745db9208a4a349c39c7afe03 Mon Sep 17 00:00:00 2001 From: Eduard-Mihai Burtescu Date: Sun, 20 Dec 2015 15:27:31 +0200 Subject: [PATCH 159/289] fira-code 0.6 -> 1.100 --- pkgs/data/fonts/fira-code/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/data/fonts/fira-code/default.nix b/pkgs/data/fonts/fira-code/default.nix index 1ed63f7ac9e..02db24203b7 100644 --- a/pkgs/data/fonts/fira-code/default.nix +++ b/pkgs/data/fonts/fira-code/default.nix @@ -1,19 +1,21 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, unzip }: stdenv.mkDerivation rec { name = "fira-code-${version}"; - version = "0.6"; + version = "1.100"; src = fetchurl { - url = "https://github.com/tonsky/FiraCode/releases/download/${version}/FiraCode-Regular.otf"; - sha256 = "1blalxnmrxqlm5i74jhm8j29n0zsnmqi3gppxa9szjzv4x2k5s0a"; + url = "https://github.com/tonsky/FiraCode/releases/download/${version}/FiraCode_${version}.zip"; + sha256 = "1fprryfy8b79ncya1jzbzbxs75kvr1zwinflr8sl3d2m1r5kl03x"; }; - phases = [ "installPhase" ]; + buildInputs = [ unzip ]; + phases = [ "unpackPhase" "installPhase" ]; + sourceRoot = "."; installPhase = '' mkdir -p $out/share/fonts/opentype - cp -v $src $out/share/fonts/opentype/FiraCode-Regular.otf + cp -r *.otf $out/share/fonts/opentype ''; meta = with stdenv.lib; { From 664a64ef132ccd7781d5a16f1d8d551ea077e940 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 17:29:30 -0600 Subject: [PATCH 160/289] grantlee: Qt 5 infrastructure update --- .../libraries/grantlee/5.x-old.nix | 32 ------------------- pkgs/top-level/all-packages.nix | 3 +- 2 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 pkgs/development/libraries/grantlee/5.x-old.nix diff --git a/pkgs/development/libraries/grantlee/5.x-old.nix b/pkgs/development/libraries/grantlee/5.x-old.nix deleted file mode 100644 index 4127280fb9a..00000000000 --- a/pkgs/development/libraries/grantlee/5.x-old.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ stdenv, fetchurl, qt5, cmake }: - -stdenv.mkDerivation rec { - name = "grantlee-5.0.0"; - -# Upstream download server has country code firewall, so I made a mirror. - src = fetchurl { - urls = [ - "http://downloads.grantlee.org/${name}.tar.gz" - "http://www.loegria.net/grantlee/${name}.tar.gz" - ]; - sha256 = "0qdifp1sg87j3869xva5ai2d6d5ph7z4b85wv1fypf2k5sljpwpa"; - }; - - buildInputs = [ cmake qt5.base qt5.script ]; - - meta = { - description = "Qt5 port of Django template system"; - longDescription = '' - Grantlee is a plugin based String Template system written using the Qt - framework. The goals of the project are to make it easier for application - developers to separate the structure of documents from the data they - contain, opening the door for theming. - - The syntax is intended to follow the syntax of the Django template system, - and the design of Django is reused in Grantlee.''; - - homepage = http://gitorious.org/grantlee; - maintainers = [ stdenv.lib.maintainers.urkud ]; - inherit (qt5.base.meta) platforms; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 342f35a5581..4faf28518eb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6638,8 +6638,6 @@ let grantlee = callPackage ../development/libraries/grantlee { }; - grantlee5 = callPackage ../development/libraries/grantlee/5.x-old.nix { }; - gsasl = callPackage ../development/libraries/gsasl { }; gsl = callPackage ../development/libraries/gsl { }; @@ -15815,6 +15813,7 @@ aliases = with self; rec { exfat-utils = exfat; # 2015-09-11 firefoxWrapper = firefox-wrapper; fuse_exfat = exfat; # 2015-09-11 + grantlee5 = qt5.grantlee; # added 2015-12-19 htmlTidy = html-tidy; # added 2014-12-06 inherit (haskell.compiler) jhc uhc; # 2015-05-15 inotifyTools = inotify-tools; From 2a8b6959cccea20806793f88b9fc7c7c230c2dc0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 17:38:39 -0600 Subject: [PATCH 161/289] libdbusmenu-qt: Qt 5 infrastructure update --- .../libraries/libdbusmenu-qt/qt-5.4.nix | 23 ------------------- pkgs/top-level/all-packages.nix | 3 +-- 2 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix diff --git a/pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix b/pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix deleted file mode 100644 index 5f76162453c..00000000000 --- a/pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ stdenv, fetchbzr, qt5, cmake }: - -stdenv.mkDerivation { - name = "libdbusmenu-qt-0.9.3+14"; - - src = fetchbzr { - url = "http://bazaar.launchpad.net/~dbusmenu-team/libdbusmenu-qt/trunk"; - rev = "ps-jenkins@lists.canonical.com-20140619090718-mppiiax5atpnb8i2"; - sha256 = "1dbhaljyivbv3wc184zpjfjmn24zb6aj72wgg1gg1xl5f783issd"; - }; - - buildInputs = [ qt5.base ]; - nativeBuildInputs = [ cmake ]; - - cmakeFlags = "-DWITH_DOC=OFF"; - - meta = with stdenv.lib; { - homepage = "http://launchpad.net/libdbusmenu-qt"; - description = "Provides a Qt implementation of the DBusMenu spec"; - maintainers = [ maintainers.ttuegel ]; - inherit (qt5.base.meta) platforms; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4faf28518eb..e55121ea39e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7026,8 +7026,6 @@ let libdbusmenu_qt = callPackage ../development/libraries/libdbusmenu-qt { }; - libdbusmenu_qt5 = callPackage ../development/libraries/libdbusmenu-qt/qt-5.4.nix { }; - libdc1394 = callPackage ../development/libraries/libdc1394 { inherit (darwin.apple_sdk.frameworks) CoreServices; }; @@ -15818,6 +15816,7 @@ aliases = with self; rec { inherit (haskell.compiler) jhc uhc; # 2015-05-15 inotifyTools = inotify-tools; jquery_ui = jquery-ui; # added 2014-09-07 + libdbusmenu_qt5 = qt5.libdbusmenu; # added 2015-12-19 libtidy = html-tidy; # added 2014-12-21 lttngTools = lttng-tools; # added 2014-07-31 lttngUst = lttng-ust; # added 2014-07-31 From fef302e3e4d918e54bea423c6b42ab91c137ca01 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 17:47:49 -0600 Subject: [PATCH 162/289] accounts-qt: Qt infrastructure update --- .../development/libraries/accounts-qt/old.nix | 27 ------------------- pkgs/top-level/all-packages.nix | 3 +-- 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 pkgs/development/libraries/accounts-qt/old.nix diff --git a/pkgs/development/libraries/accounts-qt/old.nix b/pkgs/development/libraries/accounts-qt/old.nix deleted file mode 100644 index 26a04362090..00000000000 --- a/pkgs/development/libraries/accounts-qt/old.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qt5 }: - -let version = "1.13"; in -stdenv.mkDerivation { - name = "accounts-qt-${version}"; - - src = fetchFromGitLab { - sha256 = "1gpkgw05dwsf2wk5cy3skgss3kw6mqh7iv3fadrxqxfc1za1xmyl"; - rev = version; - repo = "libaccounts-qt"; - owner = "accounts-sso"; - }; - - meta = with stdenv.lib; { - description = "Qt library for accessing the online accounts database"; - homepage = "http://code.google.com/p/accounts-sso/"; - license = licenses.lgpl21; - maintainers = with maintainers; [ nckx ]; - }; - - buildInputs = [ glib libaccounts-glib qt5.base ]; - nativeBuildInputs = [ doxygen pkgconfig ]; - - configurePhase = '' - qmake PREFIX=$out LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake - ''; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e55121ea39e..07cf2a1194d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6047,8 +6047,6 @@ let accountsservice = callPackage ../development/libraries/accountsservice { }; - accounts-qt = callPackage ../development/libraries/accounts-qt/old.nix {}; - acl = callPackage ../development/libraries/acl { }; activemq = callPackage ../development/libraries/apache-activemq { }; @@ -15798,6 +15796,7 @@ let ### Deprecated aliases - for backward compatibility aliases = with self; rec { + accounts-qt = qt5.accounts-qt; # added 2015-12-19 adobeReader = adobe-reader; arduino_core = arduino-core; # added 2015-02-04 asciidocFull = asciidoc-full; # added 2014-06-22 From c1841675f378b3d5a4100d3af5032547ca8713c0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 18:31:25 -0600 Subject: [PATCH 163/289] antimicro: Qt 5 infrastructure update --- pkgs/tools/misc/antimicro/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/antimicro/default.nix b/pkgs/tools/misc/antimicro/default.nix index a2eed913930..1d7984ac11d 100644 --- a/pkgs/tools/misc/antimicro/default.nix +++ b/pkgs/tools/misc/antimicro/default.nix @@ -1,4 +1,4 @@ -{ stdenv, cmake, pkgconfig, SDL2, qt5, xorg, fetchzip }: +{ stdenv, cmake, pkgconfig, SDL2, qtbase, qttools, xorg, fetchzip }: stdenv.mkDerivation rec { name = "antimicro-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ - cmake pkgconfig SDL2 qt5.base qt5.tools xorg.libXtst + cmake pkgconfig SDL2 qtbase qttools xorg.libXtst ]; meta = with stdenv.lib; { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 07cf2a1194d..824c710fb2c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15252,7 +15252,7 @@ let ### MISC - antimicro = callPackage ../tools/misc/antimicro { }; + antimicro = qt5.callPackage ../tools/misc/antimicro { }; atari800 = callPackage ../misc/emulators/atari800 { }; From 7450865827821efbd33a35f16bcdfb8aafd34d27 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 18:36:38 -0600 Subject: [PATCH 164/289] antimony: Qt 5 infrastructure update --- pkgs/applications/graphics/antimony/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/antimony/default.nix b/pkgs/applications/graphics/antimony/default.nix index 589d20cb126..5e8dfd93f30 100644 --- a/pkgs/applications/graphics/antimony/default.nix +++ b/pkgs/applications/graphics/antimony/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, libpng, python3, boost, mesa, qt5, ncurses }: +{ stdenv, fetchgit, libpng, python3, boost, mesa, qtbase, ncurses }: let gitRev = "745eca3a2d2657c495d5509e9083c884e021d09c"; @@ -19,7 +19,7 @@ in buildInputs = [ libpng python3 (boost.override { python = python3; }) - mesa qt5.base ncurses + mesa qtbase ncurses ]; configurePhase = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 824c710fb2c..f937ef729c9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11015,7 +11015,7 @@ let amsn = callPackage ../applications/networking/instant-messengers/amsn { }; - antimony = callPackage ../applications/graphics/antimony {}; + antimony = qt5.callPackage ../applications/graphics/antimony {}; antiword = callPackage ../applications/office/antiword {}; From f250a6e64ef1aa7fd4bb5e48cccc7df65293bbae Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 18:44:40 -0600 Subject: [PATCH 165/289] qt5: build env and full per version --- pkgs/development/libraries/qt-5/5.4/default.nix | 8 ++++++++ pkgs/development/libraries/qt-5/5.5/default.nix | 8 ++++++++ pkgs/development/libraries/qt-5/qt-env.nix | 6 ++---- pkgs/top-level/all-packages.nix | 8 ++------ 4 files changed, 20 insertions(+), 10 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.4/default.nix b/pkgs/development/libraries/qt-5/5.4/default.nix index 4bb24427b9f..9b1324d1137 100644 --- a/pkgs/development/libraries/qt-5/5.4/default.nix +++ b/pkgs/development/libraries/qt-5/5.4/default.nix @@ -101,6 +101,14 @@ let qtx11extras = callPackage ./qtx11extras.nix {}; qtxmlpatterns = callPackage ./qtxmlpatterns.nix {}; + env = callPackage ../qt-env.nix {}; + full = env "qt-${qtbase.version}" [ + qtconnectivity qtdeclarative qtdoc qtenginio qtgraphicaleffects qtimageformats + qtlocation qtmultimedia qtquick1 qtquickcontrols qtscript qtsensors qtserialport + qtsvg qttools qttranslations qtwebkit qtwebkit-examples qtwebsockets qtx11extras + qtxmlpatterns + ]; + makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; }; diff --git a/pkgs/development/libraries/qt-5/5.5/default.nix b/pkgs/development/libraries/qt-5/5.5/default.nix index 4bb24427b9f..9b1324d1137 100644 --- a/pkgs/development/libraries/qt-5/5.5/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/default.nix @@ -101,6 +101,14 @@ let qtx11extras = callPackage ./qtx11extras.nix {}; qtxmlpatterns = callPackage ./qtxmlpatterns.nix {}; + env = callPackage ../qt-env.nix {}; + full = env "qt-${qtbase.version}" [ + qtconnectivity qtdeclarative qtdoc qtenginio qtgraphicaleffects qtimageformats + qtlocation qtmultimedia qtquick1 qtquickcontrols qtscript qtsensors qtserialport + qtsvg qttools qttranslations qtwebkit qtwebkit-examples qtwebsockets qtx11extras + qtxmlpatterns + ]; + makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; }; diff --git a/pkgs/development/libraries/qt-5/qt-env.nix b/pkgs/development/libraries/qt-5/qt-env.nix index e6973015aca..11c6ac74d5f 100644 --- a/pkgs/development/libraries/qt-5/qt-env.nix +++ b/pkgs/development/libraries/qt-5/qt-env.nix @@ -1,8 +1,6 @@ -{ runCommand, lndir }: +{ runCommand, lndir, qtbase }: name: paths: -{ paths, qtbase }: - -runCommand "qt-env" { inherit paths qtbase; } '' +runCommand name { inherit paths qtbase; } '' mkdir -p "$out/bin" "$out/mkspecs" "$out/include" "$out/lib" "$out/share" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f937ef729c9..bd92967d79d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8205,12 +8205,8 @@ let qt55Libs = lib.makeScope qt55.newScope qt5LibsFun; qt5Libs = qt55Libs; - qtEnv = callPackage ../development/libraries/qt-5/qt-env.nix {}; - - qt5Full = appendToName "full" (qtEnv { - qtbase = qt5.base; - paths = lib.filter lib.isDerivation (lib.attrValues qt5); - }); + qtEnv = qt5.env; + qt5Full = qt5.full; qtcreator = callPackage ../development/qtcreator { qtLib = qt54; From 2dc00624437d186fd5c9e5ebea81382b2aeb0e2c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 18:45:56 -0600 Subject: [PATCH 166/289] telepathy: Qt 5 infrastructure update --- pkgs/top-level/all-packages.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bd92967d79d..ec1de864c9a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8504,8 +8504,6 @@ let telepathy_qt = callPackage ../development/libraries/telepathy/qt { qtbase = qt4; }; - telepathy_qt5 = telepathy_qt.override { qtbase = qt5.base; }; - tevent = callPackage ../development/libraries/tevent { python = python2; }; @@ -15826,6 +15824,7 @@ aliases = with self; rec { rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02 speedtest_cli = speedtest-cli; # added 2015-02-17 sqliteInteractive = sqlite-interactive; # added 2014-12-06 + telepathy_qt5 = qt5.telepathy; # added 2015-12-19 x11 = xlibsWrapper; # added 2015-09 xf86_video_nouveau = xorg.xf86videonouveau; # added 2015-09 xlibs = xorg; # added 2015-09 From 68ff859bf0affcc76de59adc27b804649e28c2ab Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 18:46:40 -0600 Subject: [PATCH 167/289] dropbox: Qt 5 infrastructure update --- pkgs/top-level/all-packages.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ec1de864c9a..c233bc2e1f9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13097,11 +13097,7 @@ let copy-com = callPackage ../applications/networking/copy-com { }; - dropbox = callPackage ../applications/networking/dropbox { - qtbase = qt5.base; - qtdeclarative = qt5.declarative; - qtwebkit = qt5.webkit; - }; + dropbox = qt5.callPackage ../applications/networking/dropbox { }; dropbox-cli = callPackage ../applications/networking/dropbox-cli { }; From 05dbd07cd14c50b5ad60ae0f060dd95767f87b1e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 18:48:09 -0600 Subject: [PATCH 168/289] pyqt5: Qt 5 infrastructure update --- pkgs/development/python-modules/pyqt/5.x.nix | 5 +++-- pkgs/top-level/python-packages.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix index bb1d91b3ca8..c2e5cb1a763 100644 --- a/pkgs/development/python-modules/pyqt/5.x.nix +++ b/pkgs/development/python-modules/pyqt/5.x.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, python, pkgconfig, qt5, sip, pythonDBus, lndir, makeWrapper }: +{ stdenv, fetchurl, python, pkgconfig, qtbase, qtsvg, qtwebkit, sip, pythonDBus +, lndir, makeWrapper }: let version = "5.4.2"; @@ -20,7 +21,7 @@ in stdenv.mkDerivation { buildInputs = [ python pkgconfig makeWrapper lndir - qt5.base qt5.svg qt5.webkit + qtbase qtsvg qtwebkit ]; propagatedBuildInputs = [ sip ]; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a952fb7c76b..112a7f0da86 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -166,7 +166,7 @@ in modules // { pyqt5 = callPackage ../development/python-modules/pyqt/5.x.nix { sip = self.sip_4_16; pythonDBus = self.dbus; - qt5 = pkgs.qt5; + inherit (pkgs.qt5) qtbase qtsvg qtwebkit; }; pyside = callPackage ../development/python-modules/pyside { }; From 26cf5db23ff64832a1e7fddebf9d525c71e16604 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 19:58:38 -0600 Subject: [PATCH 169/289] mlt: Qt 5 infrastructure update --- pkgs/development/libraries/mlt/qt-5.4.nix | 39 ------------------- .../libraries/mlt/{qt-5.5.nix => qt-5.nix} | 0 pkgs/top-level/all-packages.nix | 5 +-- 3 files changed, 2 insertions(+), 42 deletions(-) delete mode 100644 pkgs/development/libraries/mlt/qt-5.4.nix rename pkgs/development/libraries/mlt/{qt-5.5.nix => qt-5.nix} (100%) diff --git a/pkgs/development/libraries/mlt/qt-5.4.nix b/pkgs/development/libraries/mlt/qt-5.4.nix deleted file mode 100644 index 6f308a20fdc..00000000000 --- a/pkgs/development/libraries/mlt/qt-5.4.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ stdenv, fetchurl, SDL, ffmpeg, frei0r, libjack2, libdv, libsamplerate -, libvorbis, libxml2, makeWrapper, movit, pkgconfig, qt5, sox -}: - -stdenv.mkDerivation rec { - name = "mlt-${version}"; - version = "0.9.8"; - - src = fetchurl { - url = "https://github.com/mltframework/mlt/archive/v${version}.tar.gz"; - sha256 = "0x0hsb05i7g70dh3jll41qlvcylailfgsr0y1dpx7hyigynxc50j"; - }; - - buildInputs = [ - SDL ffmpeg frei0r libjack2 libdv libsamplerate libvorbis libxml2 - makeWrapper movit pkgconfig qt5.base qt5.svg sox - ]; - - # Mostly taken from: - # http://www.kdenlive.org/user-manual/downloading-and-installing-kdenlive/installing-source/installing-mlt-rendering-engine - configureFlags = [ - "--avformat-swscale" "--enable-gpl" "--enable-gpl" "--enable-gpl3" - "--enable-opengl" - ]; - - enableParallelBuilding = true; - - postInstall = '' - wrapProgram $out/bin/melt --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1 - ''; - - meta = with stdenv.lib; { - description = "Open source multimedia framework, designed for television broadcasting"; - homepage = http://www.mltframework.org/; - license = licenses.gpl3; - maintainers = [ maintainers.goibhniu ]; - platforms = platforms.linux; - }; -} diff --git a/pkgs/development/libraries/mlt/qt-5.5.nix b/pkgs/development/libraries/mlt/qt-5.nix similarity index 100% rename from pkgs/development/libraries/mlt/qt-5.5.nix rename to pkgs/development/libraries/mlt/qt-5.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c233bc2e1f9..7ceba860e84 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7812,8 +7812,6 @@ let qt = qt4; }; - mlt-qt5 = callPackage ../development/libraries/mlt/qt-5.4.nix { }; - movit = callPackage ../development/libraries/movit { }; mosquitto = callPackage ../servers/mqtt/mosquitto { }; @@ -8167,7 +8165,7 @@ let libkeyfinder = callPackage ../development/libraries/libkeyfinder { }; - mlt = callPackage ../development/libraries/mlt/qt-5.5.nix {}; + mlt = callPackage ../development/libraries/mlt/qt-5.nix {}; openbr = callPackage ../development/libraries/openbr { }; @@ -15809,6 +15807,7 @@ aliases = with self; rec { libtidy = html-tidy; # added 2014-12-21 lttngTools = lttng-tools; # added 2014-07-31 lttngUst = lttng-ust; # added 2014-07-31 + mlt-qt5 = qt5.mlt; # added 2015-12-19 nfsUtils = nfs-utils; # added 2014-12-06 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 From b8b14eda6963aaca56e9e40cd9f58629d0adf520 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:02:57 -0600 Subject: [PATCH 170/289] phonon-backend-gstreamer: Qt 5 infrastructure update --- .../phonon-backend-gstreamer/qt5/old.nix | 41 ------------------- pkgs/top-level/all-packages.nix | 3 +- 2 files changed, 1 insertion(+), 43 deletions(-) delete mode 100644 pkgs/development/libraries/phonon-backend-gstreamer/qt5/old.nix diff --git a/pkgs/development/libraries/phonon-backend-gstreamer/qt5/old.nix b/pkgs/development/libraries/phonon-backend-gstreamer/qt5/old.nix deleted file mode 100644 index d91808ec880..00000000000 --- a/pkgs/development/libraries/phonon-backend-gstreamer/qt5/old.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ stdenv, fetchurl, cmake, gst_all_1, phonon_qt5, pkgconfig, qt5, debug ? false }: - -with stdenv.lib; - -let - version = "4.8.2"; - pname = "phonon-backend-gstreamer"; -in - -stdenv.mkDerivation rec { - name = "${pname}-${version}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${version}/src/${name}.tar.xz"; - sha256 = "1q1ix6zsfnh6gfnpmwp67s376m7g7ahpjl1qp2fqakzb5cgzgq10"; - }; - - buildInputs = with gst_all_1; [ - gstreamer gst-plugins-base phonon_qt5 qt5.base - ]; - - NIX_CFLAGS_COMPILE = [ - # This flag should be picked up through pkgconfig, but it isn't. - "-I${gst_all_1.gstreamer}/lib/gstreamer-1.0/include" - ]; - - nativeBuildInputs = [ cmake pkgconfig ]; - - cmakeFlags = [ - "-DCMAKE_INSTALL_LIBDIR=lib" - "-DPHONON_BUILD_PHONON4QT5=ON" - ] - ++ optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = with stdenv.lib; { - homepage = http://phonon.kde.org/; - description = "GStreamer backend for Phonon"; - platforms = platforms.linux; - maintainer = with maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7ceba860e84..5692f10f021 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8034,8 +8034,6 @@ let phonon_qt5 = callPackage ../development/libraries/phonon/qt5/old.nix {}; - phonon_qt5_backend_gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5/old.nix {}; - physfs = callPackage ../development/libraries/physfs { }; pipelight = callPackage ../tools/misc/pipelight { @@ -15809,6 +15807,7 @@ aliases = with self; rec { lttngUst = lttng-ust; # added 2014-07-31 mlt-qt5 = qt5.mlt; # added 2015-12-19 nfsUtils = nfs-utils; # added 2014-12-06 + phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 From 36ea03660e2ec6ef8a4b321e97d278bda211cc93 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:05:19 -0600 Subject: [PATCH 171/289] qca-qt5: Qt 5 infrastructure update --- pkgs/development/libraries/qca-qt5/old.nix | 20 -------------------- pkgs/top-level/all-packages.nix | 3 +-- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 pkgs/development/libraries/qca-qt5/old.nix diff --git a/pkgs/development/libraries/qca-qt5/old.nix b/pkgs/development/libraries/qca-qt5/old.nix deleted file mode 100644 index a3e9e9be642..00000000000 --- a/pkgs/development/libraries/qca-qt5/old.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ stdenv, fetchurl, cmake, openssl, pkgconfig, qt5 }: - -stdenv.mkDerivation rec { - name = "qca-qt5-2.1.1"; - - src = fetchurl { - url = "http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz"; - sha256 = "10z9icq28fww4qbzwra8d9z55ywbv74qk68nhiqfrydm21wkxplm"; - }; - - buildInputs = [ openssl qt5.base ]; - nativeBuildInputs = [ cmake pkgconfig ]; - - meta = with stdenv.lib; { - description = "Qt 5 Cryptographic Architecture"; - homepage = http://delta.affinix.com/qca; - maintainers = with maintainers; [ ttuegel ]; - license = licenses.lgpl21Plus; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5692f10f021..77cc641a67a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8110,8 +8110,6 @@ let qca2 = callPackage ../development/libraries/qca2 { qt = qt4; }; - qca-qt5 = callPackage ../development/libraries/qca-qt5/old.nix { }; - qimageblitz = callPackage ../development/libraries/qimageblitz {}; qjson = callPackage ../development/libraries/qjson { }; @@ -15808,6 +15806,7 @@ aliases = with self; rec { mlt-qt5 = qt5.mlt; # added 2015-12-19 nfsUtils = nfs-utils; # added 2014-12-06 phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 + qca-qt5 = qt5.qca-qt5; # added 2015-12-19 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 From d7dff0057c0a8f86b1ba7f76a246a6ef825e3a27 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:06:31 -0600 Subject: [PATCH 172/289] signon: Qt 5 infrastructure update --- pkgs/development/libraries/signon/old.nix | 18 ------------------ pkgs/top-level/all-packages.nix | 3 +-- 2 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 pkgs/development/libraries/signon/old.nix diff --git a/pkgs/development/libraries/signon/old.nix b/pkgs/development/libraries/signon/old.nix deleted file mode 100644 index bf211c3b8a3..00000000000 --- a/pkgs/development/libraries/signon/old.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ stdenv, fetchurl, doxygen, qt5 }: - -stdenv.mkDerivation rec { - name = "signon-${version}"; - version = "8.57"; - src = fetchurl { - url = "https://gitlab.com/accounts-sso/signond/repository/archive.tar.gz?ref=${version}"; - sha256 = "1vqkxhmdjk3217k38l2s3wld8x7f4jrbbh6xbr036cn1r23ncni5"; - }; - - buildInputs = [ qt5.base ]; - nativeBuildInputs = [ doxygen ]; - - configurePhase = '' - qmake PREFIX=$out LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake/SignOnQt5 - ''; - -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 77cc641a67a..37da25438c8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8355,8 +8355,6 @@ let sfml = callPackage ../development/libraries/sfml { }; - signon = callPackage ../development/libraries/signon/old.nix {}; - skalibs = callPackage ../development/libraries/skalibs { }; slang = callPackage ../development/libraries/slang { }; @@ -15815,6 +15813,7 @@ aliases = with self; rec { rdiff_backup = rdiff-backup; # added 2014-11-23 rssglx = rss-glx; #added 2015-03-25 rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02 + signon = qt5.signon; # added 2015-12-19 speedtest_cli = speedtest-cli; # added 2015-02-17 sqliteInteractive = sqlite-interactive; # added 2014-12-06 telepathy_qt5 = qt5.telepathy; # added 2015-12-19 From 9a91200e9e6bc6592a6b086f635593cc409e0853 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:08:22 -0600 Subject: [PATCH 173/289] phonon: Qt 5 infrastructure update --- pkgs/development/libraries/phonon/qt5/old.nix | 36 ------------------- pkgs/top-level/all-packages.nix | 3 +- 2 files changed, 1 insertion(+), 38 deletions(-) delete mode 100644 pkgs/development/libraries/phonon/qt5/old.nix diff --git a/pkgs/development/libraries/phonon/qt5/old.nix b/pkgs/development/libraries/phonon/qt5/old.nix deleted file mode 100644 index 3dddd60b59f..00000000000 --- a/pkgs/development/libraries/phonon/qt5/old.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ stdenv, fetchurl, cmake, mesa, pkgconfig, libpulseaudio, qt5, debug ? false }: - -with stdenv.lib; - -let - v = "4.8.3"; -in - -stdenv.mkDerivation rec { - name = "phonon-${v}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${v}/src/phonon-${v}.tar.xz"; - sha256 = "05nshngk03ln90vsjz44dx8al576f4vd5fvhs1l0jmx13jb9q551"; - }; - - buildInputs = [ mesa qt5.base qt5.quick1 qt5.tools libpulseaudio ]; - - nativeBuildInputs = [ cmake pkgconfig ]; - - NIX_CFLAGS_COMPILE = "-fPIC"; - - cmakeFlags = [ - "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}" - "-DPHONON_BUILD_PHONON4QT5=ON" - "-DCMAKE_INSTALL_LIBDIR=lib" - ]; - - meta = { - homepage = http://phonon.kde.org/; - description = "Multimedia API for Qt"; - license = stdenv.lib.licenses.lgpl2; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 37da25438c8..358c0d14699 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8032,8 +8032,6 @@ let phonon_backend_vlc = callPackage ../development/libraries/phonon-backend-vlc/qt4 {}; - phonon_qt5 = callPackage ../development/libraries/phonon/qt5/old.nix {}; - physfs = callPackage ../development/libraries/physfs { }; pipelight = callPackage ../tools/misc/pipelight { @@ -15803,6 +15801,7 @@ aliases = with self; rec { lttngUst = lttng-ust; # added 2014-07-31 mlt-qt5 = qt5.mlt; # added 2015-12-19 nfsUtils = nfs-utils; # added 2014-12-06 + phonon_qt5 = qt5.phonon; # added 2015-12-19 phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 From ad9ece4f921af0e0bb3183887d64c121d9133207 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:09:59 -0600 Subject: [PATCH 174/289] qwt: Qt 5 infrastructure update --- pkgs/development/libraries/qwt/6.nix | 4 ++-- pkgs/top-level/all-packages.nix | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/qwt/6.nix b/pkgs/development/libraries/qwt/6.nix index 822b888843e..d4819d70bfc 100644 --- a/pkgs/development/libraries/qwt/6.nix +++ b/pkgs/development/libraries/qwt/6.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5 }: +{ stdenv, fetchurl, qtbase, qtsvg, qttools }: stdenv.mkDerivation rec { name = "qwt-6.1.2"; @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "031x4hz1jpbirv9k35rqb52bb9mf2w7qav89qv1yfw1r3n6z221b"; }; - propagatedBuildInputs = [ qt5.base qt5.svg qt5.tools ]; + propagatedBuildInputs = [ qtbase qtsvg qttools ]; postPatch = '' sed -e "s|QWT_INSTALL_PREFIX.*=.*|QWT_INSTALL_PREFIX = $out|g" -i qwtconfig.pri diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 358c0d14699..2d70a630308 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8183,6 +8183,8 @@ let qmltermwidget = callPackage ../development/libraries/qmltermwidget { }; + qwt = callPackage ../development/libraries/qwt/6.nix { }; + signon = callPackage ../development/libraries/signon { }; telepathy = callPackage ../development/libraries/telepathy/qt { }; @@ -8213,8 +8215,6 @@ let qwt = callPackage ../development/libraries/qwt {}; - qwt6 = callPackage ../development/libraries/qwt/6.nix { }; - qxt = callPackage ../development/libraries/qxt {}; rabbitmq-c = callPackage ../development/libraries/rabbitmq-c {}; @@ -15809,6 +15809,7 @@ aliases = with self; rec { quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 quassel_kf5 = kde5.quassel; # added 2015-09-30 quasselClient_kf5 = kde5.quasselClient; # added 2015-09-30 + qwt6 = qt5.qwt; # added 2015-12-19 rdiff_backup = rdiff-backup; # added 2014-11-23 rssglx = rss-glx; #added 2015-03-25 rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02 From 700546fd12c767e61f8adcc458a3abbc7f6c97d8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:12:01 -0600 Subject: [PATCH 175/289] zeal: Qt 5 infrastructure update --- pkgs/data/documentation/zeal/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/data/documentation/zeal/default.nix b/pkgs/data/documentation/zeal/default.nix index a6c77deb12e..0f02bb7dc94 100644 --- a/pkgs/data/documentation/zeal/default.nix +++ b/pkgs/data/documentation/zeal/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qt5, libarchive, xorg }: +{ stdenv, fetchFromGitHub, libarchive, pkgconfig, qtbase +, qtimageformats, qtwebkit, xorg }: stdenv.mkDerivation rec { version = "0.1.1"; @@ -12,7 +13,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ - xorg.xcbutilkeysyms pkgconfig qt5.base qt5.webkit qt5.imageformats libarchive + xorg.xcbutilkeysyms pkgconfig qtbase qtimageformats qtwebkit libarchive ]; configurePhase = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2d70a630308..5dfe42b989a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10929,7 +10929,7 @@ let xlsx2csv = pythonPackages.xlsx2csv; - zeal = callPackage ../data/documentation/zeal { }; + zeal = qt5.callPackage ../data/documentation/zeal { }; ### APPLICATIONS From 0b303f6edd1e1c24fb7659d56796d871f8c727db Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:12:57 -0600 Subject: [PATCH 176/289] mgba: Qt 5 infrastructure update --- pkgs/misc/emulators/mgba/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/emulators/mgba/default.nix b/pkgs/misc/emulators/mgba/default.nix index edf4c6a060d..ea11e3a33e2 100644 --- a/pkgs/misc/emulators/mgba/default.nix +++ b/pkgs/misc/emulators/mgba/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, pkgconfig, cmake, ffmpeg, imagemagick, libzip, SDL2, qt5 }: +{ stdenv, fetchurl, pkgconfig, cmake, ffmpeg, imagemagick, libzip, SDL2 +, qtbase, qtmultimedia }: stdenv.mkDerivation rec { name = "mgba-${meta.version}"; @@ -9,7 +10,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig cmake ffmpeg imagemagick libzip SDL2 - qt5.base qt5.multimedia + qtbase qtmultimedia ]; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5dfe42b989a..44df868661b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2261,7 +2261,7 @@ let mfoc = callPackage ../tools/security/mfoc { }; - mgba = callPackage ../misc/emulators/mgba { }; + mgba = qt5.callPackage ../misc/emulators/mgba { }; minissdpd = callPackage ../tools/networking/minissdpd { }; From d40531639899805efd9ecbcd04ce11062bb59a39 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:13:45 -0600 Subject: [PATCH 177/289] bomi: Qt 5 infrastructure update --- pkgs/applications/video/bomi/default.nix | 9 +++++---- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/video/bomi/default.nix b/pkgs/applications/video/bomi/default.nix index da07458f4f6..36da9d32072 100644 --- a/pkgs/applications/video/bomi/default.nix +++ b/pkgs/applications/video/bomi/default.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, fetchFromGitHub, pkgconfig, perl, python, which, makeWrapper -, libX11, libxcb, qt5, mesa +, libX11, libxcb, mesa +, qtbase, qtdeclarative, qtquickcontrols, qttools, qtx11extras , ffmpeg , libchardet , mpg123 @@ -26,7 +27,7 @@ assert pulseSupport -> libpulseaudio != null; assert cddaSupport -> libcdda != null; assert youtubeSupport -> youtube-dl != null; -let qtPath = makeSearchPath "lib/qt5/qml" [ qt5.declarative qt5.quickcontrols ]; +let qtPath = makeSearchPath "lib/qt5/qml" [ qtdeclarative qtquickcontrols ]; in stdenv.mkDerivation rec { @@ -42,7 +43,7 @@ stdenv.mkDerivation rec { buildInputs = with stdenv.lib; [ libX11 libxcb mesa - qt5.base qt5.x11extras + qtbase qtx11extras ffmpeg libchardet mpg123 @@ -85,7 +86,7 @@ stdenv.mkDerivation rec { ++ optional cddaSupport "--enable-cdda" ; - nativeBuildInputs = [ pkgconfig perl python which qt5.tools makeWrapper ]; + nativeBuildInputs = [ pkgconfig perl python which qttools makeWrapper ]; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 44df868661b..b1d92f78f65 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11234,7 +11234,7 @@ let cmatrix = callPackage ../applications/misc/cmatrix { }; - bomi = callPackage ../applications/video/bomi { + bomi = qt5.callPackage ../applications/video/bomi { youtube-dl = pythonPackages.youtube-dl; pulseSupport = config.pulseaudio or true; }; From ccdbc228369480fe5f96b162ac46fcef3be55127 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:14:45 -0600 Subject: [PATCH 178/289] shotcut: Qt 5 infrastructure update --- pkgs/applications/video/shotcut/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/shotcut/default.nix b/pkgs/applications/video/shotcut/default.nix index c0458748c96..74f9c1604b2 100644 --- a/pkgs/applications/video/shotcut/default.nix +++ b/pkgs/applications/video/shotcut/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, SDL, frei0r, gettext, makeWrapper, mlt, pkgconfig, qt5 }: +{ stdenv, fetchurl, SDL, frei0r, gettext, makeWrapper, mlt, pkgconfig, qtbase }: stdenv.mkDerivation rec { name = "shotcut-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "1504ds3ppqmpg84nb2gb74qndqysjwn3xw7n8xv19kd1pppnr10f"; }; - buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qt5.base ]; + buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qtbase ]; configurePhase = "qmake PREFIX=$out"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b1d92f78f65..ed317f1e176 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12581,7 +12581,7 @@ let stdenv = stdenv_32bit; }; - shotcut = callPackage ../applications/video/shotcut { mlt = mlt-qt5; }; + shotcut = qt5.callPackage ../applications/video/shotcut { }; smplayer = callPackage ../applications/video/smplayer { }; From a0bae9b57118546ba4c3a53bdea8ab42a99b8a13 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:15:34 -0600 Subject: [PATCH 179/289] obs-studio: Qt 5 infrastructure update --- pkgs/applications/video/obs-studio/default.nix | 7 ++++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix index 0bd0263005f..2c2a26cc972 100644 --- a/pkgs/applications/video/obs-studio/default.nix +++ b/pkgs/applications/video/obs-studio/default.nix @@ -4,7 +4,8 @@ , ffmpeg , jansson , libxkbcommon -, qt5 +, qtbase +, qtx11extras , libv4l , x264 , curl @@ -34,8 +35,8 @@ in stdenv.mkDerivation rec { jansson libv4l libxkbcommon - qt5.base - qt5.x11extras + qtbase + qtx11extras x264 ] ++ optional pulseaudioSupport libpulseaudio; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ed317f1e176..6af0468bc65 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12680,7 +12680,7 @@ let inherit (gnome) libglade; }; - obs-studio = callPackage ../applications/video/obs-studio { + obs-studio = qt5.callPackage ../applications/video/obs-studio { pulseaudioSupport = config.pulseaudio or true; }; From b829137151239298a1fa5c72145a584ec7dc9d5d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:16:27 -0600 Subject: [PATCH 180/289] apitrace: Qt 5 infrastructure update --- pkgs/applications/graphics/apitrace/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/apitrace/default.nix b/pkgs/applications/graphics/apitrace/default.nix index 10d4f703a82..072cc698e92 100644 --- a/pkgs/applications/graphics/apitrace/default.nix +++ b/pkgs/applications/graphics/apitrace/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, cmake, libX11, procps, python, qt5 }: +{ stdenv, fetchFromGitHub, cmake, libX11, procps, python, qtbase }: let version = "7.1"; in stdenv.mkDerivation { @@ -11,7 +11,7 @@ stdenv.mkDerivation { owner = "apitrace"; }; - buildInputs = [ libX11 procps python qt5.base ]; + buildInputs = [ libX11 procps python qtbase ]; nativeBuildInputs = [ cmake ]; buildPhase = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6af0468bc65..ce5c2fd310f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -556,7 +556,7 @@ let withGui = false; }; - apitrace = callPackage ../applications/graphics/apitrace {}; + apitrace = qt5.callPackage ../applications/graphics/apitrace {}; argyllcms = callPackage ../tools/graphics/argyllcms {}; From d086276c1eca07f8cd9dc15604977f51f10e2d6e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:18:02 -0600 Subject: [PATCH 181/289] photoqt: Qt 5 infrastructure update --- pkgs/applications/graphics/photoqt/default.nix | 12 +++++++----- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/graphics/photoqt/default.nix b/pkgs/applications/graphics/photoqt/default.nix index 7ae6d6e050f..c96b0c182a6 100644 --- a/pkgs/applications/graphics/photoqt/default.nix +++ b/pkgs/applications/graphics/photoqt/default.nix @@ -1,11 +1,13 @@ -{ stdenv, fetchurl, cmake, makeWrapper, qt5, exiv2, graphicsmagick }: +{ stdenv, fetchurl, cmake, makeWrapper, exiv2, graphicsmagick +, qtbase, qtdeclarative, qtmultimedia, qtquickcontrols, qttools +}: let version = "1.3"; qmlPath = stdenv.lib.makeSearchPath "lib/qt5/qml/" [ - qt5.quickcontrols - qt5.declarative - qt5.multimedia + qtquickcontrols + qtdeclarative + qtmultimedia ]; in stdenv.mkDerivation rec { @@ -15,7 +17,7 @@ stdenv.mkDerivation rec { sha256 = "0j2kvxfb5pd9abciv161nkcsyam6n8kfqs8ymwj2mxiqflwbmfl1"; }; - buildInputs = [ cmake makeWrapper qt5.base qt5.tools exiv2 graphicsmagick ]; + buildInputs = [ cmake makeWrapper qtbase qttools exiv2 graphicsmagick ]; preConfigure = '' export MAGICK_LOCATION="${graphicsmagick}/include/GraphicsMagick" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ce5c2fd310f..5a6f41d4039 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12749,7 +12749,7 @@ let inherit (gst_all_1) gstreamer gst-plugins-base; }; - photoqt = callPackage ../applications/graphics/photoqt { }; + photoqt = qt5.callPackage ../applications/graphics/photoqt { }; phototonic = callPackage ../applications/graphics/phototonic { }; From 1f28d76190a801ebe6639d57f648dc35425cb99d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:19:42 -0600 Subject: [PATCH 182/289] luminance-hdr: Qt 5 infrastructure update --- pkgs/applications/graphics/luminance-hdr/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/luminance-hdr/default.nix b/pkgs/applications/graphics/luminance-hdr/default.nix index 5e7835b3549..98152694c6d 100644 --- a/pkgs/applications/graphics/luminance-hdr/default.nix +++ b/pkgs/applications/graphics/luminance-hdr/default.nix @@ -1,5 +1,6 @@ -{ stdenv, cmake, fetchurl, fetchpatch, pkgconfig, qt5, boost, exiv2, fftwFloat, gsl +{ stdenv, cmake, fetchurl, fetchpatch, pkgconfig, boost, exiv2, fftwFloat, gsl , ilmbase, lcms2, libraw, libtiff, openexr +, qtbase, qtdeclarative, qttools, qtwebkit }: stdenv.mkDerivation rec { @@ -21,7 +22,7 @@ stdenv.mkDerivation rec { buildInputs = [ - qt5.base qt5.declarative qt5.tools qt5.webkit + qtbase qtdeclarative qttools qtwebkit boost exiv2 fftwFloat gsl ilmbase lcms2 libraw libtiff openexr ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5a6f41d4039..e66246a9e32 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12342,7 +12342,7 @@ let webkit = webkitgtk2; }; - luminanceHDR = callPackage ../applications/graphics/luminance-hdr { }; + luminanceHDR = qt5.callPackage ../applications/graphics/luminance-hdr { }; lxdvdrip = callPackage ../applications/video/lxdvdrip { }; From 8bbbb31f3fe1c76a2243ea13024dcd5034834d6e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:20:28 -0600 Subject: [PATCH 183/289] awesomebump: Qt 5 infrastructure update --- pkgs/applications/graphics/awesomebump/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/awesomebump/default.nix b/pkgs/applications/graphics/awesomebump/default.nix index 77bddec7eb8..c71b1f9335b 100644 --- a/pkgs/applications/graphics/awesomebump/default.nix +++ b/pkgs/applications/graphics/awesomebump/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, qt5, makeWrapper }: +{ lib, stdenv, fetchurl, qtbase, makeWrapper }: stdenv.mkDerivation { name = "awesomebump-4.0"; @@ -10,7 +10,7 @@ stdenv.mkDerivation { setSourceRoot = "sourceRoot=$(echo */Sources)"; - buildInputs = [ qt5.base makeWrapper ]; + buildInputs = [ qtbase makeWrapper ]; preBuild = "qmake"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e66246a9e32..598d8640a13 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11075,7 +11075,7 @@ let }; awesome = awesome-3-5; - awesomebump = callPackage ../applications/graphics/awesomebump { }; + awesomebump = qt5.callPackage ../applications/graphics/awesomebump { }; inherit (gnome3) baobab; From 3e6a70d9744db535208d522e003eed03cde2de31 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:21:18 -0600 Subject: [PATCH 184/289] phototonic: Qt 5 infrastructure update --- pkgs/applications/graphics/phototonic/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/phototonic/default.nix b/pkgs/applications/graphics/phototonic/default.nix index f1a46b63d58..6803b969b4b 100644 --- a/pkgs/applications/graphics/phototonic/default.nix +++ b/pkgs/applications/graphics/phototonic/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, qt5, exiv2 }: +{ stdenv, fetchFromGitHub, qtbase, exiv2 }: stdenv.mkDerivation rec { name = "phototonic-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "1agd3bsrpljd019qrjvlbim5l0bhpx53dhpc0gvyn0wmcdzn92gj"; }; - buildInputs = [ qt5.base exiv2 ]; + buildInputs = [ qtbase exiv2 ]; configurePhase = '' sed -i 's;/usr;;' phototonic.pro diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 598d8640a13..b8472d7dfaa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12751,7 +12751,7 @@ let photoqt = qt5.callPackage ../applications/graphics/photoqt { }; - phototonic = callPackage ../applications/graphics/phototonic { }; + phototonic = qt5.callPackage ../applications/graphics/phototonic { }; pianobar = callPackage ../applications/audio/pianobar { }; From 5af2e7b76e45cd924743e73012f14d7a703d0984 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:22:17 -0600 Subject: [PATCH 185/289] rapcad: Qt 5 infrastructure update --- pkgs/applications/graphics/rapcad/default.nix | 8 +++++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/graphics/rapcad/default.nix b/pkgs/applications/graphics/rapcad/default.nix index 701ad47985b..cb92947b766 100644 --- a/pkgs/applications/graphics/rapcad/default.nix +++ b/pkgs/applications/graphics/rapcad/default.nix @@ -1,4 +1,6 @@ -{stdenv, fetchgit, qt5, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline }: +{ stdenv, fetchgit, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline +, qtbase +}: stdenv.mkDerivation rec { version = "0.9.5"; @@ -9,8 +11,8 @@ stdenv.mkDerivation rec { rev = "refs/tags/v${version}"; sha256 = "15c18jvgbwyrfhv7r35ih0gzx35vjlsbi984h1sckgh2z17hjq8l"; }; - - buildInputs = [qt5.base cgal boost gmp mpfr flex bison dxflib readline ]; + + buildInputs = [ qtbase cgal boost gmp mpfr flex bison dxflib readline ]; configurePhase = '' qmake; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b8472d7dfaa..948b5b896ad 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12913,7 +12913,7 @@ let demo = false; }; - rapcad = callPackage ../applications/graphics/rapcad {}; + rapcad = qt5.callPackage ../applications/graphics/rapcad {}; rapidsvn = callPackage ../applications/version-management/rapidsvn { }; From 07a79f2a9b3fa565d8fd58f71213da620352e0cf Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:24:29 -0600 Subject: [PATCH 186/289] sigil: Qt 5 infrastructure update --- pkgs/applications/editors/sigil/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/sigil/default.nix b/pkgs/applications/editors/sigil/default.nix index 2af662ded7f..ad6f599a361 100644 --- a/pkgs/applications/editors/sigil/default.nix +++ b/pkgs/applications/editors/sigil/default.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, unzip, cmake, pkgconfig, makeWrapper -, hunspell, minizip, boost, xercesc, qt5 +, hunspell, minizip, boost, xercesc +, qtbase, qttools, qtwebkit, qtxmlpatterns }: let @@ -17,7 +18,7 @@ stdenv.mkDerivation rec { buildInputs = [ unzip cmake pkgconfig - hunspell minizip boost xercesc qt5.base qt5.tools qt5.webkit qt5.xmlpatterns + hunspell minizip boost xercesc qtbase qttools qtwebkit qtxmlpatterns ]; # XXX: the compiler seems to treat the .h file inappropriately: diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 948b5b896ad..64e1dbdac97 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3027,7 +3027,7 @@ let siege = callPackage ../tools/networking/siege {}; - sigil = callPackage ../applications/editors/sigil { }; + sigil = qt5.callPackage ../applications/editors/sigil { }; # aka., gpg-tools signing-party = callPackage ../tools/security/signing-party { }; From e292103d463e2818416e3b238d7a74f7bb369ae6 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:25:57 -0600 Subject: [PATCH 187/289] tiled: Qt 5 infrastructure update --- pkgs/applications/editors/tiled/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix index b885e26fbef..4590baf6b8e 100644 --- a/pkgs/applications/editors/tiled/default.nix +++ b/pkgs/applications/editors/tiled/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5, pkgconfig, python }: +{ stdenv, fetchurl, qtbase, qttools, pkgconfig, python }: let version = "0.12.3"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { inherit sha256; }; - buildInputs = [ qt5.base qt5.tools pkgconfig python ]; + buildInputs = [ qtbase qttools pkgconfig python ]; preConfigure = "qmake -r PREFIX=$out"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 64e1dbdac97..803b85c287a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3226,7 +3226,7 @@ let thc-hydra = callPackage ../tools/security/thc-hydra { }; - tiled = callPackage ../applications/editors/tiled { }; + tiled = qt5.callPackage ../applications/editors/tiled { }; tinc = callPackage ../tools/networking/tinc { }; From 36dea909b774b037c68d5ebc369c4378f23fe87f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:28:02 -0600 Subject: [PATCH 188/289] calibre: Qt 5 infrastructure update --- pkgs/applications/misc/calibre/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index a3ecef308eb..6ab83e29cc1 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, python, pyqt5, sip_4_16, poppler_utils, pkgconfig, libpng -, imagemagick, libjpeg, fontconfig, podofo, qt5, icu, sqlite +, imagemagick, libjpeg, fontconfig, podofo, qtbase, icu, sqlite , makeWrapper, unrar, chmlib, pythonPackages, xz, libusb1, libmtp , xdg_utils }: @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { buildInputs = [ python pyqt5 sip_4_16 poppler_utils libpng imagemagick libjpeg - fontconfig podofo qt5.base chmlib icu sqlite libusb1 libmtp xdg_utils + fontconfig podofo qtbase chmlib icu sqlite libusb1 libmtp xdg_utils pythonPackages.mechanize pythonPackages.lxml pythonPackages.dateutil pythonPackages.cssutils pythonPackages.beautifulsoup pythonPackages.pillow pythonPackages.sqlite3 pythonPackages.netifaces pythonPackages.apsw diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 803b85c287a..ac7f0009228 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11156,7 +11156,7 @@ let calcurse = callPackage ../applications/misc/calcurse { }; - calibre = callPackage ../applications/misc/calibre { + calibre = qt5.callPackage ../applications/misc/calibre { inherit (pythonPackages) pyqt5 sip_4_16; }; From 732de877869a1f59d4226452e379eaa1cc998561 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:37:14 -0600 Subject: [PATCH 189/289] twmn: Qt 5 infrastructure update --- pkgs/applications/misc/twmn/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/twmn/default.nix b/pkgs/applications/misc/twmn/default.nix index e2a21822acd..bb3f359ab8f 100644 --- a/pkgs/applications/misc/twmn/default.nix +++ b/pkgs/applications/misc/twmn/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv, fetchgit, qt5, pkgconfig, boost }: +{ fetchurl, stdenv, fetchgit, qtbase, qtx11extras, pkgconfig, boost }: stdenv.mkDerivation rec { name = "twmn-git-2014-09-23"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "9c91e9d3d6d7f9d90d34da6f1a4b9f3dee65605c1e43729417d6921c54dded6b"; }; - buildInputs = [ qt5.base qt5.x11extras pkgconfig boost ]; + buildInputs = [ qtbase qtx11extras pkgconfig boost ]; configurePhase = '' sed -i s/-Werror// twmnd/twmnd.pro diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ac7f0009228..ed1c760a0a9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13349,7 +13349,7 @@ let twister = callPackage ../applications/networking/p2p/twister { }; - twmn = callPackage ../applications/misc/twmn { }; + twmn = qt5.callPackage ../applications/misc/twmn { }; twinkle = callPackage ../applications/networking/instant-messengers/twinkle { }; From 121f944d0df29eebabd5fa91a5ecc69c0a549a0e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:38:09 -0600 Subject: [PATCH 190/289] qtpass: Qt 5 infrastructure update --- pkgs/applications/misc/qtpass/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/qtpass/default.nix b/pkgs/applications/misc/qtpass/default.nix index 3c6d3ed36ce..3d45ef6884c 100644 --- a/pkgs/applications/misc/qtpass/default.nix +++ b/pkgs/applications/misc/qtpass/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, git, gnupg, makeWrapper, pass, qt5 }: +{ stdenv, fetchurl, git, gnupg, makeWrapper, pass, qtbase, qttools }: stdenv.mkDerivation rec { name = "qtpass-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "0c07bd1eb9e5336c0225f891e5b9a9df103f218619cf7ec6311edf654e8db281"; }; - buildInputs = [ git gnupg makeWrapper pass qt5.base qt5.tools ]; + buildInputs = [ git gnupg makeWrapper pass qtbase qttools ]; configurePhase = "qmake CONFIG+=release PREFIX=$out DESTDIR=$out"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ed1c760a0a9..0763ef94dd7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12881,7 +12881,7 @@ let qtox = callPackage ../applications/networking/instant-messengers/qtox { }; - qtpass = callPackage ../applications/misc/qtpass { }; + qtpass = qt5.callPackage ../applications/misc/qtpass { }; qtpfsgui = callPackage ../applications/graphics/qtpfsgui { }; From 06f9ac71dc73d1f296c31a1156162f7a6a9d3cae Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:39:16 -0600 Subject: [PATCH 191/289] gpsbabel: Qt 5 infrastructure update --- pkgs/applications/misc/gpsbabel/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/gpsbabel/default.nix b/pkgs/applications/misc/gpsbabel/default.nix index 172f1347f6b..c21f8bbe814 100644 --- a/pkgs/applications/misc/gpsbabel/default.nix +++ b/pkgs/applications/misc/gpsbabel/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, zlib, qt5, which }: +{ stdenv, fetchurl, zlib, qtbase, which }: stdenv.mkDerivation rec { name = "gpsbabel-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "0xf7wmy2m29g2lm8lqc74yf8rf7sxfl3cfwbk7dpf0yf42pb0b6w"; }; - buildInputs = [ zlib qt5.base which ]; + buildInputs = [ zlib qtbase which ]; /* FIXME: Building the documentation, with "make doc", requires this: diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0763ef94dd7..01c56dca4d9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12010,7 +12010,7 @@ let gosmore = callPackage ../applications/misc/gosmore { }; - gpsbabel = callPackage ../applications/misc/gpsbabel { }; + gpsbabel = qt5.callPackage ../applications/misc/gpsbabel { }; gpscorrelate = callPackage ../applications/misc/gpscorrelate { }; From 88514fdf581374d42083b8f8fb0303814fffbe3b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:40:12 -0600 Subject: [PATCH 192/289] robomongo: Qt 5 infrastructure update --- pkgs/applications/misc/robomongo/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/robomongo/default.nix b/pkgs/applications/misc/robomongo/default.nix index 80424a308d7..ebd97f6621d 100644 --- a/pkgs/applications/misc/robomongo/default.nix +++ b/pkgs/applications/misc/robomongo/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5, openssl, boost, cmake, scons, python, pcre, bzip2 }: +{ stdenv, fetchurl, qtbase, openssl, boost, cmake, scons, python, pcre, bzip2 }: stdenv.mkDerivation { name = "robomongo-0.8.4"; @@ -16,7 +16,7 @@ stdenv.mkDerivation { NIX_CFLAGS_COMPILE = "-fno-stack-protector"; - buildInputs = [ cmake boost scons qt5.base openssl python pcre bzip2 ]; + buildInputs = [ cmake boost scons qtbase openssl python pcre bzip2 ]; meta = { homepage = "http://robomongo.org/"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 01c56dca4d9..5101e94afdd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15441,7 +15441,7 @@ let inherit (pythonPackages) pexpect paramiko; }; - robomongo = callPackage ../applications/misc/robomongo { }; + robomongo = qt5.callPackage ../applications/misc/robomongo { }; rucksack = callPackage ../development/tools/rucksack { }; From 4e71ebd7c98fae2552e820e18ab464a234828c6e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:43:24 -0600 Subject: [PATCH 193/289] dfilemanager: Qt 5 infrastructure update --- pkgs/applications/misc/dfilemanager/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/dfilemanager/default.nix b/pkgs/applications/misc/dfilemanager/default.nix index ba3bd5f0f0d..1891c4f2174 100644 --- a/pkgs/applications/misc/dfilemanager/default.nix +++ b/pkgs/applications/misc/dfilemanager/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, cmake, qt5, file, kde5}: +{ stdenv, fetchgit, cmake, file, qtbase, qttools, qtx11extras, solid }: let version = "git-2015-07-25"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "1dd21xl24xvxs100j8nzhpaqfqk8srqs92al9c03jmyjlk31s6lf"; }; - buildInputs = [ cmake qt5.base qt5.tools qt5.x11extras file kde5.solid]; + buildInputs = [ cmake qtbase qttools qtx11extras file solid ]; cmakeFlags = "-DQT5BUILD=true"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5101e94afdd..9c118b23585 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -809,7 +809,7 @@ let deis = goPackages.deis.bin // { outputs = [ "bin" ]; }; - dfilemanager = callPackage ../applications/misc/dfilemanager { }; + dfilemanager = kde5.dfilemanager; diagrams-builder = callPackage ../tools/graphics/diagrams-builder { inherit (haskellPackages) ghcWithPackages diagrams-builder; @@ -14715,6 +14715,8 @@ let libyamlcpp = callPackage ../development/libraries/libyaml-cpp { makePIC=true; boost=boost; }; }; + dfilemanager = callPackage ../applications/misc/dfilemanager { }; + fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { }; k9copy = callPackage ../applications/video/k9copy {}; From 249e5f732afd9afa5fbdc6e3ec99cfc5e4eb5014 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:44:44 -0600 Subject: [PATCH 194/289] linssid: Qt 5 infrastructure update --- pkgs/applications/networking/linssid/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/linssid/default.nix b/pkgs/applications/networking/linssid/default.nix index 369010f41b5..76de1d208cc 100644 --- a/pkgs/applications/networking/linssid/default.nix +++ b/pkgs/applications/networking/linssid/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5, pkgconfig, boost, wirelesstools, iw, qwt6 }: +{ stdenv, fetchurl, qtbase, qtsvg, pkgconfig, boost, wirelesstools, iw, qwt6 }: stdenv.mkDerivation rec { name = "linssid-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "13d35rlcjncd8lx3khkgn9x8is2xjd5fp6ns5xsn3w6l4xj9b4gl"; }; - buildInputs = [ qt5.base qt5.svg pkgconfig boost qwt6 ]; + buildInputs = [ qtbase qtsvg pkgconfig boost qwt6 ]; patches = [ ./0001-unbundled-qwt.patch ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9c118b23585..6e45c6df605 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11917,7 +11917,7 @@ let libquvi = callPackage ../applications/video/quvi/library.nix { }; - linssid = callPackage ../applications/networking/linssid { }; + linssid = qt5.callPackage ../applications/networking/linssid { }; mi2ly = callPackage ../applications/audio/mi2ly {}; From de5898a49585fd2a4f57c0263377400b180d2641 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:45:45 -0600 Subject: [PATCH 195/289] qtox: Qt 5 infrastructure update --- .../networking/instant-messengers/qtox/default.nix | 11 ++++++----- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/qtox/default.nix b/pkgs/applications/networking/instant-messengers/qtox/default.nix index 170702e44d1..0a7b44ba8cb 100644 --- a/pkgs/applications/networking/instant-messengers/qtox/default.nix +++ b/pkgs/applications/networking/instant-messengers/qtox/default.nix @@ -1,6 +1,7 @@ -{ stdenv, fetchgit, pkgconfig, libtoxcore-dev, qt5, openal, opencv, +{ stdenv, fetchgit, pkgconfig, libtoxcore-dev, openal, opencv, libsodium, libXScrnSaver, glib, gdk_pixbuf, gtk2, cairo, - pango, atk, qrencode, ffmpeg, filter-audio, makeWrapper }: + pango, atk, qrencode, ffmpeg, filter-audio, makeWrapper, + qtbase, qtsvg, qttools, qttranslations }: let revision = "1673b43e26c853f6446f228fec083af166cbf446"; @@ -18,8 +19,8 @@ stdenv.mkDerivation rec { buildInputs = [ libtoxcore-dev openal opencv libsodium filter-audio - qt5.base qt5.tools libXScrnSaver glib gtk2 cairo - pango atk qrencode ffmpeg qt5.translations makeWrapper + qtbase qttools libXScrnSaver glib gtk2 cairo + pango atk qrencode ffmpeg qttranslations makeWrapper ]; nativeBuildInputs = [ pkgconfig ]; @@ -46,7 +47,7 @@ stdenv.mkDerivation rec { mkdir -p $out/bin cp qtox $out/bin wrapProgram $out/bin/qtox \ - --prefix QT_PLUGIN_PATH : ${qt5.svg}/lib/qt5/plugins + --prefix QT_PLUGIN_PATH : ${qtsvg}/lib/qt5/plugins ''; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6e45c6df605..f16a6daf0f7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12879,7 +12879,7 @@ let qsynth = callPackage ../applications/audio/qsynth { }; - qtox = callPackage ../applications/networking/instant-messengers/qtox { }; + qtox = qt5.callPackage ../applications/networking/instant-messengers/qtox { }; qtpass = qt5.callPackage ../applications/misc/qtpass { }; From fc13f37f2c3f665a5b71860c589611fd03d5895b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:47:06 -0600 Subject: [PATCH 196/289] firestr: Qt 5 infrastructure update --- pkgs/applications/networking/p2p/firestr/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/p2p/firestr/default.nix b/pkgs/applications/networking/p2p/firestr/default.nix index 6b1a1fc9454..e216ede9a39 100644 --- a/pkgs/applications/networking/p2p/firestr/default.nix +++ b/pkgs/applications/networking/p2p/firestr/default.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchFromGitHub, cmake, boost, botan, snappy, libopus, libuuid, qt5 -, libXScrnSaver, openssl }: +{ stdenv, fetchFromGitHub, cmake, boost, botan, snappy, libopus, libuuid +, libXScrnSaver, openssl, qtbase, qtmultimedia }: stdenv.mkDerivation { name = "firestr-0.8"; @@ -11,7 +11,7 @@ stdenv.mkDerivation { sha256 = "0s2kdi8rw3i3f8gbiy0ykyi6xj5n8p80m0d1i86mhh8jpagvbfzb"; }; - buildInputs = [ cmake boost botan snappy libopus libuuid qt5.base qt5.multimedia + buildInputs = [ cmake boost botan snappy libopus libuuid qtbase qtmultimedia libXScrnSaver openssl ]; patches = ./return.patch; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f16a6daf0f7..a5862510c4a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11795,7 +11795,7 @@ let inherit (pkgs.gnome) libgnome libgnomeui; }; - firestr = callPackage ../applications/networking/p2p/firestr + firestr = qt5.callPackage ../applications/networking/p2p/firestr { boost = boost155; }; From 541b2f20de9912b85f3b5b4a182607cf3e646d2a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:47:51 -0600 Subject: [PATCH 197/289] fritzing: Qt 5 infrastructure update --- pkgs/applications/science/electronics/fritzing/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/science/electronics/fritzing/default.nix b/pkgs/applications/science/electronics/fritzing/default.nix index 1fa0a0d97b5..302c6a318e6 100644 --- a/pkgs/applications/science/electronics/fritzing/default.nix +++ b/pkgs/applications/science/electronics/fritzing/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5, boost }: +{ stdenv, fetchurl, qtbase, qtsvg, boost }: stdenv.mkDerivation rec { @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { tar xjf ${src} ''; - buildInputs = [ qt5.base qt5.svg boost ]; + buildInputs = [ qtbase qtsvg boost ]; configurePhase = '' cd fritzing-${version}.source diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a5862510c4a..ca78f8bd637 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11708,7 +11708,7 @@ let fribid = callPackage ../applications/networking/browsers/mozilla-plugins/fribid { }; - fritzing = callPackage ../applications/science/electronics/fritzing { }; + fritzing = qt5.callPackage ../applications/science/electronics/fritzing { }; fvwm = callPackage ../applications/window-managers/fvwm { }; From 97f7eb1e640bbb3c8d861badc462f8b48c79dd5d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:48:36 -0600 Subject: [PATCH 198/289] kst: Qt 5 infrastructure update --- pkgs/tools/graphics/kst/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/graphics/kst/default.nix b/pkgs/tools/graphics/kst/default.nix index 01fb5d82994..9b983450f48 100644 --- a/pkgs/tools/graphics/kst/default.nix +++ b/pkgs/tools/graphics/kst/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, cmake, pkgconfig -, qt5, gsl, getdata, netcdf, muparser, matio +, qtbase, gsl, getdata, netcdf, muparser, matio }: stdenv.mkDerivation rec { name = "Kst-2.0.8"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ cmake pkgconfig ]; - buildInputs = [ qt5.base gsl getdata netcdf muparser matio ]; + buildInputs = [ qtbase gsl getdata netcdf muparser matio ]; cmakeFlags = "-Dkst_qt5=1 -Dkst_release=1"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ca78f8bd637..3130e821bf3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2015,7 +2015,7 @@ let kpcli = callPackage ../tools/security/kpcli { }; - kst = callPackage ../tools/graphics/kst { gsl = gsl_1; }; + kst = qt5.callPackage ../tools/graphics/kst { gsl = gsl_1; }; leocad = callPackage ../applications/graphics/leocad { }; From 17e17ea64965b96f76f09b564c546eff8c66c8d0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:49:14 -0600 Subject: [PATCH 199/289] cmst: Qt 5 infrastructure update --- pkgs/tools/networking/cmst/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/cmst/default.nix b/pkgs/tools/networking/cmst/default.nix index 3bfa65cb472..1b5767653fe 100644 --- a/pkgs/tools/networking/cmst/default.nix +++ b/pkgs/tools/networking/cmst/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, qt5, makeWrapper, libX11 }: +{ stdenv, fetchgit, qtbase, makeWrapper, libX11 }: stdenv.mkDerivation rec { name = "cmst-2014.12.05"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "070rxv3kyn41ra7nnk1wbqvy6fjg38h7hrdv4dn71b201kmzd194"; }; - buildInputs = [ qt5.base makeWrapper ]; + buildInputs = [ qtbase makeWrapper ]; configurePhase = '' substituteInPlace ./cmst.pro \ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3130e821bf3..39c110d1e4b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1072,7 +1072,7 @@ let citrix_receiver = callPackage ../applications/networking/remote/citrix-receiver { }; - cmst = callPackage ../tools/networking/cmst { }; + cmst = qt5.callPackage ../tools/networking/cmst { }; colord = callPackage ../tools/misc/colord { }; From e78202671990320515ffca82c89d2aa079baea9b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:50:40 -0600 Subject: [PATCH 200/289] poppler: normalize package name to upstream --- .../libraries/kde-frameworks-5.17/kfilemetadata.nix | 4 ++-- pkgs/top-level/all-packages.nix | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix b/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix index 92ca1f26b93..be99c58d550 100644 --- a/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix @@ -1,11 +1,11 @@ { kdeFramework, lib, extra-cmake-modules, attr, ebook_tools, exiv2 -, ffmpeg, karchive, ki18n, popplerQt, qtbase, taglib +, ffmpeg, karchive, ki18n, poppler, qtbase, taglib }: kdeFramework { name = "kfilemetadata"; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive popplerQt taglib ]; + buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ]; propagatedBuildInputs = [ qtbase ki18n ]; meta = { maintainers = [ lib.maintainers.ttuegel ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 39c110d1e4b..cbe6fc553c2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8071,8 +8071,6 @@ let suffix = "qt4"; }; - poppler_qt5 = qt5Libs.popplerQt; - poppler_utils = poppler.override { suffix = "utils"; utils = true; }; popt = callPackage ../development/libraries/popt { }; @@ -8173,7 +8171,7 @@ let withQt5 = true; }; - popplerQt = callPackage ../development/libraries/poppler { + poppler = callPackage ../development/libraries/poppler { lcms = lcms2; qt5Support = true; suffix = "qt5"; @@ -15805,6 +15803,7 @@ aliases = with self; rec { nfsUtils = nfs-utils; # added 2014-12-06 phonon_qt5 = qt5.phonon; # added 2015-12-19 phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 + poppler_qt5 = qt5Libs.poppler; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 From 660736def8734a2d2e66a03ad4f777148bc0820b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:52:30 -0600 Subject: [PATCH 201/289] polkit-qt: normalize package name to upstream --- pkgs/desktops/plasma-5.5/polkit-kde-agent.nix | 4 ++-- .../libraries/kde-frameworks-5.17/kauth/default.nix | 4 ++-- pkgs/tools/misc/calamares/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix b/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix index 0173ec65516..3fc3a441ac3 100644 --- a/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix +++ b/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix @@ -9,7 +9,7 @@ , kconfig , kiconthemes , knotifications -, polkitQt +, polkit-qt }: plasmaPackage { @@ -25,7 +25,7 @@ plasmaPackage { kconfig kiconthemes knotifications - polkitQt + polkit-qt ]; propagatedBuildInputs = [ ki18n kwindowsystem ]; } diff --git a/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix index 42a10019334..2b000ff3c04 100644 --- a/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix @@ -1,13 +1,13 @@ { kdeFramework, lib , extra-cmake-modules , kcoreaddons -, polkitQt +, polkit-qt }: kdeFramework { name = "kauth"; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ polkitQt ]; + buildInputs = [ polkit-qt ]; propagatedBuildInputs = [ kcoreaddons ]; patches = [ ./kauth-policy-install.patch ]; meta = { diff --git a/pkgs/tools/misc/calamares/default.nix b/pkgs/tools/misc/calamares/default.nix index 6ca007229bc..ab00d52c777 100644 --- a/pkgs/tools/misc/calamares/default.nix +++ b/pkgs/tools/misc/calamares/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, cmake, polkitQt, libyamlcpp, python, boost, parted +{ stdenv, fetchgit, cmake, polkit-qt, libyamlcpp, python, boost, parted , extra-cmake-modules, kconfig, ki18n, kcoreaddons, solid, utillinux, libatasmart , ckbcomp, glibc, tzdata, xkeyboard_config, qtbase, qtquick1, qtsvg, qttools }: @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ - cmake qtbase qtquick1 qtsvg qttools libyamlcpp python boost polkitQt parted + cmake qtbase qtquick1 qtsvg qttools libyamlcpp python boost polkit-qt parted extra-cmake-modules kconfig ki18n kcoreaddons solid utillinux libatasmart ]; @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { ''; preInstall = '' - substituteInPlace cmake_install.cmake --replace "${polkitQt}" "$out" + substituteInPlace cmake_install.cmake --replace "${polkit-qt}" "$out" ''; meta = with stdenv.lib; { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cbe6fc553c2..a8b80d7f4ce 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8167,7 +8167,7 @@ let phonon_backend_vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { }; - polkitQt = callPackage ../development/libraries/polkit-qt-1 { + polkit-qt = callPackage ../development/libraries/polkit-qt-1 { withQt5 = true; }; From 9d79319eaebc856cf3a7ae11423b987a7e0b2d00 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 20:54:02 -0600 Subject: [PATCH 202/289] remove qt5Libs --- pkgs/top-level/all-packages.nix | 43 +++++++++++++++------------------ 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a8b80d7f4ce..e65bc6f0d8c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1022,7 +1022,7 @@ let davix = callPackage ../tools/networking/davix { }; - cantata = qt5Libs.callPackage ../applications/audio/cantata { }; + cantata = qt5.callPackage ../applications/audio/cantata { }; can-utils = callPackage ../os-specific/linux/can-utils { }; @@ -1154,7 +1154,7 @@ let convmv = callPackage ../tools/misc/convmv { }; - cool-retro-term = qt5Libs.callPackage ../applications/misc/cool-retro-term { }; + cool-retro-term = qt5.callPackage ../applications/misc/cool-retro-term { }; coreutils = callPackage ../tools/misc/coreutils { aclSupport = stdenv.isLinux; @@ -2721,7 +2721,7 @@ let inherit qt4; }; - pinentry_qt5 = qt55Libs.callPackage ../tools/security/pinentry/qt5.nix { + pinentry_qt5 = qt5.callPackage ../tools/security/pinentry/qt5.nix { libcap = if stdenv.isDarwin then null else libcap; }; @@ -8194,9 +8194,6 @@ let }; - qt55Libs = lib.makeScope qt55.newScope qt5LibsFun; - qt5Libs = qt55Libs; - qtEnv = qt5.env; qt5Full = qt5.full; @@ -11288,7 +11285,7 @@ let cutecom = callPackage ../tools/misc/cutecom { }; cutegram = - let cp = qt5Libs.callPackage; + let cp = qt5.callPackage; in cp ../applications/networking/instant-messengers/telegram/cutegram rec { libqtelegram-aseman-edition = cp ../applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition { }; telegram-qml = cp ../applications/networking/instant-messengers/telegram/telegram-qml { @@ -11337,7 +11334,7 @@ let plugins = []; }; - dfasma = qt5Libs.callPackage ../applications/audio/dfasma { }; + dfasma = qt5.callPackage ../applications/audio/dfasma { }; dia = callPackage ../applications/graphics/dia { inherit (pkgs.gnome) libart_lgpl libgnomeui; @@ -11694,7 +11691,7 @@ let fluidsynth = callPackage ../applications/audio/fluidsynth { }; - fmit = qt5Libs.callPackage ../applications/audio/fmit { }; + fmit = qt5.callPackage ../applications/audio/fmit { }; focuswriter = callPackage ../applications/editors/focuswriter { }; @@ -12145,7 +12142,7 @@ let lua = lua5; }; - ipe = qt5Libs.callPackage ../applications/graphics/ipe { + ipe = qt5.callPackage ../applications/graphics/ipe { ghostscript = ghostscriptX; texlive = texlive.combine { inherit (texlive) scheme-small; }; }; @@ -12207,9 +12204,9 @@ let kermit = callPackage ../tools/misc/kermit { }; - keyfinder = qt5Libs.callPackage ../applications/audio/keyfinder { }; + keyfinder = qt5.callPackage ../applications/audio/keyfinder { }; - keyfinder-cli = qt5Libs.callPackage ../applications/audio/keyfinder-cli { }; + keyfinder-cli = qt5.callPackage ../applications/audio/keyfinder-cli { }; keymon = callPackage ../applications/video/key-mon { }; @@ -12545,7 +12542,7 @@ let iceSupport = config.murmur.iceSupport or true; }) mumble mumble_git murmur murmur_git; - musescore = qt5Libs.callPackage ../applications/audio/musescore { }; + musescore = qt5.callPackage ../applications/audio/musescore { }; mutt = callPackage ../applications/networking/mailreaders/mutt { }; mutt-with-sidebar = callPackage ../applications/networking/mailreaders/mutt { @@ -13089,7 +13086,7 @@ let dropbox-cli = callPackage ../applications/networking/dropbox-cli { }; - lightdm = qt5Libs.callPackage ../applications/display-managers/lightdm { + lightdm = qt5.callPackage ../applications/display-managers/lightdm { qt4 = null; withQt5 = false; }; @@ -13110,7 +13107,7 @@ let printrun = callPackage ../applications/misc/printrun { }; - sddm = qt5Libs.callPackage ../applications/display-managers/sddm { + sddm = qt5.callPackage ../applications/display-managers/sddm { themes = []; # extra themes, etc. }; @@ -13132,7 +13129,7 @@ let sipp = callPackage ../development/tools/misc/sipp { }; - sonic-visualiser = qt5Libs.callPackage ../applications/audio/sonic-visualiser { + sonic-visualiser = qt5.callPackage ../applications/audio/sonic-visualiser { inherit (pkgs.vamp) vampSDK; }; @@ -13488,7 +13485,7 @@ let ffmpeg = ffmpeg_2; }; - vlc_qt5 = qt5Libs.vlc; + vlc_qt5 = qt5.vlc; vmpk = callPackage ../applications/audio/vmpk { }; @@ -13964,7 +13961,7 @@ let chocolateDoom = callPackage ../games/chocolate-doom { }; - cockatrice = qt5Libs.callPackage ../games/cockatrice { }; + cockatrice = qt5.callPackage ../games/cockatrice { }; confd = goPackages.confd.bin // { outputs = [ "bin" ]; }; @@ -14032,7 +14029,7 @@ let fish-fillets-ng = callPackage ../games/fish-fillets-ng {}; - flightgear = qt5Libs.callPackage ../games/flightgear { }; + flightgear = qt5.callPackage ../games/flightgear { }; freecell-solver = callPackage ../games/freecell-solver { }; @@ -14135,7 +14132,7 @@ let mnemosyne = callPackage ../games/mnemosyne { }; - mudlet = qt5Libs.callPackage ../games/mudlet { + mudlet = qt5.callPackage ../games/mudlet { inherit (lua51Packages) luafilesystem lrexlib luazip luasqlite3; }; @@ -14760,7 +14757,7 @@ let apps = import ../applications/kde-apps-15.12 { inherit pkgs; }; merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self; in - recurseIntoAttrs (lib.makeScope qt55Libs.newScope merged); + recurseIntoAttrs (lib.makeScope qt5.newScope merged); kde5_latest = let @@ -14769,7 +14766,7 @@ let apps = import ../applications/kde-apps-15.12 { inherit pkgs; }; merged = self: frameworks self // plasma self // apps self // kde5PackagesFun self; in - recurseIntoAttrs (lib.makeScope qt55Libs.newScope merged); + recurseIntoAttrs (lib.makeScope qt5.newScope merged); theme-vertex = callPackage ../misc/themes/vertex { }; @@ -15803,7 +15800,7 @@ aliases = with self; rec { nfsUtils = nfs-utils; # added 2014-12-06 phonon_qt5 = qt5.phonon; # added 2015-12-19 phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 - poppler_qt5 = qt5Libs.poppler; # added 2015-12-19 + poppler_qt5 = qt5.poppler; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 From 126188be5c5b8a0252adbd204b5f85cfd8c43fd4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 21:03:33 -0600 Subject: [PATCH 203/289] cutegram: Qt 5 infrastructure updates --- .../networking/instant-messengers/telegram/cutegram/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix index cf559a04fc5..26a7eb49279 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub -, qt5Libs, qtbase, qtquick1, qtmultimedia, qtquickcontrols, qtgraphicaleffects, makeQtWrapper +, qtbase, qtquick1, qtmultimedia, qtquickcontrols, qtgraphicaleffects, makeQtWrapper , telegram-qml, libqtelegram-aseman-edition }: stdenv.mkDerivation rec { From 1cd5505a9fadac3a1d4b92b1fd78e58f0fa7935a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 21:38:05 -0600 Subject: [PATCH 204/289] telegram-qml: Qt 5 infrastructure update --- .../instant-messengers/telegram/telegram-qml/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix index 4fc1ee37927..b51f8435ce1 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub -, qt5Libs, qtbase, qtmultimedia, qtquick1 +, qtbase, qtmultimedia, qtquick1 , libqtelegram-aseman-edition }: stdenv.mkDerivation rec { From 538ce57feb63f93b692ea43f0f52643f6fe99ed6 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 21:45:37 -0600 Subject: [PATCH 205/289] qtcreator: Qt 5 infrastructure update --- pkgs/development/qtcreator/default.nix | 11 +++++++---- pkgs/top-level/all-packages.nix | 10 +++++----- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/pkgs/development/qtcreator/default.nix b/pkgs/development/qtcreator/default.nix index 4051ac21836..c0647a6df4a 100644 --- a/pkgs/development/qtcreator/default.nix +++ b/pkgs/development/qtcreator/default.nix @@ -1,4 +1,7 @@ -{ stdenv, fetchurl, makeWrapper, qtLib, withDocumentation ? false }: +{ stdenv, fetchurl, makeWrapper +, qtbase, qtquickcontrols, qtscript, qtdeclarative +, withDocumentation ? false +}: with stdenv.lib; @@ -16,7 +19,7 @@ stdenv.mkDerivation rec { sha256 = "0r9ysq9hzig4ag9m8pcpw1jng2fqqns8zwp0jj893gh8ia0sq9ar"; }; - buildInputs = [ makeWrapper qtLib.base qtLib.script qtLib.quickcontrols qtLib.declarative ]; + buildInputs = [ makeWrapper qtbase qtscript qtquickcontrols qtdeclarative ]; doCheck = false; @@ -45,8 +48,8 @@ stdenv.mkDerivation rec { Categories=Qt;Development;IDE; __EOF__ # Wrap the qtcreator binary - addToSearchPath QML2_IMPORT_PATH "${qtLib.quickcontrols}/lib/qt5/qml" - addToSearchPath QML2_IMPORT_PATH "${qtLib.declarative}/lib/qt5/qml" + addToSearchPath QML2_IMPORT_PATH "${qtquickcontrols}/lib/qt5/qml" + addToSearchPath QML2_IMPORT_PATH "${qtdeclarative}/lib/qt5/qml" wrapProgram $out/bin/qtcreator \ --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e65bc6f0d8c..044faa07968 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8181,6 +8181,10 @@ let qmltermwidget = callPackage ../development/libraries/qmltermwidget { }; + qtcreator = callPackage ../development/qtcreator { + withDocumentation = true; + }; + qwt = callPackage ../development/libraries/qwt/6.nix { }; signon = callPackage ../development/libraries/signon { }; @@ -8197,11 +8201,6 @@ let qtEnv = qt5.env; qt5Full = qt5.full; - qtcreator = callPackage ../development/qtcreator { - qtLib = qt54; - withDocumentation = true; - }; - qtkeychain = callPackage ../development/libraries/qtkeychain { }; qtscriptgenerator = callPackage ../development/libraries/qtscriptgenerator { }; @@ -15802,6 +15801,7 @@ aliases = with self; rec { phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 poppler_qt5 = qt5.poppler; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 + qtcreator = qt5.qtcreator; # added 2015-12-19 quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 From 1d331481fc1872c4ea6713eb3f59e6441e863c8b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 22:04:55 -0600 Subject: [PATCH 206/289] quazip: Qt 5 infrastructure update --- pkgs/development/libraries/quazip/default.nix | 2 +- pkgs/top-level/all-packages.nix | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/quazip/default.nix b/pkgs/development/libraries/quazip/default.nix index 119fda9eb80..4db9d8b4665 100644 --- a/pkgs/development/libraries/quazip/default.nix +++ b/pkgs/development/libraries/quazip/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { installFlags = "INSTALL_ROOT=$(out)"; - buildInputs = [ zlib (qt.base or qt) ]; + buildInputs = [ zlib qt ]; meta = { description = "Provides access to ZIP archives from Qt programs"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 044faa07968..5a2637f76f2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2992,7 +2992,7 @@ let screen-message = callPackage ../tools/X11/screen-message { }; screencloud = callPackage ../applications/graphics/screencloud { - quazip = quazip.override { qt = qt4; }; + quazip = qt5.quazip.override { qt = qt4; }; }; scrot = callPackage ../tools/graphics/scrot { }; @@ -8112,10 +8112,6 @@ let qoauth = callPackage ../development/libraries/qoauth { }; - quazip = callPackage ../development/libraries/quazip { - qt = qt5; - }; - qt3 = callPackage ../development/libraries/qt-3 { openglSupport = mesaSupported; libpng = libpng12; @@ -8185,6 +8181,10 @@ let withDocumentation = true; }; + quazip = callPackage ../development/libraries/quazip { + qt = qtbase; + }; + qwt = callPackage ../development/libraries/qwt/6.nix { }; signon = callPackage ../development/libraries/signon { }; From 143d6123dc2b7eba0d1e1b8c1e440d7acea2f357 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 22:11:52 -0600 Subject: [PATCH 207/289] qutebrowser: Qt 5 infrastructure update --- .../networking/browsers/qutebrowser/default.nix | 7 ++++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/browsers/qutebrowser/default.nix b/pkgs/applications/networking/browsers/qutebrowser/default.nix index 267b0871f08..c1c7a1297ce 100644 --- a/pkgs/applications/networking/browsers/qutebrowser/default.nix +++ b/pkgs/applications/networking/browsers/qutebrowser/default.nix @@ -1,5 +1,6 @@ -{ stdenv, fetchgit, python, buildPythonPackage, qt5, pyqt5, jinja2, pygments, pyyaml, pypeg2, - gst_plugins_base, gst_plugins_good, gst_ffmpeg }: +{ stdenv, fetchgit, python, buildPythonPackage, qtmultimedia, pyqt5 +, jinja2, pygments, pyyaml, pypeg2, gst_plugins_base, gst_plugins_good +, gst_ffmpeg }: let version = "0.4.1"; in @@ -23,7 +24,7 @@ buildPythonPackage { makeWrapperArgs = '' --prefix GST_PLUGIN_PATH : "${stdenv.lib.makeSearchPath "lib/gstreamer-0.10" [ gst_plugins_base gst_plugins_good gst_ffmpeg ]}" - --prefix QT_PLUGIN_PATH : "${qt5.multimedia}/lib/qt5/plugins" + --prefix QT_PLUGIN_PATH : "${qtmultimedia}/lib/qt5/plugins" ''; meta = { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5a2637f76f2..3896f0145da 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12893,7 +12893,7 @@ let gst_plugins_bad = null; }; - qutebrowser = callPackage ../applications/networking/browsers/qutebrowser { + qutebrowser = qt5.callPackage ../applications/networking/browsers/qutebrowser { inherit (python34Packages) buildPythonPackage python pyqt5 jinja2 pygments pyyaml pypeg2; }; From 54bcdcc0a7052c68e2123a11f19222fa24c4f482 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 22:22:52 -0600 Subject: [PATCH 208/289] teamspeak_client: Qt 5 infrastructure update --- .../networking/instant-messengers/teamspeak/client.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix index a18ffac5d63..7eedd997c1b 100644 --- a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix +++ b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, makeWrapper, makeDesktopItem, zlib, glib, libpng, freetype -, xorg, fontconfig, qt55, xkeyboard_config, alsaLib, libpulseaudio ? null +, xorg, fontconfig, qtbase, xkeyboard_config, alsaLib, libpulseaudio ? null , libredirect, quazip, less, which, unzip }: @@ -12,7 +12,7 @@ let deps = [ zlib glib libpng freetype xorg.libSM xorg.libICE xorg.libXrender xorg.libXrandr xorg.libXfixes xorg.libXcursor xorg.libXinerama - xorg.libxcb fontconfig xorg.libXext xorg.libX11 alsaLib qt55.qtbase libpulseaudio + xorg.libxcb fontconfig xorg.libXext xorg.libX11 alsaLib qtbase libpulseaudio ]; desktopItem = makeDesktopItem { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3896f0145da..7bf279527ef 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13225,7 +13225,7 @@ let gconf = gnome.GConf; }; - teamspeak_client = callPackage ../applications/networking/instant-messengers/teamspeak/client.nix { }; + teamspeak_client = qt55.callPackage ../applications/networking/instant-messengers/teamspeak/client.nix { }; teamspeak_server = callPackage ../applications/networking/instant-messengers/teamspeak/server.nix { }; taskjuggler = callPackage ../applications/misc/taskjuggler { }; From 5810f0e7edc304a19332eacf2aaec232a00569ed Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 23:29:41 -0600 Subject: [PATCH 209/289] tomahawk: Qt 5 infrastructure upgrade --- pkgs/applications/audio/tomahawk/default.nix | 6 ++---- pkgs/top-level/all-packages.nix | 1 + 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/tomahawk/default.nix b/pkgs/applications/audio/tomahawk/default.nix index 32d5f1aa13e..61cb6b9896e 100644 --- a/pkgs/applications/audio/tomahawk/default.nix +++ b/pkgs/applications/audio/tomahawk/default.nix @@ -11,9 +11,7 @@ assert enableXMPP -> libjreen != null; assert enableKDE -> kdelibs != null; assert enableTelepathy -> telepathy_qt != null; -let - quazipQt4 = quazip.override { qt = qt4; }; -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "tomahawk-${version}"; version = "0.8.4"; @@ -29,7 +27,7 @@ in stdenv.mkDerivation rec { buildInputs = [ cmake pkgconfig attica boost gnutls libechonest liblastfm lucenepp phonon - qca2 qjson qt4 qtkeychain quazipQt4 sparsehash taglib websocketpp + qca2 qjson qt4 qtkeychain quazip sparsehash taglib websocketpp makeWrapper ] ++ stdenv.lib.optional enableXMPP libjreen ++ stdenv.lib.optional enableKDE kdelibs diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7bf279527ef..d6131f28c58 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13310,6 +13310,7 @@ let enableXMPP = config.tomahawk.enableXMPP or true; enableKDE = config.tomahawk.enableKDE or false; enableTelepathy = config.tomahawk.enableTelepathy or false; + quazip = qt5.quazip.override { qt = qt4; }; }; torchat = callPackage ../applications/networking/instant-messengers/torchat { From d534d5f0977fcaedaf8e80c53c6f3a4a3931346d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 19 Dec 2015 23:38:39 -0600 Subject: [PATCH 210/289] smplayer: Qt 5 infrastructure upgrade --- pkgs/applications/video/smplayer/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/smplayer/default.nix b/pkgs/applications/video/smplayer/default.nix index aed5363100b..13c65422227 100644 --- a/pkgs/applications/video/smplayer/default.nix +++ b/pkgs/applications/video/smplayer/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5 }: +{ stdenv, fetchurl, qtscript }: stdenv.mkDerivation rec { name = "smplayer-15.11.0"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { patches = [ ./basegui.cpp.patch ]; - buildInputs = [ qt5.script ]; + buildInputs = [ qtscript ]; preConfigure = '' makeFlags="PREFIX=$out" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d6131f28c58..ae9e4e964a5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12577,7 +12577,7 @@ let shotcut = qt5.callPackage ../applications/video/shotcut { }; - smplayer = callPackage ../applications/video/smplayer { }; + smplayer = qt5.callPackage ../applications/video/smplayer { }; smtube = callPackage ../applications/video/smtube {}; From 85c19f8fb4bffec3c3ecfa464dd068d801a60ebb Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 20 Dec 2015 07:40:29 -0600 Subject: [PATCH 211/289] smtube: Qt 5 infrastructure update --- pkgs/applications/video/smtube/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/smtube/default.nix b/pkgs/applications/video/smtube/default.nix index 79dbf576472..bc55f943a88 100644 --- a/pkgs/applications/video/smtube/default.nix +++ b/pkgs/applications/video/smtube/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt5 }: +{ stdenv, fetchurl, qtscript }: stdenv.mkDerivation rec { version = "15.11.0"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - buildInputs = [ qt5.script ]; + buildInputs = [ qtscript ]; meta = with stdenv.lib; { description = "Play and download Youtube videos"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ae9e4e964a5..da833ab5892 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12579,7 +12579,7 @@ let smplayer = qt5.callPackage ../applications/video/smplayer { }; - smtube = callPackage ../applications/video/smtube {}; + smtube = qt5.callPackage ../applications/video/smtube {}; sup = callPackage ../applications/networking/mailreaders/sup { ruby = ruby_1_9_3.override { cursesSupport = true; }; From 27c522cc3b0010ee0a1e44a52fbeaf345c76dce8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 20 Dec 2015 08:02:42 -0600 Subject: [PATCH 212/289] phonon-backend-gstreamer: normalize attribute name to upstream --- nixos/modules/services/x11/desktop-managers/kde5.nix | 2 +- pkgs/top-level/all-packages.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 933efa08fa3..124a0fa7047 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -135,7 +135,7 @@ in pkgs.gst_all.gstPluginsUgly pkgs.gst_all.gstPluginsBad pkgs.gst_all.gstFfmpeg # for mp3 playback - pkgs.phonon_qt5_backend_gstreamer + pkgs.qt55.phonon-backend-gstreamer pkgs.gst_all_1.gstreamer pkgs.gst_all_1.gst-plugins-base pkgs.gst_all_1.gst-plugins-good diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index da833ab5892..6322fb3b3db 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8159,7 +8159,7 @@ let phonon = callPackage ../development/libraries/phonon/qt5 { }; - phonon_backend_gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5 { }; + phonon-backend-gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5 { }; phonon_backend_vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { }; @@ -15799,7 +15799,7 @@ aliases = with self; rec { mlt-qt5 = qt5.mlt; # added 2015-12-19 nfsUtils = nfs-utils; # added 2014-12-06 phonon_qt5 = qt5.phonon; # added 2015-12-19 - phonon_qt5_backend_gstreamer = qt5.phonon_backend_gstreamer; # added 2015-12-19 + phonon_qt5_backend_gstreamer = qt5.phonon-backend-gstreamer; # added 2015-12-19 poppler_qt5 = qt5.poppler; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 qtcreator = qt5.qtcreator; # added 2015-12-19 From 298c4befda449f0b158a85efe16219fbe716c02d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 20 Dec 2015 08:03:26 -0600 Subject: [PATCH 213/289] phonon-backend-vlc: normalize attribute name to upstream --- nixos/modules/services/x11/desktop-managers/kde5.nix | 2 +- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 124a0fa7047..2aeb4f67d77 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -147,7 +147,7 @@ in ++ lib.optionals cfg.phonon.vlc.enable [ pkgs.phonon_qt5_backend_vlc - pkgs.phonon_backend_vlc + pkgs.qt55.phonon-backend-vlc ]; environment.pathsToLink = [ "/share" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6322fb3b3db..562e3eaf8c4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8161,7 +8161,7 @@ let phonon-backend-gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5 { }; - phonon_backend_vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { }; + phonon-backend-vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { }; polkit-qt = callPackage ../development/libraries/polkit-qt-1 { withQt5 = true; From e3e2273382dfd1a8411aa8b0b3ef0c4b31c0c016 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Sun, 20 Dec 2015 18:36:31 +0100 Subject: [PATCH 214/289] pkgs.gnupg1: 1.4.19 -> 1.4.20 --- pkgs/tools/security/gnupg/1.nix | 6 ++--- .../security/gnupg/remove-debug-message.patch | 22 ------------------- 2 files changed, 2 insertions(+), 26 deletions(-) delete mode 100644 pkgs/tools/security/gnupg/remove-debug-message.patch diff --git a/pkgs/tools/security/gnupg/1.nix b/pkgs/tools/security/gnupg/1.nix index d5045806e0c..8593fe69733 100644 --- a/pkgs/tools/security/gnupg/1.nix +++ b/pkgs/tools/security/gnupg/1.nix @@ -1,15 +1,13 @@ { stdenv, fetchurl, readline, bzip2 }: stdenv.mkDerivation rec { - name = "gnupg-1.4.19"; + name = "gnupg-1.4.20"; src = fetchurl { url = "mirror://gnupg/gnupg/${name}.tar.bz2"; - sha256 = "7f09319d044b0f6ee71fe3587bb873be701723ac0952cff5069046a78de8fd86"; + sha256 = "1k7d6zi0zznqsmcjic0yrgfhqklqz3qgd3yac7wxsa7s6088p604"; }; - patches = [ ./remove-debug-message.patch ]; - buildInputs = [ readline bzip2 ]; doCheck = true; diff --git a/pkgs/tools/security/gnupg/remove-debug-message.patch b/pkgs/tools/security/gnupg/remove-debug-message.patch deleted file mode 100644 index 92fc6f2cfca..00000000000 --- a/pkgs/tools/security/gnupg/remove-debug-message.patch +++ /dev/null @@ -1,22 +0,0 @@ -commit 936416690e6c889505d84fe96983a66983beae5e -Author: Werner Koch -Date: Thu Feb 26 09:38:58 2015 +0100 - - gpg: Remove left-over debug message. - - * g10/armor.c (check_input): Remove log_debug. - -diff --git a/g10/armor.c b/g10/armor.c -index 6c0013d..de1726d 100644 ---- a/g10/armor.c -+++ b/g10/armor.c -@@ -534,9 +534,6 @@ check_input( armor_filter_context_t *afx, IOBUF a ) - /* This is probably input from a keyserver helper and we - have not yet seen an error line. */ - afx->key_failed_code = parse_key_failed_line (line+4, len-4); -- log_debug ("armor-keys-failed (%.*s) ->%d\n", -- (int)len, line, -- afx->key_failed_code); - } - if( i >= 0 && !(afx->only_keyblocks && i != 1 && i != 5 && i != 6 )) { - hdr_line = i; From 56f6be2583909cff986ec12c9f3a3c9af6e83936 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Dec 2015 18:58:02 +0100 Subject: [PATCH 215/289] saneBackendsGit 1.0.25-180-g6d8b8d5 -> 2015-12-20 --- pkgs/applications/graphics/sane/backends-git.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends-git.nix b/pkgs/applications/graphics/sane/backends-git.nix index 66e496557a8..0c74a470c25 100644 --- a/pkgs/applications/graphics/sane/backends-git.nix +++ b/pkgs/applications/graphics/sane/backends-git.nix @@ -6,13 +6,14 @@ let in assert hotplugSupport -> (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"); +let version = "2015-12-20"; in stdenv.mkDerivation { - name = "sane-backends-1.0.25-180-g6d8b8d5"; + name = "sane-backends-${version}"; src = fetchgit { url = "git://alioth.debian.org/git/sane/sane-backends.git"; - rev = "6d8b8d5aa6e8da2b24e1caa42b9ea75e9624b45d"; - sha256 = "b5b2786eef835550e4a4522db05c8c81075b1a7aff5a66f1d4a498f6efe0ef03"; + rev = "5136e664b8608604f54a2cc1d466019922b311e6"; + sha256 = "998fdc9cdd3f9220c38244e0b87bba3ee623d7d20726479b04ed95b3836a37ed"; }; udevSupport = hotplugSupport; @@ -39,6 +40,7 @@ stdenv.mkDerivation { else ""; meta = with stdenv.lib; { + inherit version; homepage = "http://www.sane-project.org/"; description = "SANE (Scanner Access Now Easy) backends"; longDescription = '' From e582c41482615dc4d383a8d3f578e9ead9209743 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 20 Dec 2015 11:12:23 -0800 Subject: [PATCH 216/289] coqPackages.mathcomp,ssreflect: 1.5 -> 1.6 See the INSTALL file in the mathcomp package for instructions on upgrading projects from 1.5 to 1.6. The 1.6 version works with both Coq 8.4 and 8.5. --- .../coq-modules/mathcomp/default.nix | 8 ++--- .../coq-modules/mathcomp/generic.nix | 24 +++++++++----- .../coq-modules/ssreflect/default.nix | 10 +++--- .../coq-modules/ssreflect/generic.nix | 31 +++++++++---------- 4 files changed, 39 insertions(+), 34 deletions(-) diff --git a/pkgs/development/coq-modules/mathcomp/default.nix b/pkgs/development/coq-modules/mathcomp/default.nix index 7c34e186717..189b1220640 100644 --- a/pkgs/development/coq-modules/mathcomp/default.nix +++ b/pkgs/development/coq-modules/mathcomp/default.nix @@ -4,15 +4,15 @@ let src = if coq.coq-version == "8.4" then fetchurl { - url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.5.tar.gz; - sha256 = "1297svwi18blrlyd8vsqilar2h5nfixlvlifdkbx47aljq4m5bam"; + url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.6.tar.gz; + sha256 = "0adr556032r1jkvphbpfvrrv041qk0yqb7a1xnbam52ji0mdl2w8"; } else if coq.coq-version == "8.5" then fetchurl { - url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.5.coq85beta2.tar.gz; - sha256 = "03bnq44ym43x8shi7whc02l0g5vy6rx8f1imjw478chlgwcxazqy"; + url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.6.tar.gz; + sha256 = "0adr556032r1jkvphbpfvrrv041qk0yqb7a1xnbam52ji0mdl2w8"; } else throw "No mathcomp package for Coq version ${coq.coq-version}"; diff --git a/pkgs/development/coq-modules/mathcomp/generic.nix b/pkgs/development/coq-modules/mathcomp/generic.nix index 56838734b6d..b4048aa8003 100644 --- a/pkgs/development/coq-modules/mathcomp/generic.nix +++ b/pkgs/development/coq-modules/mathcomp/generic.nix @@ -1,25 +1,33 @@ -{ stdenv, fetchurl, coq, ssreflect -, graphviz, ocamlPackages, withDoc ? true +{ stdenv, fetchurl, coq, ssreflect, ncurses, which +, graphviz, ocamlPackages, withDoc ? false , src }: stdenv.mkDerivation { - name = "coq-mathcomp-1.5-${coq.coq-version}"; + name = "coq-mathcomp-1.6-${coq.coq-version}"; inherit src; - nativeBuildInputs = stdenv.lib.optionals withDoc - ([ graphviz ] ++ (with ocamlPackages; [ ocaml camlp5_transitional ])); - propagatedBuildInputs = [ ssreflect ]; + nativeBuildInputs = stdenv.lib.optionals withDoc [ graphviz ]; + buildInputs = [ coq.ocaml coq.camlp5 ncurses which ]; + propagatedBuildInputs = [ coq ssreflect ]; enableParallelBuilding = true; buildFlags = stdenv.lib.optionalString withDoc "doc"; - installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; + preBuild = '' + cd mathcomp + export COQBIN=${coq}/bin/ + ''; - postInstall = stdenv.lib.optionalString withDoc '' + installPhase = '' + make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install + rm -fr $out/lib/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect* + rm -fr $out/lib/coq/${coq.coq-version}/user-contrib/ssrmatching.cmi + rm -fr $out/share/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect* + '' + stdenv.lib.optionalString withDoc '' make -f Makefile.coq install-doc DOCDIR=$out/share/coq/${coq.coq-version}/ ''; diff --git a/pkgs/development/coq-modules/ssreflect/default.nix b/pkgs/development/coq-modules/ssreflect/default.nix index a0b0d951c0d..8ba49d06bae 100644 --- a/pkgs/development/coq-modules/ssreflect/default.nix +++ b/pkgs/development/coq-modules/ssreflect/default.nix @@ -5,8 +5,8 @@ if coq.coq-version == "8.4" then callPackage ./generic.nix { src = fetchurl { - url = http://ssr.msr-inria.inria.fr/FTP/ssreflect-1.5.tar.gz; - sha256 = "0hm1ha7sxqfqhc7iwhx6zdz3nki4rj5nfd3ab24hmz8v7mlpinds"; + url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.6.tar.gz; + sha256 = "0adr556032r1jkvphbpfvrrv041qk0yqb7a1xnbam52ji0mdl2w8"; }; } @@ -16,12 +16,10 @@ else if coq.coq-version == "8.5" then callPackage ./generic.nix { src = fetchurl { - url = http://ssr.msr-inria.inria.fr/FTP/ssreflect-1.5.coq85beta2.tar.gz; - sha256 = "084l9xd5vgb8jml0dkm66g8cil5rsf04w821pjhn2qk9mdbwaagf"; + url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.6.tar.gz; + sha256 = "0adr556032r1jkvphbpfvrrv041qk0yqb7a1xnbam52ji0mdl2w8"; }; - patches = [ ./threads.patch ]; - } else throw "No ssreflect package for Coq version ${coq.coq-version}" diff --git a/pkgs/development/coq-modules/ssreflect/generic.nix b/pkgs/development/coq-modules/ssreflect/generic.nix index 3bfccab0be7..d7303ad8852 100644 --- a/pkgs/development/coq-modules/ssreflect/generic.nix +++ b/pkgs/development/coq-modules/ssreflect/generic.nix @@ -1,39 +1,38 @@ -{ stdenv, fetchurl, coq, ncurses -, graphviz, withDoc ? true +{ stdenv, fetchurl, coq, ncurses, which +, graphviz, withDoc ? false , src, patches ? [] }: stdenv.mkDerivation { - name = "coq-ssreflect-1.5-${coq.coq-version}"; + name = "coq-ssreflect-1.6-${coq.coq-version}"; inherit src; nativeBuildInputs = stdenv.lib.optionals withDoc [ graphviz ]; - buildInputs = [ coq.ocaml coq.camlp5 ncurses ]; + buildInputs = [ coq.ocaml coq.camlp5 ncurses which ]; propagatedBuildInputs = [ coq ]; enableParallelBuilding = true; inherit patches; - postPatch = '' - # Permit building of the ssrcoq statically-bound executable - sed -i 's/^#-custom/-custom/' Make - sed -i 's/^#SSRCOQ/SSRCOQ/' Make + preBuild = '' + cd mathcomp/ssreflect + export COQBIN=${coq}/bin/ ''; - buildFlags = stdenv.lib.optionalString withDoc "doc"; - - installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/"; + installPhase = '' + make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install + ''; postInstall = '' - mkdir -p $out/bin - cp -p bin/ssrcoq $out/bin - cp -p bin/ssrcoq.byte $out/bin + # mkdir -p $out/bin + # cp -p bin/ssrcoq $out/bin + # cp -p bin/ssrcoq.byte $out/bin '' + stdenv.lib.optionalString withDoc '' - mkdir -p $out/share/doc/coq/${coq.coq-version}/user-contrib/Ssreflect/ - cp -r html $out/share/doc/coq/${coq.coq-version}/user-contrib/Ssreflect/ + mkdir -p $out/share/doc/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect/ + cp -r html $out/share/doc/coq/${coq.coq-version}/user-contrib/mathcomp/ssreflect/ ''; meta = with stdenv.lib; { From bcde1ffe77ac9188b22419d06b53e884d7937b8c Mon Sep 17 00:00:00 2001 From: Eduard-Mihai Burtescu Date: Sun, 20 Dec 2015 22:26:16 +0200 Subject: [PATCH 217/289] Revert change from cp -v to cp -r in fira-code. Mistakenly used `-r` in #11842. --- pkgs/data/fonts/fira-code/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/data/fonts/fira-code/default.nix b/pkgs/data/fonts/fira-code/default.nix index 02db24203b7..625794d9d3b 100644 --- a/pkgs/data/fonts/fira-code/default.nix +++ b/pkgs/data/fonts/fira-code/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/share/fonts/opentype - cp -r *.otf $out/share/fonts/opentype + cp -v *.otf $out/share/fonts/opentype ''; meta = with stdenv.lib; { From 760ec896ae5b90a22c21523605e37228f1665c2f Mon Sep 17 00:00:00 2001 From: Bob van der Linden Date: Sun, 20 Dec 2015 21:55:08 +0100 Subject: [PATCH 218/289] lsyncd: 2.1.5 -> 2.1.6 --- .../networking/sync/lsyncd/default.nix | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/networking/sync/lsyncd/default.nix b/pkgs/applications/networking/sync/lsyncd/default.nix index 775da905ea9..b190b05e289 100644 --- a/pkgs/applications/networking/sync/lsyncd/default.nix +++ b/pkgs/applications/networking/sync/lsyncd/default.nix @@ -1,32 +1,27 @@ -{ stdenv, fetchFromGitHub, automake, autoconf, lua, pkgconfig, rsync, +{ stdenv, fetchFromGitHub, cmake, lua, pkgconfig, rsync, asciidoc, libxml2, docbook_xml_dtd_45, docbook_xml_xslt, libxslt }: stdenv.mkDerivation rec { name = "lsyncd-${version}"; - version = "2.1.5"; + version = "2.1.6"; src = fetchFromGitHub { owner = "axkibe"; repo = "lsyncd"; rev = "release-${version}"; - sha256 = "0jvr2rv34jyjrv7188vdv1z8vgvm4wydqwsp9x5ksfzh9drbq5gn"; + sha256 = "1cab96h4qfyapk7lb682j1d8k0hpv7h9pl41vdgc0vr4bq4c3ij2"; }; - patches = [ ./configure-a2x-fix.patch ]; - - preConfigurePhase = '' + patchPhase = '' substituteInPlace default-rsync.lua \ - --replace "binary = '/usr/bin/rsync'," "binary = '${rsync}/bin/rsync'," + --replace "/usr/bin/rsync" "${rsync}/bin/rsync" ''; - configurePhase = '' - ./autogen.sh --prefix=$out - ./configure --prefix=$out - ''; + dontUseCmakeBuildDir = true; buildInputs = [ rsync - automake autoconf lua pkgconfig + cmake lua pkgconfig asciidoc libxml2 docbook_xml_dtd_45 docbook_xml_xslt libxslt ]; From 1253cd926c6ee9caa6012c503b1caa72ddba6171 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 20 Dec 2015 22:11:06 +0100 Subject: [PATCH 219/289] keepassx: 0.4.3 -> 0.4.4 Fixes CVE-2015-8359 and CVE-2015-8378. Also switch URL to new download location. --- pkgs/applications/misc/keepassx/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/keepassx/default.nix b/pkgs/applications/misc/keepassx/default.nix index 02a299922f1..3d078d59be6 100644 --- a/pkgs/applications/misc/keepassx/default.nix +++ b/pkgs/applications/misc/keepassx/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, bzip2, qt4, libX11, xextproto, libXtst }: stdenv.mkDerivation rec { - name = "keepassx-0.4.3"; + name = "keepassx-${version}"; + version = "0.4.4"; src = fetchurl { - url = "mirror://sourceforge/keepassx/${name}.tar.gz"; - sha256 = "cd901a0611ce57e62cf6df7eeeb1b690b5232302bdad8626994eb54adcfa1e85"; + url = "https://www.keepassx.org/releases/${version}/${name}.tar.gz"; + sha256 = "1i5dq10x28mg7m4c0yacm32xfj4j7imir4ph8x9p0s2ym260c9ry"; }; configurePhase = '' From 6742104cbe4e4e5848ebf6f7614c46f9510fbcfc Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 20 Dec 2015 22:50:04 +0100 Subject: [PATCH 220/289] keepassx2: 2.0beta2 -> 2.0 Also switch to official download URL. --- pkgs/applications/misc/keepassx/2.0.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/misc/keepassx/2.0.nix b/pkgs/applications/misc/keepassx/2.0.nix index acdd91aaf68..aeccb874cb6 100644 --- a/pkgs/applications/misc/keepassx/2.0.nix +++ b/pkgs/applications/misc/keepassx/2.0.nix @@ -1,10 +1,12 @@ { stdenv, fetchurl, cmake, libgcrypt, qt4, xorg, ... }: -stdenv.mkDerivation { - name = "keepassx2-2.0beta2"; +stdenv.mkDerivation rec { + name = "keepassx2-${version}"; + version = "2.0"; + src = fetchurl { - url = "https://github.com/keepassx/keepassx/archive/2.0-beta2.tar.gz"; - sha256 = "0ljf9ws3wh62zd0gyb0vk2qw6pqsmxrlybrfs5mqahf44q92ca2q"; + url = "https://www.keepassx.org/releases/${version}/keepassx-${version}.tar.gz"; + sha256 = "1ri2r1sldc62hbg74m4pmci0nrjwvv38rqhyzhyjin247an0zd0f"; }; buildInputs = [ cmake libgcrypt qt4 xorg.libXtst ]; From 804cafe6c26db591663f990e9b5ff6f2615e14fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 20 Dec 2015 22:54:11 +0100 Subject: [PATCH 221/289] add Django 1.9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 1451f004c735d07d2243965a73b2c466ac9e7ccb) Signed-off-by: Domen Kožar --- pkgs/top-level/python-packages.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 112a7f0da86..5f58c3d794b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6890,6 +6890,27 @@ in modules // { ]; }; + django_1_9 = buildPythonPackage rec { + name = "Django-${version}"; + version = "1.9"; + disabled = pythonOlder "2.7"; + + src = pkgs.fetchurl { + url = "http://www.djangoproject.com/m/releases/1.9/${name}.tar.gz"; + sha256 = "0rkwdxh63y7pwx9larl2g7m1z206675dzx7ipd44p3bpm0clpzh5"; + }; + + # patch only $out/bin to avoid problems with starter templates (see #3134) + postFixup = '' + wrapPythonProgramsIn $out/bin "$out $pythonPath" + ''; + + meta = { + description = "A high-level Python Web framework"; + homepage = https://www.djangoproject.com/; + }; + }; + django_1_8 = buildPythonPackage rec { name = "Django-${version}"; version = "1.8.4"; From d24b2a2aa28bace773ceea601c83d4f7740dce68 Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Sun, 20 Dec 2015 23:22:41 +0100 Subject: [PATCH 222/289] mahotas: 1.4.0 -> 1.4.1 This new release should fix all errors on 32 bit systems (reported here: https://github.com/NixOS/nixpkgs/pull/11699#issuecomment-165410506) --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 112a7f0da86..06e9cf6772f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3271,11 +3271,11 @@ in modules // { mahotas = buildPythonPackage rec { name = "python-mahotas-${version}"; - version = "1.4.0"; + version = "1.4.1"; src = pkgs.fetchurl { url = "https://github.com/luispedro/mahotas/archive/release-${version}.tar.gz"; - sha256 = "30c4b979e0d5f4c013860321766a79ffcabe56c1ad9088e5d0c6b36aec5f0415"; + sha256 = "a684d339a3a4135f6f7161851161174755e9ea643b856b0bb48abd5515041ab6"; }; buildInputs = with self; [ From 1b9b1d0d5c2838668da7e5f9db0548355409fc01 Mon Sep 17 00:00:00 2001 From: jeaye Date: Mon, 21 Dec 2015 15:33:15 +0800 Subject: [PATCH 223/289] fail2ban 0.9.1 -> 0.9.3 --- pkgs/tools/security/fail2ban/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix index 184f8a59d28..aeb665710fa 100644 --- a/pkgs/tools/security/fail2ban/default.nix +++ b/pkgs/tools/security/fail2ban/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchzip, python, pythonPackages, unzip, systemd, gamin }: -let version = "0.9.1"; in +let version = "0.9.3"; in pythonPackages.buildPythonPackage { name = "fail2ban-${version}"; @@ -9,7 +9,7 @@ pythonPackages.buildPythonPackage { src = fetchzip { name = "fail2ban-${version}-src"; url = "https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"; - sha256 = "111xvy2gxwn868kn0zy2fmdfa423z6fk57i7wsfrc0l74p1cdvs5"; + sha256 = "1pwgr56i6l6wh2ap8b5vknxgsscfzjqy2nmd1c3vzdii5kf72j0f"; }; buildInputs = [ unzip ]; From 8d2bcfe2e781e980c0c74698694c8a9f3032a4d8 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:01:00 +0100 Subject: [PATCH 224/289] python blaze: 0.8.3 -> 0.9.0 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 72178086c50..efe3a64c58e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1811,11 +1811,11 @@ in modules // { blaze = buildPythonPackage rec { name = "blaze-${version}"; - version = "0.8.3"; + version = "0.9.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/blaze/${name}.tar.gz"; - sha256 = "4f8ceb1248ba44f833f5a46a18b6ea44130a5999d5234324d0456b5f9ffe716b"; + sha256 = "07h284n6fr0lvy58a6lvwwfb45sy7lggllx2y2vzzs4xrvf5k1i7"; }; buildInputs = with self; [ pytest ]; From b40264de12b045a3535cd67ab2ad0a52f45cfb1c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:01:12 +0100 Subject: [PATCH 225/289] python dask: 0.7.0 -> 0.7.5 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index efe3a64c58e..d0839720f92 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3754,11 +3754,11 @@ in modules // { dask = buildPythonPackage rec { name = "dask-${version}"; - version = "0.7.0"; + version = "0.7.5"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dask/${name}.tar.gz"; - sha256 = "3b48646e9e66ec21a6885700d39ea90e2c2a7ad5d26773a8413b570eb1a67b3e"; + sha256 = "1csrgfjvq4mlvr7hmgy3a5jczkwpy4jz4jb3c4y45s5fg3y38f3k"; }; propagatedBuildInputs = with self; [numpy toolz dill]; From 8017e1af939b967fa70235b6a6e8941b7c3a4441 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:01:34 +0100 Subject: [PATCH 226/289] python datashape: 0.4.7 -> 0.5.0 --- pkgs/top-level/python-packages.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d0839720f92..5abcd8f869b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3773,16 +3773,20 @@ in modules // { datashape = buildPythonPackage rec { name = "datashape-${version}"; - version = "0.4.7"; + version = "0.5.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/D/DataShape/${name}.tar.gz"; - sha256 = "14b2ef766d4c9652ab813182e866f493475e65e558bed0822e38bf07bba1a278"; + sha256 = "13w0rfaqpqkh30bxmx7i7kjfrfkm5maa35gj3c464wah7i2zm9wp"; }; - buildInputs = with self; [ pytest ]; + buildInputs = with self; [ pytest mock ]; propagatedBuildInputs = with self; [ numpy multipledispatch dateutil ]; + checkPhase = '' + py.test datashape/tests + ''; + meta = { homepage = https://github.com/ContinuumIO/datashape; description = "A data description language"; From 825f2e64e6de5945de3c3f0bbe8b50f0afee7f24 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:01:43 +0100 Subject: [PATCH 227/289] python odo: 0.3.4 -> 0.4.0 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5abcd8f869b..b5586d6941f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11758,11 +11758,11 @@ in modules // { odo = buildPythonPackage rec { name = "odo-${version}"; - version= "0.3.4"; + version= "0.4.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/odo/${name}.tar.gz"; - sha256 = "77bdb372999ac0d9ef272927d7867a668108a4193e11eb8646bf770370a30725"; + sha256 = "0xqm4zb7a7a2cbik9kn6yk0kr26n90iqj102h5wb42x6z5v4mn79"; }; buildInputs = with self; [ pytest ]; From 81b0f551c70d6e73bae608ec0873542d748ddc2f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:20:22 +0100 Subject: [PATCH 228/289] python mahotas: does not work on i686 --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b5586d6941f..a8842516f3a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3288,6 +3288,8 @@ in modules // { imread ]; + disabled = stdenv.isi686; # Failing tests + meta = with stdenv.lib; { description = "Computer vision package based on numpy"; homepage = https://readthedocs.org/projects/mahotas/; From 3b939522976fd4e7bfb5d7f23fd5af14e68c34a8 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:20:40 +0100 Subject: [PATCH 229/289] python mathics: patch to allow current sympy --- pkgs/top-level/python-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a8842516f3a..9d1815f22a3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10019,6 +10019,10 @@ in modules // { buildInputs = with self; [ pexpect ]; + prePatch = '' + substituteInPlace setup.py --replace "sympy==0.7.6" "sympy" + ''; + propagatedBuildInputs = with self; [ argparse cython From 4d2d2c6a6e1e3a4d2247839b3690094cb94a292a Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 21 Dec 2015 09:20:58 +0100 Subject: [PATCH 230/289] python tunigo: add missing test dependencies --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9d1815f22a3..c61bf05d103 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20924,6 +20924,8 @@ in modules // { sha256 = "02ili37dbs5mk5f6v3fmi1sji39ymc4zyq44x0abxzr88nc8nh97"; }; + buildInputs = with self; [ mock nose ]; + meta = { description = "Python API for the browse feature of Spotify"; homepage = https://github.com/trygveaa/python-tunigo; From 3ddd19959c4d0dbf6a233fa8a47492fdc7ca8411 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 21 Dec 2015 12:09:16 +0100 Subject: [PATCH 231/289] beret: mark as broken /cc maintainer @lovek323. --- pkgs/games/beret/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/games/beret/default.nix b/pkgs/games/beret/default.nix index b36ec6a43f6..e2e4f5af977 100644 --- a/pkgs/games/beret/default.nix +++ b/pkgs/games/beret/default.nix @@ -35,6 +35,7 @@ stdenv.mkDerivation { license = licenses.lgpl2; maintainers = with maintainers; [ lovek323 ]; platforms = platforms.all; + broken = true; # source won't download, and no replacement is visible }; } From d5e5a7dbc3df00dbe2f91be13a82785139b95dce Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Tue, 24 Nov 2015 16:13:57 +0100 Subject: [PATCH 232/289] docker: 1.9.0 -> 1.9.1 --- pkgs/applications/virtualization/docker/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix index 3380306e165..5a51749652d 100644 --- a/pkgs/applications/virtualization/docker/default.nix +++ b/pkgs/applications/virtualization/docker/default.nix @@ -10,13 +10,13 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "docker-${version}"; - version = "1.9.0"; + version = "1.9.1"; src = fetchFromGitHub { owner = "docker"; repo = "docker"; rev = "v${version}"; - sha256 = "1a1ss210i712fs9mp5hcljb8bdx93lss91sxj9zay0vrmdb84zn2"; + sha256 = "1mhi4y820h2wxz6hqmr95c7yvklyw578dd9c83jr463w7rq0rgr6"; }; buildInputs = [ @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { buildPhase = '' patchShebangs . export AUTO_GOPATH=1 - export DOCKER_GITCOMMIT="76d6bc9a" + export DOCKER_GITCOMMIT="a34a1d59" ./hack/make.sh dynbinary ''; From 810695216ade42a83eef51a421115292d17be03e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 21 Dec 2015 12:17:20 +0100 Subject: [PATCH 233/289] uwsgi: add a type comment --- pkgs/servers/uwsgi/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/servers/uwsgi/default.nix b/pkgs/servers/uwsgi/default.nix index 89260109e26..abcbaa04b8c 100644 --- a/pkgs/servers/uwsgi/default.nix +++ b/pkgs/servers/uwsgi/default.nix @@ -1,4 +1,5 @@ { stdenv, lib, fetchurl, pkgconfig, jansson +# plugins: list of strings, eg. [python2, python3] , plugins , pam, withPAM ? stdenv.isLinux , systemd, withSystemd ? stdenv.isLinux From 3e4035695c9c969675de66ca1b63e13ef57e5bd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 21 Dec 2015 10:50:37 +0100 Subject: [PATCH 234/289] nixpkgs manual: add idris docs generated from *.md I also modified the nesting approach in haskell docs to allow more uniform handling of markdown -> docbook conversions. /cc #11308. --- doc/default.nix | 46 +++++++++++++++++++----------- doc/haskell-users-guide.md | 36 ++++++++++++----------- doc/languages-frameworks/index.xml | 1 + 3 files changed, 49 insertions(+), 34 deletions(-) diff --git a/doc/default.nix b/doc/default.nix index cca68014b0d..7e41380d635 100644 --- a/doc/default.nix +++ b/doc/default.nix @@ -20,27 +20,39 @@ stdenv.mkDerivation { --param callout.graphics.extension '.gif' ''; - buildCommand = '' - { - echo "" - echo "" - echo "User's Guide to the Haskell Infrastructure" - echo "" - pandoc ${./haskell-users-guide.md} -w docbook | \ - sed -e 's|||' \ - -e 's|||' - echo "" - echo "" - } >haskell-users-guide.xml + buildCommand = let toDocbook = { useChapters ? false, inputFile, outputFile }: + let + extraHeader = ''xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" ''; + in '' + { + pandoc '${inputFile}' -w docbook ${optionalString useChapters "--chapters"} \ + | sed -e 's|||' \ + -e 's|||' \ + -e '1s| id=| xml:id=|' \ + -e '1s|\(<[^ ]* \)|\1${extraHeader}|' + } > '${outputFile}' + ''; + in + + '' ln -s '${sources}/'*.xml . mkdir ./languages-frameworks cp -s '${sources-langs}'/* ./languages-frameworks - + '' + + toDocbook { + inputFile = ./haskell-users-guide.md; + outputFile = "haskell-users-guide.xml"; + useChapters = true; + } + + toDocbook { + inputFile = ./../pkgs/development/idris-modules/README.md; + outputFile = "languages-frameworks/idris.xml"; + } + + '' + cat languages-frameworks/idris.xml echo ${nixpkgsVersion} > .version xmllint --noout --nonet --xinclude --noxincludenode \ diff --git a/doc/haskell-users-guide.md b/doc/haskell-users-guide.md index 446f08eb697..b11e4cf09f8 100644 --- a/doc/haskell-users-guide.md +++ b/doc/haskell-users-guide.md @@ -3,8 +3,10 @@ title: User's Guide for Haskell in Nixpkgs author: Peter Simons date: 2015-06-01 --- +# User's Guide to the Haskell Infrastructure -# How to install Haskell packages + +## How to install Haskell packages Nixpkgs distributes build instructions for all Haskell packages registered on [Hackage](http://hackage.haskell.org/), but strangely enough normal Nix package @@ -111,9 +113,9 @@ version of GHC listed above, there exists a package set based on that compiler. Also, the attributes `haskell.compiler.ghcXYC` and `haskell.packages.ghcXYC.ghc` are synonymous for the sake of convenience. -# How to create a development environment +## How to create a development environment -## How to install a compiler +### How to install a compiler A simple development environment consists of a Haskell compiler and the tool `cabal-install`, and we saw in section [How to install Haskell packages] how @@ -162,7 +164,7 @@ anymore once `nix-shell` has terminated. If you find that your Haskell builds no longer work after garbage collection, then you'll have to re-run `cabal configure` inside of a new `nix-shell` environment. -## How to install a compiler with libraries +### How to install a compiler with libraries GHC expects to find all installed libraries inside of its own `lib` directory. This approach works fine on traditional Unix systems, but it doesn't work for @@ -257,7 +259,7 @@ environment in your profile: export NIX_GHC_LIBDIR="$HOME/.nix-profile/lib/ghc-$($NIX_GHC --numeric-version)" fi -## How to install a compiler with libraries, hoogle and documentation indexes +### How to install a compiler with libraries, hoogle and documentation indexes If you plan to use your environment for interactive programming, not just compiling random Haskell code, you might want to replace `ghcWithPackages` in @@ -319,7 +321,7 @@ page](http://kb.mozillazine.org/Links_to_local_pages_do_not_work) for workarounds. -## How to create ad hoc environments for `nix-shell` +### How to create ad hoc environments for `nix-shell` The easiest way to create an ad hoc development environment is to run `nix-shell` with the appropriate GHC environment given on the command-line: @@ -369,14 +371,14 @@ development commands. Note that you need `cabal-install` installed in your `$PATH` already to use it here --- the `nix-shell` environment does not provide it. -# How to create Nix builds for your own private Haskell packages +## How to create Nix builds for your own private Haskell packages If your own Haskell packages have build instructions for Cabal, then you can convert those automatically into build instructions for Nix using the `cabal2nix` utility, which you can install into your profile by running `nix-env -i cabal2nix`. -## How to build a stand-alone project +### How to build a stand-alone project For example, let's assume that you're working on a private project called `foo`. To generate a Nix build expression for it, change into the project's @@ -433,7 +435,7 @@ You can even use that generated file to run `nix-build`, too: $ nix-build shell.nix -## How to build projects that depend on each other +### How to build projects that depend on each other If you have multiple private Haskell packages that depend on each other, then you'll have to register those packages in the Nixpkgs set to make them visible @@ -468,9 +470,9 @@ or enter an interactive shell environment suitable for building them: $ nix-shell "" -A haskellPackages.bar.env -# Miscellaneous Topics +## Miscellaneous Topics -## How to build with profiling enabled +### How to build with profiling enabled Every Haskell package set takes a function called `overrides` that you can use to manipulate the package as much as you please. One useful application of this @@ -494,7 +496,7 @@ following snippet in your `~/.nixpkgs/config.nix` file: Then, replace instances of `haskellPackages` in the `cabal2nix`-generated `default.nix` or `shell.nix` files with `profiledHaskellPackages`. -## How to override package versions in a compiler-specific package set +### How to override package versions in a compiler-specific package set Nixpkgs provides the latest version of [`ghc-events`](http://hackage.haskell.org/package/ghc-events), which is 0.4.4.0 @@ -560,7 +562,7 @@ prefer one built with GHC 7.8.x in the first place. However, for users who cannot use GHC 7.10.x at all for some reason, the approach of downgrading to an older version might be useful. -## How to recover from GHC's infamous non-deterministic library ID bug +### How to recover from GHC's infamous non-deterministic library ID bug GHC and distributed build farms don't get along well: @@ -586,7 +588,7 @@ command, i.e. by running: rm /nix/var/nix/manifests/* rm /nix/var/nix/channel-cache/* -## Builds on Darwin fail with `math.h` not found +### Builds on Darwin fail with `math.h` not found Users of GHC on Darwin have occasionally reported that builds fail, because the compiler complains about a missing include file: @@ -603,7 +605,7 @@ can configure the environment variables in their `~/.bashrc` file to avoid the compiler error. -## Using Stack together with Nix +### Using Stack together with Nix -- While building package zlib-0.5.4.2 using: runhaskell -package=Cabal-1.22.4.0 -clear-package-db [... lots of flags ...] @@ -666,7 +668,7 @@ to find out the store path of the system's zlib library. Now, you can The same thing applies to `cabal configure`, of course, if you're building with `cabal-install` instead of Stack. -## Creating statically linked binaries +### Creating statically linked binaries There are two levels of static linking. The first option is to configure the build with the Cabal flag `--disable-executable-dynamic`. In Nix expressions, @@ -688,7 +690,7 @@ as shared libraries only, i.e. there is just no static library available that Cabal could link! -# Other resources +## Other resources - The Youtube video [Nix Loves Haskell](https://www.youtube.com/watch?v=BsBhi_r-OeE) provides an introduction into Haskell NG aimed at beginners. The slides are diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml index 9fd79877e83..743a1b70be7 100644 --- a/doc/languages-frameworks/index.xml +++ b/doc/languages-frameworks/index.xml @@ -20,6 +20,7 @@ such as Perl or Haskell. These are described in this chapter. + From 8a4252639bb7ebc21b51e5b38b7f472ed6f9dc4f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Dec 2015 20:55:47 +0100 Subject: [PATCH 235/289] gdouros fonts: fix changed sha256 hashes (close #11847) Hashes changed upstream without notice... --- pkgs/data/fonts/gdouros/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/fonts/gdouros/default.nix b/pkgs/data/fonts/gdouros/default.nix index 8ad6068a185..114b88c3040 100644 --- a/pkgs/data/fonts/gdouros/default.nix +++ b/pkgs/data/fonts/gdouros/default.nix @@ -1,13 +1,13 @@ {stdenv, fetchurl, unzip, lib }: let fonts = { - aegean = { version = "8.00"; file = "Aegean.zip"; sha256 = "09pmazcpxhkx3l8h4gxiixihi1c49pli5gvlcm1b6sbf4xvf9kwm"; + aegean = { version = "8.00"; file = "Aegean.zip"; sha256 = "0jhj4i0262f4zbm979fm01rnvc91a00kwkbcgvzs281256g2ciny"; description = "Scripts and symbols of the Aegean world"; }; - textfonts = { version = "6.00"; file = "Textfonts.zip"; sha256 = "10m6kpyj8cc0b4qxxi78akiyjxcbhxj2wmbicdcfh008jibbaxsz"; + textfonts = { version = "6.00"; file = "Textfonts.zip"; sha256 = "06igp3hdql0yfaj9h2ahh5n7yvj2ni7rj2jdmz534f9618l8qi6r"; description = "Fonts based on early Greek editions"; }; symbola = { version = "8.00"; file = "Symbola.zip"; sha256 = "1lfs2j816332ysvpb5ibj2gwpmyqyispqdl7skkshf2gra18hmhd"; description = "Basic Latin, Greek, Cyrillic and many Symbol blocks of Unicode"; }; - aegyptus = { version = "6.00"; file = "Aegyptus.zip"; sha256 = "092vci45wp9x0yky6dcfky4bs4avaxn6xpai3bs74gxskd2j9s3q"; + aegyptus = { version = "6.00"; file = "Aegyptus.zip"; sha256 = "10mr54ja9b169fhqfkrw510jybghrpjx7a8a7m38k5v39ck8wz6v"; description = "Egyptian Hieroglyphs, Coptic, Meroitic"; }; akkadian = { version = "7.13"; file = "Akkadian.zip"; sha256 = "1jd2fb6jnwpdwgkidsi2pnw0nk2cpya8k85299w591sqslfkxyij"; description = "Sumero-Akkadian Cuneiform"; }; From 29c676e73d1efa2f6bfcafecebc1931962d6103c Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 2 Dec 2015 23:18:01 +0000 Subject: [PATCH 236/289] pdfmod: init at 0.9.1 (close #11417) vcunat did some cosmetic changes, such as joining lines because we seem to rarely use one-identifier-per-line style, or fixing hyena description to conform to our rules. --- pkgs/applications/misc/pdfmod/default.nix | 53 ++++++++++++++++++++ pkgs/development/libraries/hyena/default.nix | 42 ++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++ 3 files changed, 99 insertions(+) create mode 100644 pkgs/applications/misc/pdfmod/default.nix create mode 100644 pkgs/development/libraries/hyena/default.nix diff --git a/pkgs/applications/misc/pdfmod/default.nix b/pkgs/applications/misc/pdfmod/default.nix new file mode 100644 index 00000000000..f23238b2dc6 --- /dev/null +++ b/pkgs/applications/misc/pdfmod/default.nix @@ -0,0 +1,53 @@ +{ stdenv, fetchurl, fetchpatch, pkgconfig, gnome_doc_utils, intltool +, mono, gtk-sharp, gnome-sharp, hyena +, which, makeWrapper, glib, gnome3, poppler, wrapGAppsHook +}: + +stdenv.mkDerivation rec { + name = "pdfmod-${version}"; + version = "0.9.1"; + + src = fetchurl { + url = "mirror://gnome/sources/pdfmod/0.9/pdfmod-${version}.tar.bz2"; + sha256 = "eb7c987514a053106ddf03f26544766c751c801d87762909b36415d46bc425c9"; + }; + + patches = [ (fetchpatch { + url = "https://raw.githubusercontent.com/City-busz/Arch-Linux-Repository" + + "/master/gnome/pdfmod/pdfmod/pdfmod-mono-2.10.patch"; + sha256 = "0fpz9ifr6476lqhd5rkb94dm68vlrwdq5w1aaxzgyjgdax9hxx81"; + }) ]; + + buildInputs = [ + pkgconfig gnome_doc_utils intltool mono gtk-sharp gnome-sharp + hyena which makeWrapper wrapGAppsHook + ]; + + preConfigure = '' + substituteInPlace configure --replace gmcs mcs + substituteInPlace lib/poppler-sharp/poppler-sharp/poppler-sharp.dll.config \ + --replace libpoppler-glib.so.4 libpoppler-glib.so + ''; + + postInstall = '' + makeWrapper "${mono}/bin/mono" "$out/bin/pdfmod" \ + --add-flags "$out/lib/pdfmod/PdfMod.exe" \ + --prefix MONO_GAC_PREFIX : ${gtk-sharp} \ + --prefix MONO_GAC_PREFIX : ${gnome-sharp} \ + --prefix LD_LIBRARY_PATH : ${glib}/lib \ + --prefix LD_LIBRARY_PATH : ${gtk-sharp}/lib \ + --prefix LD_LIBRARY_PATH : ${gnome-sharp}/lib \ + --prefix LD_LIBRARY_PATH : ${gtk-sharp.gtk}/lib \ + --prefix LD_LIBRARY_PATH : ${gnome3.gconf}/lib \ + --prefix LD_LIBRARY_PATH : ${poppler}/lib + ''; + + dontStrip = true; + + meta = with stdenv.lib; { + homepage = "https://wiki.gnome.org/Apps/PdfMod"; + description = "A simple application for modifying PDF documents"; + platforms = platforms.all; + maintainers = with maintainers; [ obadz ]; + }; +} diff --git a/pkgs/development/libraries/hyena/default.nix b/pkgs/development/libraries/hyena/default.nix new file mode 100644 index 00000000000..daa4f7fb9f2 --- /dev/null +++ b/pkgs/development/libraries/hyena/default.nix @@ -0,0 +1,42 @@ +{ stdenv, fetchurl, pkgconfig, mono, gtk-sharp, monoDLLFixer }: + +stdenv.mkDerivation rec { + name = "hyena-${version}"; + version = "0.5"; + + src = fetchurl { + url = "mirror://gnome/sources/hyena/${version}/hyena-${version}.tar.bz2" ; + sha256 = "eb7154a42b6529bb9746c39272719f3168d6363ed4bad305a916ed7d90bc8de9"; + }; + + buildInputs = [ + pkgconfig mono gtk-sharp + ]; + + postPatch = '' + patchShebangs build/dll-map-makefile-verifier + patchShebangs build/private-icon-theme-installer + find -name Makefile.in | xargs -n 1 -d '\n' sed -e 's/^dnl/#/' -i + ''; + + preConfigure = '' + substituteInPlace configure --replace gmcs mcs + ''; + + dontStrip = true; + + inherit monoDLLFixer; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Hyena; + description = "A C# library which contains a hodge-podge of random stuff"; + longDescription = '' + Hyena is a C# library used to make awesome applications. It contains a lot of random things, + including useful data structures, a Sqlite-based db layer, cool widgets, a JSON library, + a smart job/task scheduler, a user-query/search parser, and much more. It's particularly + useful for Gtk# applications, though only the Hyena.Gui assembly requires Gtk#. + ''; + platforms = platforms.all; + maintainers = with maintainers; [ obadz ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c961c51cfb3..8dfc2db0b3b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2681,6 +2681,8 @@ let pdfjam = callPackage ../tools/typesetting/pdfjam { }; + pdfmod = callPackage ../applications/misc/pdfmod { }; + jbig2enc = callPackage ../tools/graphics/jbig2enc { }; pdfread = callPackage ../tools/graphics/pdfread { @@ -6777,6 +6779,8 @@ let hydraAntLogger = callPackage ../development/libraries/java/hydra-ant-logger { }; + hyena = callPackage ../development/libraries/hyena { }; + icu = callPackage ../development/libraries/icu { }; id3lib = callPackage ../development/libraries/id3lib { }; From a326ab17550168a5b8bbeca2e1f024b94ac6d426 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 21 Dec 2015 17:16:49 +0100 Subject: [PATCH 237/289] linux-testing: 4.4.0-rc5 -> 4.4.0-rc6 Upstream changes can be found at: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/log/?id=v4.4-rc6 Signed-off-by: aszlig --- pkgs/os-specific/linux/kernel/linux-testing.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index 5cc5b2e8bca..43070f3306d 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.4-rc5"; - modDirVersion = "4.4.0-rc5"; + version = "4.4-rc6"; + modDirVersion = "4.4.0-rc6"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "0qr1a8nmq6csbsw4cbqnn3m37a0fapj7a7cm9vj7fy7kq1rgxkpb"; + sha256 = "1brb1v6185pf8gnff753hvpdsbdmjr5nsbvj0s4ljlpcgljrn6cb"; }; features.iwlwifi = true; From 91212771446ef0fd87f6460855ce4825937d091b Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Mon, 21 Dec 2015 03:14:24 +0000 Subject: [PATCH 238/289] gradle: 2.8 -> 2.9 --- pkgs/development/tools/build-managers/gradle/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index bee95d67ec3..e451370c9eb 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -34,12 +34,12 @@ rec { }; }; - gradle28 = gradleGen rec { - name = "gradle-2.8"; + gradleLatest = gradleGen rec { + name = "gradle-2.9"; src = fetchurl { url = "http://services.gradle.org/distributions/${name}-bin.zip"; - sha256 = "1jq3m6ihvcxyp37mwsg3i8li9hd6rpv8ri8ih2mgvph4y71bk3d8"; + sha256 = "c9159ec4362284c0a38d73237e224deae6139cbde0db4f0f44e1c7691dd3de2f"; }; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 57026762d1b..737888cc979 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1809,7 +1809,7 @@ let pgf_graphics = callPackage ../tools/graphics/pgf { }; pigz = callPackage ../tools/compression/pigz { }; - + pixz = callPackage ../tools/compression/pixz { }; pxz = callPackage ../tools/compression/pxz { }; @@ -2985,7 +2985,7 @@ let samplicator = callPackage ../tools/networking/samplicator { }; - screen = callPackage ../tools/misc/screen { + screen = callPackage ../tools/misc/screen { inherit (darwin.apple_sdk.libs) utmp; }; @@ -5717,7 +5717,7 @@ let gotty = goPackages.gotty.bin // { outputs = [ "bin" ]; }; gradleGen = callPackage ../development/tools/build-managers/gradle { }; - gradle = self.gradleGen.gradle28; + gradle = self.gradleGen.gradleLatest; gradle25 = self.gradleGen.gradle25; gperf = callPackage ../development/tools/misc/gperf { }; @@ -10300,7 +10300,7 @@ let gocode = goPackages.gocode.bin // { outputs = [ "bin" ]; }; - kgocode = callPackage ../applications/misc/kgocode { + kgocode = callPackage ../applications/misc/kgocode { inherit (pkgs.kde4) kdelibs; }; From 7e23ffd2c8d1e089d1cee7cdaa31c00903019d38 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Mon, 21 Dec 2015 17:49:06 +0100 Subject: [PATCH 239/289] ipaexfont: init at 003.01 --- pkgs/data/fonts/ipaexfont/default.nix | 31 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 32 insertions(+) create mode 100644 pkgs/data/fonts/ipaexfont/default.nix diff --git a/pkgs/data/fonts/ipaexfont/default.nix b/pkgs/data/fonts/ipaexfont/default.nix new file mode 100644 index 00000000000..ab163dcca9f --- /dev/null +++ b/pkgs/data/fonts/ipaexfont/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "ipaexfont-003.01"; + + src = fetchurl { + url = "http://dl.ipafont.ipa.go.jp/IPAexfont/IPAexfont00301.zip"; + sha256 = "0nmfyh10rzkvp0qmrla0dahkmmxq47678y4v8fdm8fpdzmf0kpn7"; + }; + + buildInputs = [ unzip ]; + + installPhase = '' + mkdir -p $out/share/fonts/opentype/ + cp *.ttf $out/share/fonts/opentype/ + ''; + + meta = with stdenv.lib; { + description = "Japanese font package with Mincho and Gothic fonts"; + longDescription = '' + IPAex font is a Japanese font developed by the Information-technology + Promotion Agency of Japan. It provides both Mincho and Gothic fonts, + suitable for both display and printing. + + This is the successor to the IPA fonts. + ''; + homepage = http://ipafont.ipa.go.jp/; + license = licenses.ipa; + maintainers = with maintainers; [ gebner ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8dfc2db0b3b..33334572772 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10768,6 +10768,7 @@ let iosevka = callPackage ../data/fonts/iosevka { }; ipafont = callPackage ../data/fonts/ipafont {}; + ipaexfont = callPackage ../data/fonts/ipaexfont {}; junicode = callPackage ../data/fonts/junicode { }; From cdd7310a503481e3c40266be45b6b8256d95ecbd Mon Sep 17 00:00:00 2001 From: Thomas Strobel Date: Mon, 21 Dec 2015 17:28:44 +0100 Subject: [PATCH 240/289] nixos avahi-daemon: add new option declarations Add new option declarations to control what information is published by the avahi daemon. The default values are chosen to respect the privacy of the user over the connectivity of the system. --- .../services/networking/avahi-daemon.nix | 88 +++++++++++++++---- 1 file changed, 72 insertions(+), 16 deletions(-) diff --git a/nixos/modules/services/networking/avahi-daemon.nix b/nixos/modules/services/networking/avahi-daemon.nix index 284b2b84e6c..8b178ee9398 100644 --- a/nixos/modules/services/networking/avahi-daemon.nix +++ b/nixos/modules/services/networking/avahi-daemon.nix @@ -1,5 +1,5 @@ # Avahi daemon. -{ config, lib, pkgs, ... }: +{ config, lib, utils, pkgs, ... }: with lib; @@ -7,7 +7,9 @@ let cfg = config.services.avahi; - inherit (pkgs) avahi; + # We must escape interfaces due to the systemd interpretation + subsystemDevice = interface: + "sys-subsystem-net-devices-${utils.escapeSystemdPath interface}.device"; avahiDaemonConf = with cfg; pkgs.writeText "avahi-daemon.conf" '' [server] @@ -21,12 +23,18 @@ let browse-domains=${concatStringsSep ", " browseDomains} use-ipv4=${if ipv4 then "yes" else "no"} use-ipv6=${if ipv6 then "yes" else "no"} + ${optionalString (interfaces!=null) "allow-interfaces=${concatStringsSep "," interfaces}"} [wide-area] enable-wide-area=${if wideArea then "yes" else "no"} [publish] - disable-publishing=${if publishing then "no" else "yes"} + disable-publishing=${if publish.enable then "no" else "yes"} + disable-user-service-publishing=${if publish.userServices then "no" else "yes"} + publish-addresses=${if publish.userServices || publish.addresses then "yes" else "no"} + publish-hinfo=${if publish.hinfo then "yes" else "no"} + publish-workstation=${if publish.workstation then "yes" else "no"} + publish-domain=${if publish.domain then "yes" else "no"} ''; in @@ -74,14 +82,55 @@ in description = ''Whether to use IPv6''; }; + interfaces = mkOption { + type = types.nullOr (types.listOf types.str); + default = null; + description = '' + List of network interfaces that should be used by the avahi-daemon. + Other interfaces will be ignored. If null all local interfaces + except loopback and point-to-point will be used. + ''; + }; + wideArea = mkOption { default = true; description = ''Whether to enable wide-area service discovery.''; }; - publishing = mkOption { - default = true; - description = ''Whether to allow publishing.''; + publish = { + enable = mkOption { + default = false; + description = ''Whether to allow publishing in general.''; + }; + + userServices = mkOption { + default = false; + description = ''Whether to publish user services. Will set addresses=true.''; + }; + + addresses = mkOption { + default = false; + description = ''Whether to register mDNS address records for all local IP addresses.''; + }; + + hinfo = mkOption { + default = false; + description = '' + Whether to register an mDNS HINFO record which contains information about the + local operating system and CPU. + ''; + }; + + workstation = mkOption { + default = false; + description = ''Whether to register a service of type "_workstation._tcp" on the local LAN.''; + }; + + domain = mkOption { + default = false; + description = ''Whether to announce the locally used domain name for browsing by other hosts.''; + }; + }; nssmdns = mkOption { @@ -118,29 +167,36 @@ in system.nssModules = optional cfg.nssmdns pkgs.nssmdns; - environment.systemPackages = [ avahi ]; + environment.systemPackages = [ pkgs.avahi ]; - jobs.avahi_daemon = - { name = "avahi-daemon"; + systemd.services.avahi-daemon = + let + deps = optionals (cfg.interfaces!=null) (map subsystemDevice cfg.interfaces); + in + { description = "Avahi daemon"; + wantedBy = [ "ip-up.target" ]; + bindsTo = deps; + after = deps; + before = [ "ip-up.target" ]; + # Receive restart event after resume + partOf = [ "post-resume.target" ]; - startOn = "ip-up"; + path = [ pkgs.coreutils pkgs.avahi ]; + + preStart = "mkdir -p /var/run/avahi-daemon"; script = '' - export PATH="${avahi}/bin:${avahi}/sbin:$PATH" - # Make NSS modules visible so that `avahi_nss_support ()' can # return a sensible value. export LD_LIBRARY_PATH="${config.system.nssModules.path}" - mkdir -p /var/run/avahi-daemon - - exec ${avahi}/sbin/avahi-daemon --syslog -f "${avahiDaemonConf}" + exec ${pkgs.avahi}/sbin/avahi-daemon --syslog -f "${avahiDaemonConf}" ''; }; services.dbus.enable = true; - services.dbus.packages = [avahi]; + services.dbus.packages = [ pkgs.avahi ]; # Enabling Avahi without exposing it in the firewall doesn't make # sense. From 2b9b9dc611e10fa6d800970223ed87cf66ee3819 Mon Sep 17 00:00:00 2001 From: Thomas Strobel Date: Mon, 21 Dec 2015 17:31:09 +0100 Subject: [PATCH 241/289] nixos cups-browsed: better link to avahi-daemon Link cups browsed daemon to reload or exit with the avahi-daemon. --- nixos/modules/services/printing/cupsd.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix index 69c76cf97cf..0fe25b66da0 100644 --- a/nixos/modules/services/printing/cupsd.nix +++ b/nixos/modules/services/printing/cupsd.nix @@ -247,6 +247,8 @@ in wantedBy = [ "multi-user.target" ]; wants = [ "cups.service" "avahi-daemon.service" ]; + bindsTo = [ "cups.service" "avahi-daemon.service" ]; + partOf = [ "cups.service" "avahi-daemon.service" ]; after = [ "cups.service" "avahi-daemon.service" ]; path = [ cups ]; From d80aa87b131d4bcdad1942d526a46992e82d4cd3 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 21 Dec 2015 16:11:55 -0800 Subject: [PATCH 242/289] coqPackages_8_5.coq: 8.5b2 -> 8.5rc1 --- pkgs/applications/science/logic/coq/8.5.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/science/logic/coq/8.5.nix b/pkgs/applications/science/logic/coq/8.5.nix index 2afa18d40a4..df888cf5c79 100644 --- a/pkgs/applications/science/logic/coq/8.5.nix +++ b/pkgs/applications/science/logic/coq/8.5.nix @@ -6,7 +6,7 @@ {stdenv, fetchurl, writeText, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null, csdp ? null}: let - version = "8.5b2"; + version = "8.5rc1"; coq-version = "8.5"; buildIde = lablgtk != null; ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else ""; @@ -23,8 +23,8 @@ stdenv.mkDerivation { inherit ocaml camlp5; src = fetchurl { - url = https://coq.inria.fr/distrib/V8.5beta2/files/coq-8.5beta2.tar.gz; - sha256 = "1z34ch56lld86srgsjdwdq3girz0k0wqmvyxsa7jwvvxn3qmmq2v"; + url = https://coq.inria.fr/distrib/V8.5rc1/files/coq-8.5rc1.tar.gz; + sha256 = "0n8mb7di9iwg8dgy1xmivf2ajx8kqkrj9mafc32vicn2lbg16q2r"; }; buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ]; @@ -34,7 +34,7 @@ stdenv.mkDerivation { RM=$(type -tp rm) substituteInPlace configure --replace "/bin/uname" "$UNAME" substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM" - substituteInPlace Makefile.build --replace "ifeq (\$(ARCH),Darwin)" "ifeq (\$(ARCH),Darwinx)" + substituteInPlace configure.ml --replace "if arch = \"Darwin\" then \"md5" "if arch = \"Darwinx\" then \"md5" ${csdpPatch} ''; From 3c85ff442dc328fdf55dfa8ef6a3b60041a2c29d Mon Sep 17 00:00:00 2001 From: koral Date: Sat, 19 Dec 2015 11:33:21 +0000 Subject: [PATCH 243/289] nano: 2.4.2 -> 2.5.0, fixes #11829 --- pkgs/applications/editors/nano/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix index 9fc223d81da..9c8238244ff 100644 --- a/pkgs/applications/editors/nano/default.nix +++ b/pkgs/applications/editors/nano/default.nix @@ -11,10 +11,10 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "nano-${version}"; - version = "2.4.2"; + version = "2.5.0"; src = fetchurl { url = "mirror://gnu/nano/${name}.tar.gz"; - sha256 = "1fb5gzdm3jdx1f2vyanjvdmppaz082lf4kinyffnssgmzhc7zkf8"; + sha256 = "1vl9bim56k1b4zwc3icxp46w6pn6gb042j1h4jlz1jklxxpkwcpz"; }; buildInputs = [ ncurses ] ++ optional enableNls gettext; configureFlags = '' From d038464e6e6ed526ead07944395053b71531628f Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Thu, 17 Dec 2015 13:24:52 -0500 Subject: [PATCH 244/289] Use the right prefix for fleet extra config. --- nixos/modules/services/cluster/fleet.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/cluster/fleet.nix b/nixos/modules/services/cluster/fleet.nix index 04d95fbf186..041f4426911 100644 --- a/nixos/modules/services/cluster/fleet.nix +++ b/nixos/modules/services/cluster/fleet.nix @@ -90,7 +90,7 @@ in { extraConfig = mkOption { type = types.attrsOf types.str; - apply = mapAttrs' (n: v: nameValuePair ("ETCD_" + n) v); + apply = mapAttrs' (n: v: nameValuePair ("FLEET_" + n) v); default = {}; example = literalExample '' { From a2fb70b6dfad623f0bdacd1768659db4eac58c98 Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Thu, 17 Dec 2015 13:51:22 -0500 Subject: [PATCH 245/289] Fix fleet certfile argument, fixes #11794 --- nixos/modules/services/cluster/fleet.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/cluster/fleet.nix b/nixos/modules/services/cluster/fleet.nix index 041f4426911..78d4ea93c49 100644 --- a/nixos/modules/services/cluster/fleet.nix +++ b/nixos/modules/services/cluster/fleet.nix @@ -120,7 +120,7 @@ in { FLEET_PUBLIC_IP = cfg.publicIp; FLEET_ETCD_CAFILE = cfg.etcdCafile; FLEET_ETCD_KEYFILE = cfg.etcdKeyfile; - FEELT_ETCD_CERTFILE = cfg.etcdCertfile; + FLEET_ETCD_CERTFILE = cfg.etcdCertfile; FLEET_METADATA = cfg.metadata; } // cfg.extraConfig; serviceConfig = { From 3acf8132c3ddd01b3e0e3909d11b08d58e30ccb1 Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Wed, 2 Dec 2015 20:36:19 -0500 Subject: [PATCH 246/289] murmur: sslCa and extraConfig options, fixes #11419 --- nixos/modules/services/networking/murmur.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/nixos/modules/services/networking/murmur.nix b/nixos/modules/services/networking/murmur.nix index 4f91a494747..1cc19a2c9e0 100644 --- a/nixos/modules/services/networking/murmur.nix +++ b/nixos/modules/services/networking/murmur.nix @@ -39,6 +39,9 @@ let certrequired=${if cfg.clientCertRequired then "true" else "false"} ${if cfg.sslCert == "" then "" else "sslCert="+cfg.sslCert} ${if cfg.sslKey == "" then "" else "sslKey="+cfg.sslKey} + ${if cfg.sslCa == "" then "" else "sslCA="+cfg.sslCa} + + ${cfg.extraConfig} ''; in { @@ -219,6 +222,18 @@ in default = ""; description = "Path to your SSL key."; }; + + sslCa = mkOption { + type = types.str; + default = ""; + description = "Path to your SSL CA certificate."; + }; + + extraConfig = mkOption { + type = types.str; + default = ""; + description = "Extra configuration to put into mumur.ini."; + }; }; }; From 842613fb1045a5c31dd32fa80d061d70c0bf52f5 Mon Sep 17 00:00:00 2001 From: Bojan Nikolic Date: Fri, 18 Dec 2015 16:54:19 +0000 Subject: [PATCH 247/289] aspell: improve the doc string, fixes #11814 It is better to specify data-dir in the environmental variable since then both the language description files and the dictionaries will be found. Since dict-dir defaults to data-dir only the latter needs to be set. See for example https://github.com/NixOS/nixpkgs/issues/1000 --- pkgs/development/libraries/aspell/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/aspell/default.nix b/pkgs/development/libraries/aspell/default.nix index 38d734e902c..5af340bef07 100644 --- a/pkgs/development/libraries/aspell/default.nix +++ b/pkgs/development/libraries/aspell/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { ''; # Note: Users should define the `ASPELL_CONF' environment variable to - # `dict-dir $HOME/.nix-profile/lib/aspell/' so that they can access + # `data-dir $HOME/.nix-profile/lib/aspell/' so that they can access # dictionaries installed in their profile. # # We can't use `$out/etc/aspell.conf' for that purpose since Aspell From a0138e1ed559281c80e728183ebb7c56a0afc54e Mon Sep 17 00:00:00 2001 From: Alexander Shabalin Date: Tue, 22 Dec 2015 01:18:35 +0300 Subject: [PATCH 248/289] dynamic-colors: init at 2013-12-28, fixes #11874 --- pkgs/tools/misc/dynamic-colors/default.nix | 37 ++++++++++++ ...eparate-config-and-dynamic-root-path.patch | 58 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 97 insertions(+) create mode 100644 pkgs/tools/misc/dynamic-colors/default.nix create mode 100644 pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch diff --git a/pkgs/tools/misc/dynamic-colors/default.nix b/pkgs/tools/misc/dynamic-colors/default.nix new file mode 100644 index 00000000000..b587afb645c --- /dev/null +++ b/pkgs/tools/misc/dynamic-colors/default.nix @@ -0,0 +1,37 @@ +{ stdenv, fetchFromGitHub, makeWrapper, tmux, vim }: + +stdenv.mkDerivation rec { + name = "dynamic-colors-git-${version}"; + version = "2013-12-28"; + + src = fetchFromGitHub { + owner = "sos4nt"; + repo = "dynamic-colors"; + rev = "35325f43620c5ee11a56db776b8f828bc5ae1ddd"; + sha256 = "1xsjanqyvjlcj1fb8x4qafskxp7aa9b43ba9gyjgzr7yz8hkl4iz"; + }; + + buildInputs = [ makeWrapper ]; + + patches = [ ./separate-config-and-dynamic-root-path.patch ]; + + installPhase = '' + mkdir -p $out/bin $out/etc/bash_completion.d $out/share/dynamic-colors + cp bin/dynamic-colors $out/bin/ + cp completions/dynamic-colors.bash $out/etc/bash_completion.d/ + cp -r colorschemes $out/share/dynamic-colors/ + + sed -e 's|\|${tmux}/bin/tmux|g' \ + -e 's|/usr/bin/vim|${vim}/bin/vim|g' \ + -i "$out/bin/dynamic-colors" + + wrapProgram $out/bin/dynamic-colors --set DYNAMIC_COLORS_ROOT "$out/share/dynamic-colors" + ''; + + meta = { + homepage = https://github.com/sos4nt/dynamic-colors; + license = stdenv.lib.licenses.mit; + description = "Change terminal colors on the fly"; + platforms = stdenv.lib.platforms.unix; + }; +} diff --git a/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch b/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch new file mode 100644 index 00000000000..7462ed0e3af --- /dev/null +++ b/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch @@ -0,0 +1,58 @@ +From ee44b859003972275d8e469ab41b9900420295e0 Mon Sep 17 00:00:00 2001 +From: Malte Rohde +Date: Fri, 9 Jan 2015 13:10:41 +0100 +Subject: [PATCH] Store user configuration in appropriate config location. + +So that the dynamic-colors source can live somewhere else +(e.g., /usr/local/dynamic-colors) and multiple users +can use the same script. +--- + bin/dynamic-colors | 21 ++++++++++++++++----- + 1 file changed, 16 insertions(+), 5 deletions(-) + +diff --git a/bin/dynamic-colors b/bin/dynamic-colors +index a669221..5d6bce7 100755 +--- a/bin/dynamic-colors ++++ b/bin/dynamic-colors +@@ -84,16 +84,27 @@ else + fi + COLORSCHEMES="${DYNAMIC_COLORS_ROOT}/colorschemes" + ++if [ -z "${DYNAMIC_COLORS_HOME}" ]; then ++ if [ -d "${HOME}/.dynamic-colors" ] || [ -z "${XDG_CONFIG_HOME}" ]; then ++ DYNAMIC_COLORS_HOME="${HOME}/.dynamic-colors" ++ else ++ DYNAMIC_COLORS_HOME="${XDG_CONFIG_HOME}/dynamic-colors" ++ fi ++else ++ DYNAMIC_COLORS_HOME="${DYNAMIC_COLORS_HOME%/}" ++fi ++ + write_colorscheme_name () { +- echo "$1" > "${DYNAMIC_COLORS_ROOT}/colorscheme" ++ [ ! -d "${DYNAMIC_COLORS_HOME}" ] && mkdir -p "${DYNAMIC_COLORS_HOME}" ++ echo "$1" > "${DYNAMIC_COLORS_HOME}/colorscheme" + } + + load_colorscheme_name () { +- head -1 "${DYNAMIC_COLORS_ROOT}/colorscheme" ++ head -1 "${DYNAMIC_COLORS_HOME}/colorscheme" + } + + init () { +- [ ! -f "${DYNAMIC_COLORS_ROOT}/colorscheme" ] && return ++ [ ! -f "${DYNAMIC_COLORS_HOME}/colorscheme" ] && return + colorscheme_name=$(load_colorscheme_name) + load_colorscheme "$colorscheme_name" + set_colors +@@ -142,8 +153,8 @@ audit () { + } + + cycle() { +- if [ -f "${DYNAMIC_COLORS_ROOT}/colorscheme" ]; then +- current=`head -1 "${DYNAMIC_COLORS_ROOT}/colorscheme"` ++ if [ -f "${DYNAMIC_COLORS_HOME}/colorscheme" ]; then ++ current=$(load_colorscheme_name) + found=false + cd "$COLORSCHEMES" + for file in *.sh; do diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 51b1b378b9c..e06048de1ef 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -839,6 +839,8 @@ let linuxHeaders = linuxHeaders_3_18; }; + dynamic-colors = callPackage ../tools/misc/dynamic-colors { }; + edac-utils = callPackage ../os-specific/linux/edac-utils { }; eggdrop = callPackage ../tools/networking/eggdrop { }; From 895875bdacb91d1c8e91a753902047d4c69174e0 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Mon, 21 Dec 2015 10:41:34 -0500 Subject: [PATCH 249/289] maven: 3.3.3 -> 3.3.9, fixes #11867 --- .../development/tools/build-managers/apache-maven/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/build-managers/apache-maven/default.nix b/pkgs/development/tools/build-managers/apache-maven/default.nix index ba8f2474f44..96bbc2be0b2 100644 --- a/pkgs/development/tools/build-managers/apache-maven/default.nix +++ b/pkgs/development/tools/build-managers/apache-maven/default.nix @@ -2,7 +2,7 @@ assert jdk != null; -let version = "3.3.3"; in +let version = "3.3.9"; in stdenv.mkDerivation rec { name = "apache-maven-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://apache/maven/maven-3/${version}/binaries/${name}-bin.tar.gz"; - sha256 = "0ya71kxx0isvdnxz3n0rcynlgjah06mvp5r039x61wxr5ahw939s"; + sha256 = "6e3e9c949ab4695a204f74038717aa7b2689b1be94875899ac1b3fe42800ff82"; }; buildInputs = [ makeWrapper ]; From defe78e553421a613310cad4d32a9ee19bf53034 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Tue, 17 Nov 2015 16:23:39 -0500 Subject: [PATCH 250/289] licenses: add non-commercial Creative Commons --- lib/licenses.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/lib/licenses.nix b/lib/licenses.nix index ebd7d56d761..4703587ed56 100644 --- a/lib/licenses.nix +++ b/lib/licenses.nix @@ -85,6 +85,26 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec { fullName = "Creative Commons Zero v1.0 Universal"; }; + cc-by-nc-sa-20 = spdx { + spdxId = "CC-BY-NC-SA-2.0"; + fullName = "Creative Commons Attribution Non Commercial Share Alike 2.0"; + }; + + cc-by-nc-sa-25 = spdx { + spdxId = "CC-BY-NC-SA-2.5"; + fullName = "Creative Commons Attribution Non Commercial Share Alike 2.5"; + }; + + cc-by-nc-sa-30 = spdx { + spdxId = "CC-BY-NC-SA-3.0"; + fullName = "Creative Commons Attribution Non Commercial Share Alike 3.0"; + }; + + cc-by-nc-sa-40 = spdx { + spdxId = "CC-BY-NC-SA-4.0"; + fullName = "Creative Commons Attribution Non Commercial Share Alike 4.0"; + }; + cc-by-sa-25 = spdx { spdxId = "CC-BY-SA-2.5"; fullName = "Creative Commons Attribution Share Alike 2.5"; From 60df6fdd345cad243a4ef7e5c9cdf42f0a54f0d3 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Tue, 17 Nov 2015 16:24:48 -0500 Subject: [PATCH 251/289] vanilla-dmz: init at 0.4.4, fixes #11102 Vanilla DMZ cursor theme --- pkgs/data/icons/vanilla-dmz/default.nix | 31 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/data/icons/vanilla-dmz/default.nix diff --git a/pkgs/data/icons/vanilla-dmz/default.nix b/pkgs/data/icons/vanilla-dmz/default.nix new file mode 100644 index 00000000000..3b80781f414 --- /dev/null +++ b/pkgs/data/icons/vanilla-dmz/default.nix @@ -0,0 +1,31 @@ +{ stdenv, lib, fetchzip, xorg }: + +stdenv.mkDerivation rec { + name = "vanilla-dmz-${version}"; + version = "0.4.4"; + src = fetchzip { + url = "http://ftp.de.debian.org/debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_${version}.tar.gz"; + sha256 = "1l0c0svk7dy0d7icg7j2181wdn3fvks5gmyqnvjk749ppy5ks8mj"; + }; + buildInputs = [ xorg.xcursorgen ]; + buildPhase = '' + cd DMZ-White/pngs; ./make.sh; cd - + cd DMZ-Black/pngs; ./make.sh; cd - + ''; + installPhase = '' + install -d $out/share/icons/Vanilla-DMZ/cursors + cp -a DMZ-White/xcursors/* $out/share/icons/Vanilla-DMZ/cursors + install -Dm644 DMZ-White/index.theme $out/share/icons/Vanilla-DMZ/index.theme + + install -d $out/share/icons/Vanilla-DMZ-AA/cursors + cp -a DMZ-Black/xcursors/* $out/share/icons/Vanilla-DMZ-AA/cursors + install -Dm644 DMZ-Black/index.theme $out/share/icons/Vanilla-DMZ-AA/index.theme + ''; + meta = with lib; { + homepage = "http://jimmac.musichall.cz"; + description = "A style neutral scalable cursor theme."; + platforms = platforms.all; + license = licenses.cc-by-nc-sa-30; + maintainers = with maintainers; [ cstrahan ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e06048de1ef..fa914e16c04 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10920,6 +10920,8 @@ let unifont_upper = callPackage ../data/fonts/unifont_upper { }; + vanilla-dmz = callPackage ../data/icons/vanilla-dmz { }; + vistafonts = callPackage ../data/fonts/vista-fonts { }; wqy_microhei = callPackage ../data/fonts/wqy-microhei { }; From d76c26e876bfea826a1e43bbe8f0243095566216 Mon Sep 17 00:00:00 2001 From: Alexander Shabalin Date: Mon, 21 Dec 2015 23:37:00 +0300 Subject: [PATCH 252/289] gibo: init at 1.0.4, fixes #11871 --- pkgs/tools/misc/gibo/default.nix | 34 ++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/tools/misc/gibo/default.nix diff --git a/pkgs/tools/misc/gibo/default.nix b/pkgs/tools/misc/gibo/default.nix new file mode 100644 index 00000000000..67c84494692 --- /dev/null +++ b/pkgs/tools/misc/gibo/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchFromGitHub, coreutils, findutils, git }: + +stdenv.mkDerivation rec { + name = "gibo-${version}"; + version = "1.0.4"; + + src = fetchFromGitHub { + owner = "simonwhitaker"; + repo = "gibo"; + rev = version; + sha256 = "1vzchggxv660c1cj5v0hlmln7yda48wjy2cv0qwi619cmr5hwbgh"; + }; + + phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; + + installPhase = '' + mkdir -p $out/bin $out/etc/bash_completion.d + cp gibo $out/bin + cp gibo-completion.bash $out/etc/bash_completion.d + + sed -e 's|\ Date: Mon, 21 Dec 2015 20:20:29 +0100 Subject: [PATCH 253/289] nixos trustedGRUB: add support for HP laptops --- .../modules/system/boot/loader/grub/grub.nix | 62 ++++++++++++------- pkgs/tools/misc/grub/trusted.nix | 23 ++++--- pkgs/top-level/all-packages.nix | 2 + 3 files changed, 56 insertions(+), 31 deletions(-) diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix index 87dbbd7cd51..47605e3685c 100644 --- a/nixos/modules/system/boot/loader/grub/grub.nix +++ b/nixos/modules/system/boot/loader/grub/grub.nix @@ -10,8 +10,11 @@ let realGrub = if cfg.version == 1 then pkgs.grub else if cfg.zfsSupport then pkgs.grub2.override { zfsSupport = true; } - else if cfg.enableTrustedBoot then pkgs.trustedGrub - else pkgs.grub2; + else if cfg.trustedBoot.enable + then if cfg.trustedBoot.isHPLaptop + then pkgs.trustedGrub-for-HP + else pkgs.trustedGrub + else pkgs.grub2; grub = # Don't include GRUB if we're only generating a GRUB menu (e.g., @@ -369,24 +372,37 @@ in ''; }; - enableTrustedBoot = mkOption { - default = false; - type = types.bool; - description = '' - Enable trusted boot. GRUB will measure all critical components during - the boot process to offer TCG (TPM) support. - ''; - }; + trustedBoot = { + + enable = mkOption { + default = false; + type = types.bool; + description = '' + Enable trusted boot. GRUB will measure all critical components during + the boot process to offer TCG (TPM) support. + ''; + }; + + systemHasTPM = mkOption { + default = ""; + example = "YES_TPM_is_activated"; + type = types.string; + description = '' + Assertion that the target system has an activated TPM. It is a safety + check before allowing the activation of 'trustedBoot.enable'. TrustedBoot + WILL FAIL TO BOOT YOUR SYSTEM if no TPM is available. + ''; + }; + + isHPLaptop = mkOption { + default = false; + type = types.bool; + description = '' + Use a special version of TrustedGRUB that is needed by some HP laptops + and works only for the HP laptops. + ''; + }; - systemHasTPM = mkOption { - default = ""; - example = "YES_TPM_is_activated"; - type = types.string; - description = '' - Assertion that the target system has an activated TPM. It is a safety - check before allowing the activation of 'enableTrustedBoot'. TrustedBoot - WILL FAIL TO BOOT YOUR SYSTEM if no TPM is available. - ''; }; }; @@ -452,19 +468,19 @@ in message = "You cannot have duplicated devices in mirroredBoots"; } { - assertion = !cfg.enableTrustedBoot || cfg.version == 2; + assertion = !cfg.trustedBoot.enable || cfg.version == 2; message = "Trusted GRUB is only available for GRUB 2"; } { - assertion = !cfg.efiSupport || !cfg.enableTrustedBoot; + assertion = !cfg.efiSupport || !cfg.trustedBoot.enable; message = "Trusted GRUB does not have EFI support"; } { - assertion = !cfg.zfsSupport || !cfg.enableTrustedBoot; + assertion = !cfg.zfsSupport || !cfg.trustedBoot.enable; message = "Trusted GRUB does not have ZFS support"; } { - assertion = !cfg.enableTrustedBoot || cfg.systemHasTPM == "YES_TPM_is_activated"; + assertion = !cfg.trustedBoot.enable || cfg.trustedBoot.systemHasTPM == "YES_TPM_is_activated"; message = "Trusted GRUB can break the system! Confirm that the system has an activated TPM by setting 'systemHasTPM'."; } ] ++ flip concatMap cfg.mirroredBoots (args: [ diff --git a/pkgs/tools/misc/grub/trusted.nix b/pkgs/tools/misc/grub/trusted.nix index 87c551db4e3..694f45599f3 100644 --- a/pkgs/tools/misc/grub/trusted.nix +++ b/pkgs/tools/misc/grub/trusted.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, fetchgit, autogen, flex, bison, python, autoconf, automake , gettext, ncurses, libusb, freetype, qemu, devicemapper +, for_HP_laptop ? false }: with stdenv.lib; @@ -11,7 +12,7 @@ let inPCSystems = any (system: stdenv.system == system) (mapAttrsToList (name: _: name) pcSystems); - version = "1.2.1"; + version = if for_HP_laptop then "1.2.1" else "1.2.0"; unifont_bdf = fetchurl { url = "http://unifoundry.com/unifont-5.1.20080820.bdf.gz"; @@ -25,16 +26,22 @@ let }; -in ( +in stdenv.mkDerivation rec { name = "trustedGRUB2-${version}"; - src = fetchgit { - url = "https://github.com/Sirrix-AG/TrustedGRUB2"; - rev = "ab483d389bda3115ca0ae4202fd71f2e4a31ad41"; - sha256 = "4b715837f8632278720d8b29aec06332f5302c6ba78183ced5f48d3c376d89c0"; - }; + src = if for_HP_laptop + then fetchgit { + url = "https://github.com/Sirrix-AG/TrustedGRUB2"; + rev = "ab483d389bda3115ca0ae4202fd71f2e4a31ad41"; + sha256 = "4b715837f8632278720d8b29aec06332f5302c6ba78183ced5f48d3c376d89c0"; + } + else fetchgit { + url = "https://github.com/Sirrix-AG/TrustedGRUB2"; + rev = "1ff54a5fbe02ea01df5a7de59b1e0201e08d4f76"; + sha256 = "8c17bd7e14dd96ae9c4e98723f4e18ec6b21d45ac486ecf771447649829d0b34"; + }; nativeBuildInputs = [ autogen flex bison python autoconf automake ]; buildInputs = [ ncurses libusb freetype gettext devicemapper ] @@ -89,4 +96,4 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; platforms = platforms.gnu; }; -}) +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 86a722b278a..917afffdfcf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1741,6 +1741,8 @@ let trustedGrub = callPackage_i686 ../tools/misc/grub/trusted.nix { }; + trustedGrub-for-HP = callPackage_i686 ../tools/misc/grub/trusted.nix { for_HP_laptop = true; }; + grub2 = grub2_full; grub2_full = callPackage ../tools/misc/grub/2.0x.nix { }; From 0d7c0efa7d27c8399cdc3079f7a23144919bc286 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 15 Dec 2015 02:38:07 +0300 Subject: [PATCH 254/289] udisks2: fix udev rules file (close #11743) This properly hides system partitions (like EFI or Windows recovery) from UDisks. --- nixos/modules/services/hardware/udisks2.nix | 2 +- pkgs/os-specific/linux/udisks/2-default.nix | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/hardware/udisks2.nix b/nixos/modules/services/hardware/udisks2.nix index fd6d8886348..ad5dc8e8a49 100644 --- a/nixos/modules/services/hardware/udisks2.nix +++ b/nixos/modules/services/hardware/udisks2.nix @@ -39,7 +39,7 @@ with lib; mkdir -m 0755 -p /var/lib/udisks2 ''; - #services.udev.packages = [ pkgs.udisks2 ]; + services.udev.packages = [ pkgs.udisks2 ]; systemd.services.udisks2 = { description = "Udisks2 service"; diff --git a/pkgs/os-specific/linux/udisks/2-default.nix b/pkgs/os-specific/linux/udisks/2-default.nix index 060d9ad1dd3..35873b3a062 100644 --- a/pkgs/os-specific/linux/udisks/2-default.nix +++ b/pkgs/os-specific/linux/udisks/2-default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, intltool +{ stdenv, fetchurl, pkgconfig, intltool, gnused , expat, acl, systemd, glib, libatasmart, polkit , libxslt, docbook_xsl, utillinux, mdadm, libgudev }: @@ -21,7 +21,11 @@ stdenv.mkDerivation rec { '' substituteInPlace src/main.c --replace \ "@path@" \ - "${utillinux}/bin:${mdadm}/sbin:/var/run/current-system/sw/bin:/var/run/current-system/sw/bin" + "${utillinux}/bin:${mdadm}/bin:/run/current-system/sw/bin" + substituteInPlace data/80-udisks2.rules \ + --replace "/bin/sh" "${stdenv.shell}" \ + --replace "/sbin/mdadm" "${mdadm}/bin/mdadm" \ + --replace " sed " " ${gnused}/bin/sed " ''; nativeBuildInputs = [ pkgconfig intltool ]; From 53a5a44190f34fe579da3b173607871e23dbf520 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Tue, 22 Dec 2015 05:28:46 -0500 Subject: [PATCH 255/289] vagrant: 1.7.4 -> 1.8.0 --- pkgs/development/tools/vagrant/default.nix | 28 +++++++++++----------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix index 085807e1bfa..2a6700a4ca9 100644 --- a/pkgs/development/tools/vagrant/default.nix +++ b/pkgs/development/tools/vagrant/default.nix @@ -4,11 +4,11 @@ assert stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux"; let - version = "1.7.4"; + version = "1.8.0"; rake = buildRubyGem { inherit ruby; - name = "rake-10.3.2"; - sha256 = "0nvpkjrpsk8xxnij2wd1cdn6arja9q11sxx4aq4fz18bc6fss15m"; + name = "rake-10.4.2"; + sha256 = "1rn03rqlf1iv6n87a78hkda2yqparhhaivfjpizblmxvlw2hk5r8"; }; in @@ -18,13 +18,13 @@ stdenv.mkDerivation rec { src = if stdenv.system == "x86_64-linux" then fetchurl { - url = "https://dl.bintray.com/mitchellh/vagrant/vagrant_${version}_x86_64.deb"; - sha256 = "0dl3cskpz7d8mmv0ah86426vlx0lj1wkjdlb5gc868dfsysw5lnw"; + url = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_x86_64.deb"; + sha256 = "0hvi6db5lphgzsykm1wn76jj4wwmm6lshvvd0qz7ipyyyhnd7sjp"; } else fetchurl { - url = "https://dl.bintray.com/mitchellh/vagrant/vagrant_${version}_i686.deb"; - sha256 = "0sns9q48c6b2sabp6bwkppx8ffp774jhv69jrv225qrnifx12105"; + url = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_i686.deb"; + sha256 = "1jvscbxqbhavw4q81y5718qbyj74b9lwfw3gb4c1f4jmgm08wxxk"; }; meta = with stdenv.lib; { @@ -46,9 +46,10 @@ stdenv.mkDerivation rec { # overwrite embedded binaries - # curl: curl - rm opt/vagrant/embedded/bin/curl + # curl: curl, curl-config + rm opt/vagrant/embedded/bin/{curl,curl-config} ln -s ${curl}/bin/curl opt/vagrant/embedded/bin + ln -s ${curl}/bin/curl-config opt/vagrant/embedded/bin # libarchive: bsdtar, bsdcpio rm opt/vagrant/embedded/bin/{bsdtar,bsdcpio} @@ -60,8 +61,8 @@ stdenv.mkDerivation rec { ln -s ${openssl}/bin/c_rehash opt/vagrant/embedded/bin ln -s ${openssl}/bin/openssl opt/vagrant/embedded/bin - # ruby: erb, gem, irb, rake, rdoc, ri, ruby, testrb - rm opt/vagrant/embedded/bin/{erb,gem,irb,rake,rdoc,ri,ruby,testrb} + # ruby: erb, gem, irb, rake, rdoc, ri, ruby + rm opt/vagrant/embedded/bin/{erb,gem,irb,rake,rdoc,ri,ruby} ln -s ${ruby}/bin/erb opt/vagrant/embedded/bin ln -s ${ruby}/bin/gem opt/vagrant/embedded/bin ln -s ${ruby}/bin/irb opt/vagrant/embedded/bin @@ -69,7 +70,6 @@ stdenv.mkDerivation rec { ln -s ${ruby}/bin/rdoc opt/vagrant/embedded/bin ln -s ${ruby}/bin/ri opt/vagrant/embedded/bin ln -s ${ruby}/bin/ruby opt/vagrant/embedded/bin - ln -s ${ruby}/bin/testrb opt/vagrant/embedded/bin # libiconv: iconv rm opt/vagrant/embedded/bin/iconv @@ -93,12 +93,12 @@ stdenv.mkDerivation rec { preFixup = '' # 'hide' the template file from shebang-patching - chmod -x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.5/lib/bundler/templates/Executable + chmod -x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/templates/Executable chmod -x $out/opt/vagrant/embedded/gems/gems/vagrant-${version}/plugins/provisioners/salt/bootstrap-salt.sh ''; postFixup = '' - chmod +x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.5/lib/bundler/templates/Executable + chmod +x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/templates/Executable chmod +x $out/opt/vagrant/embedded/gems/gems/vagrant-${version}/plugins/provisioners/salt/bootstrap-salt.sh ''; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 213d0f8338c..8173191c84d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5899,7 +5899,7 @@ let uncrustify = callPackage ../development/tools/misc/uncrustify { }; vagrant = callPackage ../development/tools/vagrant { - ruby = ruby_2_0_0; + ruby = ruby_2_2_2; }; gdb = callPackage ../development/tools/misc/gdb { From a591390d8d6d2c3706df1cc5394d5b96c4051008 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 22 Dec 2015 12:06:53 +0100 Subject: [PATCH 256/289] pythonPackages.dash: fix hash --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6b5e793d08c..705d6fb6f70 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3760,7 +3760,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dask/${name}.tar.gz"; - sha256 = "1csrgfjvq4mlvr7hmgy3a5jczkwpy4jz4jb3c4y45s5fg3y38f3k"; + sha256 = "05s1jz3y7llzh3373ab6yx0fb47f0mfy9xyqbknkwsnhabj6g2ib"; }; propagatedBuildInputs = with self; [numpy toolz dill]; From 2823814c5bd72fe02c20562ab5fab9d580ee4957 Mon Sep 17 00:00:00 2001 From: Christian Theune Date: Tue, 22 Dec 2015 09:12:35 +0100 Subject: [PATCH 257/289] syncthing: 0.12.4 -> 0.12.9 --- pkgs/top-level/go-packages.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index b02d3e56829..776558b126f 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2938,12 +2938,13 @@ let }; syncthing = buildFromGitHub rec { - version = "0.12.4"; + version = "0.12.9"; rev = "v${version}"; owner = "syncthing"; repo = "syncthing"; - sha256 = "0sri86hsjpf4xlhi45zkafi1jncamzplxnvriza0xsah1bc31g65"; - # buildFlags = [ "-tags noupgrade,release" ]; + sha256 = "0d420bmx1ifhjgbc65bflnawqddi4h86p7fvxzzqwfsaj94fsfbi"; + buildFlags = [ "-tags noupgrade,release" ]; + disabled = isGo14; buildInputs = [ go-lz4 du luhn xdr snappy ratelimit osext goleveldb suture qart crypto net text rcrowley.go-metrics From 5290ba96112850e2940ef38a2661fe43a9dfe8dd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Dec 2015 13:15:40 +0100 Subject: [PATCH 258/289] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20151217-2-g519e0a9 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/2ed14d2303783870523dae5300b89a4082fe5f6b - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/53c15ee9e31d2532bc6e8fc9fd85fb21f5de2303 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/b668f53a86774535a58fdc7ae45ed757fcc597cc - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/ec9500b675b55f53ad1153282cdd772098a5cdbe --- .../configuration-hackage2nix.yaml | 1 + .../haskell-modules/configuration-lts-0.0.nix | 18 +- .../haskell-modules/configuration-lts-0.1.nix | 18 +- .../haskell-modules/configuration-lts-0.2.nix | 18 +- .../haskell-modules/configuration-lts-0.3.nix | 18 +- .../haskell-modules/configuration-lts-0.4.nix | 18 +- .../haskell-modules/configuration-lts-0.5.nix | 18 +- .../haskell-modules/configuration-lts-0.6.nix | 18 +- .../haskell-modules/configuration-lts-0.7.nix | 18 +- .../haskell-modules/configuration-lts-1.0.nix | 18 +- .../haskell-modules/configuration-lts-1.1.nix | 18 +- .../configuration-lts-1.10.nix | 21 +- .../configuration-lts-1.11.nix | 21 +- .../configuration-lts-1.12.nix | 21 +- .../configuration-lts-1.13.nix | 21 +- .../configuration-lts-1.14.nix | 21 +- .../configuration-lts-1.15.nix | 21 +- .../haskell-modules/configuration-lts-1.2.nix | 18 +- .../haskell-modules/configuration-lts-1.4.nix | 19 +- .../haskell-modules/configuration-lts-1.5.nix | 19 +- .../haskell-modules/configuration-lts-1.7.nix | 19 +- .../haskell-modules/configuration-lts-1.8.nix | 19 +- .../haskell-modules/configuration-lts-1.9.nix | 21 +- .../haskell-modules/configuration-lts-2.0.nix | 21 + .../haskell-modules/configuration-lts-2.1.nix | 21 + .../configuration-lts-2.10.nix | 22 + .../configuration-lts-2.11.nix | 22 + .../configuration-lts-2.12.nix | 22 + .../configuration-lts-2.13.nix | 22 + .../configuration-lts-2.14.nix | 22 + .../configuration-lts-2.15.nix | 22 + .../configuration-lts-2.16.nix | 22 + .../configuration-lts-2.17.nix | 23 + .../configuration-lts-2.18.nix | 24 + .../configuration-lts-2.19.nix | 24 + .../haskell-modules/configuration-lts-2.2.nix | 21 + .../configuration-lts-2.20.nix | 24 + .../configuration-lts-2.21.nix | 24 + .../configuration-lts-2.22.nix | 25 + .../haskell-modules/configuration-lts-2.3.nix | 21 + .../haskell-modules/configuration-lts-2.4.nix | 21 + .../haskell-modules/configuration-lts-2.5.nix | 21 + .../haskell-modules/configuration-lts-2.6.nix | 21 + .../haskell-modules/configuration-lts-2.7.nix | 21 + .../haskell-modules/configuration-lts-2.8.nix | 21 + .../haskell-modules/configuration-lts-2.9.nix | 22 + .../haskell-modules/configuration-lts-3.0.nix | 34 + .../haskell-modules/configuration-lts-3.1.nix | 34 + .../configuration-lts-3.10.nix | 39 + .../configuration-lts-3.11.nix | 40 + .../configuration-lts-3.12.nix | 40 + .../configuration-lts-3.13.nix | 40 + .../configuration-lts-3.14.nix | 42 + .../configuration-lts-3.15.nix | 43 + .../configuration-lts-3.16.nix | 43 + .../configuration-lts-3.17.nix | 44 + .../configuration-lts-3.18.nix | 44 + .../configuration-lts-3.19.nix | 8067 +++++++++++++++++ .../haskell-modules/configuration-lts-3.2.nix | 34 + .../haskell-modules/configuration-lts-3.3.nix | 34 + .../haskell-modules/configuration-lts-3.4.nix | 34 + .../haskell-modules/configuration-lts-3.5.nix | 36 + .../haskell-modules/configuration-lts-3.6.nix | 36 + .../haskell-modules/configuration-lts-3.7.nix | 38 + .../haskell-modules/configuration-lts-3.8.nix | 39 + .../haskell-modules/configuration-lts-3.9.nix | 39 + .../haskell-modules/hackage-packages.nix | 2585 ++++-- 67 files changed, 11369 insertions(+), 947 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-3.19.nix diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 94ebc3049fd..713f5531eb1 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -53,6 +53,7 @@ extra-packages: - seqid-streams < 0.2 # newer versions depend on transformers 0.4.x which we cannot provide in GHC 7.8.x - split < 0.2 # newer versions don't work with GHC 6.12.3 - tar < 0.4.2.0 # later versions don't work with GHC < 7.6.x + - transformers == 0.4.3.* # the latest version isn't supported by mtl yet - vector < 0.10.10 # newer versions don't work with GHC 6.12.3 - zlib < 0.6 # newer versions break cabal-install diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index bbdac77f255..3bc140253cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2635,6 +2638,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2827,6 +2831,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3026,6 +3031,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3256,6 +3262,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3477,6 +3484,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_1"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3792,6 +3800,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4539,6 +4548,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4938,6 +4948,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5126,6 +5137,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5336,6 +5348,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_0"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6062,6 +6075,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6159,7 +6173,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6322,6 +6335,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8206,6 +8220,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8452,6 +8467,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index e4843781374..42253251403 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2635,6 +2638,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2827,6 +2831,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3026,6 +3031,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3256,6 +3262,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3477,6 +3484,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_1"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3792,6 +3800,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4539,6 +4548,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4938,6 +4948,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5126,6 +5137,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5336,6 +5348,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_0"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6062,6 +6075,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6159,7 +6173,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6322,6 +6335,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8206,6 +8220,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8452,6 +8467,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 05eb3606504..96915c87e0b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2635,6 +2638,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2827,6 +2831,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3026,6 +3031,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3256,6 +3262,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3477,6 +3484,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_1"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3792,6 +3800,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4539,6 +4548,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4938,6 +4948,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5126,6 +5137,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5336,6 +5348,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_0"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6062,6 +6075,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6159,7 +6173,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6322,6 +6335,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8206,6 +8220,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8452,6 +8467,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 0f715809110..9309f74d421 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2635,6 +2638,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2827,6 +2831,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3026,6 +3031,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3256,6 +3262,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3477,6 +3484,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_1"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3792,6 +3800,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4539,6 +4548,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4938,6 +4948,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5126,6 +5137,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5336,6 +5348,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6062,6 +6075,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6159,7 +6173,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6322,6 +6335,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8206,6 +8220,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8452,6 +8467,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 9a854e7c578..ce701dfe722 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2634,6 +2637,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2826,6 +2830,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3025,6 +3030,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3255,6 +3261,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3476,6 +3483,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_1"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3789,6 +3797,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4536,6 +4545,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4935,6 +4945,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5123,6 +5134,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5333,6 +5345,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6059,6 +6072,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6156,7 +6170,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6319,6 +6332,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8201,6 +8215,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8447,6 +8462,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index cb4a40e3b65..5ddb85c629c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2634,6 +2637,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2826,6 +2830,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3025,6 +3030,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3255,6 +3261,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3476,6 +3483,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_1"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3789,6 +3797,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4536,6 +4545,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4935,6 +4945,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5123,6 +5134,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5333,6 +5345,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_1"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6059,6 +6072,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6156,7 +6170,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6319,6 +6332,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8201,6 +8215,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8447,6 +8462,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 53c49850676..17b887b8689 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2631,6 +2634,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2823,6 +2827,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3022,6 +3027,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3252,6 +3258,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3473,6 +3480,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_2"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3786,6 +3794,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4532,6 +4541,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4931,6 +4941,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5119,6 +5130,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5329,6 +5341,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6054,6 +6067,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6151,7 +6165,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6314,6 +6327,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8195,6 +8209,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8441,6 +8456,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 788506e212d..e9d3b12d37f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -336,6 +336,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -490,6 +491,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -524,6 +526,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2631,6 +2634,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2823,6 +2827,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3022,6 +3027,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3252,6 +3258,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3473,6 +3480,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_2"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3786,6 +3794,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4532,6 +4541,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4931,6 +4941,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5119,6 +5130,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5329,6 +5341,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_3_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6054,6 +6067,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6151,7 +6165,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6314,6 +6327,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8195,6 +8209,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8441,6 +8456,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 800dcfdb69e..ceddbc9f890 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -522,6 +524,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2622,6 +2625,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2814,6 +2818,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3012,6 +3017,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3242,6 +3248,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3462,6 +3469,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_2"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3775,6 +3783,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4520,6 +4529,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4919,6 +4929,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5107,6 +5118,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5317,6 +5329,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6042,6 +6055,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6139,7 +6153,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6301,6 +6314,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8180,6 +8194,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8425,6 +8440,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 3f94ca7c1e0..32288e9a7f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -522,6 +524,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2619,6 +2622,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_3"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2810,6 +2814,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3008,6 +3013,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3238,6 +3244,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3458,6 +3465,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3771,6 +3779,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4513,6 +4522,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4912,6 +4922,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5100,6 +5111,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5310,6 +5322,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6034,6 +6047,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6131,7 +6145,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6293,6 +6306,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8167,6 +8181,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8411,6 +8426,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index d6a801b156c..044678daee3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2614,6 +2617,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2805,6 +2809,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3003,6 +3008,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3229,6 +3235,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3448,6 +3455,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3760,6 +3768,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4501,6 +4510,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4602,6 +4612,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4892,6 +4903,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5080,6 +5092,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5289,6 +5302,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6011,6 +6025,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6068,6 +6083,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6106,7 +6122,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6268,6 +6283,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6302,6 +6318,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8133,6 +8150,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8376,6 +8394,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 70ba9664ab7..dd03c8ce211 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2614,6 +2617,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2805,6 +2809,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3003,6 +3008,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3228,6 +3234,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3447,6 +3454,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3759,6 +3767,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4500,6 +4509,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4601,6 +4611,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4889,6 +4900,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5077,6 +5089,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5285,6 +5298,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6007,6 +6021,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6064,6 +6079,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6102,7 +6118,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6264,6 +6279,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6298,6 +6314,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8129,6 +8146,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8372,6 +8390,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 5a167b8678b..04da2509ad2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2614,6 +2617,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2805,6 +2809,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3003,6 +3008,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3228,6 +3234,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3447,6 +3454,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3759,6 +3767,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4499,6 +4508,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4600,6 +4610,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4888,6 +4899,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5076,6 +5088,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5284,6 +5297,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6006,6 +6020,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6063,6 +6078,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6101,7 +6117,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6263,6 +6278,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6297,6 +6313,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8126,6 +8143,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8369,6 +8387,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index aad007e67de..fe75d3a8e93 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2614,6 +2617,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2805,6 +2809,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3003,6 +3008,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3228,6 +3234,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3447,6 +3454,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3758,6 +3766,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4498,6 +4507,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4599,6 +4609,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4887,6 +4898,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5075,6 +5087,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5283,6 +5296,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6005,6 +6019,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6062,6 +6077,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6100,7 +6116,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6262,6 +6277,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6296,6 +6312,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8124,6 +8141,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8367,6 +8385,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 80925f0cd60..88880efcca4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -334,6 +334,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -487,6 +488,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -520,6 +522,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2611,6 +2614,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2802,6 +2806,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3000,6 +3005,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3225,6 +3231,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3444,6 +3451,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3755,6 +3763,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4494,6 +4503,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4595,6 +4605,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4883,6 +4894,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5070,6 +5082,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5278,6 +5291,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5998,6 +6012,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6055,6 +6070,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6093,7 +6109,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6255,6 +6270,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6289,6 +6305,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8116,6 +8133,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8359,6 +8377,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 3190e508d4f..34f6cc66200 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -334,6 +334,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -487,6 +488,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -520,6 +522,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2607,6 +2610,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2798,6 +2802,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2995,6 +3000,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3220,6 +3226,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3439,6 +3446,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3750,6 +3758,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4489,6 +4498,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4590,6 +4600,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4878,6 +4889,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5065,6 +5077,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5273,6 +5286,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5991,6 +6005,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6048,6 +6063,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6086,7 +6102,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6248,6 +6263,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6282,6 +6298,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8105,6 +8122,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8348,6 +8366,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index b9522cce53b..3f6a8c35c12 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -522,6 +524,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2617,6 +2620,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2808,6 +2812,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3006,6 +3011,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3236,6 +3242,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3455,6 +3462,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3768,6 +3776,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4510,6 +4519,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4909,6 +4919,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5097,6 +5108,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5307,6 +5319,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6031,6 +6044,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6127,7 +6141,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6289,6 +6302,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -8161,6 +8175,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8405,6 +8420,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 296b837f1aa..60ac68fa6af 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2616,6 +2619,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2807,6 +2811,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3005,6 +3010,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3234,6 +3240,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3453,6 +3460,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3766,6 +3774,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4507,6 +4516,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4906,6 +4916,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5094,6 +5105,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5304,6 +5316,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6027,6 +6040,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6123,7 +6137,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6285,6 +6298,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6319,6 +6333,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8155,6 +8170,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8399,6 +8415,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index d20f6f60d6b..d78bac500e3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2615,6 +2618,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2806,6 +2810,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3004,6 +3009,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3233,6 +3239,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3452,6 +3459,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3765,6 +3773,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4506,6 +4515,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4904,6 +4914,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5092,6 +5103,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5302,6 +5314,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_2"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6025,6 +6038,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6121,7 +6135,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6283,6 +6296,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6317,6 +6331,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8152,6 +8167,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8395,6 +8411,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index db971f7d85c..11e6d050e97 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2615,6 +2618,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2806,6 +2810,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3004,6 +3009,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3233,6 +3239,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3452,6 +3459,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3765,6 +3773,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4506,6 +4515,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4898,6 +4908,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5086,6 +5097,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5296,6 +5308,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6019,6 +6032,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6115,7 +6129,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6277,6 +6290,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6311,6 +6325,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8146,6 +8161,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8389,6 +8405,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index dd8b559020b..140cb1f9f71 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2615,6 +2618,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2806,6 +2810,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3004,6 +3009,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3231,6 +3237,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3450,6 +3457,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3762,6 +3770,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4503,6 +4512,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4895,6 +4905,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5083,6 +5094,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5292,6 +5304,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6015,6 +6028,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6111,7 +6125,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6273,6 +6286,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6307,6 +6321,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8141,6 +8156,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8384,6 +8400,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index bdc271e4378..cd3ac17033e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -335,6 +335,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -488,6 +489,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -521,6 +523,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -2615,6 +2618,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2806,6 +2810,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = dontDistribute super."edit-distance"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -3004,6 +3009,7 @@ self: super: { "fad" = dontDistribute super."fad"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3230,6 +3236,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3449,6 +3456,7 @@ self: super: { "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = dontDistribute super."gitrev"; "gitson" = dontDistribute super."gitson"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_6_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3761,6 +3769,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4502,6 +4511,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_0_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4603,6 +4613,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4893,6 +4904,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5081,6 +5093,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5290,6 +5303,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -6013,6 +6027,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -6070,6 +6085,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6108,7 +6124,6 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; - "pagerduty" = dontDistribute super."pagerduty"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = dontDistribute super."palette"; "palindromes" = dontDistribute super."palindromes"; @@ -6270,6 +6285,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6304,6 +6320,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8138,6 +8155,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8381,6 +8399,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index f47ce735b9e..29e118c18a3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1516,6 +1519,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2589,6 +2593,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2780,6 +2785,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2976,6 +2982,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3198,6 +3205,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3416,6 +3424,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_4"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3724,6 +3733,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4459,6 +4469,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4560,6 +4571,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4842,6 +4854,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5025,6 +5038,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5230,6 +5244,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5935,6 +5950,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5992,6 +6008,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6191,6 +6208,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6224,6 +6242,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8037,6 +8056,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8279,6 +8299,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 553a4ef2834..c470c638e01 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1516,6 +1519,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2588,6 +2592,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2779,6 +2784,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2975,6 +2981,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3197,6 +3204,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3415,6 +3423,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_4"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3723,6 +3732,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4457,6 +4467,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4558,6 +4569,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4840,6 +4852,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5023,6 +5036,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5228,6 +5242,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5933,6 +5948,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5990,6 +6006,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6189,6 +6206,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6222,6 +6240,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8035,6 +8054,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8276,6 +8296,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 632f1da31ae..78b5b034374 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1508,6 +1511,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2573,6 +2577,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2763,6 +2768,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2958,6 +2964,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3178,6 +3185,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3396,6 +3404,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3701,6 +3710,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4433,6 +4443,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4532,6 +4543,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4813,6 +4825,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4992,6 +5005,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5196,6 +5210,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5894,6 +5909,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5951,6 +5967,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = doDistribute super."optparse-simple_0_0_2"; "orc" = dontDistribute super."orc"; @@ -6148,6 +6165,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6180,6 +6198,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6297,6 +6316,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7976,6 +7996,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8217,6 +8238,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 211d1193965..3f14883bb14 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1507,6 +1510,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2572,6 +2576,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2762,6 +2767,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2957,6 +2963,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3177,6 +3184,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3394,6 +3402,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3699,6 +3708,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4429,6 +4439,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4528,6 +4539,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4809,6 +4821,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4987,6 +5000,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5191,6 +5205,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5888,6 +5903,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5945,6 +5961,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6141,6 +6158,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6173,6 +6191,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6290,6 +6309,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7966,6 +7986,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8207,6 +8228,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 9fddb60412e..9f79732a018 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1507,6 +1510,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2572,6 +2576,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2762,6 +2767,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2957,6 +2963,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3177,6 +3184,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3394,6 +3402,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3699,6 +3708,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4429,6 +4439,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4528,6 +4539,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4809,6 +4821,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4987,6 +5000,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5191,6 +5205,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5888,6 +5903,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5945,6 +5961,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6141,6 +6158,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6173,6 +6191,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6290,6 +6309,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7965,6 +7985,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8206,6 +8227,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 516f6370f0c..813898be750 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1507,6 +1510,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2572,6 +2576,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2762,6 +2767,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2957,6 +2963,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3177,6 +3184,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3394,6 +3402,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3698,6 +3707,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4428,6 +4438,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4527,6 +4538,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4807,6 +4819,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4985,6 +4998,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5189,6 +5203,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5885,6 +5900,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5942,6 +5958,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6138,6 +6155,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6170,6 +6188,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6287,6 +6306,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7962,6 +7982,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8203,6 +8224,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 339b5d73d6d..6ffc4a6b531 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1506,6 +1509,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2571,6 +2575,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2761,6 +2766,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2956,6 +2962,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3175,6 +3182,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3392,6 +3400,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3696,6 +3705,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4426,6 +4436,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4524,6 +4535,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4804,6 +4816,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4982,6 +4995,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5186,6 +5200,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5882,6 +5897,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5939,6 +5955,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6135,6 +6152,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6167,6 +6185,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6284,6 +6303,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7957,6 +7977,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8198,6 +8219,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index ed79543f331..c129a3ed578 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1506,6 +1509,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2571,6 +2575,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2761,6 +2766,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2955,6 +2961,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3174,6 +3181,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3391,6 +3399,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3695,6 +3704,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4425,6 +4435,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4523,6 +4534,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4803,6 +4815,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4981,6 +4994,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5185,6 +5199,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5878,6 +5893,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5935,6 +5951,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6131,6 +6148,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6163,6 +6181,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6280,6 +6299,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7952,6 +7972,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8193,6 +8214,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 5b3b21e8168..dcd5a1cc4c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1505,6 +1508,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2567,6 +2571,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2757,6 +2762,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2951,6 +2957,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3168,6 +3175,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3385,6 +3393,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3689,6 +3698,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4418,6 +4428,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4516,6 +4527,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4796,6 +4808,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4974,6 +4987,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5177,6 +5191,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5870,6 +5885,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5927,6 +5943,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6123,6 +6140,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6155,6 +6173,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6272,6 +6291,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7944,6 +7964,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8185,6 +8206,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index d86fd0c1a13..cd7bd1d5b4e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1504,6 +1507,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2565,6 +2569,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2755,6 +2760,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2948,6 +2954,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3164,6 +3171,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3380,6 +3388,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3684,6 +3693,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3842,6 +3852,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; @@ -4412,6 +4423,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4510,6 +4522,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4790,6 +4803,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4968,6 +4982,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5171,6 +5186,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5863,6 +5879,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5920,6 +5937,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6116,6 +6134,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6148,6 +6167,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6265,6 +6285,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7936,6 +7957,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8177,6 +8199,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 1494a52c28d..ce2067384fe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1504,6 +1507,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1725,6 +1729,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -2563,6 +2568,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2753,6 +2759,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2945,6 +2952,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3161,6 +3169,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3377,6 +3386,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3681,6 +3691,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3839,6 +3850,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; @@ -4408,6 +4420,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4506,6 +4519,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4786,6 +4800,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4964,6 +4979,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5167,6 +5183,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5858,6 +5875,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5915,6 +5933,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6111,6 +6130,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6143,6 +6163,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6259,6 +6280,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7929,6 +7951,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8170,6 +8193,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 7af271824c5..7496f0ff744 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1504,6 +1507,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1725,6 +1729,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -2563,6 +2568,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2753,6 +2759,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2945,6 +2952,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3160,6 +3168,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3376,6 +3385,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3680,6 +3690,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3838,6 +3849,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; @@ -4407,6 +4419,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4505,6 +4518,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4785,6 +4799,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4963,6 +4978,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5166,6 +5182,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5855,6 +5872,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5912,6 +5930,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6108,6 +6127,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6140,6 +6160,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6256,6 +6277,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7924,6 +7946,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8165,6 +8188,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index edc9796f2ba..c8c572b01e5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1515,6 +1518,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2585,6 +2589,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2776,6 +2781,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2972,6 +2978,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3194,6 +3201,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3412,6 +3420,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_4"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3720,6 +3729,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4454,6 +4464,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4555,6 +4566,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4837,6 +4849,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5020,6 +5033,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5225,6 +5239,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5930,6 +5945,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5987,6 +6003,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6186,6 +6203,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6219,6 +6237,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8032,6 +8051,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8273,6 +8293,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index e9e2de96aa3..1e5174692ee 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1504,6 +1507,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1725,6 +1729,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -2562,6 +2567,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2752,6 +2758,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2944,6 +2951,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3159,6 +3167,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3375,6 +3384,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3679,6 +3689,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3836,6 +3847,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; @@ -4405,6 +4417,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4503,6 +4516,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4783,6 +4797,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4961,6 +4976,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5164,6 +5180,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5853,6 +5870,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5910,6 +5928,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6106,6 +6125,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6138,6 +6158,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6253,6 +6274,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7920,6 +7942,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8161,6 +8184,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 1e261f7e7cc..3304e26b9e5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1504,6 +1507,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1725,6 +1729,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -2562,6 +2567,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2752,6 +2758,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2944,6 +2951,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3159,6 +3167,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3375,6 +3384,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3679,6 +3689,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3836,6 +3847,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; @@ -4405,6 +4417,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4503,6 +4516,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4783,6 +4797,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4961,6 +4976,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5163,6 +5179,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5852,6 +5869,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5909,6 +5927,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6105,6 +6124,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6137,6 +6157,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6252,6 +6273,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7918,6 +7940,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8157,6 +8180,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index e0f88573e21..4a2314c6157 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -330,6 +330,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -481,6 +482,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -514,6 +516,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1503,6 +1506,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1724,6 +1728,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -2561,6 +2566,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2751,6 +2757,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2943,6 +2950,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3158,6 +3166,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3374,6 +3383,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3678,6 +3688,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3835,6 +3846,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = dontDistribute super."haskell-neo4j-client"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; @@ -4403,6 +4415,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4501,6 +4514,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4781,6 +4795,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4831,6 +4846,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4958,6 +4974,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5160,6 +5177,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5848,6 +5866,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5905,6 +5924,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -6101,6 +6121,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6133,6 +6154,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6248,6 +6270,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7914,6 +7937,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8153,6 +8177,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index c38b94ccae7..484e836b508 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1515,6 +1518,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2585,6 +2589,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2776,6 +2781,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2972,6 +2978,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3193,6 +3200,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3411,6 +3419,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_5"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3719,6 +3728,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4453,6 +4463,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4554,6 +4565,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4835,6 +4847,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5018,6 +5031,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5223,6 +5237,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5928,6 +5943,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5985,6 +6001,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6184,6 +6201,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6217,6 +6235,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8029,6 +8048,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8270,6 +8290,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 9ee8703de10..b5cef3ba643 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1515,6 +1518,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2584,6 +2588,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2775,6 +2780,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2971,6 +2977,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3192,6 +3199,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3410,6 +3418,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_5"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3718,6 +3727,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4452,6 +4462,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4553,6 +4564,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4834,6 +4846,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5017,6 +5030,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5222,6 +5236,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t" = doDistribute super."list-t_0_4_4"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5926,6 +5941,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5983,6 +5999,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6180,6 +6197,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6213,6 +6231,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8024,6 +8043,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8265,6 +8285,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index e0c37b51beb..d3360cbfc4f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1515,6 +1518,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2583,6 +2587,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2774,6 +2779,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2970,6 +2976,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3191,6 +3198,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3409,6 +3417,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_5"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3717,6 +3726,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4451,6 +4461,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_5"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4552,6 +4563,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4833,6 +4845,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5016,6 +5029,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5221,6 +5235,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5924,6 +5939,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5981,6 +5997,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6178,6 +6195,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6211,6 +6229,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8021,6 +8040,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8262,6 +8282,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 346d3550fa7..335af123c93 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -332,6 +332,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -483,6 +484,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -516,6 +518,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1512,6 +1515,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2580,6 +2584,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2771,6 +2776,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2967,6 +2973,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3188,6 +3195,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3406,6 +3414,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_6"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3712,6 +3721,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4446,6 +4456,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4547,6 +4558,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4828,6 +4840,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5011,6 +5024,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5216,6 +5230,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5918,6 +5933,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5975,6 +5991,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6172,6 +6189,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6205,6 +6223,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8013,6 +8032,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8254,6 +8274,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 14cce5df287..c8cb9b91e07 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1511,6 +1514,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2579,6 +2583,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2770,6 +2775,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_2"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2966,6 +2972,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3187,6 +3194,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3405,6 +3413,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_6"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3711,6 +3720,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4445,6 +4455,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4546,6 +4557,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4827,6 +4839,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5010,6 +5023,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5215,6 +5229,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5917,6 +5932,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5974,6 +5990,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = dontDistribute super."optparse-simple"; "orc" = dontDistribute super."orc"; @@ -6171,6 +6188,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6204,6 +6222,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8012,6 +8031,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8253,6 +8273,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 24b8b51ed82..0683bd2553a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1510,6 +1513,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2578,6 +2582,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2769,6 +2774,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2965,6 +2971,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3185,6 +3192,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3403,6 +3411,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl" = doDistribute super."gl_0_7_6"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3709,6 +3718,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4443,6 +4453,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4543,6 +4554,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4824,6 +4836,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -5006,6 +5019,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5211,6 +5225,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5913,6 +5928,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5970,6 +5986,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = doDistribute super."optparse-simple_0_0_2"; "orc" = dontDistribute super."orc"; @@ -6167,6 +6184,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6200,6 +6218,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -8004,6 +8023,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8245,6 +8265,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 657c571b286..11080ff4358 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -331,6 +331,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -482,6 +483,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -515,6 +517,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1508,6 +1511,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = dontDistribute super."base-orphans"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base32string" = dontDistribute super."base32string"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -2575,6 +2579,7 @@ self: super: { "diagrams-solve" = dontDistribute super."diagrams-solve"; "diagrams-svg" = doDistribute super."diagrams-svg_1_1_0_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice" = dontDistribute super."dice"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2765,6 +2770,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance" = doDistribute super."edit-distance_0_2_1_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2960,6 +2966,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3180,6 +3187,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3398,6 +3406,7 @@ self: super: { "gitlib-test" = doDistribute super."gitlib-test_3_1_0_2"; "gitlib-utils" = dontDistribute super."gitlib-utils"; "gitrev" = doDistribute super."gitrev_1_0_0"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3703,6 +3712,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -4436,6 +4446,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; @@ -4535,6 +4546,7 @@ self: super: { "http-shed" = dontDistribute super."http-shed"; "http-streams" = dontDistribute super."http-streams"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = dontDistribute super."http2"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4816,6 +4828,7 @@ self: super: { "ix-shapable" = dontDistribute super."ix-shapable"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6"; "ixset-typed" = dontDistribute super."ixset-typed"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; @@ -4998,6 +5011,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -5202,6 +5216,7 @@ self: super: { "list-fusion-probe" = dontDistribute super."list-fusion-probe"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5903,6 +5918,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5960,6 +5976,7 @@ self: super: { "optional" = dontDistribute super."optional"; "optional-args" = dontDistribute super."optional-args"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-simple" = doDistribute super."optparse-simple_0_0_2"; "orc" = dontDistribute super."orc"; @@ -6157,6 +6174,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6189,6 +6207,7 @@ self: super: { "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; "pipes-cliff" = dontDistribute super."pipes-cliff"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6307,6 +6326,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7988,6 +8008,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "types-compat" = dontDistribute super."types-compat"; @@ -8229,6 +8250,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 2bcc9271083..b60af8284b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -320,6 +320,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -470,6 +471,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -502,6 +504,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1459,6 +1462,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_3"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1668,6 +1672,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1691,6 +1696,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2479,6 +2485,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2662,6 +2669,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2845,6 +2853,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3052,6 +3061,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3263,6 +3273,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3563,6 +3574,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3718,6 +3730,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; @@ -3792,6 +3805,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -4008,6 +4022,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4174,6 +4189,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4214,6 +4230,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4271,6 +4288,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4366,6 +4384,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4680,6 +4699,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4795,6 +4815,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4836,6 +4857,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4987,6 +5009,7 @@ self: super: { "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5075,6 +5098,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5477,6 +5501,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2_1"; "needle" = dontDistribute super."needle"; @@ -5650,6 +5675,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5704,6 +5730,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5894,6 +5921,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5915,6 +5943,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; @@ -5923,6 +5952,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6034,6 +6064,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7207,6 +7238,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7657,6 +7689,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7885,6 +7918,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index f4d36188938..d238767cf9a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -320,6 +320,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -470,6 +471,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -502,6 +504,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1458,6 +1461,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1667,6 +1671,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1690,6 +1695,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2478,6 +2484,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2661,6 +2668,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2844,6 +2852,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3048,6 +3057,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3259,6 +3269,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3559,6 +3570,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3714,6 +3726,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; @@ -3788,6 +3801,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -4003,6 +4017,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4169,6 +4184,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4209,6 +4225,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4266,6 +4283,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4361,6 +4379,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4675,6 +4694,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4790,6 +4810,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4831,6 +4852,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4982,6 +5004,7 @@ self: super: { "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5070,6 +5093,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5470,6 +5494,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2_1"; "needle" = dontDistribute super."needle"; @@ -5643,6 +5668,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5697,6 +5723,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5887,6 +5914,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5907,6 +5935,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; @@ -5915,6 +5944,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6026,6 +6056,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7198,6 +7229,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7648,6 +7680,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7875,6 +7908,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index db2b73b9d56..75e701cd9a0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -315,6 +316,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -464,6 +466,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -495,6 +498,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1322,6 +1326,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1441,6 +1446,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1646,6 +1652,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1669,6 +1676,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2441,6 +2449,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2618,6 +2627,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2796,6 +2806,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2992,6 +3003,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3200,6 +3212,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3500,6 +3513,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3654,6 +3668,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3727,6 +3742,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3938,6 +3954,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4103,6 +4120,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4143,6 +4161,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4199,6 +4218,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4294,6 +4314,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4602,6 +4623,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4714,6 +4736,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4754,6 +4777,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4900,8 +4924,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4990,6 +5016,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5383,6 +5410,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5554,6 +5582,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5607,6 +5636,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5795,6 +5825,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5815,6 +5846,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5822,6 +5854,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5930,6 +5963,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7073,6 +7107,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7516,6 +7551,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7739,6 +7775,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7922,6 +7959,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7949,6 +7987,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index ce72e7fbb86..4440a97361f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -315,6 +316,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -464,6 +466,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -495,6 +498,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1322,6 +1326,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1441,6 +1446,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1645,6 +1651,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1668,6 +1675,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2439,6 +2447,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2616,6 +2625,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2793,6 +2803,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2989,6 +3000,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3196,6 +3208,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3496,6 +3509,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3523,6 +3537,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3649,6 +3664,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3722,6 +3738,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3933,6 +3950,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4098,6 +4116,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4138,6 +4157,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4194,6 +4214,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4289,6 +4310,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4597,6 +4619,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4709,6 +4732,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4749,6 +4773,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4895,8 +4920,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4985,6 +5012,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5378,6 +5406,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5549,6 +5578,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5602,6 +5632,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5788,6 +5819,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5808,6 +5840,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5815,6 +5848,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5923,6 +5957,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7064,6 +7099,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7506,6 +7542,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7729,6 +7766,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7912,6 +7950,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7939,6 +7978,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 7109ae66a10..563ad632c51 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -463,6 +465,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -494,6 +497,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1321,6 +1325,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1440,6 +1445,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1644,6 +1650,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1667,6 +1674,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2434,6 +2442,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2611,6 +2620,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2788,6 +2798,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2984,6 +2995,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3191,6 +3203,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3490,6 +3503,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3517,6 +3531,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3643,6 +3658,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3716,6 +3732,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3927,6 +3944,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4092,6 +4110,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4132,6 +4151,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4188,6 +4208,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4283,6 +4304,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4591,6 +4613,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4703,6 +4726,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4743,6 +4767,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4889,8 +4914,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4979,6 +5006,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5372,6 +5400,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5543,6 +5572,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5596,6 +5626,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5781,6 +5812,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5801,6 +5833,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5808,6 +5841,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5916,6 +5950,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7057,6 +7092,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7496,6 +7532,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7719,6 +7756,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7902,6 +7940,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7929,6 +7968,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 5c5ea1c12ea..bfd7fcfa430 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -463,6 +465,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -494,6 +497,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1321,6 +1325,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1440,6 +1445,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1644,6 +1650,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1667,6 +1674,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2434,6 +2442,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2611,6 +2620,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2788,6 +2798,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2984,6 +2995,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3191,6 +3203,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3490,6 +3503,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3517,6 +3531,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3643,6 +3658,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3716,6 +3732,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3926,6 +3943,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4091,6 +4109,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4131,6 +4150,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4187,6 +4207,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4282,6 +4303,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4590,6 +4612,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4702,6 +4725,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4742,6 +4766,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4887,8 +4912,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4977,6 +5004,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_3"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5369,6 +5397,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5540,6 +5569,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5593,6 +5623,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5777,6 +5808,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5797,6 +5829,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5804,6 +5837,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5912,6 +5946,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7053,6 +7088,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7491,6 +7527,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7714,6 +7751,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7896,6 +7934,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7923,6 +7962,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 99b04cd6a8f..3c09a095fa5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -463,6 +465,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -494,6 +497,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1319,6 +1323,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1438,6 +1443,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1642,6 +1648,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1664,6 +1671,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2425,7 +2433,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2602,6 +2612,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2779,6 +2790,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2975,6 +2987,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3182,6 +3195,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3481,6 +3495,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3508,6 +3523,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3634,6 +3650,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3707,6 +3724,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3917,6 +3935,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4082,6 +4101,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4122,6 +4142,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4178,6 +4199,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4272,6 +4294,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4580,6 +4603,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4692,6 +4716,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4732,6 +4757,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4877,8 +4903,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4966,6 +4994,7 @@ self: super: { "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5357,6 +5386,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5528,6 +5558,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5581,6 +5612,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5765,6 +5797,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5784,6 +5817,7 @@ self: super: { "pinchot" = dontDistribute super."pinchot"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5791,6 +5825,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5899,6 +5934,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7040,6 +7076,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7409,6 +7446,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_3"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7476,6 +7514,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7699,6 +7738,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7879,6 +7919,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7906,6 +7947,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 64ed99c9448..95baf86efab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -463,6 +465,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -494,6 +497,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1318,6 +1322,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1437,6 +1442,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1641,6 +1647,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1663,6 +1670,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2424,7 +2432,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2601,6 +2611,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2778,6 +2789,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2974,6 +2986,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3180,6 +3193,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3479,6 +3493,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3506,6 +3521,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3631,6 +3647,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3704,6 +3721,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3914,6 +3932,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4078,6 +4097,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4118,6 +4138,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4174,6 +4195,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4267,6 +4289,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4575,6 +4598,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4687,6 +4711,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4727,6 +4752,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4872,8 +4898,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4961,6 +4989,7 @@ self: super: { "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5352,6 +5381,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5523,6 +5553,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5576,6 +5607,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5759,6 +5791,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5778,6 +5811,7 @@ self: super: { "pinchot" = dontDistribute super."pinchot"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5785,6 +5819,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5893,6 +5928,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7032,6 +7068,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7400,6 +7437,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_3"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7467,6 +7505,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7690,6 +7729,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7700,6 +7740,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7868,6 +7909,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7895,6 +7937,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 84d32e7fe44..ec3c7dae2a8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -463,6 +465,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -494,6 +497,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1317,6 +1321,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1435,6 +1440,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1639,6 +1645,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1661,6 +1668,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2422,7 +2430,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2599,6 +2609,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2775,6 +2786,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2971,6 +2983,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3177,6 +3190,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3475,6 +3489,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3502,6 +3517,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3627,6 +3643,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3700,6 +3717,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3910,6 +3928,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4074,6 +4093,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4114,6 +4134,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4170,6 +4191,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4263,6 +4285,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4571,6 +4594,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4683,6 +4707,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4722,6 +4747,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4866,8 +4892,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4955,6 +4983,7 @@ self: super: { "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5345,6 +5374,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5516,6 +5546,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5569,6 +5600,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5751,6 +5783,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5770,6 +5803,7 @@ self: super: { "pinchot" = dontDistribute super."pinchot"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5777,6 +5811,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5884,6 +5919,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7019,6 +7055,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7384,6 +7421,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_3"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7451,6 +7489,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7674,6 +7713,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7684,6 +7724,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7852,6 +7893,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7879,6 +7921,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 5dcf83ccb8c..9c402b10e5b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -462,6 +464,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -493,6 +496,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1313,6 +1317,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1431,6 +1436,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1635,6 +1641,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1657,6 +1664,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2413,7 +2421,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2590,6 +2600,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2766,6 +2777,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2962,6 +2974,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3168,6 +3181,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3465,6 +3479,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3492,6 +3507,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3617,6 +3633,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3690,6 +3707,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3900,6 +3918,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4064,6 +4083,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4104,6 +4124,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4160,6 +4181,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4253,6 +4275,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4559,6 +4582,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4671,6 +4695,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4710,6 +4735,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4854,8 +4880,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4942,6 +4970,7 @@ self: super: { "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5331,6 +5360,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5502,6 +5532,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5555,6 +5586,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5736,6 +5768,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5755,6 +5788,7 @@ self: super: { "pinchot" = dontDistribute super."pinchot"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5762,6 +5796,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5869,6 +5904,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7002,6 +7038,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7367,6 +7404,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_3"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7434,6 +7472,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7656,6 +7695,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7666,6 +7706,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7833,6 +7874,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7860,6 +7902,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; @@ -7957,6 +8000,7 @@ self: super: { "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_17"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 09fd9006a86..dca96a944ae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -314,6 +315,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -462,6 +464,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -493,6 +496,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1313,6 +1317,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1431,6 +1436,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1635,6 +1641,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1657,6 +1664,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2412,7 +2420,9 @@ self: super: { "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2589,6 +2599,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2765,6 +2776,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -2961,6 +2973,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3166,6 +3179,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3461,6 +3475,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3488,6 +3503,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_4_0"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3612,6 +3628,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3684,6 +3701,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3893,6 +3911,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_22"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4056,6 +4075,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4096,6 +4116,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4152,6 +4173,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4243,6 +4265,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4549,6 +4572,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4661,6 +4685,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4700,6 +4725,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4844,8 +4870,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -4932,6 +4960,7 @@ self: super: { "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5320,6 +5349,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5491,6 +5521,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5544,6 +5575,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5724,6 +5756,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5743,6 +5776,7 @@ self: super: { "pinchot" = dontDistribute super."pinchot"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5750,6 +5784,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5857,6 +5892,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6987,6 +7023,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7351,6 +7388,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_3"; "tweak" = dontDistribute super."tweak"; "twentefp" = dontDistribute super."twentefp"; "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; @@ -7418,6 +7456,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7639,6 +7678,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7648,6 +7688,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7814,6 +7855,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7841,6 +7883,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; @@ -7938,6 +7981,7 @@ self: super: { "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_17"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix new file mode 100644 index 00000000000..f49e3fc7214 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -0,0 +1,8067 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-3.19 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = dontDistribute super."ClustalParser"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DAV" = doDistribute super."DAV_1_0_7"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_9_0"; + "Ebnf2ps" = dontDistribute super."Ebnf2ps"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EntrezHTTP" = dontDistribute super."EntrezHTTP"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FindBin" = dontDistribute super."FindBin"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = dontDistribute super."Frames"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = dontDistribute super."GLFW-b"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = dontDistribute super."GLURaw"; + "GLUT" = dontDistribute super."GLUT"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe" = dontDistribute super."GPipe"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-GLFW" = dontDistribute super."GPipe-GLFW"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "Genbank" = dontDistribute super."Genbank"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "H" = dontDistribute super."H"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC" = dontDistribute super."HDBC"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql" = dontDistribute super."HDBC-postgresql"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPDF" = dontDistribute super."HPDF"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaRe" = dontDistribute super."HaRe"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_4_5"; + "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsSyck" = dontDistribute super."HsSyck"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = dontDistribute super."IntervalMap"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; + "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "LibZip" = dontDistribute super."LibZip"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MFlow" = dontDistribute super."MFlow"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz" = dontDistribute super."MusicBrainz"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = dontDistribute super."ObjectName"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGL" = dontDistribute super."OpenGL"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = dontDistribute super."OpenGLRaw"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "SegmentTree" = dontDistribute super."SegmentTree"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock" = doDistribute super."Spock_0_8_1_0"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = dontDistribute super."ViennaRNAParser"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-extras" = dontDistribute super."Win32-extras"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xauth" = dontDistribute super."Xauth"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_12_4"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "ad" = doDistribute super."ad_4_2_4"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_8_0_2"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = dontDistribute super."airship"; + "aivika" = dontDistribute super."aivika"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex" = doDistribute super."alex_3_1_4"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_0_3_6"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; + "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; + "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; + "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; + "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; + "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-ds" = dontDistribute super."amazonka-ds"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; + "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; + "amazonka-efs" = dontDistribute super."amazonka-efs"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_6"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; + "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; + "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; + "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; + "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; + "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_0_3_6"; + "amazonka-route53" = doDistribute super."amazonka-route53_0_3_6_1"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_0_3_6"; + "amazonka-s3" = doDistribute super."amazonka-s3_0_3_6"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_0_3_6"; + "amazonka-ses" = doDistribute super."amazonka-ses_0_3_6"; + "amazonka-sns" = doDistribute super."amazonka-sns_0_3_6"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_0_3_6"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_0_3_6"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_0_3_6"; + "amazonka-sts" = doDistribute super."amazonka-sts_0_3_6"; + "amazonka-support" = doDistribute super."amazonka-support_0_3_6"; + "amazonka-swf" = doDistribute super."amazonka-swf_0_3_6"; + "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_0_3_6"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "app-settings" = dontDistribute super."app-settings"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "apply-refact" = dontDistribute super."apply-refact"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = dontDistribute super."argon"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = dontDistribute super."async-dejafu"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avers" = dontDistribute super."avers"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_12_1"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier" = dontDistribute super."barrier"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = dontDistribute super."base-noprelude"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bcrypt" = doDistribute super."bcrypt_0_0_6"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "benchpress" = dontDistribute super."benchpress"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimap" = dontDistribute super."bimap"; + "bimap-server" = dontDistribute super."bimap-server"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-parser" = dontDistribute super."binary-parser"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binary-typed" = dontDistribute super."binary-typed"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = dontDistribute super."bindings-GLFW"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-libzip" = dontDistribute super."bindings-libzip"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-posix" = dontDistribute super."bindings-posix"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bio" = dontDistribute super."bio"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biophd" = dontDistribute super."biophd"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blake2" = dontDistribute super."blake2"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blank-canvas" = dontDistribute super."blank-canvas"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blaze" = dontDistribute super."blaze"; + "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boomerang" = dontDistribute super."boomerang"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "both" = dontDistribute super."both"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bpann" = dontDistribute super."bpann"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brick" = dontDistribute super."brick"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-lens" = dontDistribute super."bson-lens"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "bustle" = dontDistribute super."bustle"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "byteset" = dontDistribute super."byteset"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_25_2"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_30_2"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = dontDistribute super."cabal-sort"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "calculator" = dontDistribute super."calculator"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "carray" = dontDistribute super."carray"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cased" = dontDistribute super."cased"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "charsetdetect-ae" = dontDistribute super."charsetdetect-ae"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = dontDistribute super."cheapskate"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; + "clash-lib" = doDistribute super."clash-lib_0_5_13"; + "clash-prelude" = doDistribute super."clash-prelude_0_9_3"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_5_10"; + "clash-verilog" = doDistribute super."clash-verilog_0_5_10"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_5_12"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = dontDistribute super."clckwrks"; + "clckwrks-cli" = dontDistribute super."clckwrks-cli"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-plugin-media" = dontDistribute super."clckwrks-plugin-media"; + "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page"; + "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_10"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "commutative" = dontDistribute super."commutative"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compactmap" = dontDistribute super."compactmap"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "composition-extra" = doDistribute super."composition-extra_1_1_0"; + "composition-tree" = dontDistribute super."composition-tree"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-connection" = dontDistribute super."conduit-connection"; + "conduit-iconv" = dontDistribute super."conduit-iconv"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = dontDistribute super."conduit-parse"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conf" = dontDistribute super."conf"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraints" = doDistribute super."constraints_0_4_1_3"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consul-haskell" = doDistribute super."consul-haskell_0_2_1"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = dontDistribute super."contravariant-extras"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_0"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "css-syntax" = dontDistribute super."css-syntax"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "ctrie" = dontDistribute super."ctrie"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs" = dontDistribute super."darcs"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian" = doDistribute super."debian_3_87_2"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "decepticons" = dontDistribute super."decepticons"; + "declarative" = dontDistribute super."declarative"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = dontDistribute super."dejafu"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; + "dependent-sum" = doDistribute super."dependent-sum_0_2_1_0"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_22"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-gtk" = dontDistribute super."diagrams-gtk"; + "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_7"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional" = doDistribute super."dimensional_0_13_0_2"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = dontDistribute super."distributed-process"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = dontDistribute super."distributed-static"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "docopt" = dontDistribute super."docopt"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = dontDistribute super."dotenv"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "drawille" = dontDistribute super."drawille"; + "drifter" = dontDistribute super."drifter"; + "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynamic-state" = dontDistribute super."dynamic-state"; + "dynobud" = dontDistribute super."dynobud"; + "dyre" = dontDistribute super."dyre"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-distance-vector" = dontDistribute super."edit-distance-vector"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "either-unwrap" = dontDistribute super."either-unwrap"; + "eithers" = dontDistribute super."eithers"; + "ekg" = dontDistribute super."ekg"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-json" = dontDistribute super."ekg-json"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elm-bridge" = dontDistribute super."elm-bridge"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engine-io-wai" = dontDistribute super."engine-io-wai"; + "engine-io-yesod" = dontDistribute super."engine-io-yesod"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "envy" = dontDistribute super."envy"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "etcd" = dontDistribute super."etcd"; + "eternal" = dontDistribute super."eternal"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = dontDistribute super."eventstore"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-pi" = dontDistribute super."exact-pi"; + "exact-real" = dontDistribute super."exact-real"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-exception" = dontDistribute super."explicit-exception"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = dontDistribute super."extensible-effects"; + "external-sort" = dontDistribute super."external-sort"; + "extract-dependencies" = dontDistribute super."extract-dependencies"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "farmhash" = dontDistribute super."farmhash"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fasta" = dontDistribute super."fasta"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay" = doDistribute super."fay_0_23_1_8"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fft" = dontDistribute super."fft"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "file-modules" = dontDistribute super."file-modules"; + "filecache" = dontDistribute super."filecache"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "forecast-io" = dontDistribute super."forecast-io"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "freekick2" = dontDistribute super."freekick2"; + "freenect" = doDistribute super."freenect_1_2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcmp" = dontDistribute super."funcmp"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_8_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = dontDistribute super."generic-trie"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-generics" = doDistribute super."getopt-generics_0_10_0_1"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = dontDistribute super."ghc-exactprint"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = dontDistribute super."ghc-heap-view"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-mod" = dontDistribute super."ghc-mod"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-session" = dontDistribute super."ghc-session"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_5_20150727"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-fmt" = dontDistribute super."git-fmt"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github" = dontDistribute super."github"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-types" = dontDistribute super."github-types"; + "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = dontDistribute super."github-webhook-handler"; + "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-cloud" = dontDistribute super."google-cloud"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "google-translate" = dontDistribute super."google-translate"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "graphviz" = dontDistribute super."graphviz"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "grid" = dontDistribute super."grid"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groom" = dontDistribute super."groom"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_13_9"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackmanager" = dontDistribute super."hackmanager"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "haddocset" = dontDistribute super."haddocset"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = dontDistribute super."hapistrano"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = dontDistribute super."happstack-authenticate"; + "happstack-clientsession" = dontDistribute super."happstack-clientsession"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hsp" = dontDistribute super."happstack-hsp"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-jmacro" = dontDistribute super."happstack-jmacro"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls" = dontDistribute super."happstack-server-tls"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harp" = dontDistribute super."harp"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashable-time" = dontDistribute super."hashable-time"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts" = doDistribute super."haskell-src-exts_1_16_0_1"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_1_0"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = dontDistribute super."hasty-hamiltonian"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl" = dontDistribute super."haxl"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgettext" = dontDistribute super."hgettext"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hidapi" = dontDistribute super."hidapi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_5_5"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hipbot" = dontDistribute super."hipbot"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hledger" = doDistribute super."hledger_0_26"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-interest" = dontDistribute super."hledger-interest"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-lib" = doDistribute super."hledger-lib_0_26"; + "hledger-ui" = dontDistribute super."hledger-ui"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hledger-web" = doDistribute super."hledger-web_0_26"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_22"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_16_1_5"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; + "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1_1"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = dontDistribute super."hopenpgp-tools"; + "hopenssl" = dontDistribute super."hopenssl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsexif" = dontDistribute super."hsexif"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile" = dontDistribute super."hsndfile"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsndfile-vector" = dontDistribute super."hsndfile-vector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp" = dontDistribute super."hsp"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_1_10"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_1_10"; + "hspec-discover" = doDistribute super."hspec-discover_2_1_10"; + "hspec-expectations" = doDistribute super."hspec-expectations_0_7_1"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; + "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = dontDistribute super."hsx-jmacro"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = dontDistribute super."hsx2hs"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = dontDistribute super."htaglib"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-accept" = dontDistribute super."http-accept"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = dontDistribute super."http-client-openssl"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kit" = dontDistribute super."http-kit"; + "http-link-header" = dontDistribute super."http-link-header"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_0_4"; + "httpd-shed" = dontDistribute super."httpd-shed"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = dontDistribute super."human-readable-duration"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = dontDistribute super."hunit-dejafu"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hvect" = doDistribute super."hvect_0_2_0_0"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hybrid-vectors" = dontDistribute super."hybrid-vectors"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzk" = dontDistribute super."hzk"; + "hzulip" = dontDistribute super."hzulip"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ical" = dontDistribute super."ical"; + "iconv" = dontDistribute super."iconv"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = dontDistribute super."ig"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_6_5_0"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c" = dontDistribute super."inline-c"; + "inline-c-cpp" = dontDistribute super."inline-c-cpp"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-r" = dontDistribute super."inline-r"; + "inquire" = dontDistribute super."inquire"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-region" = dontDistribute super."io-region"; + "io-storage" = dontDistribute super."io-storage"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iproute" = doDistribute super."iproute_1_5_0"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_6_1_3"; + "irc" = dontDistribute super."irc"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = dontDistribute super."irc-client"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-conduit" = dontDistribute super."irc-conduit"; + "irc-core" = dontDistribute super."irc-core"; + "irc-ctcp" = dontDistribute super."irc-ctcp"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "iso8601-time" = dontDistribute super."iso8601-time"; + "isohunt" = dontDistribute super."isohunt"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ix-shapable" = dontDistribute super."ix-shapable"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = dontDistribute super."ixset"; + "ixset-typed" = dontDistribute super."ixset-typed"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-reflect" = dontDistribute super."java-reflect"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kansas-comet" = dontDistribute super."kansas-comet"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katt" = dontDistribute super."katt"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "kraken" = dontDistribute super."kraken"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-lua2" = dontDistribute super."language-lua2"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = dontDistribute super."language-nix"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = dontDistribute super."language-thrift"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll"; + "latex-formulae-image" = dontDistribute super."latex-formulae-image"; + "latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc"; + "lattices" = doDistribute super."lattices_1_3"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_12_3"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-regex" = dontDistribute super."lens-regex"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lentil" = dontDistribute super."lentil"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = dontDistribute super."leveldb-haskell"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = dontDistribute super."libinfluxdb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libsystemd-journal" = dontDistribute super."libsystemd-journal"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_19_1_3"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "load-env" = dontDistribute super."load-env"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop" = doDistribute super."loop_0_2_0"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = dontDistribute super."luminance"; + "luminance-samples" = dontDistribute super."luminance-samples"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_3_0_0"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = dontDistribute super."markdown-unlit"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup" = doDistribute super."markup_1_1_0"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcmc-types" = dontDistribute super."mcmc-types"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = dontDistribute super."megaparsec"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memoization-utils" = dontDistribute super."memoization-utils"; + "memory" = doDistribute super."memory_0_7"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = dontDistribute super."microformats2-parser"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_2_0_0"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_1_0_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; + "microlens-platform" = dontDistribute super."microlens-platform"; + "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mighty-metropolis" = dontDistribute super."mighty-metropolis"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "moesocks" = dontDistribute super."moesocks"; + "mohws" = dontDistribute super."mohws"; + "mole" = dontDistribute super."mole"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-time" = dontDistribute super."monad-time"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc" = dontDistribute super."monadloc"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morte" = dontDistribute super."morte"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate" = dontDistribute super."multiplate"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache" = dontDistribute super."mustache"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-check" = dontDistribute super."nagios-check"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats" = doDistribute super."nats_1"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-sort" = dontDistribute super."natural-sort"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle" = dontDistribute super."nettle"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-house" = dontDistribute super."network-house"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-composed" = dontDistribute super."network-transport-composed"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = dontDistribute super."network-transport-tcp"; + "network-transport-tests" = dontDistribute super."network-transport-tests"; + "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nix-paths" = dontDistribute super."nix-paths"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-extras" = doDistribute super."numeric-extras_0_0_3"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype-dk" = dontDistribute super."numtype-dk"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "off-simple" = dontDistribute super."off-simple"; + "ofx" = dontDistribute super."ofx"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "omnifmt" = dontDistribute super."omnifmt"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = dontDistribute super."opml-conduit"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-description-remote" = dontDistribute super."package-description-remote"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_3"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parseargs" = doDistribute super."parseargs_0_1_5_2"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parseerror-eq" = dontDistribute super."parseerror-eq"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partial" = dontDistribute super."partial"; + "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = dontDistribute super."patches-vector"; + "path-extra" = dontDistribute super."path-extra"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap" = dontDistribute super."pcap"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_0_2_5"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = dontDistribute super."pcre-utils"; + "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content"; + "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core"; + "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgp-wordlist" = dontDistribute super."pgp-wordlist"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinch" = dontDistribute super."pinch"; + "pinchot" = dontDistribute super."pinchot"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-cacophony" = dontDistribute super."pipes-cacophony"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-csv" = dontDistribute super."pipes-csv"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = dontDistribute super."pipes-extras"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-mongodb" = dontDistribute super."pipes-mongodb"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = dontDistribute super."pkcs10"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; + "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointedlist" = dontDistribute super."pointedlist"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-orm" = dontDistribute super."postgresql-orm"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-schema" = dontDistribute super."postgresql-schema"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "pred-trie" = doDistribute super."pred-trie_0_2_0"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "projectroot" = dontDistribute super."projectroot"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "prompt" = dontDistribute super."prompt"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = dontDistribute super."protobuf"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = dontDistribute super."psc-ide"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = dontDistribute super."publicsuffix"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-cdb" = dontDistribute super."pure-cdb"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pusher-http-haskell" = dontDistribute super."pusher-http-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "questioner" = dontDistribute super."questioner"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-text" = dontDistribute super."quickcheck-text"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-set-list" = dontDistribute super."range-set-list"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "raw-strings-qq" = doDistribute super."raw-strings-qq_1_0_2"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; + "readable" = dontDistribute super."readable"; + "readline" = dontDistribute super."readline"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursion-schemes" = dontDistribute super."recursion-schemes"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reducers" = doDistribute super."reducers_3_10_3_2"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection" = doDistribute super."reflection_2"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform" = dontDistribute super."reform"; + "reform-blaze" = dontDistribute super."reform-blaze"; + "reform-hamlet" = dontDistribute super."reform-hamlet"; + "reform-happstack" = dontDistribute super."reform-happstack"; + "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative-text" = dontDistribute super."regex-applicative-text"; + "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-text" = dontDistribute super."regex-tdfa-text"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "reinterpret-cast" = dontDistribute super."reinterpret-cast"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_36_0_6"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = dontDistribute super."rethinkdb"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retry" = doDistribute super."retry_0_6"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = dontDistribute super."riak"; + "riak-protobuf" = dontDistribute super."riak-protobuf"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trees" = dontDistribute super."rose-trees"; + "rose-trie" = dontDistribute super."rose-trie"; + "rosezipper" = dontDistribute super."rosezipper"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "s3-signer" = dontDistribute super."s3-signer"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sandman" = dontDistribute super."sandman"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrypt" = dontDistribute super."scrypt"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_1_3_1"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_6_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups" = doDistribute super."semigroups_0_16_2_2"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-yaml" = dontDistribute super."servant-yaml"; + "servius" = dontDistribute super."servius"; + "ses-html" = dontDistribute super."ses-html"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "sets" = dontDistribute super."sets"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = dontDistribute super."should-not-typecheck"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signal" = dontDistribute super."signal"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple" = dontDistribute super."simple"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-session" = dontDistribute super."simple-session"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-smt" = dontDistribute super."simple-smt"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-templates" = dontDistribute super."simple-templates"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skeletons" = dontDistribute super."skeletons"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = dontDistribute super."smallcaps"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smsaero" = dontDistribute super."smsaero"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "soap" = dontDistribute super."soap"; + "soap-openssl" = dontDistribute super."soap-openssl"; + "soap-tls" = dontDistribute super."soap-tls"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = dontDistribute super."socket"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorted-list" = dontDistribute super."sorted-list"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sourcemap" = doDistribute super."sourcemap_0_1_3_0"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "speedy-slice" = dontDistribute super."speedy-slice"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run-auto" = dontDistribute super."stack-run-auto"; + "stackage-curator" = dontDistribute super."stackage-curator"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-plus" = dontDistribute super."state-plus"; + "state-record" = dontDistribute super."state-record"; + "stateWriter" = dontDistribute super."stateWriter"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_6_1"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming" = dontDistribute super."streaming"; + "streaming-bytestring" = dontDistribute super."streaming-bytestring"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "streamproc" = dontDistribute super."streamproc"; + "strict-base-types" = dontDistribute super."strict-base-types"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-qq" = dontDistribute super."string-qq"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; + "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_14_3"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "success" = dontDistribute super."success"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = dontDistribute super."swagger2"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class" = dontDistribute super."syb-with-class"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "sync" = dontDistribute super."sync"; + "sync-mht" = dontDistribute super."sync-mht"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "syz" = dontDistribute super."syz"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; + "tasty-dejafu" = dontDistribute super."tasty-dejafu"; + "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-html" = dontDistribute super."tasty-html"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tasty-tap" = dontDistribute super."tasty-tap"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "tellbot" = dontDistribute super."tellbot"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-framework-th-prime" = dontDistribute super."test-framework-th-prime"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "test-simple" = dontDistribute super."test-simple"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show" = doDistribute super."text-show_2"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text-zipper" = dontDistribute super."text-zipper"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_12_2"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "these" = dontDistribute super."these"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-units" = dontDistribute super."time-units"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinytemplate" = dontDistribute super."tinytemplate"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_2"; + "tls-debug" = doDistribute super."tls-debug_0_4_0"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "tracy" = dontDistribute super."tracy"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "tries" = dontDistribute super."tries"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "true-name" = dontDistribute super."true-name"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "ttrie" = dontDistribute super."ttrie"; + "tttool" = doDistribute super."tttool_1_4_0_5"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tuple-th" = dontDistribute super."tuple-th"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "tweak" = dontDistribute super."tweak"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = dontDistribute super."twitter-conduit"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = dontDistribute super."twitter-types"; + "twitter-types-lens" = dontDistribute super."twitter-types-lens"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-aligned" = dontDistribute super."type-aligned"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = dontDistribute super."tz"; + "tzdata" = dontDistribute super."tzdata"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uglymemo" = dontDistribute super."uglymemo"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unexceptionalio" = dontDistribute super."unexceptionalio"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "unification-fd" = dontDistribute super."unification-fd"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe" = dontDistribute super."universe"; + "universe-base" = dontDistribute super."universe-base"; + "universe-instances-base" = dontDistribute super."universe-instances-base"; + "universe-instances-extended" = dontDistribute super."universe-instances-extended"; + "universe-instances-trans" = dontDistribute super."universe-instances-trans"; + "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; + "universe-th" = dontDistribute super."universe-th"; + "unix-bytestring" = dontDistribute super."unix-bytestring"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urlpath" = doDistribute super."urlpath_2_1_0"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "userid" = dontDistribute super."userid"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "utility-ht" = dontDistribute super."utility-ht"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = dontDistribute super."uuid-orphans"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validate-input" = doDistribute super."validate-input_0_2_0_0"; + "validated-literals" = dontDistribute super."validated-literals"; + "validation" = dontDistribute super."validation"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-fftw" = dontDistribute super."vector-fftw"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl" = dontDistribute super."vinyl"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty" = dontDistribute super."vty"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "waddle" = dontDistribute super."waddle"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-caching" = dontDistribute super."wai-middleware-caching"; + "wai-middleware-caching-lru" = dontDistribute super."wai-middleware-caching-lru"; + "wai-middleware-caching-redis" = dontDistribute super."wai-middleware-caching-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_7_3"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wai-transformers" = dontDistribute super."wai-transformers"; + "wai-util" = dontDistribute super."wai-util"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_1_3_1"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls" = doDistribute super."warp-tls_3_1_3"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavefront" = dontDistribute super."wavefront"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-plugins" = dontDistribute super."web-plugins"; + "web-routes" = dontDistribute super."web-routes"; + "web-routes-boomerang" = dontDistribute super."web-routes-boomerang"; + "web-routes-happstack" = dontDistribute super."web-routes-happstack"; + "web-routes-hsp" = dontDistribute super."web-routes-hsp"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = dontDistribute super."web-routes-th"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "web-routes-wai" = dontDistribute super."web-routes-wai"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "websockets-snap" = dontDistribute super."websockets-snap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "withdependencies" = dontDistribute super."withdependencies"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word-trie" = dontDistribute super."word-trie"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-basedir" = dontDistribute super."xdg-basedir"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; + "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; + "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad" = dontDistribute super."xmonad"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light" = dontDistribute super."yaml-light"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_4_0_1"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_1_0_6"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_4_4"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi" = dontDistribute super."yi"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = dontDistribute super."yi-language"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-rope" = dontDistribute super."yi-rope"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 2c89aae7f38..29e012e9069 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -319,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -468,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -500,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1455,6 +1458,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1664,6 +1668,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1687,6 +1692,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2475,6 +2481,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2657,6 +2664,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2840,6 +2848,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3044,6 +3053,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3254,6 +3264,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3554,6 +3565,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3709,6 +3721,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; @@ -3783,6 +3796,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -3998,6 +4012,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4164,6 +4179,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4204,6 +4220,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4261,6 +4278,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4356,6 +4374,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4670,6 +4689,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4784,6 +4804,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4825,6 +4846,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4975,6 +4997,7 @@ self: super: { "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5063,6 +5086,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5463,6 +5487,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_2_1"; "needle" = dontDistribute super."needle"; @@ -5636,6 +5661,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5690,6 +5716,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5880,6 +5907,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5900,6 +5928,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; @@ -5908,6 +5937,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6018,6 +6048,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7184,6 +7215,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7634,6 +7666,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7861,6 +7894,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index d391c532538..5b7a20c9342 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -319,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -468,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -500,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1454,6 +1457,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1663,6 +1667,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1686,6 +1691,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2471,6 +2477,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2653,6 +2660,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2836,6 +2844,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3039,6 +3048,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3249,6 +3259,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3549,6 +3560,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3704,6 +3716,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; @@ -3778,6 +3791,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -3992,6 +4006,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4157,6 +4172,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4197,6 +4213,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4254,6 +4271,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4349,6 +4367,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4663,6 +4682,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4777,6 +4797,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4818,6 +4839,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4968,6 +4990,7 @@ self: super: { "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5056,6 +5079,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5456,6 +5480,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5629,6 +5654,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5683,6 +5709,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5873,6 +5900,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5893,6 +5921,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; @@ -5901,6 +5930,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6011,6 +6041,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7175,6 +7206,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7624,6 +7656,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7850,6 +7883,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index f2c645af7ac..9f50937f4f6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -319,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -468,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -500,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1454,6 +1457,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1663,6 +1667,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1686,6 +1691,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2470,6 +2476,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2652,6 +2659,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2835,6 +2843,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3038,6 +3047,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3248,6 +3258,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3548,6 +3559,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3703,6 +3715,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-neo4j-client" = doDistribute super."haskell-neo4j-client_0_3_1_4"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; @@ -3777,6 +3790,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -3991,6 +4005,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4156,6 +4171,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4196,6 +4212,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4253,6 +4270,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4348,6 +4366,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4662,6 +4681,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4776,6 +4796,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4817,6 +4838,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4967,6 +4989,7 @@ self: super: { "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5055,6 +5078,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5455,6 +5479,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5628,6 +5653,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5682,6 +5708,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5872,6 +5899,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5892,6 +5920,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; @@ -5900,6 +5929,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6010,6 +6040,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7172,6 +7203,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7621,6 +7653,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7847,6 +7880,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 48f7963be65..386c865253d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -319,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -468,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -500,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1453,6 +1456,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1662,6 +1666,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1685,6 +1690,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2467,6 +2473,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2649,6 +2656,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2832,6 +2840,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3033,6 +3042,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3243,6 +3253,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3543,6 +3554,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3698,6 +3710,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3771,6 +3784,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -3984,6 +3998,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4149,6 +4164,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4189,6 +4205,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4245,6 +4262,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4340,6 +4358,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4651,6 +4670,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4765,6 +4785,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4806,6 +4827,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4953,8 +4975,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5043,6 +5067,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5442,6 +5467,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5615,6 +5641,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5669,6 +5696,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5858,6 +5886,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5878,6 +5907,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_4"; @@ -5886,6 +5916,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5995,6 +6026,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7154,6 +7186,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7600,6 +7633,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7826,6 +7860,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -8014,6 +8049,7 @@ self: super: { "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; "x509" = doDistribute super."x509_1_6_1"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "x509-validation" = doDistribute super."x509-validation_1_6_2"; "xattr" = dontDistribute super."xattr"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 6f7f9e75e00..8b9e2b4b2d5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -319,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -468,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -500,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1452,6 +1455,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1661,6 +1665,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1684,6 +1689,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2465,6 +2471,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_4"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2647,6 +2654,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2828,6 +2836,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3028,6 +3037,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3236,6 +3246,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3536,6 +3547,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3691,6 +3703,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3764,6 +3777,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres" = doDistribute super."hasql-postgres_0_10_5"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; @@ -3977,6 +3991,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4142,6 +4157,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4182,6 +4198,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4238,6 +4255,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4333,6 +4351,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4643,6 +4662,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4755,6 +4775,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4796,6 +4817,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4942,8 +4964,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5032,6 +5056,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5430,6 +5455,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5603,6 +5629,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5657,6 +5684,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5846,6 +5874,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5866,6 +5895,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5873,6 +5903,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5982,6 +6013,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7141,6 +7173,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7586,6 +7619,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7811,6 +7845,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7998,6 +8033,7 @@ self: super: { "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; "x509" = doDistribute super."x509_1_6_1"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "x509-validation" = doDistribute super."x509-validation_1_6_2"; "xattr" = dontDistribute super."xattr"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 94979700e62..9078c3be23c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -318,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -467,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -499,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1327,6 +1331,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1447,6 +1452,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1656,6 +1662,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1679,6 +1686,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2459,6 +2467,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2640,6 +2649,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2821,6 +2831,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3019,6 +3030,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3227,6 +3239,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3527,6 +3540,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3682,6 +3696,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3755,6 +3770,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3966,6 +3982,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4131,6 +4148,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4171,6 +4189,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4227,6 +4246,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4322,6 +4342,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4631,6 +4652,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4743,6 +4765,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4784,6 +4807,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4930,8 +4954,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5020,6 +5046,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5416,6 +5443,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5589,6 +5617,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5643,6 +5672,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5831,6 +5861,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5851,6 +5882,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5858,6 +5890,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5966,6 +5999,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7120,6 +7154,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7564,6 +7599,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7789,6 +7825,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7975,6 +8012,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index b109fbd9392..3a476ae5983 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -318,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -467,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -499,6 +502,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1327,6 +1331,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1447,6 +1452,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1653,6 +1659,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1676,6 +1683,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2450,6 +2458,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2629,6 +2638,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2810,6 +2820,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3008,6 +3019,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3216,6 +3228,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3516,6 +3529,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3671,6 +3685,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3744,6 +3759,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3955,6 +3971,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4120,6 +4137,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4160,6 +4178,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4216,6 +4235,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4311,6 +4331,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4620,6 +4641,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4732,6 +4754,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4773,6 +4796,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4919,8 +4943,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5009,6 +5035,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5403,6 +5430,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5576,6 +5604,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5630,6 +5659,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5818,6 +5848,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5838,6 +5869,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5845,6 +5877,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5953,6 +5986,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7104,6 +7138,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7547,6 +7582,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7772,6 +7808,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7958,6 +7995,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7985,6 +8023,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index d7b955a5c84..f3f2fec1982 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -71,6 +71,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -318,6 +319,7 @@ self: super: { "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; "Frames" = dontDistribute super."Frames"; "Frank" = dontDistribute super."Frank"; @@ -467,6 +469,7 @@ self: super: { "HTTP-Simple" = dontDistribute super."HTTP-Simple"; "HTab" = dontDistribute super."HTab"; "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit" = doDistribute super."HUnit_1_2_5_2"; "HUnit-Diff" = dontDistribute super."HUnit-Diff"; "HUnit-Plus" = dontDistribute super."HUnit-Plus"; "HUnit-approx" = dontDistribute super."HUnit-approx"; @@ -498,6 +501,7 @@ self: super: { "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; "Hawk" = dontDistribute super."Hawk"; "Hayoo" = dontDistribute super."Hayoo"; "Hclip" = dontDistribute super."Hclip"; @@ -1325,6 +1329,7 @@ self: super: { "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; "asn1dump" = dontDistribute super."asn1dump"; "assembler" = dontDistribute super."assembler"; "assert" = dontDistribute super."assert"; @@ -1445,6 +1450,7 @@ self: super: { "base-io-access" = dontDistribute super."base-io-access"; "base-noprelude" = dontDistribute super."base-noprelude"; "base-orphans" = doDistribute super."base-orphans_0_4_4"; + "base-prelude" = doDistribute super."base-prelude_0_1_19"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; "base58address" = dontDistribute super."base58address"; @@ -1650,6 +1656,7 @@ self: super: { "bot" = dontDistribute super."bot"; "both" = dontDistribute super."both"; "botpp" = dontDistribute super."botpp"; + "bound" = doDistribute super."bound_1_0_6"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; @@ -1673,6 +1680,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -2445,6 +2453,7 @@ self: super: { "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; "dictparser" = dontDistribute super."dictparser"; @@ -2623,6 +2632,7 @@ self: super: { "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; @@ -2803,6 +2813,7 @@ self: super: { "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; "faker" = dontDistribute super."faker"; "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; @@ -3000,6 +3011,7 @@ self: super: { "friday-juicypixels" = dontDistribute super."friday-juicypixels"; "friday-scale-dct" = dontDistribute super."friday-scale-dct"; "friendly-time" = dontDistribute super."friendly-time"; + "frontmatter" = dontDistribute super."frontmatter"; "frp-arduino" = dontDistribute super."frp-arduino"; "frpnow" = dontDistribute super."frpnow"; "frpnow-gloss" = dontDistribute super."frpnow-gloss"; @@ -3208,6 +3220,7 @@ self: super: { "gitlib-s3" = dontDistribute super."gitlib-s3"; "gitlib-sample" = dontDistribute super."gitlib-sample"; "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3508,6 +3521,7 @@ self: super: { "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; "hackage-server" = dontDistribute super."hackage-server"; "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage-whatsnew" = dontDistribute super."hackage-whatsnew"; "hackage2hwn" = dontDistribute super."hackage2hwn"; "hackage2twitter" = dontDistribute super."hackage2twitter"; "hackager" = dontDistribute super."hackager"; @@ -3663,6 +3677,7 @@ self: super: { "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-modbus" = dontDistribute super."haskell-modbus"; "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = doDistribute super."haskell-names_0_5_3"; "haskell-openflow" = dontDistribute super."haskell-openflow"; "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; "haskell-platform-test" = dontDistribute super."haskell-platform-test"; @@ -3736,6 +3751,7 @@ self: super: { "hasloGUI" = dontDistribute super."hasloGUI"; "hasparql-client" = dontDistribute super."hasparql-client"; "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_7_4"; "hasql-pool" = dontDistribute super."hasql-pool"; "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; "hasql-th" = dontDistribute super."hasql-th"; @@ -3947,6 +3963,7 @@ self: super: { "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibgit2" = doDistribute super."hlibgit2_0_18_0_14"; + "hlibsass" = doDistribute super."hlibsass_0_1_4_0"; "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; @@ -4112,6 +4129,7 @@ self: super: { "hsConfigure" = dontDistribute super."hsConfigure"; "hsSqlite3" = dontDistribute super."hsSqlite3"; "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsass" = doDistribute super."hsass_0_3_0"; "hsay" = dontDistribute super."hsay"; "hsb2hs" = dontDistribute super."hsb2hs"; "hsbackup" = dontDistribute super."hsbackup"; @@ -4152,6 +4170,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4208,6 +4227,7 @@ self: super: { "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; + "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; @@ -4303,6 +4323,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_8_6"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_0_4"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -4612,6 +4633,7 @@ self: super: { "json-rpc" = dontDistribute super."json-rpc"; "json-rpc-client" = dontDistribute super."json-rpc-client"; "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-schema" = doDistribute super."json-schema_0_7_4_0"; "json-sop" = dontDistribute super."json-sop"; "json-state" = dontDistribute super."json-state"; "json-stream" = dontDistribute super."json-stream"; @@ -4724,6 +4746,7 @@ self: super: { "lambdacube-examples" = dontDistribute super."lambdacube-examples"; "lambdacube-gl" = dontDistribute super."lambdacube-gl"; "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; "lambdatwit" = dontDistribute super."lambdatwit"; "lambdiff" = dontDistribute super."lambdiff"; "lame-tester" = dontDistribute super."lame-tester"; @@ -4765,6 +4788,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -4911,8 +4935,10 @@ self: super: { "liquidhaskell" = dontDistribute super."liquidhaskell"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; + "list-prompt" = dontDistribute super."list-prompt"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5001,6 +5027,7 @@ self: super: { "lub" = dontDistribute super."lub"; "lucid" = doDistribute super."lucid_2_9_2"; "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; @@ -5395,6 +5422,7 @@ self: super: { "nbt" = dontDistribute super."nbt"; "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; + "ndjson-conduit" = doDistribute super."ndjson-conduit_0_1_0_2"; "neat" = dontDistribute super."neat"; "neat-interpolation" = doDistribute super."neat-interpolation_0_2_3"; "needle" = dontDistribute super."needle"; @@ -5568,6 +5596,7 @@ self: super: { "omnifmt" = dontDistribute super."omnifmt"; "on-a-horse" = dontDistribute super."on-a-horse"; "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = dontDistribute super."once"; "one-liner" = dontDistribute super."one-liner"; "one-time-password" = dontDistribute super."one-time-password"; "oneOfN" = dontDistribute super."oneOfN"; @@ -5621,6 +5650,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "optional" = dontDistribute super."optional"; "options-time" = dontDistribute super."options-time"; + "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "orc" = dontDistribute super."orc"; "orchestrate" = dontDistribute super."orchestrate"; @@ -5809,6 +5839,7 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5829,6 +5860,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_6"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_4"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-cacophony" = dontDistribute super."pipes-cacophony"; @@ -5836,6 +5868,7 @@ self: super: { "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5944,6 +5977,7 @@ self: super: { "possible" = dontDistribute super."possible"; "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2_1"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-connector" = dontDistribute super."postgresql-connector"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -7095,6 +7129,7 @@ self: super: { "swift-lda" = dontDistribute super."swift-lda"; "swish" = dontDistribute super."swish"; "sws" = dontDistribute super."sws"; + "syb" = doDistribute super."syb_0_5_1"; "syb-extras" = dontDistribute super."syb-extras"; "syb-with-class" = dontDistribute super."syb-with-class"; "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; @@ -7538,6 +7573,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = dontDistribute super."typelits-witnesses"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7763,6 +7799,7 @@ self: super: { "vorbiscomment" = dontDistribute super."vorbiscomment"; "vowpal-utils" = dontDistribute super."vowpal-utils"; "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; "vte" = dontDistribute super."vte"; "vtegtk3" = dontDistribute super."vtegtk3"; "vty" = dontDistribute super."vty"; @@ -7949,6 +7986,7 @@ self: super: { "x-dsp" = dontDistribute super."x-dsp"; "x11-xim" = dontDistribute super."x11-xim"; "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-system" = doDistribute super."x509-system_1_6_1"; "x509-util" = dontDistribute super."x509-util"; "xattr" = dontDistribute super."xattr"; "xbattbar" = dontDistribute super."xbattbar"; @@ -7976,6 +8014,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_2"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 4334c17b655..ddbc2109dd5 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -457,8 +457,8 @@ self: { ({ mkDerivation, base, freealut, OpenAL, StateVar, transformers }: mkDerivation { pname = "ALUT"; - version = "2.4.0.0"; - sha256 = "0f5cf9362ace34a9739cd3a45015782a0102015e62c8dd8e290d7952e6ff193d"; + version = "2.4.0.1"; + sha256 = "fcf517a673b0ad2bd6b83033a33f77603b36f293ad651d5ede92c4d30225b56b"; libraryHaskellDepends = [ base OpenAL StateVar transformers ]; librarySystemDepends = [ freealut ]; homepage = "https://github.com/haskell-openal/ALUT"; @@ -722,7 +722,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) emacs;}; - "Agda" = callPackage + "Agda_2_4_2_4" = callPackage ({ mkDerivation, alex, array, base, binary, boxes, bytestring , containers, cpphs, data-hash, deepseq, directory, edit-distance , emacs, equivalence, filepath, geniplate-mirror, happy, hashable @@ -755,6 +755,41 @@ self: { homepage = "http://wiki.portal.chalmers.se/agda/"; description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) emacs;}; + + "Agda" = callPackage + ({ mkDerivation, alex, array, base, binary, boxes, bytestring + , containers, cpphs, data-hash, deepseq, directory, edit-distance + , emacs, equivalence, filepath, geniplate-mirror, happy, hashable + , hashtables, haskeline, haskell-src-exts, mtl, parallel, pretty + , process, QuickCheck, strict, template-haskell, text, time + , transformers, transformers-compat, unordered-containers, xhtml + , zlib + }: + mkDerivation { + pname = "Agda"; + version = "2.4.2.5"; + sha256 = "959658a372d93b735d92191b372d221461026c98de4f92e56d198b576dfb67ee"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary boxes bytestring containers data-hash deepseq + directory edit-distance equivalence filepath geniplate-mirror + hashable hashtables haskeline haskell-src-exts mtl parallel pretty + process QuickCheck strict template-haskell text time transformers + transformers-compat unordered-containers xhtml zlib + ]; + libraryToolDepends = [ alex cpphs happy ]; + executableHaskellDepends = [ base directory filepath process ]; + executableToolDepends = [ emacs ]; + postInstall = '' + $out/bin/agda -c --no-main $(find $out/share -name Primitive.agda) + $out/bin/agda-mode compile + ''; + homepage = "http://wiki.portal.chalmers.se/agda/"; + description = "A dependently typed functional programming language and proof assistant"; + license = "unknown"; }) {inherit (pkgs) emacs;}; "Agda-executable" = callPackage @@ -2811,6 +2846,7 @@ self: { diagrams-svg lens lucid-svg mtl old-locale operational SVGFonts text time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Diagrams backend for Charts"; license = stdenv.lib.licenses.bsd3; @@ -3945,7 +3981,6 @@ self: { HUnit integer-gmp QuickCheck SHA tagged test-framework test-framework-hunit test-framework-quickcheck2 ]; - jailbreak = true; description = "Implementation of DSA, based on the description of FIPS 186-4"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -5905,6 +5940,29 @@ self: { license = "LGPL"; }) {}; + "FractalArt" = callPackage + ({ mkDerivation, base, directory, filepath, JuicyPixels, libX11 + , mwc-random, primitive, random, vector + }: + mkDerivation { + pname = "FractalArt"; + version = "0.2.0.0"; + sha256 = "011d310a8ba7d5e891bf8a6c0f567ccda609324df792d8533475e4f28a4c2097"; + revision = "2"; + editedCabalFile = "5ce975b8ccd2d1ed165abada3d4b8af27d8bac02783595343aac28a6d7617b74"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base directory filepath JuicyPixels mwc-random primitive random + vector + ]; + executableSystemDepends = [ libX11 ]; + jailbreak = true; + homepage = "https://github.com/TomSmeets/FractalArt"; + description = "Generates colorful wallpapers"; + license = stdenv.lib.licenses.mit; + }) {inherit (pkgs.xorg) libX11;}; + "Fractaler" = callPackage ({ mkDerivation, base, FTGL, GLFW-b, OpenGLRaw, parallel, random , time @@ -6089,6 +6147,7 @@ self: { testHaskellDepends = [ base bindings-GLFW HUnit test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; description = "Bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; @@ -6257,6 +6316,20 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; + "GLURaw_1_5_0_3" = callPackage + ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: + mkDerivation { + pname = "GLURaw"; + version = "1.5.0.3"; + sha256 = "066134b3c68442e074e67299f500d67cd769de7853e98ea01b89b19cd8c00b47"; + libraryHaskellDepends = [ base OpenGLRaw transformers ]; + librarySystemDepends = [ freeglut mesa ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A raw binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; + "GLUT_2_5_1_1" = callPackage ({ mkDerivation, array, base, containers, freeglut, mesa, OpenGL , OpenGLRaw @@ -6331,6 +6404,24 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; + "GLUT_2_7_0_4" = callPackage + ({ mkDerivation, array, base, containers, freeglut, mesa, OpenGL + , OpenGLRaw, StateVar, transformers + }: + mkDerivation { + pname = "GLUT"; + version = "2.7.0.4"; + sha256 = "44e80e79895659e00e25033dfc29819f55226046ca6ca46b3373e031262b934c"; + libraryHaskellDepends = [ + array base containers OpenGL OpenGLRaw StateVar transformers + ]; + librarySystemDepends = [ freeglut mesa ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A binding for the OpenGL Utility Toolkit"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; + "GLUtil" = callPackage ({ mkDerivation, array, base, bytestring, containers, directory , filepath, hpp, JuicyPixels, linear, OpenGL, OpenGLRaw @@ -7543,6 +7634,7 @@ self: { messagepack text vect ]; librarySystemDepends = [ hgamer3d062 Urho3D ]; + jailbreak = true; homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer"; license = "unknown"; @@ -8912,7 +9004,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HUnit" = callPackage + "HUnit_1_2_5_2" = callPackage ({ mkDerivation, base, deepseq }: mkDerivation { pname = "HUnit"; @@ -8922,9 +9014,10 @@ self: { homepage = "http://hunit.sourceforge.net/"; description = "A unit testing framework for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HUnit_1_3_0_0" = callPackage + "HUnit" = callPackage ({ mkDerivation, base, deepseq, filepath }: mkDerivation { pname = "HUnit"; @@ -8935,7 +9028,6 @@ self: { homepage = "http://hunit.sourceforge.net/"; description = "A unit testing framework for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit-Diff" = callPackage @@ -9797,6 +9889,31 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "Hate" = callPackage + ({ mkDerivation, base, bytestring, GLFW-b, GLUtil, hpp, JuicyPixels + , JuicyPixels-util, lens, mtl, multimap, OpenGL, random, stm + , transformers, vect, vect-opengl, vector + }: + mkDerivation { + pname = "Hate"; + version = "0.1.4.3"; + sha256 = "527920c3f401113cf4123486fb578447916eae928923e7bb857ac14442f34e6e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring GLFW-b GLUtil hpp JuicyPixels JuicyPixels-util mtl + multimap OpenGL stm transformers vect vect-opengl vector + ]; + executableHaskellDepends = [ + base GLFW-b GLUtil JuicyPixels JuicyPixels-util lens mtl OpenGL + random transformers vect vect-opengl vector + ]; + jailbreak = true; + homepage = "http://github.com/bananu7/Hate"; + description = "A small 2D game framework"; + license = stdenv.lib.licenses.mit; + }) {}; + "Hawk" = callPackage ({ mkDerivation, base, bytestring, bytestring-trie, cgi, containers , convertible, data-default, dataenc, directory, filepath, hack @@ -10000,8 +10117,8 @@ self: { }: mkDerivation { pname = "Hish"; - version = "0.1.2.1"; - sha256 = "fd3d404e8ea165e3011f5580d4f6556a596d7a24e6510e2ce5902779e29b6ca4"; + version = "0.1.2.2"; + sha256 = "5094eee275eb1d9dba7929c1bd812cb1b299dce18be5eefcfde3b2cd48d5365a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -10312,20 +10429,22 @@ self: { }) {Judy = null;}; "HsOpenSSL" = callPackage - ({ mkDerivation, base, bytestring, HUnit, network, old-locale - , openssl, test-framework, test-framework-hunit, time + ({ mkDerivation, base, bytestring, HUnit, integer-gmp, network + , old-locale, openssl, test-framework, test-framework-hunit, time }: mkDerivation { pname = "HsOpenSSL"; version = "0.11.1.1"; sha256 = "4a61e074e968a9863e0f3440b3be8ac131457b3d34eb983ca8102122d8ebc4c1"; libraryHaskellDepends = [ - base bytestring network old-locale time + base bytestring integer-gmp network old-locale time ]; librarySystemDepends = [ openssl ]; testHaskellDepends = [ base bytestring HUnit test-framework test-framework-hunit ]; + jailbreak = true; + doCheck = false; homepage = "https://github.com/phonohawk/HsOpenSSL"; description = "Partial OpenSSL binding for Haskell"; license = stdenv.lib.licenses.publicDomain; @@ -10461,6 +10580,7 @@ self: { libraryHaskellDepends = [ aeson base containers lens lens-aeson mtl transformers wreq ]; + jailbreak = true; homepage = "https://github.com/sjoerdvisscher/HueAPI"; description = "API for controlling Philips Hue lights"; license = stdenv.lib.licenses.bsd3; @@ -13879,6 +13999,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ObjectName_1_1_0_1" = callPackage + ({ mkDerivation, base, transformers }: + mkDerivation { + pname = "ObjectName"; + version = "1.1.0.1"; + sha256 = "72dbef237580fd4e8567de2de752835bbadd3629f486d1586486d49a49aad210"; + libraryHaskellDepends = [ base transformers ]; + homepage = "https://github.com/svenpanne/ObjectName"; + description = "Explicitly handled object names"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Obsidian" = callPackage ({ mkDerivation, base, containers, cuda, language-c-quote , mainland-pretty, mtl, mwc-random, process, rdtsc, text @@ -14032,8 +14165,8 @@ self: { }: mkDerivation { pname = "OpenAL"; - version = "1.7.0.1"; - sha256 = "671987cb52152317e6bed01b20e09c031a20066ff3f76aa450965ec162971750"; + version = "1.7.0.2"; + sha256 = "72fe6db9ae0449df5bdb674fde9b3bfb5a1544261ba6a32dadc5396dd95064af"; libraryHaskellDepends = [ base ObjectName OpenGL StateVar transformers ]; @@ -14148,8 +14281,8 @@ self: { }: mkDerivation { pname = "OpenGL"; - version = "2.13.1.1"; - sha256 = "6db5b3530e234bc643e3279ccbc78992b5e8f462f618593e2cebc80aa9abe0a6"; + version = "2.13.2.0"; + sha256 = "512573572b89242ecf834ca7669c18a689d6a694594ca94bb725ef1db37f46f2"; libraryHaskellDepends = [ base bytestring containers GLURaw ObjectName OpenGLRaw StateVar text transformers @@ -14160,6 +14293,24 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; + "OpenGL_2_13_2_1" = callPackage + ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName + , OpenGLRaw, StateVar, text, transformers + }: + mkDerivation { + pname = "OpenGL"; + version = "2.13.2.1"; + sha256 = "bc28e7e83bcf40c8654b74a35146a8d1a48fea76ea148c507b681c6d255f5734"; + libraryHaskellDepends = [ + base bytestring containers GLURaw ObjectName OpenGLRaw StateVar + text transformers + ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "OpenGLCheck" = callPackage ({ mkDerivation, base, checkers, haskell98, OpenGL, QuickCheck }: mkDerivation { @@ -14233,6 +14384,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) mesa;}; + "OpenGLRaw_2_6_1_1" = callPackage + ({ mkDerivation, base, bytestring, containers, half, mesa, text + , transformers + }: + mkDerivation { + pname = "OpenGLRaw"; + version = "2.6.1.1"; + sha256 = "bac2633ab2ae04ecaa26319aded375ad1c678fa33d9897ecd8c7d58998de183b"; + libraryHaskellDepends = [ + base bytestring containers half text transformers + ]; + librarySystemDepends = [ mesa ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A raw binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) mesa;}; + "OpenGLRaw21" = callPackage ({ mkDerivation, OpenGLRaw }: mkDerivation { @@ -15241,6 +15410,8 @@ self: { pname = "QuickCheck"; version = "2.7.6"; sha256 = "80d8970a0c1dfcb714215cf11f2bf0f79339f70c01999dae2c31516100a0c527"; + revision = "1"; + editedCabalFile = "45ff46338dca0616041adade28d6b49d6a3ea810ba5dff619b2abdcbe7c93035"; libraryHaskellDepends = [ base random template-haskell tf-random transformers ]; @@ -15260,6 +15431,8 @@ self: { pname = "QuickCheck"; version = "2.8.1"; sha256 = "7073aa3635660476aa31df7cf0476926a1ac0231235020122eb276070675763b"; + revision = "1"; + editedCabalFile = "f8c84fee9ea7efc5d033cde7e4cd2ade67a30bb832f08e62394353481e16b4b7"; libraryHaskellDepends = [ base containers random template-haskell tf-random transformers ]; @@ -17623,6 +17796,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "StateVar_1_1_0_2" = callPackage + ({ mkDerivation, base, stm, transformers }: + mkDerivation { + pname = "StateVar"; + version = "1.1.0.2"; + sha256 = "051c4b98bc4456afe4eb26f775ab0aa370e9e12b1588d5865abd5b0aea83c3f9"; + libraryHaskellDepends = [ base stm transformers ]; + homepage = "https://github.com/haskell-opengl/StateVar"; + description = "State variables"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "StateVar-transformer" = callPackage ({ mkDerivation, base, mtl, transformers }: mkDerivation { @@ -21218,6 +21404,7 @@ self: { testHaskellDepends = [ base lens linear QuickCheck semigroupoids semigroups vector ]; + jailbreak = true; description = "Abstractions for animation"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -21710,32 +21897,6 @@ self: { }) {}; "aeson" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, deepseq - , dlist, ghc-prim, hashable, HUnit, mtl, QuickCheck, scientific - , syb, template-haskell, test-framework, test-framework-hunit - , test-framework-quickcheck2, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson"; - version = "0.9.0.1"; - sha256 = "92b97dbc4968a2af6bc13b499629118f85b22efe113a4d60e578fbfb0f6ef8bc"; - libraryHaskellDepends = [ - attoparsec base bytestring containers deepseq dlist ghc-prim - hashable mtl scientific syb template-haskell text time transformers - unordered-containers vector - ]; - testHaskellDepends = [ - attoparsec base bytestring containers ghc-prim HUnit QuickCheck - template-haskell test-framework test-framework-hunit - test-framework-quickcheck2 text time unordered-containers vector - ]; - homepage = "https://github.com/bos/aeson"; - description = "Fast JSON parsing and encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "aeson_0_10_0_0" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers, deepseq , dlist, ghc-prim, hashable, HUnit, mtl, QuickCheck, scientific , syb, template-haskell, test-framework, test-framework-hunit @@ -21756,10 +21917,10 @@ self: { template-haskell test-framework test-framework-hunit test-framework-quickcheck2 text time unordered-containers vector ]; + doCheck = false; homepage = "https://github.com/bos/aeson"; description = "Fast JSON parsing and encoding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-applicative" = callPackage @@ -21823,7 +21984,6 @@ self: { testHaskellDepends = [ aeson base tasty tasty-hunit tasty-quickcheck tasty-th ]; - doHaddock = false; description = "Tools to change the formatting of field names in Aeson instances"; license = stdenv.lib.licenses.mit; }) {}; @@ -21851,6 +22011,7 @@ self: { aeson base QuickCheck quickcheck-instances text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/thsutton/aeson-diff"; description = "Extract and apply patches to JSON documents"; license = stdenv.lib.licenses.bsd3; @@ -22011,7 +22172,6 @@ self: { libraryHaskellDepends = [ aeson base parsec scientific text unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/FPBrno/aeson-parsec-picky"; description = "Alternative JSON parser based on Parsec and Aeson"; license = stdenv.lib.licenses.bsd3; @@ -22127,6 +22287,7 @@ self: { template-haskell temporary test-framework test-framework-hunit test-framework-quickcheck2 text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/timjb/aeson-schema"; description = "Haskell JSON schema validator and parser generator"; license = stdenv.lib.licenses.mit; @@ -22156,6 +22317,7 @@ self: { template-haskell temporary test-framework test-framework-hunit test-framework-quickcheck2 text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/Fuuzetsu/aeson-schema"; description = "Haskell JSON schema validator and parser generator"; license = stdenv.lib.licenses.mit; @@ -22432,6 +22594,7 @@ self: { Agda base containers mtl network-uri xhtml ]; executableHaskellDepends = [ Agda base network-uri ]; + jailbreak = true; homepage = "http://github.com/liamoc/agda-snippets#readme"; description = "Render just the Agda snippets of a literate Agda file to HTML"; license = stdenv.lib.licenses.bsd3; @@ -23564,17 +23727,17 @@ self: { "amazonka" = callPackage ({ mkDerivation, amazonka-core, base, bytestring, conduit - , conduit-extra, directory, exceptions, http-conduit, ini, lens - , mmorph, monad-control, mtl, resourcet, retry, tasty, tasty-hunit - , text, time, transformers, transformers-base, transformers-compat + , conduit-extra, directory, exceptions, http-conduit, ini, mmorph + , monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text + , time, transformers, transformers-base, transformers-compat }: mkDerivation { pname = "amazonka"; - version = "1.3.6"; - sha256 = "2b6a1bd4594db524f387a23d916059d973b4640eb4f6e4fa64571bd96df09d96"; + version = "1.3.7"; + sha256 = "4eb5be39c07f4638cc050e97905c31409aa0555650c2d3c055d0c9e117685797"; libraryHaskellDepends = [ amazonka-core base bytestring conduit conduit-extra directory - exceptions http-conduit ini lens mmorph monad-control mtl resourcet + exceptions http-conduit ini mmorph monad-control mtl resourcet retry text time transformers transformers-base transformers-compat ]; testHaskellDepends = [ base tasty tasty-hunit ]; @@ -23585,16 +23748,16 @@ self: { "amazonka-apigateway" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-apigateway"; - version = "1.3.6"; - sha256 = "21d30940c168597d8c1dde700bc420ad87eadb2f512f78d5b05c39363755ae58"; + version = "1.3.7"; + sha256 = "69dc8132895383cee52625053c5a26d00522592441b86382425e2ad717113953"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon API Gateway SDK"; @@ -23645,16 +23808,16 @@ self: { "amazonka-autoscaling" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-autoscaling"; - version = "1.3.6"; - sha256 = "e37b8aff470f3b2e04b9066aecf7f1d160bf120bcddbdd849428c32aa84b7c85"; + version = "1.3.7"; + sha256 = "cb9c27d105c147cf6d2bc2bf7207f4a6f9b4a13b4231a05487a6bf0cfe36d824"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Auto Scaling SDK"; @@ -23705,16 +23868,16 @@ self: { "amazonka-cloudformation" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudformation"; - version = "1.3.6"; - sha256 = "5ad92a91c4a9def47c5700ce5c573f40cd6b87e8f250f1502d7dc1cad6b6577b"; + version = "1.3.7"; + sha256 = "320c72348c550a03ed080922f70865ea1fc9e48307932157d6872cb5c882be0d"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFormation SDK"; @@ -23765,16 +23928,16 @@ self: { "amazonka-cloudfront" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudfront"; - version = "1.3.6"; - sha256 = "e01ddbe47cad14d8dd47a42bf41d7598f119d0c01aab466aa3f25dcad3764994"; + version = "1.3.7"; + sha256 = "4bdfe01425a6508a224975a9137d816bf76455b1e8d2908cff75c896c86b3c5a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFront SDK"; @@ -23825,16 +23988,16 @@ self: { "amazonka-cloudhsm" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudhsm"; - version = "1.3.6"; - sha256 = "e5946f07605a58dfabdef84212cd663ace14d7b2a274276a06394576c6e8db4a"; + version = "1.3.7"; + sha256 = "1ddff0ccf07e8961ddf0c8e186f2ff420ab0a03e20c0450bf71ca5c16e8791fa"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudHSM SDK"; @@ -23885,16 +24048,16 @@ self: { "amazonka-cloudsearch" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudsearch"; - version = "1.3.6"; - sha256 = "b40816be3743f3be9c5a0c0b2d686f8cdc4e86adc62296af3f372dd9f5c7493e"; + version = "1.3.7"; + sha256 = "8d25ff01dc964a28250004ac1d94c3352f08d187893f53d9718399dcac0eb4f6"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch SDK"; @@ -23945,16 +24108,16 @@ self: { "amazonka-cloudsearch-domains" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudsearch-domains"; - version = "1.3.6"; - sha256 = "2e291315720e6cd3fe8e6f25252b70408aa94f3bc580812a611e1be1efd4dae8"; + version = "1.3.7"; + sha256 = "36a6b4c1320b8b796e013f2ed9007dd411649f4f5f328ae74fd2b32b34bd385d"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch Domain SDK"; @@ -24005,16 +24168,16 @@ self: { "amazonka-cloudtrail" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudtrail"; - version = "1.3.6"; - sha256 = "e49e9178707fbe296dc0e8e5fb03e0876fc41306cb0b07a64cca4ccdd1be3b95"; + version = "1.3.7"; + sha256 = "f1a2c200001d876154cb526066d7dd41928000391b46bf2071e685f2e2f47ab1"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudTrail SDK"; @@ -24065,16 +24228,16 @@ self: { "amazonka-cloudwatch" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudwatch"; - version = "1.3.6"; - sha256 = "a568286907b7f72fcc7089015727141b231a082fc22f9192f02c86df4baddd76"; + version = "1.3.7"; + sha256 = "7ca782f158f95e2cd68f60de45aeeac9404ff55743a02b490f6be2ac5a3c35e0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch SDK"; @@ -24125,16 +24288,16 @@ self: { "amazonka-cloudwatch-logs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudwatch-logs"; - version = "1.3.6"; - sha256 = "cd616e54162460bd887c2e141baacf6c28628d5397f1da4ee21c33abebbc6c31"; + version = "1.3.7"; + sha256 = "479dab55226364dc4f109e5189906ee782d7d8d114ab2754278b22b15bf28025"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch Logs SDK"; @@ -24143,16 +24306,16 @@ self: { "amazonka-codecommit" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-codecommit"; - version = "1.3.6"; - sha256 = "0140e1c7353c1db7e468194465989f61498eb58a46bc270478fc842d9128acd2"; + version = "1.3.7"; + sha256 = "71d52bd60f5d5b7a04e33b9c41aedef5d34cfd0587af16cbce5c8b7346519bb7"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodeCommit SDK"; @@ -24203,16 +24366,16 @@ self: { "amazonka-codedeploy" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-codedeploy"; - version = "1.3.6"; - sha256 = "385b0d54be768c63d218173be424cca08e895ec695b18ab3468339a819c25926"; + version = "1.3.7"; + sha256 = "114b48813df24301ac27bcd3f6f2933c925616d5f155b55459dec3c8f836c842"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodeDeploy SDK"; @@ -24221,16 +24384,16 @@ self: { "amazonka-codepipeline" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-codepipeline"; - version = "1.3.6"; - sha256 = "eb4ff01933e3b4e2abff5c249548ece6906d13442a45fd3aafa07050a4af55ad"; + version = "1.3.7"; + sha256 = "9b113de6a18eac005182c85e37a21c59cf077d78debcf229e0c175b93b6686cb"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodePipeline SDK"; @@ -24281,16 +24444,16 @@ self: { "amazonka-cognito-identity" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cognito-identity"; - version = "1.3.6"; - sha256 = "227caccb006bc242ca57d629a1ba2453ecb032fdfe0971a5d70c9957ec53abd7"; + version = "1.3.7"; + sha256 = "78b0cf4e3d7aed0c82fd11016baf1e7bf2a33207a012a3229cbec2fdd7853641"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Identity SDK"; @@ -24341,16 +24504,16 @@ self: { "amazonka-cognito-sync" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cognito-sync"; - version = "1.3.6"; - sha256 = "29821f6e4f4a9b59ff3612a2097f715df66d513833989c88c01c6cf9d29d1639"; + version = "1.3.7"; + sha256 = "5f0a9a438bad4739e364804e5326ad18ca2a4792f799098b098a9192836f5577"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Sync SDK"; @@ -24401,16 +24564,16 @@ self: { "amazonka-config" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-config"; - version = "1.3.6"; - sha256 = "dd257f9c707bc5218cd5b64d0adda1ecdd47a7e67282b12ad0d590101b362b7d"; + version = "1.3.7"; + sha256 = "58da74215ae3291341197e4bbb235f07818accf50364fb9ce5c392c8af5312fa"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Config SDK"; @@ -24463,8 +24626,8 @@ self: { pname = "amazonka-core"; version = "0.3.4"; sha256 = "5f268010d0dff030398b272f7c505f25acc33a9c8c0ccb3ad9e667663707306a"; - revision = "1"; - editedCabalFile = "906720ed3918b2ceab4fb4d87a5f8e1dff1fbcf978e85b7a20195c2b35872aca"; + revision = "2"; + editedCabalFile = "ce25f51af29b48e824a325c3c6cdb72826ff9e76b7912b13f1d12660830e880e"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring base64-bytestring bifunctors bytestring case-insensitive conduit conduit-extra @@ -24476,6 +24639,7 @@ self: { testHaskellDepends = [ aeson base tasty tasty-hunit template-haskell text ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Core functionality and data types for Amazonka libraries"; license = "unknown"; @@ -24495,8 +24659,8 @@ self: { pname = "amazonka-core"; version = "0.3.6"; sha256 = "821e635dc21ea7a06c6ba6711dec228c6fb18c12de51924f84d92fc71cf8c0d0"; - revision = "1"; - editedCabalFile = "a0471c700a9a90808fac28a7f77802220d61b5bf84c3d50b8e0b8fb146413aef"; + revision = "2"; + editedCabalFile = "3f6c94016391ab596deae1721db67629a85d8a0a9d7651bea5c962e5c0b5d39d"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring base64-bytestring bifunctors bytestring case-insensitive conduit conduit-extra @@ -24508,6 +24672,7 @@ self: { testHaskellDepends = [ aeson base tasty tasty-hunit template-haskell text ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Core functionality and data types for Amazonka libraries"; license = "unknown"; @@ -24525,8 +24690,8 @@ self: { }: mkDerivation { pname = "amazonka-core"; - version = "1.3.6"; - sha256 = "886f1b9160261b7b29c4aef0b987f8b3723b2a821a7e90dc37e5382ca8587b74"; + version = "1.3.7"; + sha256 = "29c8aebe23cd6f48fa5f49c2ba02e2f12b8aa8fc0f820489b49dc95b28f8e05c"; libraryHaskellDepends = [ aeson attoparsec base bifunctors bytestring case-insensitive conduit conduit-extra cryptonite exceptions hashable http-conduit @@ -24535,7 +24700,7 @@ self: { xml-conduit xml-types ]; testHaskellDepends = [ - aeson base bytestring case-insensitive http-types lens QuickCheck + aeson base bytestring case-insensitive http-types QuickCheck quickcheck-unicode tasty tasty-hunit tasty-quickcheck template-haskell text time ]; @@ -24588,16 +24753,16 @@ self: { "amazonka-datapipeline" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-datapipeline"; - version = "1.3.6"; - sha256 = "0f4657336cd6eead4a5cca09b6b68cfcc5f75c2382a9e3a5d36deddbe555b973"; + version = "1.3.7"; + sha256 = "7df5cd02fd2d14ca7dd37408ec59374a338d862162ef6c6094703f24f39ab5bd"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Data Pipeline SDK"; @@ -24606,16 +24771,16 @@ self: { "amazonka-devicefarm" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-devicefarm"; - version = "1.3.6"; - sha256 = "e7782528d5f9afaf65477ea62e96e77d897aecccd2d3cf21ffa40f604dd33013"; + version = "1.3.7"; + sha256 = "f370f855bcdb2b5a504f399add12856884f3faa3ca465dc18fd1e0877eb74e7b"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Device Farm SDK"; @@ -24666,16 +24831,16 @@ self: { "amazonka-directconnect" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-directconnect"; - version = "1.3.6"; - sha256 = "2c6adffec93961fea4361f245280b5eea2df2c314ce1958e0d31926b3890f2be"; + version = "1.3.7"; + sha256 = "b1119213b84a509ebe5cd7ea1032ee94d7b0aa45fd159f71aa0e2f4d19e59dcb"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Direct Connect SDK"; @@ -24684,16 +24849,16 @@ self: { "amazonka-ds" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ds"; - version = "1.3.6"; - sha256 = "891f5189125cf8d94abf3ee97aa8959c0015e0383b7485238e87282b018f629d"; + version = "1.3.7"; + sha256 = "fd75ba2790bf61db6db791afb2eb52e7867f2294275b9fdf8c5e2040bd8e7628"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Directory Service SDK"; @@ -24744,16 +24909,16 @@ self: { "amazonka-dynamodb" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-dynamodb"; - version = "1.3.6"; - sha256 = "28ae5711721ba898db8c51ae123000ec02d1a4e66db6078b3ca426f4dab9c3be"; + version = "1.3.7"; + sha256 = "8000caed96de1a7ffc9dd97668606f3c64a54619b549b4b7c29b73780091176e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon DynamoDB SDK"; @@ -24762,16 +24927,16 @@ self: { "amazonka-dynamodb-streams" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-dynamodb-streams"; - version = "1.3.6"; - sha256 = "3201fee450d622ad22825a8068e95e913666fc25544044e6b0a840d3c444be0c"; + version = "1.3.7"; + sha256 = "a3b5304cde5c828135a813c2f005d5bdc9d0316ab09c966f3caffae084971072"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon DynamoDB Streams SDK"; @@ -24836,16 +25001,16 @@ self: { "amazonka-ec2" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ec2"; - version = "1.3.6"; - sha256 = "d5756ef1f17d84b9e50647477e244e56560d676d5dea35b8c1ea53b5684d4c97"; + version = "1.3.7"; + sha256 = "d76e66ca880a7dc8299186ea0334c12a4a38bf4efa79df59dc26016371e59e65"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; @@ -24898,16 +25063,16 @@ self: { "amazonka-ecs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ecs"; - version = "1.3.6"; - sha256 = "a0c6d28f289c5120765ce1efc13d18b50b4a1c6b93222fa7381979b94cb80406"; + version = "1.3.7"; + sha256 = "4124f46fa02ef085e989261b2617975dbbd7d2549fd1901279b311952c01d51e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon EC2 Container Service SDK"; @@ -24916,16 +25081,16 @@ self: { "amazonka-efs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-efs"; - version = "1.3.6"; - sha256 = "4e087917eb34bb12fa0add63c41eee7bb2baf52af8c7d6c6f247c0a8c726a5db"; + version = "1.3.7"; + sha256 = "ae1a69233552debb037c3d87062fe79562af74b735758e8c6cfcf59e8fc4269f"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic File System SDK"; @@ -24976,16 +25141,16 @@ self: { "amazonka-elasticache" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-elasticache"; - version = "1.3.6"; - sha256 = "7c60c850560b448434513cd7943d2d42d662816f98f7f9bf06c36c7f0a057888"; + version = "1.3.7"; + sha256 = "22d53cb522c73f1fd95dfd8678295055aebd34b3f999506042f00d49266ed0d9"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon ElastiCache SDK"; @@ -25036,16 +25201,16 @@ self: { "amazonka-elasticbeanstalk" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-elasticbeanstalk"; - version = "1.3.6"; - sha256 = "d67282b599affed8f46c1960a1e70319f99404742e46d445d95d68c6e507ef11"; + version = "1.3.7"; + sha256 = "c4e6bfa1d599602c9f25a1b8a0c2a6d7518d959dde78b1fb64ad787d3e356dd4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Beanstalk SDK"; @@ -25054,16 +25219,16 @@ self: { "amazonka-elasticsearch" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-elasticsearch"; - version = "1.3.6"; - sha256 = "ed6fddddf130d039295b76e349b2c00141706c5a8fef471ce741296af9f833f8"; + version = "1.3.7"; + sha256 = "7179150c600ed9a2889700a1433f4bc12eec1406e74c25341993d3a8c27575b4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elasticsearch Service SDK"; @@ -25114,16 +25279,16 @@ self: { "amazonka-elastictranscoder" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-elastictranscoder"; - version = "1.3.6"; - sha256 = "489f2bb02483378602d7f533369019761016385aa1ec2983b4e6a427a67b5792"; + version = "1.3.7"; + sha256 = "55d813660c91eee260111a252afddc295edf7a26a7f3b5c5e9c7ab4814ce338c"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Transcoder SDK"; @@ -25174,16 +25339,16 @@ self: { "amazonka-elb" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-elb"; - version = "1.3.6"; - sha256 = "80f9df4c3345cf3913f5ee95e44547d9de0b22bc2c0d58b7c530c165b4064087"; + version = "1.3.7"; + sha256 = "5d72d70f7ffa2ea1e0a244c60e87ccb19874bff27f547bf1b1c740e75c8872ec"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Load Balancing SDK"; @@ -25234,16 +25399,16 @@ self: { "amazonka-emr" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-emr"; - version = "1.3.6"; - sha256 = "6189666eea89fb6f0ae436fdc6992c33b4bc59f21503062e1c5c7d58d02b2235"; + version = "1.3.7"; + sha256 = "cfd8c9416c1ba32001aeae5f60d5050276e9f6ac1870d13f5a995803711d35fc"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic MapReduce SDK"; @@ -25294,16 +25459,16 @@ self: { "amazonka-glacier" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-glacier"; - version = "1.3.6"; - sha256 = "940108fdb03e41afb62c517105e9e5dfaaab78a8d9a48dfb7db6ca63c94319e0"; + version = "1.3.7"; + sha256 = "18ee97fef9915b433a716e40f6a83c332080fd9fa428ce60c56444161f67db04"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Glacier SDK"; @@ -25354,16 +25519,16 @@ self: { "amazonka-iam" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-iam"; - version = "1.3.6"; - sha256 = "9d0306e25a7b7b9330f7f9d1648ca35553548180accc0f403689d1428860b8d2"; + version = "1.3.7"; + sha256 = "301463c7e704f82055307f0cbb9d092abdd3bc6672a78439ed748fbd061b3945"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Identity and Access Management SDK"; @@ -25414,16 +25579,16 @@ self: { "amazonka-importexport" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-importexport"; - version = "1.3.6"; - sha256 = "bfa120fb51bb6f784a970a1a633ecb1ec054bdf8bdb1594ca7fe160c75e6ebe0"; + version = "1.3.7"; + sha256 = "ec40b77cc0f365d01c6614cf0daa1dbbdbcf97cd4cb1ac1b258cd8382ff3ae6d"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Import/Export SDK"; @@ -25432,16 +25597,16 @@ self: { "amazonka-inspector" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-inspector"; - version = "1.3.6"; - sha256 = "895d149dd6ea1255ef34788ccf4caa2f3568541ea652717562601c4340e273a4"; + version = "1.3.7"; + sha256 = "eaf9eec94b9de0bfc2b1c204be38bbb9b808d69a0286686960ea4f551793a7d2"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Inspector SDK"; @@ -25450,16 +25615,16 @@ self: { "amazonka-iot" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-iot"; - version = "1.3.6"; - sha256 = "8a33bee0071be696eeca1614b6418677a63aa425682975d61843a3cf2a75b36e"; + version = "1.3.7"; + sha256 = "7e515bf2ec1ac7f9ef84c31fd5b436d13df2e5ab9c21cc2b5fc54d92d0b2cee3"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon IoT SDK"; @@ -25468,16 +25633,16 @@ self: { "amazonka-iot-dataplane" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-iot-dataplane"; - version = "1.3.6"; - sha256 = "53c527174618a3808d14b2a5a2c2a6603595575f2175bd053ab66bcfbd7d4f65"; + version = "1.3.7"; + sha256 = "de6f860acc5ca4d623ec66dad54cedc972516c6d04f0babfe0aa142fd86f1538"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon IoT Data Plane SDK"; @@ -25528,16 +25693,16 @@ self: { "amazonka-kinesis" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-kinesis"; - version = "1.3.6"; - sha256 = "34bbfc2d6265951f9f26c2eafad06315eb3807717c279bd43fd89a830423bda4"; + version = "1.3.7"; + sha256 = "321884fc3baa02e07f613dd23ec77ec79ce40c875a88772e9586a99745114b43"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Kinesis SDK"; @@ -25546,16 +25711,16 @@ self: { "amazonka-kinesis-firehose" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-kinesis-firehose"; - version = "1.3.6"; - sha256 = "6285473f9f328423c080575e8d5f1fd4a599562cc4a41cfb724aa02ca323c7bd"; + version = "1.3.7"; + sha256 = "6a557b9b3fb21b1035aad13a6ddcbd249ce97bc2aeb77b48eee74b6d6a634d1a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Kinesis Firehose SDK"; @@ -25606,16 +25771,16 @@ self: { "amazonka-kms" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-kms"; - version = "1.3.6"; - sha256 = "0a1ed2b7839b17187dbcdbb0ed91b71d8d4090a7296f89592997ba9fd28ed931"; + version = "1.3.7"; + sha256 = "2daffffd16da332b52523802ee35173aaafed8d24a4e860045bc9933725c9de4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Key Management Service SDK"; @@ -25666,16 +25831,16 @@ self: { "amazonka-lambda" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-lambda"; - version = "1.3.6"; - sha256 = "71a9e80add261bc519330ac1127ea47e1b2298472a76cdbe899858ef8e1413d0"; + version = "1.3.7"; + sha256 = "cba44973510233399b0d5fa4c9d291691e30caef63035158f40b5b10e2dd5f90"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Lambda SDK"; @@ -25684,16 +25849,16 @@ self: { "amazonka-marketplace-analytics" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-marketplace-analytics"; - version = "1.3.6"; - sha256 = "9ff0d3b4409c870d1eb44c2e4e88cc01e22cfe47dd52cd9373dffc6dea0e03bc"; + version = "1.3.7"; + sha256 = "eaf080d9f19638c4d7d98fb19e4f0ce752622c04db675e91c9bcc23476ca4d8e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Marketplace Commerce Analytics SDK"; @@ -25716,16 +25881,16 @@ self: { "amazonka-ml" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ml"; - version = "1.3.6"; - sha256 = "8edcd8ede34b7459c17999d6ba5b8925026806f0cd0c0d74438047b93346f5a2"; + version = "1.3.7"; + sha256 = "05ced76e5eaad97bd2b5ead71df84f3f304d0c6fa16fb5af6a3df8e24e9af31e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Machine Learning SDK"; @@ -25776,16 +25941,16 @@ self: { "amazonka-opsworks" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-opsworks"; - version = "1.3.6"; - sha256 = "1f3bef78afcaad9c301be45902eca6b44d31adb840be7f7364e0e81a4bb8a108"; + version = "1.3.7"; + sha256 = "d0367cedd608068cf27e84b1690086c7915639578181a2790f584b787dcadbb9"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon OpsWorks SDK"; @@ -25836,16 +26001,16 @@ self: { "amazonka-rds" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-rds"; - version = "1.3.6"; - sha256 = "7a70db7b6482b4836a7606c7026e9cb93c55763f414330ebfaf20967665f1a97"; + version = "1.3.7"; + sha256 = "a874b42d38fd50279d7dfbb4a08b3633dc35a8e2f140598c0aabbec3bf152a75"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Relational Database Service SDK"; @@ -25897,16 +26062,16 @@ self: { "amazonka-redshift" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-redshift"; - version = "1.3.6"; - sha256 = "d057787a826e2cc91af5cb223d82421e17f9e5f698f8da85650a51106da272f9"; + version = "1.3.7"; + sha256 = "cd6797859fd724b5d470b3bcf01c1bec167ad1c247de115a767c6ba5ed268d01"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Redshift SDK"; @@ -25971,16 +26136,16 @@ self: { "amazonka-route53" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-route53"; - version = "1.3.6"; - sha256 = "5f5c22d49a4b43a63dc21e1d83c9e571cd4028a509540fea45559ea78afdc4df"; + version = "1.3.7"; + sha256 = "cc6811f83c7282d1cd20d145fe317d6116a9731bd4ee58923d84924634fbc208"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 SDK"; @@ -26031,16 +26196,16 @@ self: { "amazonka-route53-domains" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-route53-domains"; - version = "1.3.6"; - sha256 = "3360e343280cb0681e9c6702c668ccb4c3f9f67d2c5f8da98860e56dc2a59b09"; + version = "1.3.7"; + sha256 = "b2a5143e58f517ef9d3b5768acd220b3404cbc13b20248a983a977e73f3920dc"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 Domains SDK"; @@ -26095,12 +26260,12 @@ self: { }: mkDerivation { pname = "amazonka-s3"; - version = "1.3.6"; - sha256 = "4867f20e331f1c5197b212d1ba6051887631419bc92cbc74dd26f0eed1987087"; + version = "1.3.7"; + sha256 = "da865c6a32f1d07c8ff28bcb1f2905b2e0cedf19e0f5c00ca975ac84ff9b1620"; libraryHaskellDepends = [ amazonka-core base lens text ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; @@ -26153,16 +26318,16 @@ self: { "amazonka-sdb" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-sdb"; - version = "1.3.6"; - sha256 = "1d55cadafd4d4e5797fa87bd6ef089bf61dad6386ed943adb923055a36d2f32c"; + version = "1.3.7"; + sha256 = "6cf65455e4b56ef50f6ebed0b93463439c8ab51c3e33c74634b7046a6b341d71"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon SimpleDB SDK"; @@ -26213,16 +26378,16 @@ self: { "amazonka-ses" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ses"; - version = "1.3.6"; - sha256 = "d8694bbfd28c6fbaa9a0e581debbdcb886010cd79e2830402ff54037d83e9b6d"; + version = "1.3.7"; + sha256 = "42d593776aea6d9bc5a9a8ec8ef9eefea413d413d3586fb0231733aceb4a29b3"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Email Service SDK"; @@ -26273,16 +26438,16 @@ self: { "amazonka-sns" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-sns"; - version = "1.3.6"; - sha256 = "718d2f468302bf95ea7c8f51a340514e1756e84bedda2d0ae0d1ebae6b783094"; + version = "1.3.7"; + sha256 = "ea691aec73e2859e074bb86c7bdf3f04e8eb58b512686e887fc714403c612ee4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Notification Service SDK"; @@ -26333,16 +26498,16 @@ self: { "amazonka-sqs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-sqs"; - version = "1.3.6"; - sha256 = "5cfa83a58c52d1272c09c08743bf68c6c5d1789573c4ac50f8fa871361224c3a"; + version = "1.3.7"; + sha256 = "c18e3c60413c9a949b885622a10e7ea221ebb0b9f65c4d1c57c07941de969172"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Queue Service SDK"; @@ -26394,16 +26559,16 @@ self: { "amazonka-ssm" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ssm"; - version = "1.3.6"; - sha256 = "936981dcc9ad3aab9eaca5b72337eb340e4101c98217c025570dab12b063942c"; + version = "1.3.7"; + sha256 = "5b990dafc0066327e197c5838a3ec562471933f7e0eed2bd15f94249859f20da"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Systems Management Service SDK"; @@ -26454,16 +26619,16 @@ self: { "amazonka-storagegateway" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-storagegateway"; - version = "1.3.6"; - sha256 = "af0784739819a62926d1282dfa7b05b3aaa90f8c4063dfa5877097ee17d2c29f"; + version = "1.3.7"; + sha256 = "d43de277a9262445fcbce966863622132c4a0d72273fa7bfd9efb32bdbc20348"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Storage Gateway SDK"; @@ -26514,16 +26679,16 @@ self: { "amazonka-sts" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-sts"; - version = "1.3.6"; - sha256 = "65fe8fc6f3cb8512dff76f0897b6f50bd97e13d799e6ea631c558f8df152246f"; + version = "1.3.7"; + sha256 = "cb113a4d42ec49d05b3199802d3233ac8bdf3e85115bfcdd155a98c1a9003486"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Security Token Service SDK"; @@ -26574,16 +26739,16 @@ self: { "amazonka-support" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-support"; - version = "1.3.6"; - sha256 = "14777c5a77eecc699832c71660032ae4cc871efe69d03aa4becde40c63d3c39d"; + version = "1.3.7"; + sha256 = "6c8b40c5dd291a5b53ce16348b219c40b33e2c94e65b8478f242ff93c0d6c0d2"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Support SDK"; @@ -26634,16 +26799,16 @@ self: { "amazonka-swf" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-swf"; - version = "1.3.6"; - sha256 = "0dfda94067f7d2c17a6ffac0252a9340b7b95138721ac40198d03c896329fd16"; + version = "1.3.7"; + sha256 = "b95a998ca50d79913d8deb8c7572554726e4a3778c891301659ef8829d7119b0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; @@ -26655,17 +26820,17 @@ self: { "amazonka-test" = callPackage ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring , case-insensitive, conduit, conduit-extra, groom, http-client - , http-types, lens, process, resourcet, tasty, tasty-hunit + , http-types, process, resourcet, tasty, tasty-hunit , template-haskell, temporary, text, time, unordered-containers , yaml }: mkDerivation { pname = "amazonka-test"; - version = "1.3.6"; - sha256 = "f7f1467d724cdbbb85812c30cee27ad86bfa18a000c28cf4c9dda433d4317eda"; + version = "1.3.7"; + sha256 = "0d7410f8b76d9e1b8be76529868cf2267445219b3ca21499ae231d736a42f8d9"; libraryHaskellDepends = [ aeson amazonka-core base bifunctors bytestring case-insensitive - conduit conduit-extra groom http-client http-types lens process + conduit conduit-extra groom http-client http-types process resourcet tasty tasty-hunit template-haskell temporary text time unordered-containers yaml ]; @@ -26676,16 +26841,16 @@ self: { "amazonka-waf" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-waf"; - version = "1.3.6"; - sha256 = "4f85cd6ee461dc45353e8525197f94c4d08ce0db3e0d1760a2a90bceb29f3725"; + version = "1.3.7"; + sha256 = "431d34671308da866b8f2738a88d84cf81c73fd5731decc5d94cd87159b012cb"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon WAF SDK"; @@ -26708,16 +26873,16 @@ self: { "amazonka-workspaces" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-workspaces"; - version = "1.3.6"; - sha256 = "108f85466e085f1b1576111f66a881967918f7f431710f819e20124216b78ff5"; + version = "1.3.7"; + sha256 = "52a3bc3c4a2f0f461042dfc54f8fc5f51e51ac62c8477acf4aa1e4ecc368b9c9"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring lens tasty tasty-hunit - text time unordered-containers + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon WorkSpaces SDK"; @@ -27671,8 +27836,8 @@ self: { pname = "apiary-authenticate"; version = "1.4.0"; sha256 = "40dbdb0d6799ba7091ae9b72929c7d62a74dd251b5a6e01f8979314d75dbd107"; - revision = "2"; - editedCabalFile = "bc95b4d109ba8dabede930aadcce9540b3376f4679ac96a91b6af0cd0c5ced9e"; + revision = "3"; + editedCabalFile = "923708ce64b096b916e3e1e830c6ffc13dcdd289524d1580f2206f0e4ce4554b"; libraryHaskellDepends = [ apiary apiary-session authenticate base blaze-builder bytestring cereal data-default-class http-client http-client-tls http-types @@ -27692,8 +27857,8 @@ self: { pname = "apiary-clientsession"; version = "1.4.0"; sha256 = "a6bba1337d2ee7ded7303f2801b09b9d93cdafb93f5115328c797bef3e6126fd"; - revision = "1"; - editedCabalFile = "ac724d51a8bd867838bccb788a0db76f97cfe19b052d1247e38ba001561e4bfd"; + revision = "2"; + editedCabalFile = "b3780175a0912ef55de02d916822dbe38b98acec5705a63f808517cda16ab90c"; libraryHaskellDepends = [ apiary apiary-cookie apiary-session base bytestring cereal clientsession data-default-class time unix-compat vault @@ -28508,6 +28673,7 @@ self: { pcre-light process-extras tasty tasty-golden tasty-hunit time transformers unix utf8-string ]; + jailbreak = true; homepage = "http://arbtt.nomeata.de/"; description = "Automatic Rule-Based Time Tracker"; license = "GPL"; @@ -29446,7 +29612,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "asn1-types" = callPackage + "asn1-types_0_3_1" = callPackage ({ mkDerivation, base, bytestring, hourglass, memory }: mkDerivation { pname = "asn1-types"; @@ -29456,6 +29622,19 @@ self: { homepage = "http://github.com/vincenthz/hs-asn1-types"; description = "ASN.1 types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "asn1-types" = callPackage + ({ mkDerivation, base, bytestring, hourglass, memory }: + mkDerivation { + pname = "asn1-types"; + version = "0.3.2"; + sha256 = "0c571fff4a10559c6a630d4851ba3cdf1d558185ce3dcfca1136f9883d647217"; + libraryHaskellDepends = [ base bytestring hourglass memory ]; + homepage = "http://github.com/vincenthz/hs-asn1-types"; + description = "ASN.1 types"; + license = stdenv.lib.licenses.bsd3; }) {}; "asn1dump" = callPackage @@ -30086,8 +30265,8 @@ self: { }: mkDerivation { pname = "atto-lisp"; - version = "0.2.2.1"; - sha256 = "d7027a3dc085155a52bd215ed1dc00b36218f8439f9ebd2caf5eca77aa3c0189"; + version = "0.2.2.2"; + sha256 = "24bacde886e3ee8adf50cb33f34b935a254cdd415bebd7c81ac75b8dfb0a0066"; libraryHaskellDepends = [ attoparsec base blaze-builder blaze-textual bytestring containers deepseq text @@ -30096,7 +30275,6 @@ self: { attoparsec base bytestring HUnit test-framework test-framework-hunit text ]; - jailbreak = true; homepage = "http://github.com/nominolo/atto-lisp"; description = "Efficient parsing and serialisation of S-Expressions"; license = stdenv.lib.licenses.bsd3; @@ -32611,7 +32789,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base-prelude" = callPackage + "base-prelude_0_1_19" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "base-prelude"; @@ -32622,19 +32800,20 @@ self: { homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base-prelude_0_1_20" = callPackage + "base-prelude" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "base-prelude"; version = "0.1.20"; sha256 = "0adb753a2f638b432c79bb02e39ce417adff6d4e9f51046b423ac2931074b0c8"; libraryHaskellDepends = [ base ]; + doCheck = false; homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "base-unicode-symbols" = callPackage @@ -33843,15 +34022,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "binary_0_7_6_1" = callPackage + "binary_0_8_0_0" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, filepath, HUnit, QuickCheck, random, test-framework , test-framework-quickcheck2 }: mkDerivation { pname = "binary"; - version = "0.7.6.1"; - sha256 = "8f85cafc15be660757878a665d024ce595d4422fead174e20a501c9ec8f81067"; + version = "0.8.0.0"; + sha256 = "a446ed06e0b3011716b09d129f25c8bab9bda60a5783bab1e778e7ffa30c7d8f"; libraryHaskellDepends = [ array base bytestring containers ]; testHaskellDepends = [ array base bytestring Cabal containers directory filepath HUnit @@ -33944,8 +34123,8 @@ self: { }: mkDerivation { pname = "binary-file"; - version = "0.15.24"; - sha256 = "f1dc3f43c41fe4f16e032b49130a4db93ba3a2a1bda4db6e4172522ef18b918c"; + version = "0.15.25"; + sha256 = "3f22fd8d60909e1f3f26e741ca5fa6126fa4de6427f5d3f7ce4c6fe3437ef6d0"; libraryHaskellDepends = [ base bytestring monads-tf peggy template-haskell ]; @@ -34319,8 +34498,8 @@ self: { }: mkDerivation { pname = "binary-typed"; - version = "0.3"; - sha256 = "fe9be6ab6e6c01434eb71233d5c0a958ec9f59eda39c2989d6178922337bdf8b"; + version = "1.0"; + sha256 = "85f3708802c52bca66bc5fdc560704cedd1cc63e313fcaab7638196ff7d05609"; libraryHaskellDepends = [ base binary bytestring murmur-hash ]; testHaskellDepends = [ base binary bytestring tasty tasty-hunit tasty-quickcheck @@ -34488,6 +34667,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; description = "Low-level bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; @@ -35488,16 +35668,13 @@ self: { }) {}; "bit-array" = callPackage - ({ mkDerivation, base, directory, doctest, filepath, loch-th - , numeric-qq, placeholders - }: + ({ mkDerivation, base, directory, doctest, filepath, numeric-qq }: mkDerivation { pname = "bit-array"; - version = "0.1.0.1"; - sha256 = "b5a9b1bbc449b4b189e8485a1220364e7f7ff113d9c265ca4b5a7c287f1a25e3"; - libraryHaskellDepends = [ base loch-th numeric-qq placeholders ]; + version = "0.1.1"; + sha256 = "0c3ce1c19f6830a083b39590a8e9015b1fb430f4fb97dc5349c21c03eec72c14"; + libraryHaskellDepends = [ base numeric-qq ]; testHaskellDepends = [ base directory doctest filepath ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/bit-array"; description = "A bit array (aka bitset, bitmap, bit vector) API for numeric types"; license = stdenv.lib.licenses.mit; @@ -36396,6 +36573,7 @@ self: { QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; homepage = "http://jaspervdj.be/blaze"; description = "A blazingly fast HTML combinator library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -36419,6 +36597,7 @@ self: { QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; homepage = "http://jaspervdj.be/blaze"; description = "A blazingly fast HTML combinator library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -36596,6 +36775,7 @@ self: { base blaze-builder bytestring containers HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; homepage = "http://jaspervdj.be/blaze"; description = "A blazingly fast markup combinator library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -36906,35 +37086,6 @@ self: { }) {}; "bloodhound" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers - , data-default-class, directory, doctest, doctest-prop, exceptions - , filepath, hspec, http-client, http-types, mtl, mtl-compat - , QuickCheck, quickcheck-properties, semigroups, text, time - , transformers, unordered-containers, uri-bytestring, vector - }: - mkDerivation { - pname = "bloodhound"; - version = "0.8.0.0"; - sha256 = "19d47c1699fe0ad2ebe9a5b70ea3460c00209162d9650fe0056623c71c1c9436"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring containers data-default-class - exceptions http-client http-types mtl mtl-compat semigroups text - time transformers unordered-containers uri-bytestring vector - ]; - testHaskellDepends = [ - aeson base bytestring containers directory doctest doctest-prop - filepath hspec http-client http-types mtl QuickCheck - quickcheck-properties semigroups text time unordered-containers - vector - ]; - jailbreak = true; - doCheck = false; - homepage = "https://github.com/bitemyapp/bloodhound"; - description = "ElasticSearch client library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "bloodhound_0_10_0_0" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers , data-default-class, derive, directory, doctest, doctest-prop , errors, exceptions, filepath, hashable, hspec, http-client @@ -36959,10 +37110,10 @@ self: { unordered-containers vector ]; jailbreak = true; + doCheck = false; homepage = "https://github.com/bitemyapp/bloodhound"; description = "ElasticSearch client library for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloomfilter" = callPackage @@ -37181,6 +37332,7 @@ self: { monad-loops pretty QuickCheck tasty tasty-golden tasty-hunit tasty-quickcheck text ]; + jailbreak = true; homepage = "https://github.com/Microsoft/bond"; description = "Bond schema compiler and code generator"; license = stdenv.lib.licenses.mit; @@ -37205,6 +37357,7 @@ self: { version = "0.1.0.0"; sha256 = "774f3f3313a8909505834e647b744fa53178b6a4eee5cf55b5207da5e6d7217b"; libraryHaskellDepends = [ base bytestring HUnit ]; + jailbreak = true; homepage = "http://xy30.com"; description = "convert numbers to binary coded lists"; license = stdenv.lib.licenses.gpl3; @@ -37283,8 +37436,8 @@ self: { ({ mkDerivation, base, mtl, template-haskell, text }: mkDerivation { pname = "boomerang"; - version = "1.4.5"; - sha256 = "d8cc905e2bba12cf82677ebafad83a147b9ab21753fecf8bc0bb45f1bc562a0e"; + version = "1.4.5.1"; + sha256 = "24381764277d0454185ea4f6862d3a7d84efd7a46f9f524f821b4052b08a46bc"; libraryHaskellDepends = [ base mtl template-haskell text ]; description = "Library for invertible parsing and printing"; license = stdenv.lib.licenses.bsd3; @@ -37430,7 +37583,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bound" = callPackage + "bound_1_0_6" = callPackage ({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad , directory, doctest, filepath, hashable, hashable-extras , prelude-extras, profunctors, transformers, vector @@ -37451,6 +37604,32 @@ self: { homepage = "http://github.com/ekmett/bound/"; description = "Making de Bruijn Succ Less"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bound" = callPackage + ({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad + , directory, doctest, filepath, hashable, hashable-extras + , prelude-extras, profunctors, template-haskell, transformers + , vector + }: + mkDerivation { + pname = "bound"; + version = "1.0.7"; + sha256 = "ad0388ade83ca0b3cf02b182e663f553a83b3a8116ada8f39543318bf516340e"; + libraryHaskellDepends = [ + base bifunctors binary bytes cereal comonad hashable + hashable-extras prelude-extras profunctors template-haskell + transformers + ]; + testHaskellDepends = [ + base directory doctest filepath prelude-extras transformers vector + ]; + jailbreak = true; + doCheck = false; + homepage = "http://github.com/ekmett/bound/"; + description = "Making de Bruijn Succ Less"; + license = stdenv.lib.licenses.bsd3; }) {}; "bound-gen" = callPackage @@ -37643,8 +37822,8 @@ self: { }: mkDerivation { pname = "brick"; - version = "0.3"; - sha256 = "86d37000d642b0a7bca0c820f7860fefc6a9383044149253e17a88ee4c69d491"; + version = "0.3.1"; + sha256 = "0e97e82a8dc3b9eba8f11cdf69818b6a919dbe6e8c7710b55483c3908ecfc7a9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -37929,7 +38108,7 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; - "buffer-builder" = callPackage + "buffer-builder_0_2_4_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion , deepseq, HUnit, mtl, quickcheck-instances, tasty, tasty-hunit , tasty-quickcheck, tasty-th, text, unordered-containers, vector @@ -37949,10 +38128,10 @@ self: { homepage = "https://github.com/chadaustin/buffer-builder"; description = "Library for efficiently building up buffers, one piece at a time"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "buffer-builder_0_2_4_1" = callPackage + "buffer-builder" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion , deepseq, HTF, mtl, quickcheck-instances, text , unordered-containers, vector @@ -37971,7 +38150,7 @@ self: { homepage = "https://github.com/chadaustin/buffer-builder"; description = "Library for efficiently building up buffers, one piece at a time"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "buffer-builder-aeson" = callPackage @@ -38523,8 +38702,8 @@ self: { ({ mkDerivation, base, bytestring, cryptohash, QuickCheck }: mkDerivation { pname = "bytestring-arbitrary"; - version = "0.0.4"; - sha256 = "005fca02b5917a5f844db8cc5fdd603073e5e6c1fefaad5568a87df414e15abb"; + version = "0.1.0"; + sha256 = "248378d6a7b75e8b9cbadcb3793ddcb17bd1ef7b36ffce02dc99ff11ef49c92b"; libraryHaskellDepends = [ base bytestring cryptohash QuickCheck ]; testHaskellDepends = [ base bytestring cryptohash QuickCheck ]; homepage = "https://github.com/tsuraan/bytestring-arbitrary"; @@ -38713,6 +38892,7 @@ self: { base bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://hub.darcs.net/ganesh/bytestring-handle"; description = "ByteString-backed Handles"; license = stdenv.lib.licenses.bsd3; @@ -39360,6 +39540,7 @@ self: { base Cabal containers debian Diff filepath hsemail HUnit lens pretty process text ]; + jailbreak = true; homepage = "https://github.com/ddssff/cabal-debian"; description = "Create a Debianization for a Cabal package"; license = stdenv.lib.licenses.bsd3; @@ -39367,34 +39548,32 @@ self: { }) {}; "cabal-debian" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bifunctors, bytestring - , bzlib, Cabal, containers, data-default, deepseq, Diff, directory - , exceptions, filepath, HaXml, hsemail, HUnit, lens, ListLike - , memoize, mtl, network, network-uri, newtype-generics, old-locale - , optparse-applicative, parsec, pretty, process, process-extras - , pureMD5, regex-compat, regex-tdfa, set-extra, syb - , template-haskell, text, time, unix, Unixutils, utf8-string, zlib + ({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal + , containers, data-default, debian, deepseq, Diff, directory + , exceptions, filepath, hsemail, HUnit, lens, memoize, mtl + , network-uri, newtype-generics, optparse-applicative, parsec + , pretty, process, pureMD5, regex-tdfa, set-extra, syb, text, unix + , Unixutils, utf8-string }: mkDerivation { pname = "cabal-debian"; - version = "4.31.7"; - sha256 = "5e8aceb412a84b874af9c525bc328f33c08309930ac65cdbb143b5c15ad4f673"; + version = "4.31.9"; + sha256 = "e046eb64364023dc0e8c786c06b76e47f845c7be212403937d790ab1716f88e9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - ansi-wl-pprint base bifunctors bytestring bzlib Cabal containers - data-default deepseq Diff directory exceptions filepath HaXml - hsemail HUnit lens ListLike memoize mtl network network-uri - newtype-generics old-locale optparse-applicative parsec pretty - process process-extras pureMD5 regex-compat regex-tdfa set-extra - syb template-haskell text time unix Unixutils utf8-string zlib + ansi-wl-pprint base bifunctors Cabal containers data-default debian + deepseq Diff directory exceptions filepath hsemail HUnit lens + memoize mtl network-uri newtype-generics optparse-applicative + parsec pretty process pureMD5 regex-tdfa set-extra syb text unix + Unixutils utf8-string ]; executableHaskellDepends = [ - base Cabal lens mtl pretty Unixutils + base Cabal debian lens mtl pretty Unixutils ]; testHaskellDepends = [ - base Cabal containers Diff directory filepath hsemail HUnit lens - pretty process text + base Cabal containers debian Diff directory filepath hsemail HUnit + lens pretty process text ]; doCheck = false; homepage = "https://github.com/ddssff/cabal-debian"; @@ -41509,6 +41688,7 @@ self: { testHaskellDepends = [ base bytestring HUnit test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "https://github.com/basvandijk/case-insensitive"; description = "Case insensitive string comparison"; license = stdenv.lib.licenses.bsd3; @@ -41527,6 +41707,7 @@ self: { testHaskellDepends = [ base bytestring HUnit test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "https://github.com/basvandijk/case-insensitive"; description = "Case insensitive string comparison"; license = stdenv.lib.licenses.bsd3; @@ -41969,6 +42150,7 @@ self: { base containers optparse-applicative shelly system-fileio system-filepath text ]; + jailbreak = true; homepage = "https://github.com/erochest/castle"; description = "A tool to manage shared cabal-install sandboxes"; license = stdenv.lib.licenses.asl20; @@ -42307,7 +42489,6 @@ self: { base cmdargs ekg ekg-core hslogger pretty-show ]; testHaskellDepends = [ base ]; - jailbreak = true; homepage = "http://github.com/yogsototh/cerberus#readme"; description = "Protect and control API access with cerberus"; license = stdenv.lib.licenses.bsd3; @@ -43157,6 +43338,7 @@ self: { version = "0.2.1"; sha256 = "00f423ea3ef78f24ba2d9077db267fa9d30e47fa1b80ebafcaf2d5879214d400"; libraryHaskellDepends = [ base chell HUnit ]; + jailbreak = true; homepage = "https://john-millikin.com/software/chell/"; description = "HUnit support for the Chell testing library"; license = stdenv.lib.licenses.mit; @@ -43883,6 +44065,7 @@ self: { lens lens-aeson mtl mtl-compat QuickCheck tasty tasty-hunit tasty-th transformers-compat ]; + jailbreak = true; homepage = "http://clafer.org"; description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot"; license = stdenv.lib.licenses.mit; @@ -44122,8 +44305,8 @@ self: { }: mkDerivation { pname = "clash-ghc"; - version = "0.6.6"; - sha256 = "a01193e7552866b839ddc6d368f4cb0b04c2ba5eed2a92217cad23024bdf5718"; + version = "0.6.7"; + sha256 = "08eb23a3986af41ede3dca432e3f4ac0d80d0ae5cfc6af6115e8943447264a52"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -44239,8 +44422,8 @@ self: { }: mkDerivation { pname = "clash-lib"; - version = "0.6.6"; - sha256 = "a40e5cc300a84e61b7ed47a104914715e77795b18bd97f9489ddbca8efc92cd5"; + version = "0.6.7"; + sha256 = "26dd3e636ac6ea644d30d7bd583c57e80ed5c99f2a7d145852b3234df25a2ccf"; libraryHaskellDepends = [ aeson attoparsec base bytestring clash-prelude concurrent-supply containers deepseq directory errors fgl filepath hashable lens mtl @@ -45324,6 +45507,8 @@ self: { testHaskellDepends = [ base HUnit mtl test-framework test-framework-hunit text ]; + jailbreak = true; + doCheck = false; homepage = "http://fvisser.nl/clay"; description = "CSS preprocessor as embedded Haskell"; license = stdenv.lib.licenses.bsd3; @@ -45343,8 +45528,8 @@ self: { }: mkDerivation { pname = "clckwrks"; - version = "0.23.12"; - sha256 = "89515b6706f548b4af30b07111864e0e917de86d39e6d53ceb2ff1c431d8341d"; + version = "0.23.13"; + sha256 = "b663a9495d434e62b02965009fefdd8cef6ec64fbccb3894efb662a58779e3a2"; libraryHaskellDepends = [ acid-state aeson aeson-qq attoparsec base blaze-html bytestring cereal containers directory filepath happstack-authenticate @@ -45487,8 +45672,8 @@ self: { }: mkDerivation { pname = "clckwrks-plugin-page"; - version = "0.4.2"; - sha256 = "b082b6bb6ae8ca730a5f72d246c1af7ac3c3fcf3b51787731c3519854d1d49a0"; + version = "0.4.3"; + sha256 = "6c3ccbdbcdd5034223577e29a8e0791d8e3c262ed1a117f8f865ca2cbdbf9fea"; libraryHaskellDepends = [ acid-state aeson attoparsec base clckwrks containers directory filepath happstack-hsp happstack-server hsp hsx2hs ixset mtl @@ -45843,8 +46028,8 @@ self: { ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; - version = "0.5.2"; - sha256 = "6c9a2276b5e76f2ea4c0bc2410d68549782dcc38f56964a49245c1070896d0d7"; + version = "0.6.0.1"; + sha256 = "88a2c7cfe3edacb8775fa8e8e6fa6ff8ceceb45554c5d2d7fabefc8df52b5f74"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-quickcheck ]; doCheck = false; @@ -45853,20 +46038,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "clock_0_6_0_1" = callPackage - ({ mkDerivation, base, tasty, tasty-quickcheck }: - mkDerivation { - pname = "clock"; - version = "0.6.0.1"; - sha256 = "88a2c7cfe3edacb8775fa8e8e6fa6ff8ceceb45554c5d2d7fabefc8df52b5f74"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base tasty tasty-quickcheck ]; - homepage = "https://github.com/corsis/clock"; - description = "High-resolution clock functions: monotonic, realtime, cputime"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "clocked" = callPackage ({ mkDerivation, base, clock, containers, MonadCatchIO-transformers , QtCore, transformers @@ -46130,6 +46301,7 @@ self: { sha256 = "638328b59c2bb8bdcd0f3042c4554f2b2b7c6deac7770dbc8bc2813c865a35ce"; libraryHaskellDepends = [ base bytestring text ]; testHaskellDepends = [ base HUnit text ]; + jailbreak = true; homepage = "https://github.com/jgm/commonmark-hs"; description = "Fast, accurate CommonMark (Markdown) parser and renderer"; license = stdenv.lib.licenses.bsd3; @@ -46669,7 +46841,6 @@ self: { random scientific tasty tasty-hunit tasty-quickcheck tasty-th time transformers unordered-containers uuid websockets ]; - jailbreak = true; description = "Connector library for the coinbase exchange"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -48050,6 +48221,7 @@ self: { unbounded-delays ]; doHaddock = false; + jailbreak = true; doCheck = false; homepage = "https://github.com/basvandijk/concurrent-extra"; description = "Extra concurrency primitives"; @@ -48092,6 +48264,7 @@ self: { testHaskellDepends = [ base machines tasty tasty-hunit time transformers ]; + jailbreak = true; description = "Concurrent networked stream transducers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -48102,8 +48275,8 @@ self: { }: mkDerivation { pname = "concurrent-output"; - version = "1.7.1"; - sha256 = "3aead087a1db0b762b13bf62e11f01673d0a8b4f9d3e489fa18dd7fb5fa2098d"; + version = "1.7.2"; + sha256 = "a69a41502e640eb6afc87e8420001dadbbe22cd18580792995f73d2029c30169"; libraryHaskellDepends = [ ansi-terminal async base directory exceptions process stm terminal-size text transformers unix @@ -49152,20 +49325,20 @@ self: { "configifier" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring , case-insensitive, containers, directory, either, functor-infix - , hspec, hspec-discover, mtl, pretty-show, QuickCheck, regex-easy - , safe, scientific, string-conversions, template-haskell, text + , hspec, hspec-discover, mtl, pretty-show, QuickCheck, safe + , scientific, string-conversions, template-haskell, text , unordered-containers, vector, yaml }: mkDerivation { pname = "configifier"; - version = "0.0.7"; - sha256 = "207b6a5c670b44c0a7814ff7ab2054507df84d8b8ad8418c3fe312d7d1db1e30"; + version = "0.0.8"; + sha256 = "7f56ae97d2d614c26b634ccbd1951b0c958eca20b20401d210027e2f1627cd9b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring case-insensitive containers directory either - functor-infix mtl regex-easy safe string-conversions - template-haskell unordered-containers vector yaml + functor-infix mtl safe string-conversions template-haskell + unordered-containers vector yaml ]; executableHaskellDepends = [ base bytestring mtl pretty-show string-conversions text yaml @@ -49718,15 +49891,15 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "containers_0_5_7_0" = callPackage + "containers_0_5_7_1" = callPackage ({ mkDerivation, array, base, ChasingBottoms, deepseq, ghc-prim , HUnit, QuickCheck, test-framework, test-framework-hunit , test-framework-quickcheck2 }: mkDerivation { pname = "containers"; - version = "0.5.7.0"; - sha256 = "f293f840d99c285630d7524d5c92da58f59921c26e1592a7f0600cda062a30f9"; + version = "0.5.7.1"; + sha256 = "73856c3307e2ea26c33474309af4dcdfb80e7644e9a82ef4146c742a6e400f79"; libraryHaskellDepends = [ array base deepseq ghc-prim ]; testHaskellDepends = [ array base ChasingBottoms deepseq ghc-prim HUnit QuickCheck @@ -50228,8 +50401,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "control-monad-queue"; - version = "0.2"; - sha256 = "7a237615aa78cbe050803e53983027e8d60b688aadc948641150a8b089f05e97"; + version = "0.2.0.1"; + sha256 = "d428f7e761024716118605107b8f2f4b9d721f1163bd36865b969f3892f6d1b5"; libraryHaskellDepends = [ base ]; description = "Reusable corecursive queues, via continuations"; license = stdenv.lib.licenses.bsd3; @@ -50970,6 +51143,7 @@ self: { libraryHaskellDepends = [ aeson base shakespeare text ]; executableHaskellDepends = [ base tagsoup text ]; testHaskellDepends = [ aeson base HTF HUnit ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/country-codes"; description = "ISO 3166 country codes and i18n names"; license = stdenv.lib.licenses.bsd3; @@ -51607,7 +51781,6 @@ self: { base bytestring containers cqrs-core deepseq hspec HUnit io-streams lifted-base random transformers uuid-types ]; - jailbreak = true; description = "Command-Query Responsibility Segregation Test Support"; license = stdenv.lib.licenses.mit; }) {}; @@ -52254,7 +52427,6 @@ self: { editedCabalFile = "4cc74c0744e15e1149d7419e47232db6f0bf53a56360f35d71665b180c2f2a53"; libraryHaskellDepends = [ base containers MissingH mtl split ]; testHaskellDepends = [ base HUnit QuickCheck ]; - jailbreak = true; homepage = "https://github.com/orome/crypto-enigma-hs"; description = "An Enigma machine simulator with display"; license = stdenv.lib.licenses.bsd3; @@ -54536,9 +54708,11 @@ self: { pname = "data-extend-generic"; version = "0.1.0.0"; sha256 = "b5cf36c5ccf72a400bc8dca3a983c3a4b65a7788fbd07eca93e5b23dca27f1bd"; + revision = "2"; + editedCabalFile = "6d1bf0f2f19daf06b81fe4108a37bf889c9b96905920d3aa04846f0b5d05b6b3"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base hspec ]; - homepage = "http://github.com/githubuser/data-extend-generic#readme"; + homepage = "http://github.com/ylilarry/data-extend-generic"; description = "Extend Haskell data or newtype like in OOP languages"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -55371,6 +55545,7 @@ self: { aeson auto-update base buffer-builder bytestring lens lifted-base monad-control network old-locale text time transformers-base ]; + jailbreak = true; homepage = "https://github.com/iand675/datadog"; description = "Datadog client for Haskell. Currently only StatsD supported, other support forthcoming."; license = stdenv.lib.licenses.mit; @@ -56344,15 +56519,14 @@ self: { }: mkDerivation { pname = "deepcontrol"; - version = "0.5.4.2"; - sha256 = "4855fec3f9ecd9d5ac44ad2750b502bc6fdf578ebdfc2ac526b1f87168ae5502"; + version = "0.5.4.3"; + sha256 = "2e943a13531120a5c3df908c849d0697c22ef82e6dc4bf102f6fe39e9faa0e35"; libraryHaskellDepends = [ base mmorph mtl transformers ]; testHaskellDepends = [ base containers doctest HUnit mtl QuickCheck safe transformers ]; - jailbreak = true; homepage = "https://github.com/ocean0yohsuke/deepcontrol"; - description = "A library that provides deep-level programming style or notation on Applicative and Monad"; + description = "A library that provides deep-level programming style and(or) notation on Applicative and Monad"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -56409,6 +56583,7 @@ self: { testHaskellDepends = [ array base HUnit test-framework test-framework-hunit ]; + jailbreak = true; description = "Deep evaluation of data structures"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -56686,7 +56861,6 @@ self: { atomic-primops base containers deepseq exceptions monad-loops mtl random stm transformers ]; - doHaddock = false; homepage = "https://github.com/barrucadu/dejafu"; description = "Overloadable primitives for testable, potentially non-deterministic, concurrency"; license = stdenv.lib.licenses.mit; @@ -56884,18 +57058,6 @@ self: { }) {}; "dependent-map" = callPackage - ({ mkDerivation, base, containers, dependent-sum }: - mkDerivation { - pname = "dependent-map"; - version = "0.2.0.1"; - sha256 = "645c5c519d5cb6393ee826dfca183736be84fda87e980f0daecd7be207bb8f50"; - libraryHaskellDepends = [ base containers dependent-sum ]; - homepage = "https://github.com/mokus0/dependent-map"; - description = "Dependent finite maps (partial dependent products)"; - license = "unknown"; - }) {}; - - "dependent-map_0_2_1_0" = callPackage ({ mkDerivation, base, containers, dependent-sum }: mkDerivation { pname = "dependent-map"; @@ -56905,7 +57067,6 @@ self: { homepage = "https://github.com/mokus0/dependent-map"; description = "Dependent finite maps (partial dependent products)"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dependent-sum_0_2_1_0" = callPackage @@ -57852,6 +58013,7 @@ self: { optparse-applicative pango split statestack transformers unix vector ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Cairo backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58111,6 +58273,7 @@ self: { base containers diagrams-lib HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Collection of user contributions to diagrams EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58139,6 +58302,7 @@ self: { base containers diagrams-lib HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Collection of user contributions to diagrams EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58265,6 +58429,7 @@ self: { adjunctions base containers distributive dual-tree lens linear monoid-extras mtl semigroups unordered-containers ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Core libraries for diagrams EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58547,6 +58712,7 @@ self: { diagrams-lib lens mtl NumInstances optparse-applicative split statestack static-canvas text ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58856,6 +59022,7 @@ self: { filepath hashable lens monoid-extras mtl semigroups split statestack ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Postscript backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -58979,6 +59146,7 @@ self: { diagrams-lib filepath FontyFruity hashable JuicyPixels lens mtl optparse-applicative Rasterific split unix ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Rasterific backend for diagrams"; license = stdenv.lib.licenses.bsd3; @@ -59143,6 +59311,7 @@ self: { monoid-extras mtl old-time optparse-applicative process semigroups split text time ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -59166,13 +59335,14 @@ self: { monoid-extras mtl old-time optparse-applicative process semigroups split text time ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-svg" = callPackage + "diagrams-svg_1_3_1_7" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, colour , containers, diagrams-core, diagrams-lib, directory, filepath , hashable, JuicyPixels, lens, lucid-svg, monoid-extras, mtl @@ -59189,12 +59359,14 @@ self: { monoid-extras mtl old-time optparse-applicative process semigroups split text time ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-svg_1_3_1_9" = callPackage + "diagrams-svg" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, colour , containers, diagrams-core, diagrams-lib, directory, filepath , hashable, JuicyPixels, lens, lucid-svg, monoid-extras, mtl @@ -59214,7 +59386,6 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-tikz" = callPackage @@ -59233,6 +59404,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "dialog" = callPackage + ({ mkDerivation, base, bytestring, filepath, glib, gtk3 + , open-browser, text, transformers, webkitgtk3 + }: + mkDerivation { + pname = "dialog"; + version = "0.3.0.0"; + sha256 = "e47fd86b383a2a7c710219873c916a63cd873ab4b7b67fb204a099f511691ad2"; + libraryHaskellDepends = [ + base bytestring filepath glib gtk3 open-browser text transformers + webkitgtk3 + ]; + homepage = "https://gitlab.com/lamefun/dialog"; + description = "Simple dialog-based user interfaces"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "dice" = callPackage ({ mkDerivation, base, parsec, random-fu, transformers }: mkDerivation { @@ -59592,6 +59780,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time ]; + jailbreak = true; homepage = "http://github.com/jaspervdj/digestive-functors"; description = "A practical formlet library"; license = stdenv.lib.licenses.bsd3; @@ -59855,13 +60044,13 @@ self: { }: mkDerivation { pname = "dimensional"; - version = "1.0.1.0"; - sha256 = "42d32f6691c2c52a3e12ec3dbed7bd90e18137e67c46f97c2336101bd99a8a6d"; + version = "1.0.1.1"; + sha256 = "d876eea43341b597959e3244673817dcb23c350c06549158e04a6c632243692e"; libraryHaskellDepends = [ base deepseq exact-pi numtype-dk vector ]; testHaskellDepends = [ base HUnit ]; - homepage = "https://github.com/bjornbm/dimensional-dk/"; + homepage = "https://github.com/bjornbm/dimensional/"; description = "Statically checked physical dimensions, using Type Families and Data Kinds"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -60642,7 +60831,6 @@ self: { network-transport network-transport-tcp rematch stm test-framework test-framework-hunit transformers ]; - doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-client-server"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -60713,7 +60901,6 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; - doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-execution"; description = "Execution Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -60777,7 +60964,6 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; - doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-extras"; description = "Cloud Haskell Extras"; license = stdenv.lib.licenses.bsd3; @@ -61014,7 +61200,6 @@ self: { rematch stm test-framework test-framework-hunit time transformers unordered-containers ]; - doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-supervisor"; description = "Supervisors for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -61087,7 +61272,6 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; - doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-task"; description = "Task Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -61111,6 +61295,7 @@ self: { testHaskellDepends = [ base network network-transport network-transport-tcp test-framework ]; + jailbreak = true; homepage = "http://github.com/haskell-distributed/distributed-process-tests"; description = "Tests and test support tools for distributed-process"; license = stdenv.lib.licenses.bsd3; @@ -61988,6 +62173,7 @@ self: { testHaskellDepends = [ base base-compat hspec parsec parseerror-eq ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/dotenv-hs"; description = "Loads environment variables from dotenv files"; license = stdenv.lib.licenses.mit; @@ -62402,14 +62588,15 @@ self: { }) {}; "drawille" = callPackage - ({ mkDerivation, base, containers }: + ({ mkDerivation, base, containers, hspec, QuickCheck }: mkDerivation { pname = "drawille"; - version = "0.1.0.5"; - sha256 = "b9b57fa2e8c526610075583215bf7a896d0ce0c9157c72356cea481c72f0f523"; + version = "0.1.0.6"; + sha256 = "3282ca7d783580f95349ffd85b6f668f57a354aad74a84c37406fc8ef2636c09"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers ]; + testHaskellDepends = [ base containers hspec QuickCheck ]; homepage = "https://github.com/yamadapc/haskell-drawille"; description = "A port of asciimoo's drawille to haskell"; license = stdenv.lib.licenses.gpl3; @@ -62768,6 +62955,7 @@ self: { version = "0.2.0.7"; sha256 = "2b7e99ead18f1b42968c29717ed83b8a342aec1ab96030909de7e2071fb8df36"; libraryHaskellDepends = [ base monoid-extras newtype semigroups ]; + jailbreak = true; description = "Rose trees with cached and accumulating monoidal annotations"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -63674,6 +63862,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "edis" = callPackage + ({ mkDerivation, base, bytestring, cereal, hedis }: + mkDerivation { + pname = "edis"; + version = "0.0.1.0"; + sha256 = "b21590a3ce7cc3314e9cf4b5bfba0f4997f050fe2087ab4b1852554914b6f6af"; + libraryHaskellDepends = [ base bytestring cereal hedis ]; + description = "Statically typechecked client for Redis"; + license = stdenv.lib.licenses.mit; + }) {}; + "edit-distance_0_2_1_2" = callPackage ({ mkDerivation, array, base, containers, random }: mkDerivation { @@ -65208,6 +65407,7 @@ self: { free monad-loops mwc-random stm stm-delay text transformers unordered-containers vector websockets ]; + jailbreak = true; homepage = "http://github.com/ocharles/engine.io"; description = "A Haskell implementation of Engine.IO"; license = stdenv.lib.licenses.bsd3; @@ -65248,6 +65448,7 @@ self: { pipes-attoparsec pipes-wai socket-io text transformers unordered-containers wai wai-websockets websockets ]; + jailbreak = true; homepage = "http://github.com/iand675/growler"; license = stdenv.lib.licenses.mit; }) {}; @@ -66698,6 +66899,7 @@ self: { libraryHaskellDepends = [ base containers semigroups transformers ]; + jailbreak = true; description = "Monoidal, monadic and first-class events"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -66817,8 +67019,8 @@ self: { }: mkDerivation { pname = "eventstore"; - version = "0.9.1.2"; - sha256 = "0104a347dde1620795c82e60b16d38bd2c1b00f7ff1fbf0c8dccf8e877d0d497"; + version = "0.9.1.3"; + sha256 = "b69dd264dfc8ed432b9ce22d99e19a99eaface579150fadc8593ffa3dc1b856c"; libraryHaskellDepends = [ aeson async attoparsec base bytestring cereal containers network protobuf random stm text time unordered-containers uuid @@ -67023,6 +67225,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit transformers ]; + jailbreak = true; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "Type classes and monads for unchecked extensible exceptions"; license = stdenv.lib.licenses.bsd3; @@ -67044,6 +67247,7 @@ self: { base HUnit test-framework test-framework-hunit transformers transformers-compat ]; + jailbreak = true; description = "Type classes and monads for unchecked extensible exceptions"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -67230,7 +67434,6 @@ self: { http-types optparse-applicative pcre-light ]; testHaskellDepends = [ base doctest ]; - jailbreak = true; description = "Exheres generator for cabal packages"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -67703,6 +67906,7 @@ self: { base HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 test-framework-th void ]; + jailbreak = true; homepage = "https://github.com/suhailshergill/extensible-effects"; description = "An Alternative to Monad Transformers"; license = stdenv.lib.licenses.mit; @@ -68005,6 +68209,19 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "fake-type" = callPackage + ({ mkDerivation, base, base-prelude, libXtst, split, X11 }: + mkDerivation { + pname = "fake-type"; + version = "0.2.0.0"; + sha256 = "3ce6a7298e92c836272d71fb9f604cb37d2c90a2394720c6b67c1b6f21063c54"; + libraryHaskellDepends = [ base base-prelude split X11 ]; + librarySystemDepends = [ libXtst ]; + homepage = "http://github.com/aelve/fake-type"; + description = "A crossplatform library to simulate keyboard input"; + license = stdenv.lib.licenses.bsd3; + }) {inherit (pkgs.xorg) libXtst;}; + "faker" = callPackage ({ mkDerivation, base, gimlh, random, split }: mkDerivation { @@ -69154,6 +69371,7 @@ self: { testHaskellDepends = [ base HUnit mtl template-haskell transformers ]; + jailbreak = true; homepage = "https://github.com/sebastiaanvisser/fclabels"; description = "First class accessor labels implemented as lenses"; license = stdenv.lib.licenses.bsd3; @@ -69285,6 +69503,7 @@ self: { base HUnit old-locale old-time test-framework test-framework-hunit time time-locale-compat utf8-string xml ]; + jailbreak = true; homepage = "https://github.com/bergmark/feed"; description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; license = stdenv.lib.licenses.bsd3; @@ -69306,6 +69525,7 @@ self: { base HUnit old-locale old-time test-framework test-framework-hunit time time-locale-compat utf8-string xml ]; + jailbreak = true; homepage = "https://github.com/bergmark/feed"; description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; license = stdenv.lib.licenses.bsd3; @@ -70331,6 +70551,7 @@ self: { testHaskellDepends = [ base Diff directory filepath HUnit mtl time ]; + jailbreak = true; description = "Interface for versioning file stores"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -71061,6 +71282,7 @@ self: { executableHaskellDepends = [ base binary deepseq HTTP optparse-applicative process ]; + jailbreak = true; homepage = "http://noaxiom.org/flAccurateRip"; description = "Verify FLAC files ripped form CD using AccurateRip™"; license = stdenv.lib.licenses.gpl3; @@ -71399,6 +71621,7 @@ self: { lens lens-action mtl network pipes pipes-aeson pipes-http pipes-parse template-haskell text unordered-containers uuid ]; + jailbreak = true; homepage = "https://github.com/brewtown/hs-flowdock"; description = "Flowdock client library for Haskell"; license = stdenv.lib.licenses.mit; @@ -71910,7 +72133,6 @@ self: { base doctest foldl free monoid-subclasses split tasty tasty-hunit tasty-quickcheck text ]; - jailbreak = true; description = "Transducers for foldl folds"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -73420,6 +73642,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "frontmatter" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, hspec, QuickCheck + , text, yaml + }: + mkDerivation { + pname = "frontmatter"; + version = "0.1.0.2"; + sha256 = "66eb97b0d5097397f0238b9af764a8c6ea2bb9a4a16cd1214051719fc313b99d"; + libraryHaskellDepends = [ attoparsec base bytestring yaml ]; + testHaskellDepends = [ + attoparsec base bytestring hspec QuickCheck text yaml + ]; + homepage = "https://github.com/yamadapc/haskell-frontmatter"; + description = "Parses frontmatter as used in Jekyll markdown files"; + license = stdenv.lib.licenses.mit; + }) {}; + "frp-arduino" = callPackage ({ mkDerivation, base, containers, mtl }: mkDerivation { @@ -73777,6 +74016,7 @@ self: { testHaskellDepends = [ base HUnit QuickCheck tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "http://hub.darcs.net/kowey/fullstop"; description = "Simple sentence segmenter"; license = stdenv.lib.licenses.bsd3; @@ -74723,8 +74963,8 @@ self: { }: mkDerivation { pname = "generic-accessors"; - version = "0.5.0.0"; - sha256 = "7a9098afd6db14a5f75ef250cac5cb770eb4b10c9ed13bbdf029892d244ddf3b"; + version = "0.5.1.0"; + sha256 = "547a5b0ba3fac1e2d5f7de7f7248aef2b128b24714f4c0908b5191ebe5d39442"; libraryHaskellDepends = [ base lens linear spatial-math ]; testHaskellDepends = [ base HUnit QuickCheck test-framework test-framework-hunit @@ -76402,13 +76642,12 @@ self: { }: mkDerivation { pname = "ghc-vis"; - version = "0.7.2.8"; - sha256 = "0aea23534eb95bc39ad2f2e017aa978df0a6aea105c314bca2030ac5daf9187d"; + version = "0.7.2.9"; + sha256 = "e0ea3da85c0e32b446f682114de92df548fc230c24a33683c339f110632043ae"; libraryHaskellDepends = [ base cairo containers deepseq fgl ghc-heap-view graphviz gtk mtl svgcairo text transformers xdot ]; - jailbreak = true; homepage = "http://felsin9.de/nnis/ghc-vis"; description = "Live visualization of data structures in GHCi"; license = stdenv.lib.licenses.bsd3; @@ -77198,6 +77437,7 @@ self: { gitlib gitlib-libgit2 scientific shake split tagged text unordered-containers vector yaml ]; + jailbreak = true; homepage = "https://github.com/nomeata/gipeda"; description = "Git Performance Dashboard"; license = stdenv.lib.licenses.mit; @@ -77355,8 +77595,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "5.20151208"; - sha256 = "1513ecf944a174c7b0e7a68ec6722544c8b85c74d8ff89fc8d9ea8c177c4fce9"; + version = "5.20151218"; + sha256 = "d8aed73cbc1d1eefcbe6de7790c83f1d6458b4ac1e910d9a34b22782d16142ca"; configureFlags = [ "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" @@ -77866,6 +78106,7 @@ self: { base bytestring directory filepath hslogger HTTP mtl network network-uri syb url utf8-string ]; + jailbreak = true; homepage = "http://gitit.net"; description = "Wiki using happstack, git or darcs, and pandoc"; license = "GPL"; @@ -78250,6 +78491,22 @@ self: { license = "unknown"; }) {}; + "gitter" = callPackage + ({ mkDerivation, aeson, base, bytestring, exceptions, lens + , lens-aeson, mtl, text, wreq + }: + mkDerivation { + pname = "gitter"; + version = "0.0.0.1"; + sha256 = "cc755243b8be4a235aaf8ed3dc4aa6d1b5dcecf602c3457131ac96e6bd665a97"; + libraryHaskellDepends = [ + aeson base bytestring exceptions lens lens-aeson mtl text wreq + ]; + jailbreak = true; + description = "Gitter.im API client"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "gl_0_6_1" = callPackage ({ mkDerivation, base, containers, directory, filepath, fixed, half , hxt, mesa, split, transformers @@ -79311,6 +79568,7 @@ self: { base containers mtl parsec template-haskell ]; testHaskellDepends = [ base containers HUnit mtl parsec ]; + jailbreak = true; homepage = "http://khumba.net/projects/goatee"; description = "A monadic take on a 2,500-year-old board game - library"; license = stdenv.lib.licenses.agpl3; @@ -81644,7 +81902,6 @@ self: { version = "0.1.2"; sha256 = "0e820122cad388f31c3ef0815d7ff93b9e95a8fdec0d6c560c379fe0ecfdb010"; libraryHaskellDepends = [ base haskell-src-exts ]; - doHaddock = false; description = "Pretty printing for well-behaved Show instances"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -83082,6 +83339,7 @@ self: { base bindings-gpgme bytestring either HUnit QuickCheck tasty tasty-hunit tasty-quickcheck time transformers unix ]; + jailbreak = true; homepage = "https://github.com/rethab/h-gpgme"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -84334,6 +84592,7 @@ self: { base bytestring Cabal directory filepath hackage-security network network-uri optparse-applicative tar time unix zlib ]; + jailbreak = true; homepage = "http://github.com/well-typed/hackage-security/"; description = "Utility to manage secure file-based package repositories"; license = stdenv.lib.licenses.bsd3; @@ -84436,6 +84695,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hackage-whatsnew" = callPackage + ({ mkDerivation, base, Cabal, containers, directory, filepath + , hackage-db, process, temporary + }: + mkDerivation { + pname = "hackage-whatsnew"; + version = "0.1.0.0"; + sha256 = "88346334b73b22ffe551ea4c109645c9dad31929502afb8f81a33a58a9298f20"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base Cabal containers directory filepath hackage-db process + temporary + ]; + description = "Check for differences between working directory and hackage"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hackage2hwn" = callPackage ({ mkDerivation, base, download, feed, tagsoup }: mkDerivation { @@ -84766,6 +85043,7 @@ self: { haddock-api http-types mtl optparse-applicative process resourcet sqlite-simple tagsoup text transformers ]; + jailbreak = true; homepage = "https://github.com/philopon/haddocset"; description = "Generate docset of Dash by Haddock haskell documentation tool"; license = stdenv.lib.licenses.bsd3; @@ -85357,12 +85635,11 @@ self: { "hakyll_4_7_3_1" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, data-default, deepseq, directory - , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache - , mtl, network, network-uri, pandoc, pandoc-citeproc, parsec - , process, QuickCheck, random, regex-base, regex-tdfa, snap-core - , snap-server, system-filepath, tagsoup, test-framework - , test-framework-hunit, test-framework-quickcheck2, text, time - , time-locale-compat + , filepath, fsnotify, HUnit, lrucache, mtl, network, network-uri + , pandoc, pandoc-citeproc, parsec, process, QuickCheck, random + , regex-base, regex-tdfa, snap-core, snap-server, system-filepath + , tagsoup, test-framework, test-framework-hunit + , test-framework-quickcheck2, text, time, time-locale-compat }: mkDerivation { pname = "hakyll"; @@ -85373,20 +85650,58 @@ self: { libraryHaskellDepends = [ base binary blaze-html blaze-markup bytestring cmdargs containers cryptohash data-default deepseq directory filepath fsnotify - http-conduit http-types lrucache mtl network network-uri pandoc - pandoc-citeproc parsec process random regex-base regex-tdfa - snap-core snap-server system-filepath tagsoup text time - time-locale-compat + lrucache mtl network network-uri pandoc pandoc-citeproc parsec + process random regex-base regex-tdfa snap-core snap-server + system-filepath tagsoup text time time-locale-compat ]; executableHaskellDepends = [ base directory filepath ]; testHaskellDepends = [ + base binary blaze-html blaze-markup bytestring cmdargs containers + cryptohash data-default deepseq directory filepath fsnotify HUnit + lrucache mtl network network-uri pandoc pandoc-citeproc parsec + process QuickCheck random regex-base regex-tdfa snap-core + snap-server system-filepath tagsoup test-framework + test-framework-hunit test-framework-quickcheck2 text time + time-locale-compat + ]; + doCheck = false; + homepage = "http://jaspervdj.be/hakyll"; + description = "A static website compiler library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hakyll_4_7_4_0" = callPackage + ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring + , cmdargs, containers, cryptohash, data-default, deepseq, directory + , filepath, fsnotify, HUnit, lrucache, mtl, network, network-uri + , pandoc, pandoc-citeproc, parsec, process, QuickCheck, random + , regex-base, regex-tdfa, snap-core, snap-server, system-filepath + , tagsoup, test-framework, test-framework-hunit + , test-framework-quickcheck2, text, time, time-locale-compat + }: + mkDerivation { + pname = "hakyll"; + version = "4.7.4.0"; + sha256 = "bf6a503f8a6e4911c6d2b2480b0e1a2495c568f47f902a43e463d8b2706737d1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base binary blaze-html blaze-markup bytestring cmdargs containers cryptohash data-default deepseq directory filepath fsnotify - http-conduit http-types HUnit lrucache mtl network network-uri - pandoc pandoc-citeproc parsec process QuickCheck random regex-base - regex-tdfa snap-core snap-server system-filepath tagsoup - test-framework test-framework-hunit test-framework-quickcheck2 text - time time-locale-compat + lrucache mtl network network-uri pandoc pandoc-citeproc parsec + process random regex-base regex-tdfa snap-core snap-server + system-filepath tagsoup text time time-locale-compat + ]; + executableHaskellDepends = [ base directory filepath ]; + testHaskellDepends = [ + base binary blaze-html blaze-markup bytestring cmdargs containers + cryptohash data-default deepseq directory filepath fsnotify HUnit + lrucache mtl network network-uri pandoc pandoc-citeproc parsec + process QuickCheck random regex-base regex-tdfa snap-core + snap-server system-filepath tagsoup test-framework + test-framework-hunit test-framework-quickcheck2 text time + time-locale-compat ]; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; @@ -85407,8 +85722,8 @@ self: { }: mkDerivation { pname = "hakyll"; - version = "4.7.4.0"; - sha256 = "bf6a503f8a6e4911c6d2b2480b0e1a2495c568f47f902a43e463d8b2706737d1"; + version = "4.7.5.0"; + sha256 = "e3079667f07f6355f9dbc0a10623670b323a6bec1fd632d114f5350023b65eb8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -85902,7 +86217,6 @@ self: { aeson array base binary data-default GLUT OpenGL opengl-dlp-stereo vector-space ]; - jailbreak = true; homepage = "https://bitbucket.org/bwbush/handa-opengl"; description = "Utility functions for OpenGL and GLUT"; license = stdenv.lib.licenses.mit; @@ -86028,12 +86342,17 @@ self: { }) {pfq = null;}; "haphviz" = callPackage - ({ mkDerivation, base, mtl, text }: + ({ mkDerivation, base, checkers, hspec, mtl, QuickCheck + , quickcheck-text, text + }: mkDerivation { pname = "haphviz"; - version = "0.1.0.2"; - sha256 = "84ff9cb5d293a237192b472f64c7bb78ef07fa48e3b2ec8a1763ee5d8c66a555"; + version = "0.1.1.5"; + sha256 = "f838c308bd3f82ba0766078e1aac0d6593e0eac63403beb6453c77fee36c7929"; libraryHaskellDepends = [ base mtl text ]; + testHaskellDepends = [ + base checkers hspec QuickCheck quickcheck-text text + ]; description = "Graphviz code generation with Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -86220,8 +86539,8 @@ self: { }: mkDerivation { pname = "happstack-authenticate"; - version = "2.3.1"; - sha256 = "c194c82adb432854b5de13021c6e2a4557944aefd92f2c97d3691a7807109b30"; + version = "2.3.2"; + sha256 = "41ea80ab11653b9face4978a07a25b4609df42bffcc4d48c5e36ac9923884fb1"; libraryHaskellDepends = [ acid-state aeson authenticate base base64-bytestring boomerang bytestring containers data-default email-validate filepath @@ -86726,8 +87045,8 @@ self: { }: mkDerivation { pname = "happstack-server-tls"; - version = "7.1.6"; - sha256 = "9c9c58d193543a5b3886a90654be7a97d6d53a3a44d25e350d1b3088347fd501"; + version = "7.1.6.1"; + sha256 = "801fa353e8001bd105615713eae6068534d3e6789fac9dc762ed43e17f73a668"; libraryHaskellDepends = [ base bytestring extensible-exceptions happstack-server hslogger HsOpenSSL network sendfile time unix @@ -87061,6 +87380,7 @@ self: { base directory haroonga http-types old-locale optparse-applicative scotty text time transformers wai-extra ]; + jailbreak = true; description = "Yet another Groonga http server"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; @@ -87134,6 +87454,7 @@ self: { libraryHaskellDepends = [ base ]; executableHaskellDepends = [ base numbers ]; testHaskellDepends = [ HUnit ]; + jailbreak = true; homepage = "http://darcsden.com/mekeor/hascal"; description = "A minimalistic but extensible and precise calculator"; license = "GPL"; @@ -87816,6 +88137,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "haskeline_0_7_2_2" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , terminfo, transformers, unix + }: + mkDerivation { + pname = "haskeline"; + version = "0.7.2.2"; + sha256 = "7655f5850ad013b2e4eee637685029bcce79210180df3a61a88f8626ddde9281"; + configureFlags = [ "-fterminfo" ]; + libraryHaskellDepends = [ + base bytestring containers directory filepath terminfo transformers + unix + ]; + homepage = "http://trac.haskell.org/haskeline"; + description = "A command-line interface for user input, written in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "haskeline-class" = callPackage ({ mkDerivation, base, haskeline, mtl }: mkDerivation { @@ -88272,7 +88612,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-names" = callPackage + "haskell-names_0_5_3" = callPackage ({ mkDerivation, aeson, base, bytestring, Cabal, containers , data-lens-light, filemanip, filepath, haskell-packages , haskell-src-exts, hse-cpp, mtl, pretty-show, tagged, tasty @@ -88296,6 +88636,30 @@ self: { homepage = "http://documentup.com/haskell-suite/haskell-names"; description = "Name resolution library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haskell-names" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers + , data-lens-light, filemanip, filepath, haskell-src-exts, mtl + , pretty-show, tasty, tasty-golden, transformers + , traverse-with-class, uniplate + }: + mkDerivation { + pname = "haskell-names"; + version = "0.6.0"; + sha256 = "8d45dabf15d4073a94f5d634538288dbac6ace1971b673cafc76ea92671bb26a"; + libraryHaskellDepends = [ + aeson base bytestring containers data-lens-light filepath + haskell-src-exts mtl transformers traverse-with-class uniplate + ]; + testHaskellDepends = [ + base containers filemanip filepath haskell-src-exts mtl pretty-show + tasty tasty-golden traverse-with-class + ]; + homepage = "http://documentup.com/haskell-suite/haskell-names"; + description = "Name resolution library for Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "haskell-neo4j-client_0_3_1_4" = callPackage @@ -90270,7 +90634,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hasql" = callPackage + "hasql_0_7_4" = callPackage ({ mkDerivation, attoparsec, base, base-prelude, either , hasql-backend, hasql-postgres, hspec, list-t, mmorph , monad-control, mtl, mtl-prelude, resource-pool, slave-thread @@ -90294,9 +90658,10 @@ self: { homepage = "https://github.com/nikita-volkov/hasql"; description = "A minimalistic general high level API for relational databases"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hasql_0_15_0_2" = callPackage + "hasql" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring , contravariant, contravariant-extras, data-default-class, dlist , either, hashable, hashtables, loch-th, placeholders @@ -90321,11 +90686,10 @@ self: { quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck tasty-smallcheck text time transformers uuid vector ]; - jailbreak = true; + doCheck = false; homepage = "https://github.com/nikita-volkov/hasql"; description = "A very efficient PostgreSQL driver and a flexible mapping API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasql-backend_0_2_1" = callPackage @@ -90450,7 +90814,6 @@ self: { version = "0.1"; sha256 = "be1db9c80ebdaf6f1ef0e75970e28286d435141a515ea6f83742373ffb51e330"; libraryHaskellDepends = [ base-prelude hasql resource-pool time ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-pool"; description = "A pool of connections for Hasql"; license = stdenv.lib.licenses.mit; @@ -90805,7 +91168,6 @@ self: { attoparsec base-prelude bytestring hasql hasql-transaction template-haskell text ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-th"; description = "Template Haskell utilities for Hasql"; license = stdenv.lib.licenses.mit; @@ -90826,7 +91188,6 @@ self: { contravariant-extras either hasql postgresql-error-codes transformers ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-transaction"; description = "A composable abstraction over the retryable transactions for Hasql"; license = stdenv.lib.licenses.mit; @@ -92295,6 +92656,7 @@ self: { aeson aeson-pretty base bytestring directory filepath haskeline time ]; + jailbreak = true; homepage = "https://github.com/aka-bash0r/headergen"; description = "Creates a header for a haskell source file"; license = stdenv.lib.licenses.mit; @@ -92421,6 +92783,7 @@ self: { testHaskellDepends = [ base bytestring HUnit mtl test-framework test-framework-hunit time ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/informatikr/hedis"; description = "Client library for the Redis datastore: supports full command set, pipelining"; @@ -94654,8 +95017,8 @@ self: { }: mkDerivation { pname = "hindent"; - version = "4.6.0"; - sha256 = "07039aa7729c3138e62c366efe11b148288ae6443539d0e7df61d157d2895d99"; + version = "4.6.1"; + sha256 = "04e8ffb44b46a45cd6425233efe595d6e412a20c71b69749f72c036bca4870f5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -94675,34 +95038,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hindent_4_6_1" = callPackage - ({ mkDerivation, base, data-default, descriptive, directory - , ghc-prim, haskell-src-exts, hspec, monad-loops, mtl, text - , transformers - }: - mkDerivation { - pname = "hindent"; - version = "4.6.1"; - sha256 = "04e8ffb44b46a45cd6425233efe595d6e412a20c71b69749f72c036bca4870f5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base data-default haskell-src-exts monad-loops mtl text - transformers - ]; - executableHaskellDepends = [ - base descriptive directory ghc-prim haskell-src-exts text - ]; - testHaskellDepends = [ - base data-default directory haskell-src-exts hspec monad-loops mtl - text - ]; - homepage = "http://www.github.com/chrisdone/hindent"; - description = "Extensible Haskell pretty printer"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hinduce-associations-apriori" = callPackage ({ mkDerivation, base, containers, deepseq, hinduce-missingh , parallel, vector @@ -94882,6 +95217,7 @@ self: { testHaskellDepends = [ base directory exceptions extensible-exceptions filepath HUnit mtl ]; + jailbreak = true; homepage = "http://hub.darcs.net/jcpetruzza/hint"; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = stdenv.lib.licenses.bsd3; @@ -94903,6 +95239,8 @@ self: { testHaskellDepends = [ base directory exceptions extensible-exceptions filepath HUnit mtl ]; + jailbreak = true; + doCheck = false; homepage = "http://hub.darcs.net/jcpetruzza/hint"; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = stdenv.lib.licenses.bsd3; @@ -94970,6 +95308,7 @@ self: { unordered-containers utf8-string wai wai-lens webcrank webcrank-wai wreq ]; + jailbreak = true; homepage = "https://github.com/purefn/hipbot"; description = "A library for building HipChat Bots"; license = stdenv.lib.licenses.bsd3; @@ -95514,6 +95853,7 @@ self: { aeson base http-types HUnit test-framework test-framework-hunit text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/seagreen/hjsonpointer"; description = "JSON Pointer library"; license = stdenv.lib.licenses.mit; @@ -96271,7 +96611,7 @@ self: { license = stdenv.lib.licenses.mit; }) {inherit (pkgs) git; inherit (pkgs) openssl;}; - "hlibsass" = callPackage + "hlibsass_0_1_4_0" = callPackage ({ mkDerivation, base, hspec, libsass }: mkDerivation { pname = "hlibsass"; @@ -96283,6 +96623,22 @@ self: { homepage = "https://github.com/jakubfijalkowski/hlibsass"; description = "Low-level bindings to Libsass"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) libsass;}; + + "hlibsass" = callPackage + ({ mkDerivation, base, hspec, libsass }: + mkDerivation { + pname = "hlibsass"; + version = "0.1.5.0"; + sha256 = "ce3e9a15d01c1b61d41b03e9b05ecd9b4b9aaf6da7d591086181b74e18d25bb8"; + configureFlags = [ "-fexternallibsass" ]; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ libsass ]; + testHaskellDepends = [ base hspec ]; + homepage = "https://github.com/jakubfijalkowski/hlibsass"; + description = "Low-level bindings to Libsass"; + license = stdenv.lib.licenses.mit; }) {inherit (pkgs) libsass;}; "hlint_1_9_13" = callPackage @@ -97457,6 +97813,7 @@ self: { executableHaskellDepends = [ aeson base bytestring http-conduit http-types text ]; + jailbreak = true; homepage = "https://github.com/freizl/hoauth2"; description = "hoauth2"; license = stdenv.lib.licenses.bsd3; @@ -97924,8 +98281,10 @@ self: { pname = "hood"; version = "0.3"; sha256 = "f1962dfb05d01a345335872fa36509999755c71a9381b4941bd04a9cb72b6122"; + revision = "1"; + editedCabalFile = "f9b9df9c7f747b1da4f96477fab00305b5a28132eabc224e76db75b1bae34a64"; libraryHaskellDepends = [ array base FPretty ghc-prim ]; - homepage = "http://www.ittc.ku.edu/csdl/fpg/Hood"; + homepage = "http://ku-fpg.github.io/software/hood"; description = "Debugging by observing in place"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -98454,6 +98813,7 @@ self: { base bytestring Cabal containers directory errors filepath hoogle optparse-applicative process temporary transformers ]; + jailbreak = true; homepage = "http://github.com/bgamari/hoogle-index"; description = "Easily generate Hoogle indices for installed packages"; license = stdenv.lib.licenses.bsd3; @@ -98471,14 +98831,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hoopl_3_10_2_0" = callPackage + "hoopl_3_10_2_1" = callPackage ({ mkDerivation, base, containers, filepath, mtl, parsec , test-framework, test-framework-hunit }: mkDerivation { pname = "hoopl"; - version = "3.10.2.0"; - sha256 = "6740814c774e51815e8260ae1b4ac8af6ab69f02e112904450f689c4792f1121"; + version = "3.10.2.1"; + sha256 = "7c06a2a9e8871eff74fdbbf2aa0a2201a31a5687f5acf7a5ba8a3611325440b0"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base containers filepath mtl parsec test-framework @@ -100485,7 +100845,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {xenctrl = null;}; - "hsass" = callPackage + "hsass_0_3_0" = callPackage ({ mkDerivation, base, bytestring, data-default-class, filepath , hlibsass, hspec, hspec-discover, monad-loops, temporary , transformers @@ -100504,6 +100864,28 @@ self: { homepage = "https://github.com/jakubfijalkowski/hsass"; description = "Integrating Sass into Haskell applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hsass" = callPackage + ({ mkDerivation, base, bytestring, data-default-class, filepath + , hlibsass, hspec, hspec-discover, monad-loops, temporary + , transformers + }: + mkDerivation { + pname = "hsass"; + version = "0.4.0"; + sha256 = "512faf0e01e720395699066139379fb2e5e5f456f465c72d58282b75b6ec0f9d"; + libraryHaskellDepends = [ + base bytestring data-default-class filepath hlibsass monad-loops + transformers + ]; + testHaskellDepends = [ + base bytestring data-default-class hspec hspec-discover temporary + ]; + homepage = "https://github.com/jakubfijalkowski/hsass"; + description = "Integrating Sass into Haskell applications"; + license = stdenv.lib.licenses.mit; }) {}; "hsay" = callPackage @@ -101327,7 +101709,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "hsebaysdk" = callPackage + "hsebaysdk_0_3_0_0" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client, http-types , text, time, transformers, unordered-containers }: @@ -101342,6 +101724,24 @@ self: { homepage = "https://github.com/creichert/hsebaysdk"; description = "Haskell eBay SDK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hsebaysdk" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client, http-types + , text, time, transformers, unordered-containers + }: + mkDerivation { + pname = "hsebaysdk"; + version = "0.3.0.1"; + sha256 = "52f97122cdaba3c3b8a71691ed87fb3eb6dd93506652a8b11282af696c3f6279"; + libraryHaskellDepends = [ + aeson base bytestring http-client http-types text time transformers + unordered-containers + ]; + homepage = "https://github.com/creichert/hsebaysdk"; + description = "Haskell eBay SDK"; + license = stdenv.lib.licenses.bsd3; }) {}; "hsemail" = callPackage @@ -102451,6 +102851,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -102478,6 +102879,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -102505,6 +102907,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -102532,6 +102935,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -102559,6 +102963,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -102586,6 +102991,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -102889,8 +103295,8 @@ self: { }: mkDerivation { pname = "hspec-expectations-pretty-diff"; - version = "0.7.2.2"; - sha256 = "00c1ac7ceb6bed18c8c2ab7ac35342b024731e3fadf2c6304e549dc42d39ff38"; + version = "0.7.2.3"; + sha256 = "3543bc7ecf28e8a714b255264849d82b6c513828a26a761e0f372bec1b37202f"; libraryHaskellDepends = [ ansi-terminal base Diff haskell-src-exts hindent hscolour HUnit text @@ -103059,6 +103465,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hspec-setup" = callPackage + ({ mkDerivation, base, directory, filepath, process, projectroot }: + mkDerivation { + pname = "hspec-setup"; + version = "0.1.1.0"; + sha256 = "8f1e57656595330917597a66768e752bf66c2ae7acf7c43425222a0e1ce7e12a"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base directory filepath process projectroot + ]; + homepage = "https://github.com/yamadapc/haskell-hspec-setup"; + description = "Add an hspec test-suite in one command"; + license = stdenv.lib.licenses.mit; + }) {}; + "hspec-shouldbe" = callPackage ({ mkDerivation, hspec, test-shouldbe }: mkDerivation { @@ -104033,15 +104455,14 @@ self: { }: mkDerivation { pname = "hsx2hs"; - version = "0.13.3.2"; - sha256 = "93057aca59faeb1e33d55d804d89fd42b5175006abf1ca7aa507a6338232f8ee"; + version = "0.13.4"; + sha256 = "9508c59b373474e7954f51be61b5e6a54f0a6241cca2a4ecf1b1ce8f5aae07df"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring haskell-src-exts haskell-src-meta mtl template-haskell utf8-string ]; - jailbreak = true; homepage = "https://github.com/seereason/hsx2hs"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; @@ -106218,7 +106639,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-types" = callPackage + "http-types_0_8_6" = callPackage ({ mkDerivation, array, base, blaze-builder, bytestring , case-insensitive, doctest, hspec, QuickCheck , quickcheck-instances, text @@ -106237,9 +106658,10 @@ self: { homepage = "https://github.com/aristidb/http-types"; description = "Generic HTTP types for Haskell (for both client and server code)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-types_0_9" = callPackage + "http-types" = callPackage ({ mkDerivation, array, base, blaze-builder, bytestring , case-insensitive, doctest, hspec, QuickCheck , quickcheck-instances, text @@ -106258,7 +106680,6 @@ self: { homepage = "https://github.com/aristidb/http-types"; description = "Generic HTTP types for Haskell (for both client and server code)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-wget" = callPackage @@ -108280,8 +108701,8 @@ self: { }: mkDerivation { pname = "hzulip"; - version = "1.1.1.1"; - sha256 = "a132d3f28c0a5da3d841522a24995d94232a4c044a5ce547786057f2ace4bebf"; + version = "1.1.1.2"; + sha256 = "62402ce2010bf6d9c07ee266ac30c9506383b3a5dcbbd0fba54b30d191ac02d8"; libraryHaskellDepends = [ aeson base bytestring conduit exceptions http-client http-client-tls http-types lens lens-aeson mtl stm stm-conduit text @@ -108292,7 +108713,6 @@ self: { http-client-tls http-types lens lens-aeson mtl raw-strings-qq scotty stm stm-conduit text transformers ]; - jailbreak = true; homepage = "https://github.com/yamadapc/hzulip"; description = "A haskell wrapper for the Zulip API"; license = stdenv.lib.licenses.gpl2; @@ -108749,6 +109169,7 @@ self: { stm tagged tasty template-haskell temporary test-framework test-framework-hunit text unix utf8-string ]; + jailbreak = true; doCheck = false; description = "An IDE backend library"; license = stdenv.lib.licenses.mit; @@ -108866,6 +109287,7 @@ self: { mtl pretty-show pureMD5 tagged template-haskell temporary text transformers unix ]; + jailbreak = true; description = "Shared library used be ide-backend and ide-backend-server"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -108887,6 +109309,7 @@ self: { monad-logger mtl pretty-show pureMD5 tagged template-haskell temporary text transformers unix ]; + jailbreak = true; description = "Shared library used be ide-backend and ide-backend-server"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -109104,6 +109527,7 @@ self: { executableHaskellDepends = [ base directory filepath haskeline transformers ]; + jailbreak = true; homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; @@ -110870,6 +111294,7 @@ self: { testHaskellDepends = [ aeson base instant-generics tasty tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/k0001/instant-aeson"; description = "Generic Aeson instances through instant-generics"; license = stdenv.lib.licenses.bsd3; @@ -111379,6 +111804,8 @@ self: { pname = "invariant"; version = "0.2.2"; sha256 = "269cfd73bb7064459791b03461c9a73ce182e9d0a6f929f7cd46c0566d747975"; + revision = "1"; + editedCabalFile = "ec713862cc5b8f03e58eeca3596d53cfdfc28a9957afffcff2680a855322f0ee"; libraryHaskellDepends = [ array base bifunctors containers contravariant ghc-prim profunctors semigroups stm tagged template-haskell transformers @@ -111919,6 +112346,7 @@ self: { executableHaskellDepends = [ base filepath mtl parsec text transformers ]; + jailbreak = true; homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for creating kernels for IPython frontends"; license = stdenv.lib.licenses.mit; @@ -112392,6 +112820,7 @@ self: { base heap HUnit iteratee ListLike mtl statistics test-framework test-framework-hunit test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "https://github.com/JohnLato/iter-stats"; description = "iteratees for statistical processing"; license = stdenv.lib.licenses.bsd3; @@ -112774,7 +113203,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ixset" = callPackage + "ixset_1_0_6" = callPackage ({ mkDerivation, base, containers, safecopy, syb, syb-with-class , template-haskell }: @@ -112788,6 +113217,23 @@ self: { homepage = "http://happstack.com"; description = "Efficient relational queries on Haskell sets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ixset" = callPackage + ({ mkDerivation, base, containers, safecopy, syb, syb-with-class + , template-haskell + }: + mkDerivation { + pname = "ixset"; + version = "1.0.6.1"; + sha256 = "729a9601ef889f2178a9e857c39efb89c6defcb7e074f9bf9156086bc51327e1"; + libraryHaskellDepends = [ + base containers safecopy syb syb-with-class template-haskell + ]; + homepage = "http://happstack.com"; + description = "Efficient relational queries on Haskell sets"; + license = stdenv.lib.licenses.bsd3; }) {}; "ixset-typed" = callPackage @@ -114414,7 +114860,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "json-schema" = callPackage + "json-schema_0_7_4_0" = callPackage ({ mkDerivation, aeson, aeson-utils, attoparsec, base, bytestring , containers, generic-aeson, generic-deriving, mtl, scientific , tasty, tasty-hunit, tasty-th, text, time, unordered-containers @@ -114436,6 +114882,29 @@ self: { ]; description = "Types and type classes for defining JSON schemas"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "json-schema" = callPackage + ({ mkDerivation, aeson, aeson-utils, attoparsec, base, bytestring + , containers, generic-aeson, generic-deriving, mtl, scientific + , tasty, tasty-hunit, tasty-th, text, time, unordered-containers + , vector + }: + mkDerivation { + pname = "json-schema"; + version = "0.7.4.1"; + sha256 = "560d6a17d6eab734f43d329e51967e3ed62f8df2a6fea4a92d06359fe77d7c96"; + libraryHaskellDepends = [ + aeson base containers generic-aeson generic-deriving mtl scientific + text time unordered-containers vector + ]; + testHaskellDepends = [ + aeson aeson-utils attoparsec base bytestring generic-aeson tasty + tasty-hunit tasty-th text vector + ]; + description = "Types and type classes for defining JSON schemas"; + license = stdenv.lib.licenses.bsd3; }) {}; "json-sop" = callPackage @@ -116041,6 +116510,7 @@ self: { mtl optparse-applicative process raw-strings-qq setenv text unordered-containers ]; + jailbreak = true; homepage = "http://github.com/cdornan/keystore"; description = "Managing stores of secret things"; license = stdenv.lib.licenses.bsd3; @@ -117301,6 +117771,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "lambdatex" = callPackage + ({ mkDerivation, base, containers, directory, HaTeX, hspec, mtl + , QuickCheck, text, transformers + }: + mkDerivation { + pname = "lambdatex"; + version = "0.1.0.1"; + sha256 = "c071927242a209cbcd404cd5d803da91ced655565178c8e72b438cd47a66320c"; + libraryHaskellDepends = [ + base containers directory HaTeX mtl text transformers + ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/NorfairKing/lambdatex"; + description = "Type-Safe LaTeX EDSL"; + license = "GPL"; + }) {}; + "lambdatwit" = callPackage ({ mkDerivation, acid-state, authenticate-oauth, base, bytestring , case-insensitive, conduit, containers, data-default, exceptions @@ -117597,6 +118084,7 @@ self: { base bytestring HUnit mainland-pretty srcloc symbol test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; @@ -117624,6 +118112,7 @@ self: { base bytestring HUnit mainland-pretty srcloc symbol test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; @@ -117651,6 +118140,7 @@ self: { base bytestring HUnit mainland-pretty srcloc symbol test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; @@ -117825,6 +118315,8 @@ self: { mtl parsec QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 uniplate wl-pprint ]; + jailbreak = true; + doCheck = false; homepage = "http://github.com/jswebtools/language-ecmascript"; description = "JavaScript parser and pretty-printer library"; license = stdenv.lib.licenses.bsd3; @@ -118540,7 +119032,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "largeword" = callPackage + "largeword_1_2_3" = callPackage ({ mkDerivation, base, binary, bytestring, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 }: @@ -118553,12 +119045,14 @@ self: { base binary bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/idontgetoutmuch/largeword"; description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "largeword_1_2_5" = callPackage + "largeword" = callPackage ({ mkDerivation, base, binary, bytestring, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 }: @@ -118571,11 +119065,9 @@ self: { base binary bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - jailbreak = true; homepage = "https://github.com/idontgetoutmuch/largeword"; description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lat" = callPackage @@ -119041,6 +119533,7 @@ self: { base bytestring cmdargs containers filepath ]; testHaskellDepends = [ base HUnit ]; + jailbreak = true; homepage = "http://rampa.sk/static/ldif.html"; description = "The LDAP Data Interchange Format (LDIF) tools"; license = stdenv.lib.licenses.bsd3; @@ -119269,6 +119762,7 @@ self: { base conduit conduit-extra hslogger HUnit process resourcet transformers ]; + jailbreak = true; homepage = "http://leksah.org"; description = "Metadata collection for leksah"; license = "GPL"; @@ -119549,6 +120043,7 @@ self: { base directory doctest filepath generic-deriving semigroups simple-reflect ]; + jailbreak = true; homepage = "http://github.com/lens/lens-aeson/"; description = "Law-abiding lenses for aeson"; license = stdenv.lib.licenses.bsd3; @@ -119835,6 +120330,7 @@ self: { ansi-wl-pprint base csv directory filemanip filepath hspec natural-sort optparse-applicative parsec regex-tdfa ]; + jailbreak = true; homepage = "http://www.ariis.it/static/articles/lentil/page.html"; description = "frugal issue tracker"; license = stdenv.lib.licenses.gpl3; @@ -120925,6 +121421,7 @@ self: { base HUnit monad-control test-framework test-framework-hunit transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/basvandijk/lifted-base"; description = "lifted IO operations from the base library"; license = stdenv.lib.licenses.bsd3; @@ -120945,6 +121442,7 @@ self: { base HUnit monad-control test-framework test-framework-hunit transformers transformers-base transformers-compat ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/basvandijk/lifted-base"; description = "lifted IO operations from the base library"; @@ -121353,10 +121851,8 @@ self: { }: mkDerivation { pname = "linear"; - version = "1.20.2"; - sha256 = "c9ce0cba74beb9ab59cf9790772e5b01d2786b452099e5831d218371565ec4fe"; - revision = "1"; - editedCabalFile = "2c0ce2199aec2dd1e7536514351398d00def727e21bdac1fe54b05059fef7c49"; + version = "1.20.3"; + sha256 = "50f63a5b6019acb53ae06886749dea80443b18876c2990ca5376578c94537ac4"; libraryHaskellDepends = [ adjunctions base binary bytes cereal containers deepseq distributive ghc-prim hashable lens reflection semigroupoids @@ -121987,8 +122483,8 @@ self: { pname = "liquidhaskell"; version = "0.5.0.1"; sha256 = "27f31e7652cd9ef0b97d2e3936c8e9c759961ac153b324c3e84f11cb441ab89a"; - revision = "1"; - editedCabalFile = "f091f4caee092d4d286fe264fbb5f602675339c6bfac563bfb91732583264cc0"; + revision = "2"; + editedCabalFile = "54142d52274f85af299d405bd5daac25b574f9d3f16c8e42b7f5b999d9a34a1d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -122054,7 +122550,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "list-fusion-probe" = callPackage + "list-fusion-probe_0_1_0_4" = callPackage ({ mkDerivation, base, tasty, tasty-hunit }: mkDerivation { pname = "list-fusion-probe"; @@ -122064,9 +122560,10 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "testing list fusion for success"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "list-fusion-probe_0_1_0_5" = callPackage + "list-fusion-probe" = callPackage ({ mkDerivation, base, tasty, tasty-hunit }: mkDerivation { pname = "list-fusion-probe"; @@ -122076,7 +122573,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "testing list fusion for success"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "list-grouping" = callPackage @@ -122104,6 +122600,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "list-prompt" = callPackage + ({ mkDerivation, ansi-terminal, base, data-default, hspec, stm + , terminal-size, vty + }: + mkDerivation { + pname = "list-prompt"; + version = "0.1.1.0"; + sha256 = "c7323c7a802940deba1a7be46265fd8c01f548174d5f08923a607e1730ca4dee"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-terminal base data-default stm terminal-size vty + ]; + executableHaskellDepends = [ + ansi-terminal base data-default stm terminal-size vty + ]; + testHaskellDepends = [ + ansi-terminal base data-default hspec stm terminal-size vty + ]; + homepage = "https://github.com/yamadapc/list-prompt.git"; + description = "A simple list prompt UI for the terminal"; + license = stdenv.lib.licenses.gpl2; + }) {}; + "list-remote-forwards" = callPackage ({ mkDerivation, base, bytestring, cmdargs, configurator , containers, directory, dns, doctest, filemanip, filepath, HDBC @@ -124214,7 +124734,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lucid-svg" = callPackage + "lucid-svg_0_5_0_0" = callPackage ({ mkDerivation, base, blaze-builder, lucid, text, transformers }: mkDerivation { pname = "lucid-svg"; @@ -124226,9 +124746,10 @@ self: { homepage = "http://github.com/jeffreyrosenbluth/lucid-svg.git"; description = "DSL for SVG using lucid for HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lucid-svg_0_6_0_0" = callPackage + "lucid-svg" = callPackage ({ mkDerivation, base, blaze-builder, lucid, text, transformers }: mkDerivation { pname = "lucid-svg"; @@ -124240,7 +124761,6 @@ self: { homepage = "http://github.com/jeffreyrosenbluth/lucid-svg.git"; description = "DSL for SVG using lucid for HTML"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lucienne" = callPackage @@ -124313,8 +124833,8 @@ self: { }: mkDerivation { pname = "luminance"; - version = "0.8.2.1"; - sha256 = "c0952ec7314fd13faf10326648cf49561da4687d5e011d19694d84c2c26ddd51"; + version = "0.9"; + sha256 = "8bbee1483bca9a073a8ca7f4f1d3bec00f99c3d59bfa637702afda5a88eb2ada"; libraryHaskellDepends = [ base containers contravariant dlist gl linear mtl resourcet semigroups transformers vector void @@ -124330,8 +124850,8 @@ self: { }: mkDerivation { pname = "luminance-samples"; - version = "0.8"; - sha256 = "35580954897bcb2fdbd7eecc14982b44f5026e64be08d7398f8cc7fa0925a962"; + version = "0.9"; + sha256 = "1ce2b8ff49c34bd529bcbe8e30f042f327a970b7a6d43dbdd3939b17cfa44bec"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -124649,6 +125169,7 @@ self: { base bytestring HUnit io-streams QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/hvr/lzma-streams"; description = "IO-Streams interface for lzma/xz compression"; license = stdenv.lib.licenses.bsd3; @@ -125791,6 +126312,7 @@ self: { aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit tasty-quickcheck text ]; + jailbreak = true; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -125815,6 +126337,7 @@ self: { aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit tasty-quickcheck text ]; + jailbreak = true; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -125897,6 +126420,7 @@ self: { template-haskell text time tls transformers transformers-base unordered-containers utf8-string vector wai warp x509-system ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/prowdsponsor/mangopay"; description = "Bindings to the MangoPay API"; @@ -127977,8 +128501,8 @@ self: { }: mkDerivation { pname = "microlens-platform"; - version = "0.1.5.0"; - sha256 = "3c705ad7a4732a0ac4deb82b1837b0fa247a6796bd64dbf1125edf135e2abd04"; + version = "0.1.6.0"; + sha256 = "7ddec415baac4a9f44d6cd1c14976990b5e9e5bc34cb399c29d2a0361b311194"; libraryHaskellDepends = [ base hashable microlens microlens-ghc microlens-mtl microlens-th text unordered-containers vector @@ -128130,6 +128654,7 @@ self: { base containers diagrams-lib diagrams-postscript event-list midi non-empty optparse-applicative utility-ht ]; + jailbreak = true; homepage = "http://hub.darcs.net/thielema/midi-music-box"; description = "Convert MIDI file to music box punch tape"; license = stdenv.lib.licenses.bsd3; @@ -128299,8 +128824,8 @@ self: { }: mkDerivation { pname = "milena"; - version = "0.4.0.1"; - sha256 = "5349bf26d1c0bc6147e84219d09f065b313413aba026e060a92bcc23e9ec2cb5"; + version = "0.5.0.0"; + sha256 = "fbae487cc6e61fa6cde0ba79b4d0df28c75e1af9c0d75970b7685a7beb18b63a"; libraryHaskellDepends = [ base bytestring cereal containers digest lens lifted-base mtl murmur-hash network random resource-pool semigroups transformers @@ -131197,6 +131722,7 @@ self: { version = "0.4.0.2"; sha256 = "ccf05d44831dad32d52da1d4176fc77f05f4a5f7f71719e4452fd5069b80ba32"; libraryHaskellDepends = [ base groups semigroupoids semigroups ]; + jailbreak = true; description = "Various extra monoid-related definitions and utilities"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -132352,6 +132878,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/aka-bash0r/multi-cabal"; description = "A tool supporting multi cabal project builds"; license = stdenv.lib.licenses.mit; @@ -132710,6 +133237,7 @@ self: { base base16-bytestring bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://github.com/plaprade/murmur3"; description = "Pure Haskell implementation of the MurmurHash3 x86_32 algorithm"; license = stdenv.lib.licenses.publicDomain; @@ -134146,6 +134674,7 @@ self: { array base bytestring cereal HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text zlib ]; + jailbreak = true; homepage = "https://github.com/acfoltzer/nbt"; description = "A parser/serializer for Minecraft's Named Binary Tag (NBT) data format"; license = stdenv.lib.licenses.bsd3; @@ -134186,7 +134715,7 @@ self: { license = stdenv.lib.licenses.gpl3; }) {inherit (pkgs) ncurses;}; - "ndjson-conduit" = callPackage + "ndjson-conduit_0_1_0_2" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit }: mkDerivation { pname = "ndjson-conduit"; @@ -134198,6 +134727,21 @@ self: { homepage = "https://github.com/srijs/haskell-ndjson-conduit"; description = "Conduit-based parsing and serialization for newline delimited JSON"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ndjson-conduit" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit }: + mkDerivation { + pname = "ndjson-conduit"; + version = "0.1.0.3"; + sha256 = "a4f9e574af6d565ea9edc313c78ea9ee95c957d2abe61f4a0991a49231e9b592"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring conduit + ]; + homepage = "https://github.com/srijs/haskell-ndjson-conduit"; + description = "Conduit-based parsing and serialization for newline delimited JSON"; + license = stdenv.lib.licenses.mit; }) {}; "neat" = callPackage @@ -136312,6 +136856,8 @@ self: { sha256 = "a5ed63130601fa2f97b105adeced7e691ee7924bcfd3f7da6605495f7a655fe2"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base hspec HUnit ]; + jailbreak = true; + doCheck = false; description = "A typeclass and set of functions for working with newtypes, with generics support"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -136390,12 +136936,13 @@ self: { }) {}; "niagra" = callPackage - ({ mkDerivation, base, mtl, text, transformers }: + ({ mkDerivation, base, containers, mtl, text, transformers }: mkDerivation { pname = "niagra"; - version = "0.0.3"; - sha256 = "bb6dd33a0b00996263ae770fdf5ba461a956e33492310f27f83fbd248951f49b"; - libraryHaskellDepends = [ base mtl text transformers ]; + version = "0.1.0"; + sha256 = "dd95efe3c72f07dc4e82ace01b13f26406dc0d40a476416dbbb0e6d77dcdcf7d"; + libraryHaskellDepends = [ base containers mtl text transformers ]; + homepage = "https://github.com/fhsjaagshs/niagra"; description = "CSS EDSL for Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -137359,13 +137906,12 @@ self: { }: mkDerivation { pname = "numeric-qq"; - version = "0.1.2"; - sha256 = "95d578a72288375fdfddd64033f1829b6be7c431b46fcf49199f3cf67154b17f"; + version = "0.1.3"; + sha256 = "beaf86d233adad0d6dcf23769e4e0f3f43a1b551f19fb772fbcfedd885f19b85"; libraryHaskellDepends = [ base loch-th placeholders template-haskell ]; testHaskellDepends = [ base directory doctest filepath ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/numeric-qq"; description = "Quasi-quoters for numbers of different bases"; license = stdenv.lib.licenses.mit; @@ -137572,6 +138118,7 @@ self: { aeson base bytestring lens lens-aeson pipes pipes-aeson pipes-bytestring pipes-http pipes-parse text time wreq ]; + jailbreak = true; homepage = "https://github.com/bts/nylas-hs"; description = "Client for the Nylas API"; license = stdenv.lib.licenses.bsd3; @@ -137817,6 +138364,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -137931,6 +138479,8 @@ self: { pname = "old-locale"; version = "1.0.0.7"; sha256 = "dbaf8bf6b888fb98845705079296a23c3f40ee2f449df7312f7f7f1de18d7b50"; + revision = "1"; + editedCabalFile = "f87c7c0495bf863c82ca051e68b10b3133a286aed11f0291253385a5856a6ceb"; libraryHaskellDepends = [ base ]; description = "locale library"; license = stdenv.lib.licenses.bsd3; @@ -137942,6 +138492,8 @@ self: { pname = "old-time"; version = "1.1.0.3"; sha256 = "1ccb158b0f7851715d36b757c523b026ca1541e2030d02239802ba39b4112bc1"; + revision = "1"; + editedCabalFile = "c1a016dd23d38e879b7972ce95f22b1498d39fc62a7b755ff5f344bfeeaf796e"; libraryHaskellDepends = [ base old-locale ]; description = "Time library"; license = stdenv.lib.licenses.bsd3; @@ -138110,6 +138662,22 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "once" = callPackage + ({ mkDerivation, base, containers, hashable, template-haskell + , unordered-containers + }: + mkDerivation { + pname = "once"; + version = "0.1.0.0"; + sha256 = "9a59a79946079ea2d00469f9c4a6a319ad96425f38f4b90093789109c268a7ab"; + libraryHaskellDepends = [ + base containers hashable template-haskell unordered-containers + ]; + homepage = "https://anonscm.debian.org/cgit/users/kaction-guest/haskell-once.git"; + description = "memoization for IO actions and functions"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "one-liner" = callPackage ({ mkDerivation, base, contravariant, ghc-prim, transformers }: mkDerivation { @@ -138341,6 +138909,7 @@ self: { base containers contravariant multiset postgresql-simple product-profunctors profunctors QuickCheck semigroups time ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; description = "An SQL-generating DSL targeting PostgreSQL"; @@ -139367,7 +139936,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "optparse-applicative" = callPackage + "optparse-applicative_0_11_0_2" = callPackage ({ mkDerivation, ansi-wl-pprint, base, process, transformers , transformers-compat }: @@ -139381,9 +139950,10 @@ self: { homepage = "https://github.com/pcapriotti/optparse-applicative"; description = "Utilities and combinators for parsing command line options"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "optparse-applicative_0_12_0_0" = callPackage + "optparse-applicative" = callPackage ({ mkDerivation, ansi-wl-pprint, base, process, transformers , transformers-compat }: @@ -139397,7 +139967,6 @@ self: { homepage = "https://github.com/pcapriotti/optparse-applicative"; description = "Utilities and combinators for parsing command line options"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "optparse-declarative" = callPackage @@ -140211,30 +140780,6 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pagerduty" = callPackage - ({ mkDerivation, aeson, base, bifunctors, bytestring - , bytestring-conversion, conduit, data-default-class, exceptions - , generics-sop, http-client, http-types, lens, lens-aeson, mmorph - , monad-control, mtl, template-haskell, text, time - , time-locale-compat, transformers, transformers-base - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "pagerduty"; - version = "0.0.4"; - sha256 = "41549771fe6689ffb97806e615e86a3c7384177cbcc1c77873167a3e9d05be9c"; - libraryHaskellDepends = [ - aeson base bifunctors bytestring bytestring-conversion conduit - data-default-class exceptions generics-sop http-client http-types - lens lens-aeson mmorph monad-control mtl template-haskell text time - time-locale-compat transformers transformers-base - transformers-compat unordered-containers - ]; - homepage = "http://github.com/brendanhay/pagerduty"; - description = "Client library for PagerDuty Integration and REST APIs"; - license = "unknown"; - }) {}; - "pagure-hook-receiver" = callPackage ({ mkDerivation, base, containers, scotty, shelly, text , transformers, unix @@ -140479,11 +141024,11 @@ self: { , directory, executable-path, extensible-exceptions, filemanip , filepath, haddock-library, highlighting-kate, hslua, HTTP , http-client, http-client-tls, http-types, HUnit, JuicyPixels, mtl - , network, network-uri, old-time, pandoc-types, parsec, process - , QuickCheck, random, scientific, SHA, syb, tagsoup, temporary - , test-framework, test-framework-hunit, test-framework-quickcheck2 - , texmath, text, time, unordered-containers, vector, xml, yaml - , zip-archive, zlib + , network, network-uri, old-locale, old-time, pandoc-types, parsec + , process, QuickCheck, random, scientific, SHA, syb, tagsoup + , temporary, test-framework, test-framework-hunit + , test-framework-quickcheck2, texmath, text, time + , unordered-containers, vector, xml, yaml, zip-archive, zlib }: mkDerivation { pname = "pandoc"; @@ -140497,9 +141042,10 @@ self: { bytestring cmark containers data-default deepseq-generics directory extensible-exceptions filemanip filepath haddock-library highlighting-kate hslua HTTP http-client http-client-tls http-types - JuicyPixels mtl network network-uri old-time pandoc-types parsec - process random scientific SHA syb tagsoup temporary texmath text - time unordered-containers vector xml yaml zip-archive zlib + JuicyPixels mtl network network-uri old-locale old-time + pandoc-types parsec process random scientific SHA syb tagsoup + temporary texmath text time unordered-containers vector xml yaml + zip-archive zlib ]; executableHaskellDepends = [ aeson base bytestring containers directory extensible-exceptions @@ -140512,6 +141058,7 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; + jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; @@ -140797,6 +141344,7 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + jailbreak = true; doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; @@ -140829,6 +141377,7 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + jailbreak = true; doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; @@ -140861,6 +141410,7 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + jailbreak = true; doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; @@ -141094,6 +141644,7 @@ self: { libraryHaskellDepends = [ aeson base bytestring containers deepseq-generics ghc-prim syb ]; + jailbreak = true; homepage = "http://johnmacfarlane.net/pandoc"; description = "Types for representing a structured document"; license = "GPL"; @@ -141111,6 +141662,7 @@ self: { libraryHaskellDepends = [ aeson base bytestring containers deepseq-generics ghc-prim syb ]; + jailbreak = true; homepage = "http://johnmacfarlane.net/pandoc"; description = "Types for representing a structured document"; license = stdenv.lib.licenses.bsd3; @@ -141567,6 +142119,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "http://www.cs.uu.nl/~daan/parsec.html"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd3; @@ -141585,6 +142138,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "http://www.cs.uu.nl/~daan/parsec.html"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd3; @@ -141603,6 +142157,8 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; + doCheck = false; homepage = "https://github.com/aslatter/parsec"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd3; @@ -142321,8 +142877,8 @@ self: { }: mkDerivation { pname = "pathtype"; - version = "0.7"; - sha256 = "fb6512d284c41feb1d31375cb47144ab13d4f4435d62dc977c511dacdb70e616"; + version = "0.7.0.1"; + sha256 = "f63692c829eed50588feb68a4ba1a711354f680553c9788c9c4795f821ff47b4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -144908,6 +145464,7 @@ self: { testHaskellDepends = [ aeson base bytestring hspec persistent QuickCheck text transformers ]; + jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; @@ -144933,6 +145490,7 @@ self: { testHaskellDepends = [ aeson base bytestring hspec persistent QuickCheck text transformers ]; + jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; @@ -145371,6 +145929,30 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "phoityne" = callPackage + ({ mkDerivation, base, bytestring, Cabal, cmdargs, conduit + , conduit-extra, ConfigFile, containers, directory, filepath, gtk3 + , hslogger, HStringTemplate, MissingH, mtl, parsec, process + , resourcet, safe, text, transformers + }: + mkDerivation { + pname = "phoityne"; + version = "0.0.1.0"; + sha256 = "c95571f5da2e8bf383f473a3750a4d1538bb543b3ad46e26d62218a56604f5fe"; + revision = "1"; + editedCabalFile = "a65bbf3246f27cbf6bff03bbb436b87e6ab05185b458d47159836a1e5815c621"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base bytestring Cabal cmdargs conduit conduit-extra ConfigFile + containers directory filepath gtk3 hslogger HStringTemplate + MissingH mtl parsec process resourcet safe text transformers + ]; + homepage = "under construction"; + description = "ghci debug viewer with simple editor"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "phone-numbers" = callPackage ({ mkDerivation, base, bytestring, phonenumber }: mkDerivation { @@ -145759,24 +146341,6 @@ self: { }) {}; "pinchot" = callPackage - ({ mkDerivation, base, containers, Earley, lens, template-haskell - , transformers - }: - mkDerivation { - pname = "pinchot"; - version = "0.4.0.0"; - sha256 = "362b2f8c0c1d4b4d768e8ae98a5c3d68db27d2b713055878079d2ff7ff905495"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers Earley lens template-haskell transformers - ]; - homepage = "http://www.github.com/massysett/pinchot"; - description = "Build parsers and ASTs for context-free grammars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "pinchot_0_6_0_0" = callPackage ({ mkDerivation, base, containers, Earley, lens, template-haskell , transformers }: @@ -145792,7 +146356,6 @@ self: { homepage = "http://www.github.com/massysett/pinchot"; description = "Build parsers and ASTs for context-free grammars"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipe-enumerator" = callPackage @@ -145936,7 +146499,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-aeson" = callPackage + "pipes-aeson_0_4_1_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes , pipes-attoparsec, pipes-bytestring, pipes-parse, transformers }: @@ -145948,6 +146511,25 @@ self: { aeson attoparsec base bytestring pipes pipes-attoparsec pipes-bytestring pipes-parse transformers ]; + jailbreak = true; + homepage = "https://github.com/k0001/pipes-aeson"; + description = "Encode and decode JSON streams using Aeson and Pipes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-aeson" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes + , pipes-attoparsec, pipes-bytestring, pipes-parse, transformers + }: + mkDerivation { + pname = "pipes-aeson"; + version = "0.4.1.5"; + sha256 = "74605983d914128d437cfac5e34ebdecb81426c29337af2b7d1e7a1970173595"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring pipes pipes-attoparsec + pipes-bytestring pipes-parse transformers + ]; homepage = "https://github.com/k0001/pipes-aeson"; description = "Encode and decode JSON streams using Aeson and Pipes"; license = stdenv.lib.licenses.bsd3; @@ -146119,8 +146701,8 @@ self: { }: mkDerivation { pname = "pipes-cacophony"; - version = "0.1.2"; - sha256 = "b97b632ebf6ca87e5245a2d080fedbd7eabc0337b723080d062a12ebb1ff8515"; + version = "0.1.3"; + sha256 = "166d95fe84ba7edd62b3d9861b9d3e0e16fd18ec4d99e3b0b44abaf531094e89"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring cacophony pipes ]; @@ -146128,7 +146710,6 @@ self: { async base bytestring cacophony hlint mtl pipes QuickCheck tasty tasty-quickcheck ]; - doCheck = false; homepage = "https://github.com/centromere/pipes-cacophony"; description = "Pipes for Noise-secured network connections"; license = stdenv.lib.licenses.publicDomain; @@ -146225,7 +146806,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-concurrency" = callPackage + "pipes-concurrency_2_0_3" = callPackage ({ mkDerivation, async, base, pipes, stm }: mkDerivation { pname = "pipes-concurrency"; @@ -146235,6 +146816,19 @@ self: { testHaskellDepends = [ async base pipes stm ]; description = "Concurrency for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-concurrency" = callPackage + ({ mkDerivation, async, base, pipes, stm }: + mkDerivation { + pname = "pipes-concurrency"; + version = "2.0.4"; + sha256 = "195ff8fe0551bc03cca2e150e1bf235276c8f5b3c286ff3fddefa5074d6a85d3"; + libraryHaskellDepends = [ base pipes stm ]; + testHaskellDepends = [ async base pipes stm ]; + description = "Concurrency for the pipes ecosystem"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-conduit" = callPackage @@ -147066,6 +147660,7 @@ self: { base bytestring optparse-applicative text ]; testHaskellDepends = [ base bytestring doctest hlint hspec ]; + jailbreak = true; homepage = "https://github.com/pjones/playlists"; description = "Library and executable for working with playlist files"; license = stdenv.lib.licenses.bsd3; @@ -147376,8 +147971,8 @@ self: { }: mkDerivation { pname = "png-file"; - version = "0.0.1.1"; - sha256 = "20d43faaaf15d0c9ae79867262df1a2e2948ef312b6d25f9d546f4261cbea5a2"; + version = "0.0.1.3"; + sha256 = "467be3c535e0d7fd1a26cd287c1b335d22c3aa68263578b642b28e190146b2c1"; libraryHaskellDepends = [ array base binary-file bytestring monads-tf template-haskell zlib ]; @@ -148056,8 +148651,8 @@ self: { }: mkDerivation { pname = "pontarius-xmpp"; - version = "0.4.5"; - sha256 = "b35bb79b206250039a6a941f17e784d7760fd4197d80821319461031d6449f6d"; + version = "0.5.0"; + sha256 = "adf8e8627819dbed26dff553e75b1c9934be049495faa5caee46445ffa3059fe"; libraryHaskellDepends = [ attoparsec base base64-bytestring binary bytestring conduit containers crypto-api crypto-random cryptohash cryptohash-cryptoapi @@ -148558,7 +149153,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "postgresql-binary" = callPackage + "postgresql-binary_0_5_2_1" = callPackage ({ mkDerivation, attoparsec, base-prelude, bytestring, HTF, loch-th , placeholders, postgresql-libpq, QuickCheck, quickcheck-instances , scientific, text, time, transformers, uuid @@ -148580,9 +149175,10 @@ self: { homepage = "https://github.com/nikita-volkov/postgresql-binary"; description = "Encoders and decoders for the PostgreSQL's binary format"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "postgresql-binary_0_7_4_1" = callPackage + "postgresql-binary" = callPackage ({ mkDerivation, aeson, base, base-prelude, binary-parser , bytestring, conversion, conversion-bytestring, conversion-text , either, foldl, loch-th, placeholders, postgresql-libpq @@ -148605,11 +149201,10 @@ self: { tasty-quickcheck tasty-smallcheck text time transformers uuid vector ]; - jailbreak = true; + doCheck = false; homepage = "https://github.com/nikita-volkov/postgresql-binary"; description = "Encoders and decoders for the PostgreSQL's binary format"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgresql-config" = callPackage @@ -149051,6 +149646,7 @@ self: { unordered-containers vector wai wai-cors wai-extra wai-middleware-static warp ]; + jailbreak = true; homepage = "https://github.com/begriffs/postgrest"; description = "REST API for any Postgres database"; license = stdenv.lib.licenses.mit; @@ -150000,6 +150596,8 @@ self: { pname = "primitive"; version = "0.6.1.0"; sha256 = "93731fa72eaf74e8e83453f080828e18cec9fbc82bee91b49ba8b61c043d38c8"; + revision = "1"; + editedCabalFile = "6ec7c2455c437aba71f856b797e7db440c83719509aa63a9a3d1b4652ca3683d"; libraryHaskellDepends = [ base ghc-prim transformers ]; testHaskellDepends = [ base ghc-prim ]; homepage = "https://github.com/haskell/primitive"; @@ -150832,13 +151430,14 @@ self: { }) {}; "projectroot" = callPackage - ({ mkDerivation, base, directory }: + ({ mkDerivation, base, directory, hspec, QuickCheck }: mkDerivation { pname = "projectroot"; - version = "0.1.0.1"; - sha256 = "bce014e23b028ca28597d0541e3a92616b4ce2409d4074bf14d21d5393549298"; + version = "0.2.0.1"; + sha256 = "53753086543ed199cf6f0d76852660f5d74c0874bfdee21c0f4e0d845b7e1ab8"; libraryHaskellDepends = [ base directory ]; - homepage = "https://gitlab.com/yamadapc/haskell-projectroot"; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "https://github.com/yamadapc/haskell-projectroot"; description = "Bindings to the projectroot C logic"; license = stdenv.lib.licenses.mit; }) {}; @@ -151013,8 +151612,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "2.15.0"; - sha256 = "93899ba66749337382158cbb9c2289341eb8d104d26b47dc05c71fe68ba8f53e"; + version = "2.15.1"; + sha256 = "44931af0094e7831910dd691687c5ef1bff7553e327cc95dcbf857cf463c8b9e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -151556,6 +152155,7 @@ self: { array base deepseq ghc-prim hashable HUnit QuickCheck tagged test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; description = "Pure priority search queues"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -152159,6 +152759,7 @@ self: { optparse-applicative parsec process time transformers transformers-compat ]; + jailbreak = true; doCheck = false; homepage = "http://www.purescript.org/"; description = "PureScript Programming Language Compiler"; @@ -152354,8 +152955,8 @@ self: { }: mkDerivation { pname = "pusher-http-haskell"; - version = "0.2.1.0"; - sha256 = "deb588bf92977fccb22a731a5e9b31f70c4b6fe8b2fb4048df10f6123580b562"; + version = "0.3.0.0"; + sha256 = "50b4a5974e7e5fbf2fb77b3c59d5a790e7151c03e4ea046432548a2eb7d8d6ec"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -153057,6 +153658,7 @@ self: { revision = "1"; editedCabalFile = "fbefc480103a2c6661d5e735f53aa387ae2c8b2e482ffab87955be34b9a69be6"; libraryHaskellDepends = [ base HUnit QuickCheck ]; + jailbreak = true; description = "Use HUnit assertions as QuickCheck properties"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -154217,6 +154819,8 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; + doCheck = false; homepage = "http://haskell-distributed.github.com"; description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; license = stdenv.lib.licenses.bsd3; @@ -154300,6 +154904,7 @@ self: { base directory filepath FontyFruity JuicyPixels optparse-applicative Rasterific svg-tree ]; + jailbreak = true; description = "SVG renderer based on Rasterific"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -155439,6 +156044,7 @@ self: { QuickCheck random tasty tasty-ant-xml tasty-hunit tasty-quickcheck vector ]; + jailbreak = true; homepage = "http://github.com/NicolasT/reedsolomon"; description = "Reed-Solomon Erasure Coding in Haskell"; license = stdenv.lib.licenses.mit; @@ -155770,6 +156376,7 @@ self: { base bifunctors containers profunctors reflex reflex-transformers semigroups vector-space ]; + jailbreak = true; homepage = "https://github.com/saulzar/reflex-animation"; description = "Continuous animations support for reflex"; license = stdenv.lib.licenses.bsd3; @@ -155880,6 +156487,7 @@ self: { libraryHaskellDepends = [ base containers lens mtl reflex semigroups stateWriter transformers ]; + jailbreak = true; homepage = "http://github.com/saulzar/reflex-transformers"; description = "Collections and switchable Monad transformers for Reflex"; license = stdenv.lib.licenses.bsd3; @@ -155889,11 +156497,11 @@ self: { ({ mkDerivation, base, containers, mtl, text }: mkDerivation { pname = "reform"; - version = "0.2.7"; - sha256 = "75a921d5d100ecb607ec84c4c0098465021b1729eb2d0924b6663b8710634b4a"; + version = "0.2.7.1"; + sha256 = "59be2189906788ee4ecf82559aea2e7159a7a0c716c129cccce97e9d89819230"; libraryHaskellDepends = [ base containers mtl text ]; homepage = "http://www.happstack.com/"; - description = "reform is an HTML form generation and validation library"; + description = "reform is a type-safe HTML form generation and validation library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -155901,8 +156509,8 @@ self: { ({ mkDerivation, base, blaze-html, blaze-markup, reform, text }: mkDerivation { pname = "reform-blaze"; - version = "0.2.4"; - sha256 = "5e3a7dc72115b10664c5f7bd7a498155e58ac1e092738b9339a68b05e5db9088"; + version = "0.2.4.1"; + sha256 = "d4acf094d75cef125e9d587646b9bbb66ce927b43ed16c99738f11e80569678b"; libraryHaskellDepends = [ base blaze-html blaze-markup reform text ]; @@ -155915,8 +156523,8 @@ self: { ({ mkDerivation, base, blaze-markup, reform, shakespeare, text }: mkDerivation { pname = "reform-hamlet"; - version = "0.0.5"; - sha256 = "8a841b4a31518ddd6da9b64f93c5527aaab9bdc67eaef70298c9455004e896b6"; + version = "0.0.5.1"; + sha256 = "a0271fc7580463d3790f26e651836e0030178444987c9132b3c74dab249286f2"; libraryHaskellDepends = [ base blaze-markup reform shakespeare text ]; @@ -155931,8 +156539,8 @@ self: { }: mkDerivation { pname = "reform-happstack"; - version = "0.2.5"; - sha256 = "4c77c33e70edda15b9eff8102a12a552eb69eb5e1772b86e1e63d2b9c2ad5a89"; + version = "0.2.5.1"; + sha256 = "6fa06f0cc07251bf5ec38a553de468ede9b7495c4534ba9c3f96780c1adadaaa"; libraryHaskellDepends = [ base bytestring happstack-server mtl random reform text utf8-string ]; @@ -155945,8 +156553,8 @@ self: { ({ mkDerivation, base, hsp, hsx2hs, reform, text }: mkDerivation { pname = "reform-hsp"; - version = "0.2.6"; - sha256 = "3260df2cf6030d45900ecc5c4f5c407814322296a2b42938d0bee8d355d62f2a"; + version = "0.2.6.1"; + sha256 = "d961b22e1ef28a9cbf13ae7214335efcba3e00a4738f3f9a21fc543f61cf80a5"; libraryHaskellDepends = [ base hsp hsx2hs reform text ]; homepage = "http://www.happstack.com/"; description = "Add support for using HSP with Reform"; @@ -158270,6 +158878,7 @@ self: { base bytestring HUnit mtl test-framework test-framework-hunit transformers transformers-compat unordered-containers ]; + jailbreak = true; description = "Rest API library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -159166,8 +159775,8 @@ self: { }: mkDerivation { pname = "rethinkdb"; - version = "2.2.0.0"; - sha256 = "a3e629d72bb63150f764c33e2fe507391ee1e77bd4097114fbca73a5d24ca429"; + version = "2.2.0.2"; + sha256 = "91c1ea290efa7f9336ef824832545cce401466cc773cde38ea2a8e0a763d0eb5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -159177,7 +159786,6 @@ self: { ]; executableHaskellDepends = [ attoparsec base text ]; testHaskellDepends = [ base doctest ]; - doCheck = false; homepage = "http://github.com/atnnn/haskell-rethinkdb"; description = "A driver for RethinkDB 2.1"; license = stdenv.lib.licenses.asl20; @@ -159391,6 +159999,7 @@ self: { base data-default-class exceptions hspec HUnit QuickCheck random stm time transformers ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/Soostone/retry"; description = "Retry combinators for monadic actions that may fail"; @@ -159607,25 +160216,26 @@ self: { "riak" = callPackage ({ mkDerivation, aeson, attoparsec, base, binary, blaze-builder - , bytestring, containers, HUnit, monad-control, network - , protocol-buffers, pureMD5, QuickCheck, random, resource-pool - , riak-protobuf, test-framework, test-framework-hunit - , test-framework-quickcheck2, text, time, transformers + , bytestring, containers, enclosed-exceptions, exceptions, HUnit + , mersenne-random-pure64, monad-control, network, protocol-buffers + , pureMD5, QuickCheck, random, random-shuffle, resource-pool + , riak-protobuf, tasty, tasty-hunit, tasty-quickcheck, text, time + , transformers, vector }: mkDerivation { pname = "riak"; - version = "0.9.0.0"; - sha256 = "002d0646acdd0b80bd68c4a1ea3a91b56e8cf14c5b2fb1d497dcbbdafccd149c"; + version = "0.9.1.1"; + sha256 = "900597ea476350d76bb0b9c429ac0d438865fdaf885267e94695d1cd1c81e43f"; libraryHaskellDepends = [ aeson attoparsec base binary blaze-builder bytestring containers - monad-control network protocol-buffers pureMD5 random resource-pool - riak-protobuf text time transformers + enclosed-exceptions exceptions mersenne-random-pure64 monad-control + network protocol-buffers pureMD5 random random-shuffle + resource-pool riak-protobuf text time transformers vector ]; testHaskellDepends = [ - base bytestring containers HUnit QuickCheck test-framework - test-framework-hunit test-framework-quickcheck2 text + base bytestring containers HUnit QuickCheck tasty tasty-hunit + tasty-quickcheck text ]; - doCheck = false; homepage = "http://github.com/markhibberd/riak-haskell-client"; description = "A Haskell client for the Riak decentralized data store"; license = "unknown"; @@ -161932,15 +162542,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "sbv_5_6" = callPackage + "sbv_5_7" = callPackage ({ mkDerivation, array, async, base, base-compat, containers , crackNum, data-binary-ieee754, deepseq, directory, filepath , HUnit, mtl, old-time, pretty, process, QuickCheck, random, syb }: mkDerivation { pname = "sbv"; - version = "5.6"; - sha256 = "018c91265799931c434731cfd48e8592e42f399ab5958f4c70ffe48e83fd3fed"; + version = "5.7"; + sha256 = "dc63f66b56ed39d37996f6a983fbdf62086f66c91c4b52eefafb6e52e5ca9d2c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -161967,8 +162577,8 @@ self: { }: mkDerivation { pname = "sbvPlugin"; - version = "0.1"; - sha256 = "08fc5562e6919ddb8db1fa8b5c16079f9832c3d755d58e987f25945f36903c0b"; + version = "0.3"; + sha256 = "095f50de108abc82047d13404a30990aaa71c66f5f71238fee7e909ccfe52a71"; libraryHaskellDepends = [ base containers ghc ghc-prim mtl sbv template-haskell ]; @@ -162936,6 +163546,7 @@ self: { base bytestring hspec hspec-wai mtl QuickCheck scotty string-conversions text wai ]; + jailbreak = true; homepage = "http://github.com/ehamberg/scotty-rest"; description = "Webmachine-style REST library for scotty"; license = stdenv.lib.licenses.bsd3; @@ -163048,8 +163659,8 @@ self: { }: mkDerivation { pname = "scroll"; - version = "1.20150323"; - sha256 = "0dc03b56be5bd2724a3f5e5fff2905587e68032767b23f927b52a462f1dedf1a"; + version = "1.20151219"; + sha256 = "4f91c20e645ee715c9d3549fffffcc58943bee4fb3ba2e622e0189ccb70dd050"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -163306,20 +163917,21 @@ self: { "sdr" = callPackage ({ mkDerivation, array, base, bytestring, cairo, cereal, Chart , Chart-cairo, colour, containers, Decimal, dynamic-graph, either - , fftwRaw, GLFW-b, OpenGL, optparse-applicative, pango, pipes - , pipes-bytestring, pipes-concurrency, primitive, pulse-simple - , QuickCheck, rtlsdr, storable-complex, test-framework - , test-framework-quickcheck2, time, tuple, vector + , fftwRaw, GLFW-b, mwc-random, OpenGL, optparse-applicative, pango + , pipes, pipes-bytestring, pipes-concurrency, primitive + , pulse-simple, QuickCheck, rtlsdr, storable-complex + , test-framework, test-framework-quickcheck2, time, tuple, vector }: mkDerivation { pname = "sdr"; - version = "0.1.0.5"; - sha256 = "80885f1eb0b8a5d5cce83bc7b819d04beb1f3b865b7fdf1030480aeec1605c1e"; + version = "0.1.0.6"; + sha256 = "bf6344447783ec530ef27c8e2c55aff57e4581696d156d1d8781f54577b33135"; libraryHaskellDepends = [ array base bytestring cairo cereal Chart Chart-cairo colour - containers Decimal dynamic-graph either fftwRaw GLFW-b OpenGL - optparse-applicative pango pipes pipes-bytestring pipes-concurrency - primitive pulse-simple rtlsdr storable-complex time tuple vector + containers Decimal dynamic-graph either fftwRaw GLFW-b mwc-random + OpenGL optparse-applicative pango pipes pipes-bytestring + pipes-concurrency primitive pulse-simple rtlsdr storable-complex + time tuple vector ]; testHaskellDepends = [ base primitive QuickCheck storable-complex test-framework @@ -164038,23 +164650,6 @@ self: { }) {}; "semigroups" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , nats, tagged, text, unordered-containers - }: - mkDerivation { - pname = "semigroups"; - version = "0.17.0.1"; - sha256 = "7930dbd98e023df8485a928ff11e4bee95a002fd41253f14c4447ba34f74773f"; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable nats tagged text - unordered-containers - ]; - homepage = "http://github.com/ekmett/semigroups/"; - description = "Anything that associates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "semigroups_0_18_0_1" = callPackage ({ mkDerivation, base, bytestring, containers, deepseq, hashable , tagged, text, unordered-containers }: @@ -164069,7 +164664,6 @@ self: { homepage = "http://github.com/ekmett/semigroups/"; description = "Anything that associates"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semigroups-actions" = callPackage @@ -164635,6 +165229,7 @@ self: { filepath hspec parsec QuickCheck quickcheck-instances string-conversions text url ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; @@ -164662,6 +165257,7 @@ self: { filepath hspec parsec QuickCheck quickcheck-instances string-conversions text url ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; @@ -164689,6 +165285,7 @@ self: { filepath hspec parsec QuickCheck quickcheck-instances string-conversions text url ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; @@ -165102,7 +165699,6 @@ self: { servant-lucid servant-server text time transformers wai wai-extra warp ]; - jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Example programs for servant"; license = stdenv.lib.licenses.bsd3; @@ -165440,6 +166036,7 @@ self: { network parsec QuickCheck servant string-conversions temporary text transformers wai wai-extra warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; @@ -165472,6 +166069,7 @@ self: { network parsec QuickCheck servant string-conversions temporary text transformers wai wai-extra warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; @@ -165504,6 +166102,7 @@ self: { network parsec QuickCheck servant string-conversions temporary text transformers wai wai-extra warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; @@ -165536,6 +166135,7 @@ self: { network parsec QuickCheck servant string-conversions temporary text transformers wai wai-extra warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; @@ -167322,6 +167922,7 @@ self: { pretty-show process regex-tdfa safe test-framework test-framework-hunit utf8-string ]; + jailbreak = true; homepage = "http://joyful.com/shelltestrunner"; description = "A tool for testing command-line programs"; license = "GPL"; @@ -168510,6 +169111,7 @@ self: { testHaskellDepends = [ base HUnit mtl parsec pretty test-framework test-framework-hunit ]; + jailbreak = true; homepage = "http://jakewheat.github.io/simple-sql-parser/"; description = "A parser for SQL queries"; license = stdenv.lib.licenses.bsd3; @@ -169207,6 +169809,7 @@ self: { base bytestring data-default http-client http-types lens text time wreq xml-conduit ]; + jailbreak = true; homepage = "https://github.com/nyorem/skemmtun"; description = "A MyAnimeList.net client."; license = stdenv.lib.licenses.mit; @@ -169754,6 +170357,7 @@ self: { version = "0.4.1"; sha256 = "f29484ce5a765334798b1107be91b4ef555f1e67a81bd3eb1049a91eec9e6e2e"; libraryHaskellDepends = [ aeson base linear text vector ]; + jailbreak = true; homepage = "https://github.com/phaazon/smoothie"; description = "Smooth curves via several interpolation modes"; license = stdenv.lib.licenses.bsd3; @@ -170140,8 +170744,8 @@ self: { pname = "snap"; version = "0.14.0.6"; sha256 = "fa9ffc7bf5c6729f7e204daecd50765a220a0ffc2feaf3f6b29977370d8db617"; - revision = "2"; - editedCabalFile = "eff36a949ff3546539accd83c431cd68bb3dca38c2f24db6f99302c7d76ccd4c"; + revision = "3"; + editedCabalFile = "a1c4d4668cc563516ac38acfe5b869eeff5cf98042d960593ab08e1ded09fe1d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -170929,6 +171533,7 @@ self: { aeson base bytestring configurator directory fay filepath mtl snap snap-core transformers ]; + jailbreak = true; homepage = "https://github.com/faylang/snaplet-fay"; description = "Fay integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; @@ -171949,6 +172554,7 @@ self: { aeson attoparsec base bytestring engine-io mtl stm text transformers unordered-containers vector ]; + jailbreak = true; homepage = "http://github.com/ocharles/engine.io"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -172257,8 +172863,8 @@ self: { }: mkDerivation { pname = "sourcemap"; - version = "0.1.5"; - sha256 = "cf64d8ff9a38d2feb134814fd0cb5b9f171d650c7d74a8277238bb88d0f562ea"; + version = "0.1.6"; + sha256 = "b9a04cccb4fe7eea8b37a2eaf2bc776eae5640038ab76fb948c5a3ea09a9ce7a"; libraryHaskellDepends = [ aeson attoparsec base bytestring process text unordered-containers utf8-string @@ -175824,7 +176430,6 @@ self: { resourcet stm stm-chans test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; - doHaddock = false; homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; @@ -175988,6 +176593,7 @@ self: { stm-conduit transformers wai wai-conduit warp ]; testHaskellDepends = [ base hspec HUnit stm ]; + jailbreak = true; homepage = "https://github.com/bartavelle/stm-firehose"; description = "Conduits and STM operations for fire hoses"; license = stdenv.lib.licenses.bsd3; @@ -176199,6 +176805,7 @@ self: { sha256 = "17f488ef8e74a9dc4ad7e8a649abc386d010379a9b63f88d52638a078fbc16f6"; libraryHaskellDepends = [ base clock transformers ]; testHaskellDepends = [ base clock hspec ]; + jailbreak = true; homepage = "https://github.com/debug-ito/stopwatch"; description = "A simple stopwatch utility"; license = stdenv.lib.licenses.bsd3; @@ -177241,6 +177848,7 @@ self: { aeson base bytestring mtl text time transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/dmjio/stripe-haskell"; description = "Stripe API for Haskell - Pure Core"; license = stdenv.lib.licenses.mit; @@ -177270,6 +177878,7 @@ self: { aeson base bytestring HsOpenSSL http-streams io-streams stripe-core text ]; + jailbreak = true; doCheck = false; description = "Stripe API for Haskell - http-streams backend"; license = stdenv.lib.licenses.mit; @@ -178378,21 +178987,20 @@ self: { "swagger2" = callPackage ({ mkDerivation, aeson, aeson-qq, base, containers, doctest, Glob - , hashable, hspec, http-media, HUnit, lens, network, QuickCheck - , scientific, template-haskell, text, time, unordered-containers - , vector + , hashable, hspec, http-media, HUnit, lens, mtl, network + , QuickCheck, scientific, text, time, unordered-containers, vector }: mkDerivation { pname = "swagger2"; - version = "0.4.1"; - sha256 = "9db8a5896a2a758edf683be2e9a63a388079b363c6a6f18e3723632010ff39d9"; + version = "1.0"; + sha256 = "04ccac8d97cac4a4673151a751a813de7fd6f948b0f98f9b23f447016c19021d"; libraryHaskellDepends = [ - aeson base containers hashable http-media lens network scientific - template-haskell text time unordered-containers + aeson base containers hashable http-media lens mtl network + scientific text time unordered-containers ]; testHaskellDepends = [ - aeson aeson-qq base containers doctest Glob hspec HUnit QuickCheck - text unordered-containers vector + aeson aeson-qq base containers doctest Glob hspec HUnit lens + QuickCheck text unordered-containers vector ]; homepage = "https://github.com/GetShopTV/swagger2"; description = "Swagger 2.0 data model"; @@ -178561,7 +179169,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "syb" = callPackage + "syb_0_5_1" = callPackage ({ mkDerivation, base, containers, HUnit, mtl }: mkDerivation { pname = "syb"; @@ -178573,9 +179181,10 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB"; description = "Scrap Your Boilerplate"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "syb_0_6" = callPackage + "syb" = callPackage ({ mkDerivation, base, containers, HUnit, mtl }: mkDerivation { pname = "syb"; @@ -178583,10 +179192,10 @@ self: { sha256 = "a38d1f7e6a40e2c990fec85215c45063a508bf73df98a4483ec78c5025b66cdc"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base containers HUnit mtl ]; + doCheck = false; homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB"; description = "Scrap Your Boilerplate"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syb-extras" = callPackage @@ -178737,8 +179346,8 @@ self: { }: mkDerivation { pname = "sync-mht"; - version = "0.3.8.3"; - sha256 = "071d833083b2dc77b94b9acae56397cddae646d3b3a88fac8e4ca13f8d55489f"; + version = "0.3.8.4"; + sha256 = "f276fac5a403f84dc4d1e75dfe257f3cc9b4c69f03803cd1c5654820a3035138"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -181120,6 +181729,7 @@ self: { base containers mtl optparse-applicative reducers split stm tagged tasty transformers ]; + doHaddock = false; homepage = "http://github.com/ocharles/tasty-rerun"; description = "Run tests by filtering the test tree depending on the result of previous test runs"; license = stdenv.lib.licenses.bsd3; @@ -181432,6 +182042,7 @@ self: { libraryHaskellDepends = [ aeson base bytestring data-default http-conduit url utf8-string ]; + jailbreak = true; description = "Telegram API client"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; @@ -181552,8 +182163,8 @@ self: { }: mkDerivation { pname = "templatepg"; - version = "0.2.7"; - sha256 = "d0b35e35bff5ac9d2605c54fa20586d6286376ae1362dad0e069a65dc9e1002f"; + version = "0.2.8"; + sha256 = "bddd04dca12d48e9151b495b63a981540b2b6b6e7ba4857419abd2d3777410ac"; libraryHaskellDepends = [ base binary bytestring haskell-src-meta mtl network parsec regex-compat regex-posix template-haskell time utf8-string @@ -181827,6 +182438,8 @@ self: { testHaskellDepends = [ base base-unicode-symbols HUnit test-framework test-framework-hunit ]; + jailbreak = true; + doCheck = false; homepage = "https://github.com/roelvandijk/terminal-progress-bar"; description = "A simple progress bar in the terminal"; license = stdenv.lib.licenses.bsd3; @@ -181896,6 +182509,20 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; + "terminfo_0_4_0_2" = callPackage + ({ mkDerivation, base, ncurses }: + mkDerivation { + pname = "terminfo"; + version = "0.4.0.2"; + sha256 = "fea88b28443f5efd316c7699685b3925c0a7613992305f11af03746139d8f856"; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ ncurses ]; + homepage = "https://github.com/judah/terminfo"; + description = "Haskell bindings to the terminfo library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) ncurses;}; + "terminfo-hs" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers , directory, errors, filepath, QuickCheck @@ -182015,6 +182642,8 @@ self: { pname = "test-framework"; version = "0.8.1.1"; sha256 = "7883626a5aebb1df327bf26dbd382208946250a79f9cc3bf9a9eb0b0767bb273"; + revision = "1"; + editedCabalFile = "a6d9dbedbb574271e85c6e5ef9a9f935d87501a9b99b473bf306e3dcd36bdd9e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -182072,6 +182701,7 @@ self: { libraryHaskellDepends = [ base extensible-exceptions HUnit test-framework ]; + jailbreak = true; homepage = "https://batterseapower.github.io/test-framework/"; description = "HUnit support for the test-framework package"; license = stdenv.lib.licenses.bsd3; @@ -183279,6 +183909,8 @@ self: { pname = "text-show"; version = "2.1.2"; sha256 = "76c1ce631c6932816dc241b290400e7200d7c79fd50ec03f51964e244fae320d"; + revision = "1"; + editedCabalFile = "3fc10600ed0d309c095024b4d320ace8d39dd883e4e8d109d182930c2b35fc9c"; libraryHaskellDepends = [ array base base-compat bytestring bytestring-builder containers generic-deriving ghc-prim integer-gmp nats semigroups tagged @@ -183307,8 +183939,8 @@ self: { pname = "text-show-instances"; version = "2.1"; sha256 = "d8941910e88ad921a6337dd635356203137b85e5153a460b0b6bb3ebb0fd51b0"; - revision = "1"; - editedCabalFile = "41e3a6ee833f59df2813fcdab616023c86512175c402c45000e95622d6f9c3c5"; + revision = "2"; + editedCabalFile = "f7407e5c0227a4fae2090ae9a10d4f4b62b869c56432a9ecb8bc8daf453a6cf8"; libraryHaskellDepends = [ base base-compat bifunctors binary bytestring containers directory haskeline hoopl hpc old-locale old-time pretty random semigroups @@ -184398,6 +185030,7 @@ self: { testHaskellDepends = [ base concurrent-extra HUnit stm test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/basvandijk/threads"; description = "Fork threads and wait for their result"; @@ -184861,19 +185494,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "time_1_5_0_1" = callPackage + "time_1_6" = callPackage ({ mkDerivation, base, deepseq, QuickCheck, test-framework , test-framework-quickcheck2, unix }: mkDerivation { pname = "time"; - version = "1.5.0.1"; - sha256 = "24a1cc077b0300d69401d08dfc8895b0199ebd003a9a0eb8845250dd2aebd14e"; + version = "1.6"; + sha256 = "2b4ff69434fd920353ab9948b8e36b71a76227661b06cad1bb0ef99a2e91a29f"; + revision = "1"; + editedCabalFile = "aa5ff661ec586e3c082485d21abe107332ba29355d1a2c8c2966ba518d1309f2"; libraryHaskellDepends = [ base deepseq ]; testHaskellDepends = [ base deepseq QuickCheck test-framework test-framework-quickcheck2 unix ]; + jailbreak = true; homepage = "https://github.com/haskell/time"; description = "A time library"; license = stdenv.lib.licenses.bsd3; @@ -185080,6 +185716,7 @@ self: { base data-ordlist HUnit mtl old-locale test-framework test-framework-hunit time ]; + jailbreak = true; homepage = "http://github.com/hellertime/time-recurrence"; description = "Generate recurring dates"; license = stdenv.lib.licenses.gpl3; @@ -186614,6 +187251,20 @@ self: { pname = "transformers"; version = "0.4.3.0"; sha256 = "b3d0a797e815ca50d411e20c02f781efe7751308007d880af7f0b5c4365c3a9d"; + revision = "1"; + editedCabalFile = "60dafcffe8c4fe6f3760426fc35a325c8e6419877596518c76f46657280207a9"; + libraryHaskellDepends = [ base ]; + description = "Concrete functor and monad transformers"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "transformers_0_5_0_0" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "transformers"; + version = "0.5.0.0"; + sha256 = "720541fc11ed72737c7059f47836361edb05f6eadcd535fffbee8801f3d03feb"; libraryHaskellDepends = [ base ]; description = "Concrete functor and monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -186911,6 +187562,7 @@ self: { base Cabal directory filepath MissingH optparse-applicative process split ]; + jailbreak = true; homepage = "https://github.com/bmjames/trawl"; description = "A tool for finding haddocks"; license = stdenv.lib.licenses.bsd3; @@ -187462,6 +188114,7 @@ self: { filepath hashable haskeline JuicyPixels mtl parsec process random template-haskell time vector yaml ]; + jailbreak = true; homepage = "https://github.com/entropia/tip-toi-reveng"; description = "Working with files for the Tiptoi® pen"; license = stdenv.lib.licenses.mit; @@ -187485,6 +188138,7 @@ self: { filepath hashable haskeline JuicyPixels mtl parsec process random template-haskell time vector yaml ]; + jailbreak = true; homepage = "https://github.com/entropia/tip-toi-reveng"; description = "Working with files for the Tiptoi® pen"; license = stdenv.lib.licenses.mit; @@ -187781,6 +188435,7 @@ self: { temporary text time transformers unix ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -187802,6 +188457,29 @@ self: { temporary text time transformers unix ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; + description = "Shell programming, Haskell-style"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "turtle_1_2_3" = callPackage + ({ mkDerivation, async, base, clock, directory, doctest, foldl + , hostname, managed, optional-args, optparse-applicative, process + , stm, system-fileio, system-filepath, temporary, text, time + , transformers, unix + }: + mkDerivation { + pname = "turtle"; + version = "1.2.3"; + sha256 = "3669a203887b58621ba20a4192defb3bdbfdf17ac13de80747143f739127d36d"; + libraryHaskellDepends = [ + async base clock directory foldl hostname managed optional-args + optparse-applicative process stm system-fileio system-filepath + temporary text time transformers unix + ]; + testHaskellDepends = [ base doctest ]; + jailbreak = true; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -187815,8 +188493,8 @@ self: { }: mkDerivation { pname = "turtle"; - version = "1.2.3"; - sha256 = "3669a203887b58621ba20a4192defb3bdbfdf17ac13de80747143f739127d36d"; + version = "1.2.4"; + sha256 = "c42148d062098913a4519af92c0bc6b139edad18c22f6c01aea8697386851de4"; libraryHaskellDepends = [ async base clock directory foldl hostname managed optional-args optparse-applicative process stm system-fileio system-filepath @@ -188082,6 +188760,7 @@ self: { base Cabal data-default deepseq Diff HUnit lens should-not-typecheck void ]; + jailbreak = true; homepage = "https://github.com/markandrus/twiml-haskell"; description = "TwiML library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -188234,6 +188913,7 @@ self: { testHaskellDepends = [ base containers HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/twitter-feed"; description = "Client for fetching Twitter timeline via Oauth"; license = stdenv.lib.licenses.mit; @@ -188255,6 +188935,7 @@ self: { testHaskellDepends = [ base containers HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/twitter-feed"; description = "Client for fetching Twitter timeline via Oauth"; license = stdenv.lib.licenses.mit; @@ -189057,6 +189738,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "typelits-witnesses" = callPackage + ({ mkDerivation, base, constraints, reflection }: + mkDerivation { + pname = "typelits-witnesses"; + version = "0.1.1.0"; + sha256 = "cdcf6b821063228a27b18b4f3b437db6b21e2241c0136e3aa14643ddafc03c26"; + libraryHaskellDepends = [ base constraints reflection ]; + homepage = "https://github.com/mstksg/typelits-witnesses"; + description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; + license = stdenv.lib.licenses.mit; + }) {}; + "typeof" = callPackage ({ mkDerivation, base, process }: mkDerivation { @@ -189447,6 +190140,7 @@ self: { async base bytestring bytestring-lexing deepseq network optparse-applicative ]; + jailbreak = true; homepage = "https://github.com/hvr/uhttpc"; description = "Minimal HTTP client library optimized for benchmarking"; license = stdenv.lib.licenses.gpl3; @@ -192910,6 +193604,8 @@ self: { pname = "vector"; version = "0.11.0.0"; sha256 = "0a5320ed44c3f2b04b7f61e0f63f4fcd5b337524e601e01d5813ace3f5a432e4"; + revision = "1"; + editedCabalFile = "dfdf3252519ff35da59f977b7d37d6c5a6660673ce1234899af0111f7ece9c66"; libraryHaskellDepends = [ base deepseq ghc-prim primitive ]; testHaskellDepends = [ base QuickCheck random template-haskell test-framework @@ -193486,7 +194182,6 @@ self: { testHaskellDepends = [ aeson base containers hspec unordered-containers vector verdict ]; - jailbreak = true; description = "JSON instances and JSON Schema for verdict"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -193633,6 +194328,7 @@ self: { time-locale-compat transformers xdg-basedir yaml ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://github.com/pjones/vimeta"; description = "Frontend for video metadata tagging tools"; license = stdenv.lib.licenses.bsd2; @@ -194003,6 +194699,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "vrpn" = callPackage + ({ mkDerivation, base, vrpn }: + mkDerivation { + pname = "vrpn"; + version = "0.2.1.0"; + sha256 = "eb79f54712078283ce181e33b4fdac12b42bed7abe6d8c79b28e55771613754b"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ vrpn ]; + executableHaskellDepends = [ base ]; + executableSystemDepends = [ vrpn ]; + homepage = "https://bitbucket.org/bwbush/vrpn"; + description = "Bindings to VRPN"; + license = stdenv.lib.licenses.mit; + }) {inherit (pkgs) vrpn;}; + "vte" = callPackage ({ mkDerivation, base, glib, gtk, gtk2hs-buildtools, pango, vte }: mkDerivation { @@ -194622,7 +195335,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-app-static" = callPackage + "wai-app-static_3_1_3" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, containers, cryptohash , cryptohash-conduit, directory, file-embed, filepath, hspec @@ -194656,9 +195369,10 @@ self: { homepage = "http://www.yesodweb.com/book/web-application-interface"; description = "WAI application for static serving"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-app-static_3_1_4" = callPackage + "wai-app-static" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, containers, cryptohash , cryptohash-conduit, directory, file-embed, filepath, hspec @@ -194692,7 +195406,6 @@ self: { homepage = "http://www.yesodweb.com/book/web-application-interface"; description = "WAI application for static serving"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-conduit_3_0_0_1" = callPackage @@ -194807,6 +195520,7 @@ self: { system-filepath text time transformers wai warp websockets ]; testHaskellDepends = [ base hspec stm ]; + jailbreak = true; homepage = "https://github.com/urbanslug/wai-devel"; description = "A web server for the development of WAI compliant web applications"; license = stdenv.lib.licenses.gpl3; @@ -195536,6 +196250,7 @@ self: { libraryHaskellDepends = [ base bytestring http-types lens network text vault wai ]; + jailbreak = true; homepage = "https://github.com/webcrank/wai-lens"; description = "Lenses for WAI"; license = stdenv.lib.licenses.bsd3; @@ -195684,19 +196399,6 @@ self: { }) {}; "wai-middleware-caching" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, wai }: - mkDerivation { - pname = "wai-middleware-caching"; - version = "0.1.0.1"; - sha256 = "831cf0efc1fcbf5a43ef19f313427f1fcca1d3d5312f7cf4e05294984ccd3d83"; - libraryHaskellDepends = [ base blaze-builder bytestring wai ]; - testHaskellDepends = [ base ]; - homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; - description = "WAI Middleware to cache things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "wai-middleware-caching_0_1_0_2" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, http-types, wai }: mkDerivation { @@ -195710,7 +196412,6 @@ self: { homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; description = "WAI Middleware to cache things"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-caching-lru" = callPackage @@ -195857,6 +196558,7 @@ self: { http-reverse-proxy optparse-applicative template-haskell text transformers wai wai-app-static warp ]; + jailbreak = true; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -195935,6 +196637,7 @@ self: { base base64-bytestring bytestring cryptohash filepath http-date http-types unix-compat unordered-containers wai ]; + jailbreak = true; homepage = "https://github.com/ameingast/wai-middleware-etag"; description = "WAI ETag middleware for static files"; license = stdenv.lib.licenses.bsd3; @@ -196130,6 +196833,7 @@ self: { base base16-bytestring bytestring containers cryptohash directory expiring-cache-map filepath http-types mtl old-locale text time wai ]; + jailbreak = true; homepage = "https://github.com/scotty-web/wai-middleware-static"; description = "WAI middleware that serves requests to static files"; license = stdenv.lib.licenses.bsd3; @@ -196369,6 +197073,7 @@ self: { aeson base blaze-builder bytestring containers http-types monad-loops mtl path-pieces random template-haskell text wai ]; + jailbreak = true; homepage = "https://ajnsit.github.io/wai-routes/"; description = "Typesafe URLs for Wai applications"; license = stdenv.lib.licenses.mit; @@ -197573,8 +198278,8 @@ self: { }: mkDerivation { pname = "warp"; - version = "3.1.10"; - sha256 = "c0b60aca4a6c10f7b6f00e2e17e5ba5f04ffefb287123541459436bfd22c4fd5"; + version = "3.1.11"; + sha256 = "f62ef8b6bd0402d99867cd207cad608b1904b7b88d84db9800f34eae37eb809c"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring bytestring-builder case-insensitive containers ghc-prim hashable http-date http-types @@ -197923,10 +198628,8 @@ self: { }: mkDerivation { pname = "warp-tls"; - version = "3.1.4"; - sha256 = "7572b8893160a07051a60323e91553b8911d87d58712c64f997ecced1a5febd7"; - revision = "1"; - editedCabalFile = "39cf89625ffec9af354d3e502b6974ca122adf0241c9e1e6815bf4c11fb34535"; + version = "3.1.5"; + sha256 = "abb057ba735e455c354837f5daf07ea2c0274d8edfb7d39ac48412a6ebb9759f"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -198242,25 +198945,20 @@ self: { "web-routes" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, exceptions - , ghc-prim, http-types, HUnit, mtl, parsec, QuickCheck, split - , test-framework, test-framework-hunit, test-framework-quickcheck2 - , test-framework-th, text, utf8-string + , ghc-prim, hspec, http-types, HUnit, mtl, parsec, QuickCheck + , split, text, utf8-string }: mkDerivation { pname = "web-routes"; - version = "0.27.9"; - sha256 = "868cc9f0eeb1c184aa03ccb220fe1729d481a3dc5ed9502f61e4eb69d963ecab"; - revision = "2"; - editedCabalFile = "542f5d20616359b0897018bbd347ce7f0dc948c4e031e8a5383ed85cb931406b"; + version = "0.27.10"; + sha256 = "1d0f5da073271aa45dbcc9ef51791841f45d13f16756cfe3c16d731e2dd67b4c"; libraryHaskellDepends = [ base blaze-builder bytestring exceptions ghc-prim http-types mtl parsec split text utf8-string ]; - testHaskellDepends = [ - base HUnit QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 test-framework-th - ]; - description = "Library for maintaining correctness and composability of URLs within an application"; + testHaskellDepends = [ base hspec HUnit QuickCheck ]; + homepage = "http://www.happstack.com/docs/crashcourse/index.html#web-routes"; + description = "portable, type-safe URL routing"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -198283,8 +198981,8 @@ self: { }: mkDerivation { pname = "web-routes-happstack"; - version = "0.23.9"; - sha256 = "fc67eae234d87a6b3a72aeac32ea5524572c4b412bfc34392a28889f4eaa526f"; + version = "0.23.10"; + sha256 = "a7bbf337cea91b3dbf41d1785a4edef238a1e7d78e64dd153b90e36df35afbed"; libraryHaskellDepends = [ base bytestring happstack-server text web-routes ]; @@ -198296,8 +198994,8 @@ self: { ({ mkDerivation, base, hsp, text, web-routes }: mkDerivation { pname = "web-routes-hsp"; - version = "0.24.6"; - sha256 = "d48d1c9711692d11d69d7cfee91b75c71b358e1e3d5d4006d8a736c94aef0d11"; + version = "0.24.6.1"; + sha256 = "ca7cf5bf026c52fee5b6af3ca173c7341cd991dcd38508d07589cc7ea8102cab"; libraryHaskellDepends = [ base hsp text web-routes ]; description = "Adds XMLGenerator instance for RouteT monad"; license = stdenv.lib.licenses.bsd3; @@ -198334,29 +199032,25 @@ self: { ({ mkDerivation, base, parsec, regular, text, web-routes }: mkDerivation { pname = "web-routes-regular"; - version = "0.19.0"; - sha256 = "b904709802bd9efe81e706fb54aee217cd79ee1f723348a033acd65f89e69462"; + version = "0.19.0.1"; + sha256 = "5e2aa9d867c0baa3f288b7f84c53053994a12a4bf1484de6455423aada5fda3b"; libraryHaskellDepends = [ base parsec regular text web-routes ]; - description = "Library for maintaining correctness of URLs within an application"; + description = "portable, type-safe URL routing"; license = stdenv.lib.licenses.bsd3; }) {}; "web-routes-th" = callPackage - ({ mkDerivation, base, HUnit, parsec, QuickCheck, split - , template-haskell, test-framework, test-framework-hunit - , test-framework-quickcheck2, test-framework-th, text, web-routes + ({ mkDerivation, base, hspec, HUnit, parsec, QuickCheck, split + , template-haskell, text, web-routes }: mkDerivation { pname = "web-routes-th"; - version = "0.22.3"; - sha256 = "d7fd87388133e8f7dbb2cc933528a85fc9ada003d19c4317b40e341d7f0d9b31"; + version = "0.22.4"; + sha256 = "b09ba714032918dd6e2e729ef7ebb1fae50a97d1cd04e1efb94dd191f52ee0b6"; libraryHaskellDepends = [ base parsec split template-haskell text web-routes ]; - testHaskellDepends = [ - base HUnit QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 test-framework-th web-routes - ]; + testHaskellDepends = [ base hspec HUnit QuickCheck web-routes ]; description = "Support for deriving PathInfo using Template Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -198380,8 +199074,8 @@ self: { }: mkDerivation { pname = "web-routes-wai"; - version = "0.24.1"; - sha256 = "2be042988e73432a9fb1f2a553607548cca7fb821b91be166249cceb9477bc8e"; + version = "0.24.2"; + sha256 = "66708017753ab953a34e944a9f90c7f26a24a7eefda2363746a3abde2e2358dd"; libraryHaskellDepends = [ base bytestring http-types text wai web-routes ]; @@ -198464,6 +199158,7 @@ self: { http-media http-types lens mtl tasty tasty-hunit tasty-quickcheck unordered-containers ]; + jailbreak = true; homepage = "https://github.com/webcrank/webcrank.hs"; description = "Webmachine inspired toolkit for building http applications and services"; license = stdenv.lib.licenses.bsd3; @@ -198638,6 +199333,7 @@ self: { transformers-base unordered-containers vector zip-archive ]; testHaskellDepends = [ base parallel text ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; @@ -198665,6 +199361,7 @@ self: { transformers-base unordered-containers vector zip-archive ]; testHaskellDepends = [ base parallel text ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; @@ -198682,8 +199379,8 @@ self: { }: mkDerivation { pname = "webdriver"; - version = "0.8.0.3"; - sha256 = "3caa382fdb75533be48b3bbf3c1d7f0c11dcbed76d49b002b9a16591b62903e4"; + version = "0.8.0.4"; + sha256 = "11a3b0fd53ad2ef2014d57b9964ff258a4394c10ff00947932637180983077db"; libraryHaskellDepends = [ aeson attoparsec base base64-bytestring bytestring data-default-class directory directory-tree exceptions filepath @@ -198691,7 +199388,6 @@ self: { network-uri scientific temporary text time transformers transformers-base unordered-containers vector zip-archive ]; - testHaskellDepends = [ base text ]; doCheck = false; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; @@ -199109,6 +199805,7 @@ self: { random SHA test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; @@ -199136,6 +199833,7 @@ self: { random SHA test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; @@ -199569,8 +200267,8 @@ self: { }: mkDerivation { pname = "wiring"; - version = "0.4.1"; - sha256 = "b2a6e2ac3299d109244432dbdce4094d9967f10916c31a3df5a7bf6fbcc67b01"; + version = "0.4.2"; + sha256 = "f8b9cc8d1811d88ad1a19e67ae071f4bcdef17ae3ce1f63e9664f5255033e689"; libraryHaskellDepends = [ base mtl template-haskell transformers ]; testHaskellDepends = [ base hspec mtl QuickCheck template-haskell transformers @@ -200214,6 +200912,7 @@ self: { transformers ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/sboosali/workflow-osx#readme"; description = "a \"Desktop Workflow\" monad with Objective-C bindings"; license = stdenv.lib.licenses.gpl3; @@ -201012,7 +201711,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "x509-system" = callPackage + "x509-system_1_6_1" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, pem, process, x509, x509-store }: @@ -201027,22 +201726,40 @@ self: { homepage = "http://github.com/vincenthz/hs-certificate"; description = "Handle per-operating-system X.509 accessors and storage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "x509-system" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , mtl, pem, process, x509, x509-store + }: + mkDerivation { + pname = "x509-system"; + version = "1.6.3"; + sha256 = "24237c3df1bf692fcf7bade432970ee2eb06db7437fa0e95986ef7535a68f6e0"; + libraryHaskellDepends = [ + base bytestring containers directory filepath mtl pem process x509 + x509-store + ]; + homepage = "http://github.com/vincenthz/hs-certificate"; + description = "Handle per-operating-system X.509 accessors and storage"; + license = stdenv.lib.licenses.bsd3; }) {}; "x509-util" = callPackage ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , cryptonite, directory, pem, x509, x509-store, x509-system - , x509-validation + , cryptonite, directory, hourglass, pem, x509, x509-store + , x509-system, x509-validation }: mkDerivation { pname = "x509-util"; - version = "1.6.0"; - sha256 = "823ed93ad997c5084bc9610814e7da28414e6aed80b0d37ba1218face3a10c82"; + version = "1.6.1"; + sha256 = "d534388d8c633b7dfb0f06a7b498f91f4dfd225b4cd1dd535f45b6e085c9078d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - asn1-encoding asn1-types base bytestring cryptonite directory pem - x509 x509-store x509-system x509-validation + asn1-encoding asn1-types base bytestring cryptonite directory + hourglass pem x509 x509-store x509-system x509-validation ]; homepage = "http://github.com/vincenthz/hs-certificate"; description = "Utility for X509 certificate and chain"; @@ -201294,15 +202011,14 @@ self: { }: mkDerivation { pname = "xdot"; - version = "0.2.4.8"; - sha256 = "e9bda0abdde68181fe178c7ba176687f8f6438446ee06bd4099df6ca7c155bb9"; + version = "0.2.4.9"; + sha256 = "a2ace6970b425d1721b06b054422eef097837e31555579deee3fe532c11a0cda"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base cairo graphviz gtk mtl polyparse text ]; executableHaskellDepends = [ base cairo graphviz gtk text ]; - jailbreak = true; description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -202010,7 +202726,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xml-conduit" = callPackage + "xml-conduit_1_3_2" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html , blaze-markup, bytestring, conduit, conduit-extra, containers , data-default, deepseq, hspec, HUnit, monad-control, resourcet @@ -202032,6 +202748,31 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "xml-conduit" = callPackage + ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html + , blaze-markup, bytestring, conduit, conduit-extra, containers + , data-default, deepseq, hspec, HUnit, monad-control, resourcet + , text, transformers, xml-types + }: + mkDerivation { + pname = "xml-conduit"; + version = "1.3.3"; + sha256 = "300a0b5eb2ff1062012b61bc4aaa390571daecc671af2d8567a649489b08b66b"; + libraryHaskellDepends = [ + attoparsec base blaze-builder blaze-html blaze-markup bytestring + conduit conduit-extra containers data-default deepseq monad-control + resourcet text transformers xml-types + ]; + testHaskellDepends = [ + base blaze-markup bytestring conduit containers hspec HUnit + resourcet text transformers xml-types + ]; + homepage = "http://github.com/snoyberg/xml"; + description = "Pure-Haskell utilities for dealing with XML with the conduit package"; + license = stdenv.lib.licenses.mit; }) {}; "xml-conduit-parse" = callPackage @@ -202684,20 +203425,23 @@ self: { inherit (pkgs.xorg) libXrandr; inherit (pkgs) wirelesstools;}; "xmonad" = callPackage - ({ mkDerivation, base, containers, directory, extensible-exceptions - , filepath, mtl, process, unix, utf8-string, X11 + ({ mkDerivation, base, containers, data-default, directory + , extensible-exceptions, filepath, mtl, process, QuickCheck + , setlocale, unix, utf8-string, X11 }: mkDerivation { pname = "xmonad"; - version = "0.11.1"; - sha256 = "39e0bf227df782d7a5799c811ad0d8b70c9d6eaaa94e8cc395fcf25895d6d2dd"; - revision = "1"; - editedCabalFile = "12849de2637cf39a8c0311d81418632e719125f55db2faf931b1905d85d5bf3d"; + version = "0.12"; + sha256 = "e8f649dbd4a8d5f75fdac9ceb5ee38b64fd351910ade81c188f5dd7bc21dfdd7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers directory extensible-exceptions filepath mtl - process unix utf8-string X11 + base containers data-default directory extensible-exceptions + filepath mtl process setlocale unix utf8-string X11 + ]; + executableHaskellDepends = [ base mtl unix X11 ]; + testHaskellDepends = [ + base containers extensible-exceptions QuickCheck X11 ]; postInstall = '' shopt -s globstar @@ -202732,18 +203476,19 @@ self: { "xmonad-contrib" = callPackage ({ mkDerivation, base, containers, directory, extensible-exceptions - , mtl, old-locale, old-time, process, random, unix, utf8-string - , X11, X11-xft, xmonad + , filepath, mtl, old-locale, old-time, process, random, unix + , utf8-string, X11, X11-xft, xmonad }: mkDerivation { pname = "xmonad-contrib"; - version = "0.11.4"; - sha256 = "a379b3d4f2d3d8793d6c76812e90cbb055fa0598cfba944af47139bb77e2acbc"; - revision = "1"; - editedCabalFile = "0280216420efaa06de7080d5998a24e27166e8b2c3d8a012846d004799c5edf2"; + version = "0.12"; + sha256 = "131d31c471ac02ece9c7e920497b4839a45df786a2096f56adb1f2de1221f311"; + revision = "2"; + editedCabalFile = "8a17b7fe46dc9d7435538a0db3997bcb2a125e71923ecd401024d84081a41807"; libraryHaskellDepends = [ - base containers directory extensible-exceptions mtl old-locale - old-time process random unix utf8-string X11 X11-xft xmonad + base containers directory extensible-exceptions filepath mtl + old-locale old-time process random unix utf8-string X11 X11-xft + xmonad ]; homepage = "http://xmonad.org/"; description = "Third party extensions for xmonad"; @@ -202875,6 +203620,7 @@ self: { version = "0.0.1.2"; sha256 = "b02e1c7a524dd9cf28d5cff6933194fe245fa4e9247f701ec87195a20a8cf265"; libraryHaskellDepends = [ base magic mtl random unix xmonad ]; + jailbreak = true; description = "xmonad wallpaper extension"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -205198,6 +205944,7 @@ self: { http-types lifted-base network-uri random text transformers vector yesod-auth yesod-core yesod-form ]; + jailbreak = true; homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; @@ -205219,6 +205966,7 @@ self: { http-types lifted-base network-uri random text transformers vector yesod-auth yesod-core yesod-form ]; + jailbreak = true; homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; @@ -206310,8 +207058,8 @@ self: { }: mkDerivation { pname = "yesod-content-pdf"; - version = "0.2.0.1"; - sha256 = "c6fb370baf348742237d89fb83996ff75459767dc86926e84c9daa45c6c20e46"; + version = "0.2.0.2"; + sha256 = "867cb1a9bbbeff69bb8ae35659f780bcf057cb44a2b1f6c8e424d280a55a0fbb"; libraryHaskellDepends = [ base blaze-builder blaze-html bytestring conduit data-default directory network-uri process temporary transformers yesod-core @@ -207076,7 +207824,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-core" = callPackage + "yesod-core_1_4_17" = callPackage ({ mkDerivation, aeson, async, auto-update, base, blaze-builder , blaze-html, blaze-markup, byteable, bytestring, case-insensitive , cereal, clientsession, conduit, conduit-extra, containers, cookie @@ -207113,9 +207861,10 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-core_1_4_18" = callPackage + "yesod-core" = callPackage ({ mkDerivation, aeson, async, auto-update, base, blaze-builder , blaze-html, blaze-markup, byteable, bytestring, case-insensitive , cereal, clientsession, conduit, conduit-extra, containers, cookie @@ -207130,8 +207879,8 @@ self: { }: mkDerivation { pname = "yesod-core"; - version = "1.4.18"; - sha256 = "1580cfac8d8255fe0d14af2d5edabfbad2e62238af13cea33b7144cdfba11d16"; + version = "1.4.18.1"; + sha256 = "8964a1ce27f7d15037eee05611546a8e5e183640115e92e70fc73e1116beddb0"; libraryHaskellDepends = [ aeson auto-update base blaze-builder blaze-html blaze-markup byteable bytestring case-insensitive cereal clientsession conduit @@ -207152,7 +207901,6 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-crud" = callPackage @@ -207717,6 +208465,7 @@ self: { warp yaml yesod yesod-auth yesod-core yesod-form yesod-persistent yesod-static ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/mangopay"; description = "Yesod library for MangoPay API access"; license = stdenv.lib.licenses.bsd3; @@ -207752,6 +208501,7 @@ self: { warp yaml yesod yesod-auth yesod-core yesod-form yesod-persistent yesod-static ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/mangopay"; description = "Yesod library for MangoPay API access"; license = stdenv.lib.licenses.bsd3; @@ -208305,6 +209055,7 @@ self: { base data-default hsass shakespeare template-haskell text yesod-core ]; + jailbreak = true; description = "A simple quasiquoter to include sass code in yesod"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -208571,6 +209322,7 @@ self: { base bytestring hamlet hspec HUnit shakespeare template-haskell text yesod-core yesod-static yesod-test ]; + doCheck = false; homepage = "https://bitbucket.org/wuzzeb/yesod-static-angular"; description = "Yesod generators for embedding AngularJs code into yesod-static at compile time"; license = stdenv.lib.licenses.mit; @@ -208627,22 +209379,6 @@ self: { }) {}; "yesod-table" = callPackage - ({ mkDerivation, base, bytestring, containers, contravariant, text - , yesod-core - }: - mkDerivation { - pname = "yesod-table"; - version = "2.0.0"; - sha256 = "1a41ff344fb908ddd04d23e5c0b896b738987b8d8f162192168b367b7450e867"; - libraryHaskellDepends = [ - base bytestring containers contravariant text yesod-core - ]; - homepage = "https://github.com/andrewthad/yesod-table"; - description = "HTML tables for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - - "yesod-table_2_0_1" = callPackage ({ mkDerivation, base, bytestring, containers, contravariant, text , yesod-core }: @@ -208656,7 +209392,6 @@ self: { homepage = "https://github.com/andrewthad/yesod-table"; description = "HTML tables for Yesod"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-tableview" = callPackage @@ -209164,8 +209899,8 @@ self: { }: mkDerivation { pname = "yi"; - version = "0.12.2"; - sha256 = "16107755bd53f04a8edd03c2db50be3d7640b8d9503dea17ea923726c4de9e06"; + version = "0.12.3"; + sha256 = "2ce8a6cd30f67839eba0581f8643fd80ff9138059d9b66d3b689cc867b9562b6"; configureFlags = [ "-fpango" "-fvty" ]; isLibrary = true; isExecutable = true; @@ -209183,7 +209918,6 @@ self: { base directory filepath HUnit lens QuickCheck semigroups tasty tasty-hunit tasty-quickcheck text yi-language yi-rope ]; - jailbreak = true; homepage = "https://yi-editor.github.io"; description = "The Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; @@ -209574,6 +210308,7 @@ self: { HStringTemplate lucid old-locale old-time pandoc parsec scientific split text time unordered-containers yaml ]; + jailbreak = true; homepage = "http://github.com/jgm/yst"; description = "Builds a static website from templates and data in YAML or CSV files"; license = "GPL"; @@ -209806,6 +210541,7 @@ self: { version = "0.1.3"; sha256 = "bc57b63f12a935ee20558fea1930ebcf3c4f0ddffa5e1e9be05af6222466fbfe"; libraryHaskellDepends = [ base semigroups ]; + jailbreak = true; homepage = "https://github.com/phaazon/zero"; description = "Semigroups with absorption"; license = stdenv.lib.licenses.bsd3; @@ -209841,7 +210577,6 @@ self: { executableHaskellDepends = [ base bytestring docopt raw-strings-qq ]; - jailbreak = true; description = "Post to 0bin services"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; From 4418b8b034dd985e86690bb87d1d874e3def014d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 20 Dec 2015 21:30:05 +0100 Subject: [PATCH 259/289] Add LTS Haskell 3.19. --- pkgs/top-level/haskell-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index ad29a94b199..ab3a1e06393 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -310,6 +310,9 @@ rec { lts-3_18 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.18.nix { }; }; + lts-3_19 = packages.ghc7102.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.19.nix { }; + }; }; } From f1b0383c921140fb64589ee4adb38c10424ee295 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 21 Dec 2015 15:30:24 +0100 Subject: [PATCH 260/289] haskell-binary: update overrides for version 0.8.x --- pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix | 2 +- pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix | 4 ++-- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix index 06fedc6a1c4..6d4e7a7bb25 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix @@ -41,7 +41,7 @@ self: super: { unix = null; # These packages are core libraries in GHC 7.10.x, but not here. - binary = self.binary_0_7_6_1; + binary = self.binary_0_8_0_0; deepseq = self.deepseq_1_3_0_1; haskeline = self.haskeline_0_7_2_1; hoopl = self.hoopl_3_10_2_0; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix index cc5d03f05f5..3173189c430 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -35,7 +35,7 @@ self: super: { unix = null; # These packages are core libraries in GHC 7.10.x, but not here. - binary = self.binary_0_7_6_1; + binary = self.binary_0_8_0_0; deepseq = self.deepseq_1_3_0_1; haskeline = self.haskeline_0_7_2_1; hoopl = self.hoopl_3_10_2_0; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix index b79cdb6da97..51962f161fc 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -42,7 +42,7 @@ self: super: { xhtml = self.xhtml_3000_2_1; # https://github.com/haskell/cabal/issues/2322 - Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_7_6_1; process = self.process_1_2_3_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_0_0; process = self.process_1_2_3_0; }; # Newer versions don't compile. Cabal_1_18_1_6 = dontJailbreak super.Cabal_1_18_1_6; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix index 693c0b1d522..f1774c04a8f 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -41,10 +41,10 @@ self: super: { xhtml = self.xhtml_3000_2_1; # https://github.com/haskell/cabal/issues/2322 - Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_6_1; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_0_0; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_7_6_1; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_0_0; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index a1ce7cf68d6..4716766226a 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -40,10 +40,10 @@ self: super: { xhtml = self.xhtml_3000_2_1; # https://github.com/haskell/cabal/issues/2322 - Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_6_1; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_0_0; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_7_6_1; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_0_0; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; From 7c6940b8238d0a5e330eb89c13b898a7fd76966a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 20 Dec 2015 11:30:34 +0100 Subject: [PATCH 261/289] haskell-time: remove obsolete overrides --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 065fd9b34d8..c2ed3647113 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -138,9 +138,6 @@ self: super: { # Foreign dependency name clashes with another Haskell package. libarchive-conduit = super.libarchive-conduit.override { archive = pkgs.libarchive; }; - # https://github.com/haskell/time/issues/23 - time_1_5_0_1 = dontCheck super.time_1_5_0_1; - # Switch levmar build to openblas. bindings-levmar = overrideCabal super.bindings-levmar (drv: { preConfigure = '' From 57c9994a08831d45f93970c357f12b240f8b1115 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 22 Dec 2015 06:46:15 -0600 Subject: [PATCH 262/289] ace-jump-mode: 20140616 -> 2.0 --- pkgs/top-level/emacs-packages.nix | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 6728280c3bc..fe57a2f122a 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -84,21 +84,6 @@ let }; }; - ace-jump-mode = melpaBuild rec { - pname = "ace-jump-mode"; - version = "20140616"; - src = fetchFromGitHub { - owner = "winterTTr"; - repo = pname; - rev = "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac"; - sha256 = "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6"; - }; - meta = { - description = "Advanced cursor movements mode for Emacs"; - license = gpl3Plus; - }; - }; - tablist = melpaBuild rec { pname = "tablist"; inherit (pdf-tools) src version; From b3949f29cd6a69bb14929fd657ed9600d5f325d6 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 22 Dec 2015 06:50:21 -0600 Subject: [PATCH 263/289] emacsPackagesNg.ack-menu: broken upstream --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 7 ++++++- .../editors/emacs-modes/melpa-stable-packages.nix | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index 43d48d0d298..2d66423eb2d 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -62,5 +62,10 @@ self: meta = (args.meta or {}) // { broken = true; }; }); }; + + melpaPackages = super // { + # broken upstream + ack-menu = markBroken super.ack-menu; + }; in - super // { melpaPackages = super; } + melpaPackages // { inherit melpaPackages; } diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index aa940016b5e..a65f1b0dc28 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -64,5 +64,10 @@ self: meta = (args.meta or {}) // { broken = true; }; }); }; + + melpaStablePackages = super // { + # broken upstream + ack-menu = markBroken super.ack-menu; + }; in - super // { melpaStablePackages = super; } + melpaStablePackages // { inherit melpaStablePackages; } From 26a7470ce6c1b5cc34047678870c7c007f113777 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 22 Dec 2015 06:55:10 -0600 Subject: [PATCH 264/289] elpa-packages: fix dependency specification --- pkgs/applications/editors/emacs-modes/elpa-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 479835dd8b0..aa30d62c60a 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -35,7 +35,7 @@ let pname = name; inherit (recipe) version; inherit src; - deps = + packageRequires = let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; meta = { From f35c3d03d658f2d948e26cbbdeb138beba2c826e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 22 Dec 2015 06:55:25 -0600 Subject: [PATCH 265/289] melpa-packages: fix dependency specification --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index 2d66423eb2d..d7e894c672a 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -40,7 +40,7 @@ let pname = name; inherit (recipe) version; inherit src; - deps = + packageRequires = let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; meta = { From a9ca11e82a0e70f834db9891c95de1b3f7c57408 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 22 Dec 2015 06:55:34 -0600 Subject: [PATCH 266/289] melpa-stable-packages: fix dependency specification --- pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index a65f1b0dc28..7572c722e33 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -42,7 +42,7 @@ let pname = name; inherit (recipe) version; inherit src; - deps = + packageRequires = let lookupDep = d: self."${d}" or null; in map lookupDep recipe.deps; meta = { From 8519b89f7684586189696deb3c9f7784d0d0c959 Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Tue, 22 Dec 2015 14:49:44 +0100 Subject: [PATCH 267/289] wine unstable, staging: 1.8-rc4 -> 1.8 --- pkgs/misc/emulators/wine/versions.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/emulators/wine/versions.nix b/pkgs/misc/emulators/wine/versions.nix index c308dd3c87f..057f5214aa2 100644 --- a/pkgs/misc/emulators/wine/versions.nix +++ b/pkgs/misc/emulators/wine/versions.nix @@ -12,16 +12,15 @@ rec { monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; }; unstable = { - wineVersion = "1.8-rc4"; ## wait for staging 1.8 - wineSha256 = "0c4mb49ad11jd880wdl4gs1478q2rkdjw2qxjzskr08bdlcq7h5f"; inherit (stable) + wineVersion wineSha256 geckoVersion geckoSha256 gecko64Version gecko64Sha256 monoVersion monoSha256; }; staging = { version = unstable.wineVersion; - sha256 = "11kd4id0zyqqjz1006d27ahmhy3gzai7h0wir9lkxnv3pdld0dxn"; + sha256 = "1mi2nk5cjgfrkv8g082d4klniz1dprmvvida8c30qf2j4jykn3vb"; }; winetricks = { version = "20151116"; From 47f7cbb5bf7b0ef30f2b815592a22a653d100f19 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 22 Dec 2015 15:12:02 +0100 Subject: [PATCH 268/289] python audiotools: 2.22 -> 3.1.1 --- pkgs/top-level/python-packages.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 45b8aec62fd..7f13e91bfb1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -863,13 +863,12 @@ in modules // { }; audiotools = buildPythonPackage rec { - name = "audiotools-2.22"; - - disabled = isPy3k; + name = "audiotools-${version}"; + version = "3.1.1"; src = pkgs.fetchurl { - url = "mirror://sourceforge/audiotools/${name}.tar.gz"; - sha256 = "1c52pggsbxdbj8h92njf4h0jgfndh4yv58ad723pidys47nw1y71"; + url = "https://github.com/tuffy/python-audio-tools/archive/v${version}.tar.gz"; + sha256 = "0ymlxvqkqhzk4q088qwir3dq0zgwqlrrdfnq7f0iq97g05qshm2c"; }; meta = { From e16d3d0d8ac896f0afa7636f24935fcf31d7553e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 22 Dec 2015 16:51:46 +0100 Subject: [PATCH 269/289] texlive: add xdvi binary part (fixes #11816) It seems to work fine for me now, after adding dependency on metafont. --- .../tools/typesetting/tex/texlive-new/bin.nix | 25 +++++++++++++++++++ .../typesetting/tex/texlive-new/default.nix | 4 +++ 2 files changed, 29 insertions(+) diff --git a/pkgs/tools/typesetting/tex/texlive-new/bin.nix b/pkgs/tools/typesetting/tex/texlive-new/bin.nix index 677e64c57dc..431f3926a13 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/bin.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/bin.nix @@ -8,6 +8,8 @@ , makeWrapper }: +# Useful resource covering build options: +# http://tug.org/texlive/doc/tlbuild.html let withSystemLibs = map (libname: "--with-system-${libname}"); @@ -221,5 +223,28 @@ bibtex8 = stdenv.mkDerivation { }; +xdvi = stdenv.mkDerivation { + name = "texlive-xdvi.bin-${version}"; + + inherit (common) src; + + buildInputs = [ pkgconfig core/*kpathsea*/ freetype ghostscript ] + ++ (with xorg; [ libX11 libXaw libXi libXpm libXmu libXaw libXext libXfixes ]); + + preConfigure = "cd texk/xdvik"; + + configureFlags = common.configureFlags + ++ [ "--with-system-kpathsea" "--with-system-libgs" ]; + + enableParallelBuilding = true; + + postInstall = '' + substituteInPlace "$out/bin/xdvi" \ + --replace "exec xdvi-xaw" "exec '$out/bin/xdvi-xaw'" + ''; + # TODO: it's suspicious that mktexpk generates fonts into ~/.texlive2014 +}; + + } # un-indented diff --git a/pkgs/tools/typesetting/tex/texlive-new/default.nix b/pkgs/tools/typesetting/tex/texlive-new/default.nix index a084c973b78..5fe52ba07ba 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/default.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/default.nix @@ -84,6 +84,10 @@ let latex = orig.latex // { deps = removeAttrs orig.latex.deps [ "luatex" ]; }; + + xdvi = orig.xdvi // { # it seems to need it to transform fonts + deps = (orig.xdvi.deps or {}) // { inherit (tl) metafont; }; + }; }; # overrides # tl = From eb7a4411797c0def3d95d2402a7b9cef37ae5ec3 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 22 Dec 2015 18:02:15 +0100 Subject: [PATCH 270/289] haskellPackages.xmonad: Update xmonad-nix.patch --- .../haskell-modules/patches/xmonad-nix.patch | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/haskell-modules/patches/xmonad-nix.patch b/pkgs/development/haskell-modules/patches/xmonad-nix.patch index 810d8435a34..cfce819747f 100644 --- a/pkgs/development/haskell-modules/patches/xmonad-nix.patch +++ b/pkgs/development/haskell-modules/patches/xmonad-nix.patch @@ -1,6 +1,6 @@ ---- xmonad-0.11/XMonad/Core.hs 2013-01-01 01:31:47.000000000 +0000 -+++ new-xmonad/XMonad/Core.hs 2013-12-23 17:36:40.862146910 +0000 -@@ -47,6 +47,7 @@ +--- a/src/XMonad/Core.hs ++++ b/src/XMonad/Core.hs +@@ -48,6 +48,7 @@ import System.Posix.Types (ProcessID) import System.Process import System.Directory import System.Exit @@ -8,7 +8,7 @@ import Graphics.X11.Xlib import Graphics.X11.Xlib.Extras (Event) import Data.Typeable -@@ -452,6 +453,7 @@ +@@ -463,6 +464,7 @@ recompile force = io $ do err = base ++ ".errors" src = base ++ ".hs" lib = dir "lib" @@ -16,16 +16,16 @@ libTs <- mapM getModTime . Prelude.filter isSource =<< allFiles lib srcT <- getModTime src binT <- getModTime bin -@@ -460,7 +462,7 @@ +@@ -471,7 +473,7 @@ recompile force = io $ do -- temporarily disable SIGCHLD ignoring: uninstallSignalHandlers status <- bracket (openFile err WriteMode) hClose $ \h -> -- waitForProcess =<< runProcess "ghc" ["--make", "xmonad.hs", "-i", "-ilib", "-fforce-recomp", "-v0", "-o",binn] (Just dir) -+ waitForProcess =<< runProcess ghc ["--make", "xmonad.hs", "-i", "-ilib", "-fforce-recomp", "-v0", "-o",binn] (Just dir) +- waitForProcess =<< runProcess "ghc" ["--make", "xmonad.hs", "-i", "-ilib", "-fforce-recomp", "-main-is", "main", "-v0", "-o",binn] (Just dir) ++ waitForProcess =<< runProcess ghc ["--make", "xmonad.hs", "-i", "-ilib", "-fforce-recomp", "-main-is", "main", "-v0", "-o",binn] (Just dir) Nothing Nothing Nothing (Just h) -- re-enable SIGCHLD: -@@ -469,6 +471,7 @@ +@@ -480,6 +482,7 @@ recompile force = io $ do -- now, if it fails, run xmessage to let the user know: when (status /= ExitSuccess) $ do ghcErr <- readFile err @@ -33,7 +33,7 @@ let msg = unlines $ ["Error detected while loading xmonad configuration file: " ++ src] ++ lines (if null ghcErr then show status else ghcErr) -@@ -476,7 +479,7 @@ +@@ -487,7 +490,7 @@ recompile force = io $ do -- nb, the ordering of printing, then forking, is crucial due to -- lazy evaluation hPutStrLn stderr msg From b336e1b24a87277a217fce43c6d86689eac05422 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Tue, 22 Dec 2015 19:51:55 +0100 Subject: [PATCH 271/289] alsa-utils: fix alsa-info.sh --- pkgs/os-specific/linux/alsa-utils/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/alsa-utils/default.nix b/pkgs/os-specific/linux/alsa-utils/default.nix index 9f6fc98b5cf..bcac888d471 100644 --- a/pkgs/os-specific/linux/alsa-utils/default.nix +++ b/pkgs/os-specific/linux/alsa-utils/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate}: +{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate, pciutils}: stdenv.mkDerivation rec { name = "alsa-utils-${version}"; @@ -12,6 +12,11 @@ stdenv.mkDerivation rec { sha256 = "16ryhgbapp4pxyvsjc258mcj14wk7x3xs6g9bpnkqj0l7s7haq2i"; }; + patchPhase = '' + substituteInPlace alsa-info/alsa-info.sh \ + --replace "which" "type -p" \ + --replace "lspci" "${pciutils}/bin/lspci" + ''; buildInputs = [ gettext alsaLib ncurses libsamplerate ]; configureFlags = "--disable-xmlto --with-udev-rules-dir=$(out)/lib/udev/rules.d"; From de12417ec718af4b914f544f65a15591479d82a4 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Tue, 22 Dec 2015 20:31:34 +0100 Subject: [PATCH 272/289] anki: enable playing sound files --- pkgs/games/anki/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix index 735d260560d..f99a8ddb4a8 100644 --- a/pkgs/games/anki/default.nix +++ b/pkgs/games/anki/default.nix @@ -23,6 +23,10 @@ stdenv.mkDerivation rec { buildInputs = [ python py.wrapPython lame mplayer libpulseaudio ]; + patchPhase = '' + substituteInPlace anki/sound.py --replace '["mplayer"]' '["${mplayer}/bin/mplayer"]' + ''; + preConfigure = '' substituteInPlace anki/anki \ --replace /usr/share/ $out/share/ From cd7cfcc9a22fe61d7ff08befece3894225f8d064 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 22 Dec 2015 14:21:34 -0600 Subject: [PATCH 273/289] arpack: include OpenBLAS path in pkgconfig file --- .../libraries/science/math/arpack/default.nix | 8 +++++++- .../science/math/arpack/openblas-libdir.patch | 11 +++++++++++ pkgs/development/libraries/science/math/arpack/series | 1 + 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/libraries/science/math/arpack/openblas-libdir.patch create mode 100644 pkgs/development/libraries/science/math/arpack/series diff --git a/pkgs/development/libraries/science/math/arpack/default.nix b/pkgs/development/libraries/science/math/arpack/default.nix index 58326a6fa50..13bf512b32d 100644 --- a/pkgs/development/libraries/science/math/arpack/default.nix +++ b/pkgs/development/libraries/science/math/arpack/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, gfortran, openblas }: +{ stdenv, lib, copyPathsToStore, fetchurl, gfortran, openblas }: with stdenv.lib; @@ -7,11 +7,17 @@ let in stdenv.mkDerivation { name = "arpack-${version}"; + src = fetchurl { url = "https://github.com/opencollab/arpack-ng/archive/${version}.tar.gz"; sha256 = "1fwch6vipms1ispzg2djvbzv5wag36f1dmmr3xs3mbp6imfyhvff"; }; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + postPatch = '' + substituteInPlace arpack.pc.in --replace "@openblas@" "${openblas}/lib" + ''; + buildInputs = [ gfortran openblas ]; # Auto-detection fails because gfortran brings in BLAS by default diff --git a/pkgs/development/libraries/science/math/arpack/openblas-libdir.patch b/pkgs/development/libraries/science/math/arpack/openblas-libdir.patch new file mode 100644 index 00000000000..421f8e85f5f --- /dev/null +++ b/pkgs/development/libraries/science/math/arpack/openblas-libdir.patch @@ -0,0 +1,11 @@ +Index: arpack-ng-3.2.0/arpack.pc.in +=================================================================== +--- arpack-ng-3.2.0.orig/arpack.pc.in ++++ arpack-ng-3.2.0/arpack.pc.in +@@ -5,5 +5,5 @@ libdir=@libdir@ + Name: arpack + Description: ARPACK-NG + Version: @PACKAGE_VERSION@ +-Libs: -L${libdir} -larpack @BLAS_LIBS@ @LAPACK_LIBS@ ++Libs: -L@openblas@ -L${libdir} -larpack @BLAS_LIBS@ @LAPACK_LIBS@ + Cflags: diff --git a/pkgs/development/libraries/science/math/arpack/series b/pkgs/development/libraries/science/math/arpack/series new file mode 100644 index 00000000000..6ac0b3286ef --- /dev/null +++ b/pkgs/development/libraries/science/math/arpack/series @@ -0,0 +1 @@ +openblas-libdir.patch From 540c520cf682622884057bdc26f6c5c0eb0da9a9 Mon Sep 17 00:00:00 2001 From: Derek Gonyeo Date: Tue, 22 Dec 2015 13:26:23 -0800 Subject: [PATCH 274/289] rkt: bump version 0.13.0 -> 0.14.0, fixes #11885 --- pkgs/applications/virtualization/rkt/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index c95ccaaf0a8..eb2a5d737a3 100644 --- a/pkgs/applications/virtualization/rkt/default.nix +++ b/pkgs/applications/virtualization/rkt/default.nix @@ -2,14 +2,14 @@ , fetchurl, fetchFromGitHub }: let - coreosImageRelease = "794.1.0"; - coreosImageSystemdVersion = "222"; + coreosImageRelease = "835.9.0"; + coreosImageSystemdVersion = "225"; # TODO: track https://github.com/coreos/rkt/issues/1758 to allow "host" flavor. stage1Flavours = [ "coreos" ]; in stdenv.mkDerivation rec { - version = "0.13.0"; + version = "0.14.0"; name = "rkt-${version}"; BUILDDIR="build-${name}"; @@ -17,12 +17,12 @@ in stdenv.mkDerivation rec { rev = "v${version}"; owner = "coreos"; repo = "rkt"; - sha256 = "1qx8bzcm5xifr9x2wa83mqz15bk2rpjqabm00wzbqixcyxra9bka"; + sha256 = "0dmgs9s40xhan2rh9f5n0k5gv8p2dn946zffq02sq35qqvi67s71"; }; stage1BaseImage = fetchurl { - url = "http://alpha.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz"; - sha256 = "05nzl3av6cawr8v203a8c95c443g6h1nfy2n4jmgvn0j4iyy44ym"; + url = "http://stable.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz"; + sha256 = "51dc10b4269b9c1801c233de49da817d29ca8d858bb0881df94dc90f7e86ce70"; }; buildInputs = [ autoconf automake go file git wget gnupg1 squashfsTools cpio ]; From 96716749593c0a240422fea27268680e5522246a Mon Sep 17 00:00:00 2001 From: Derek Gonyeo Date: Tue, 22 Dec 2015 15:31:00 -0800 Subject: [PATCH 275/289] acbuild: 0.1.1 -> 0.2.2 and moved to own default.nix, fixes #11889 --- lib/maintainers.nix | 1 + pkgs/applications/misc/acbuild/default.nix | 37 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/go-packages.nix | 20 ------------ 4 files changed, 40 insertions(+), 20 deletions(-) create mode 100644 pkgs/applications/misc/acbuild/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index e19970fe914..3e681c67351 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -81,6 +81,7 @@ devhell = "devhell <\"^\"@regexmail.net>"; dezgeg = "Tuomas Tynkkynen "; dfoxfranke = "Daniel Fox Franke "; + dgonyeo = "Derek Gonyeo "; dmalikov = "Dmitry Malikov "; dochang = "Desmond O. Chang "; doublec = "Chris Double "; diff --git a/pkgs/applications/misc/acbuild/default.nix b/pkgs/applications/misc/acbuild/default.nix new file mode 100644 index 00000000000..3c8f4f335f2 --- /dev/null +++ b/pkgs/applications/misc/acbuild/default.nix @@ -0,0 +1,37 @@ +{ stdenv, lib, go, fetchFromGitHub }: + +stdenv.mkDerivation rec { + name = "acbuild-${version}"; + version = "0.2.2"; + + src = fetchFromGitHub { + owner = "appc"; + repo = "acbuild"; + rev = "v${version}"; + sha256 = "0sajmjg655irwy5fywk88cmwhc1q186dg5w8589pab2jhwpavdx4"; + }; + + buildInputs = [ go ]; + + patchPhase = '' + sed -i -e 's|\$(git describe --dirty)|"${version}"|' build + ''; + + buildPhase = '' + patchShebangs build + ./build + ''; + + installPhase = '' + mkdir -p $out + mv bin $out + ''; + + meta = with stdenv.lib; { + description = "A build tool for ACIs"; + homepage = https://github.com/appc/acbuild; + license = licenses.asl20; + maintainers = with maintainers; [ dgonyeo ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b1b778a95cb..1b1149654e5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -482,6 +482,8 @@ let abduco = callPackage ../tools/misc/abduco { }; + acbuild = callPackage ../applications/misc/acbuild { }; + acct = callPackage ../tools/system/acct { }; acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter { diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 776558b126f..8357971d0f9 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3218,26 +3218,6 @@ let sha256 = "0zc1ah5cvaqa3zw0ska89a40x445vwl1ixz8v42xi3zicx16ibwz"; }; - acbuild = stdenv.mkDerivation rec { - version = "0.1.1"; - name = "acbuild-${version}"; - src = fetchFromGitHub { - rev = "beae3971de6b2c35807a98ef1d0fa3167cc3a4a8"; - owner = "appc"; - repo = "acbuild"; - sha256 = "1mjmg2xj190dypp2yqslrx8xhwcyrrz38xxp0rig4fr60i2qy41j"; - }; - buildInputs = [ go ]; - patchPhase = '' - sed -i -e 's|\$(git describe --dirty)|"${version}"|' build - sed -i -e 's|\$GOBIN/acbuild|$out/bin/acbuild|' build - ''; - installPhase = '' - mkdir -p $out/bin - ./build - ''; - }; - color = buildFromGitHub { rev = "9aae6aaa22315390f03959adca2c4d395b02fcef"; owner = "fatih"; From 971d580a008252337ba6ddcb20a5d1443af09029 Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Tue, 22 Dec 2015 10:34:24 +0100 Subject: [PATCH 276/289] spotify: fix missing ffmpeg_0_10 dependency, fixes #11877 This makes local playback work. --- pkgs/applications/audio/spotify/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index 2868d760973..f53154217a8 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -1,7 +1,7 @@ { fetchurl, stdenv, dpkg, xorg, qt4, alsaLib, makeWrapper, openssl, freetype , glib, pango, cairo, atk, gdk_pixbuf, gtk, cups, nspr, nss, libpng, GConf , libgcrypt, chromium, udev, fontconfig -, dbus, expat }: +, dbus, expat, ffmpeg_0_10 }: assert stdenv.system == "x86_64-linux"; @@ -15,6 +15,7 @@ let cups dbus expat + ffmpeg_0_10 fontconfig freetype GConf From eb8e309d2b4523b9dc1777385ae6087a37d8562c Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 22 Dec 2015 13:59:28 -0500 Subject: [PATCH 277/289] kotlin: 1.0.0-beta-3595 -> 1.0.0-beta-4583, fixes #11883 --- pkgs/development/compilers/kotlin/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix index e97309f9252..9b7c97c8c25 100644 --- a/pkgs/development/compilers/kotlin/default.nix +++ b/pkgs/development/compilers/kotlin/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, jre, unzip, which }: stdenv.mkDerivation rec { - version = "1.0.0-beta-3595"; + version = "1.0.0-beta-4583"; name = "kotlin-${version}"; src = fetchurl { url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip"; - sha256 = "1ed750a169a411349852a102d5a9c23aec656acb76d51018a4933741eb846fae"; + sha256 = "4db71d3c1f150618568ebd1f8c17567ff15afe022c2f0121368c17afad9e8188"; }; propagatedBuildInputs = [ jre which ] ; @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { longDescription = '' Kotlin is a statically typed language that targets the JVM and JavaScript. It is a general-purpose language intended for industry use. - It is developed by a team at JetBrains although it is an OSS language + It is developed by a team at JetBrains although it is an OSS language and has external contributors. ''; homepage = http://kotlinlang.org/; From e2a25433b2deb324bdf21de7643b7acff4351ab2 Mon Sep 17 00:00:00 2001 From: Tim Williams Date: Tue, 22 Dec 2015 21:47:49 +0000 Subject: [PATCH 278/289] copyq: init at 2.5.0, fixed #11887 --- lib/maintainers.nix | 1 + pkgs/applications/misc/copyq/default.nix | 23 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 26 insertions(+) create mode 100644 pkgs/applications/misc/copyq/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 3e681c67351..16e4c1e35ff 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -321,6 +321,7 @@ vmandela = "Venkateswara Rao Mandela "; vozz = "Oliver Hunt "; wedens = "wedens "; + willtim = "Tim Philip Williams "; winden = "Antonio Vargas Gonzalez "; wizeman = "Ricardo M. Correia "; wjlroe = "William Roe "; diff --git a/pkgs/applications/misc/copyq/default.nix b/pkgs/applications/misc/copyq/default.nix new file mode 100644 index 00000000000..0892f889932 --- /dev/null +++ b/pkgs/applications/misc/copyq/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, cmake, qt4, libXfixes, libXtst}: + +let version = "2.5.0"; +in +stdenv.mkDerivation { + name = "CopyQ-${version}"; + src = fetchurl { + url = "https://github.com/hluk/CopyQ/archive/v${version}.tar.gz"; + sha256 = "7726745056e8d82625531defc75b2a740d3c42131ecce1f3181bc0a0bae51fb1"; + }; + + buildInputs = [ cmake qt4 libXfixes libXtst ]; + + meta = with stdenv.lib; { + homepage = "https://hluk.github.io/CopyQ"; + description = "Clipboard Manager with Advanced Features"; + license = licenses.gpl3; + maintainers = with maintainers; [ willtim ]; + # NOTE: CopyQ supports windows and osx, but I cannot test these. + # OSX build requires QT5. + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1b1149654e5..c387847dd27 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11265,6 +11265,8 @@ let constant-detune-chorus = callPackage ../applications/audio/constant-detune-chorus { }; + copyq = callPackage ../applications/misc/copyq { }; + coriander = callPackage ../applications/video/coriander { inherit (gnome) libgnomeui GConf; }; From db1086f3a17dc73232a11c408ca1c43cdf785dc6 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Wed, 23 Dec 2015 01:28:29 +0100 Subject: [PATCH 279/289] gnome3: removed duplicate line, fixes #11891 --- nixos/modules/services/x11/desktop-managers/gnome3.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index 886a6c88401..c1e14e45d75 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -140,9 +140,6 @@ in { # Update user dirs as described in http://freedesktop.org/wiki/Software/xdg-user-dirs/ ${pkgs.xdg-user-dirs}/bin/xdg-user-dirs-update - # Find the mouse - export XCURSOR_PATH=~/.icons:${config.system.path}/share/icons - ${gnome3.gnome_session}/bin/gnome-session& waitPID=$! ''; From e99beec0e16539c47c783b84592b79c088956527 Mon Sep 17 00:00:00 2001 From: Nicole Angel Date: Sun, 22 Nov 2015 18:20:41 +0100 Subject: [PATCH 280/289] Keefox (keepass plugin): init at 1.5.4 --- .../misc/keepass-plugins/keefox/default.nix | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/applications/misc/keepass-plugins/keefox/default.nix diff --git a/pkgs/applications/misc/keepass-plugins/keefox/default.nix b/pkgs/applications/misc/keepass-plugins/keefox/default.nix new file mode 100644 index 00000000000..e32f0b7ca01 --- /dev/null +++ b/pkgs/applications/misc/keepass-plugins/keefox/default.nix @@ -0,0 +1,33 @@ +{ stdenv, buildEnv, fetchurl, mono, unzip }: + +let + version = "1.5.4"; + drv = stdenv.mkDerivation { + name = "keefox-${version}"; + src = fetchurl { + url = "https://github.com/luckyrat/KeeFox/releases/download/v${version}/${version}.xpi"; + sha256 = "c7c30770beb0ea32cbdee5311d03a9910fb7772695af3aa655e4ae64cd4d8335"; + }; + + meta = { + description = "Keepass plugin for keefox Firefox add-on"; + homepage = http://keefox.org; + platforms = with stdenv.lib.platforms; linux; + license = stdenv.lib.licenses.gpl2; + }; + + buildInputs = [ unzip ]; + + pluginFilename = "KeePassRPC.plgx"; + + unpackCmd = "unzip $src deps/$pluginFilename "; + sourceRoot = "deps"; + + installPhase = '' + mkdir -p $out/lib/dotnet/keepass/ + cp $pluginFilename $out/lib/dotnet/keepass/$pluginFilename + ''; + }; +in + # Mono is required to compile plugin at runtime, after loading. + buildEnv { name = drv.name; paths = [ mono drv ]; } From 90e881eece9f5125d03a0c8b390651b4486fa5e7 Mon Sep 17 00:00:00 2001 From: Nicole Angel Date: Sun, 22 Nov 2015 18:21:13 +0100 Subject: [PATCH 281/289] keepass: load plugins from store paths, fixes #11206 --- pkgs/applications/misc/keepass/default.nix | 37 +++++++++++++++++-- .../misc/keepass/keepass-plugins-load.patch | 1 + .../misc/keepass/keepass-plugins.patch | 14 +++++++ pkgs/top-level/all-packages.nix | 2 + 4 files changed, 50 insertions(+), 4 deletions(-) create mode 100644 pkgs/applications/misc/keepass/keepass-plugins-load.patch create mode 100644 pkgs/applications/misc/keepass/keepass-plugins.patch diff --git a/pkgs/applications/misc/keepass/default.nix b/pkgs/applications/misc/keepass/default.nix index 950d16eeac8..6914120f296 100644 --- a/pkgs/applications/misc/keepass/default.nix +++ b/pkgs/applications/misc/keepass/default.nix @@ -1,6 +1,12 @@ -{ stdenv, fetchurl, buildDotnetPackage, makeWrapper, unzip, makeDesktopItem }: +{ stdenv, lib, fetchurl, buildDotnetPackage, makeWrapper, unzip, makeDesktopItem, plugins ? [] }: -buildDotnetPackage rec { +# KeePass looks for plugins in under directory in which KeePass.exe is +# located. It follows symlinks where looking for that directory, so +# buildEnv is not enough to bring KeePass and plugins together. +# +# This derivation patches KeePass to search for plugins in specified +# plugin derivations in the Nix store and nowhere else. +with builtins; buildDotnetPackage rec { baseName = "keepass"; version = "2.30"; @@ -11,10 +17,26 @@ buildDotnetPackage rec { sourceRoot = "."; - buildInputs = [ unzip ]; + buildInputs = [ unzip makeWrapper ]; patches = [ ./keepass.patch ]; + pluginLoadPathsPatch = + let outputLc = toString (add 8 (length plugins)); + patchTemplate = readFile ./keepass-plugins.patch; + loadTemplate = readFile ./keepass-plugins-load.patch; + loads = + lib.concatStrings + (map + (p: replaceStrings ["$PATH$"] [ (unsafeDiscardStringContext (toString p)) ] loadTemplate) + plugins); + in replaceStrings ["$OUTPUT_LC$" "$DO_LOADS$"] [outputLc loads] patchTemplate; + + passAsFile = [ "pluginLoadPathsPatch" ]; + postPatch = '' + patch --binary -p1 <$pluginLoadPathsPatchPath + ''; + preConfigure = "rm -rvf Build/*"; desktopItem = makeDesktopItem { @@ -22,7 +44,7 @@ buildDotnetPackage rec { exec = "keepass"; comment = "Password manager"; desktopName = "Keepass"; - genericName = "Password manager"; + genericName = "Password manager"; categories = "Application;Other;"; }; @@ -30,9 +52,16 @@ buildDotnetPackage rec { dllFiles = [ "KeePassLib.dll" ]; exeFiles = [ "KeePass.exe" ]; + # plgx plugin like keefox requires mono to compile at runtime + # after loading. It is brought into plugins bin/ directory using + # buildEnv in the plugin derivation. Wrapper below makes sure it + # is found and does not pollute output path. + binPaths = lib.concatStrings (lib.intersperse ":" (map (x: x + "/bin") plugins)); + postInstall = '' mkdir -p "$out/share/applications" cp ${desktopItem}/share/applications/* $out/share/applications + wrapProgram $out/bin/keepass --prefix PATH : "$binPaths" ''; meta = { diff --git a/pkgs/applications/misc/keepass/keepass-plugins-load.patch b/pkgs/applications/misc/keepass/keepass-plugins-load.patch new file mode 100644 index 00000000000..872b6c06d78 --- /dev/null +++ b/pkgs/applications/misc/keepass/keepass-plugins-load.patch @@ -0,0 +1 @@ ++ m_pluginManager.LoadAllPlugins("$PATH$/lib/dotnet/keepass"); diff --git a/pkgs/applications/misc/keepass/keepass-plugins.patch b/pkgs/applications/misc/keepass/keepass-plugins.patch new file mode 100644 index 00000000000..1a32d77806a --- /dev/null +++ b/pkgs/applications/misc/keepass/keepass-plugins.patch @@ -0,0 +1,14 @@ +--- old/KeePass/Forms/MainForm.cs ++++ new/KeePass/Forms/MainForm.cs +@@ -384,9 +384,$OUTPUT_LC$ @@ namespace KeePass.Forms + m_pluginManager.Initialize(m_pluginDefaultHost); + + m_pluginManager.UnloadAllPlugins(); +- if(AppPolicy.Current.Plugins) +- m_pluginManager.LoadAllPlugins(UrlUtil.GetFileDirectory( +- WinUtil.GetExecutable(), false, true)); ++ if(AppPolicy.Current.Plugins) { +$DO_LOADS$+ } + + // Delete old files *after* loading plugins (when timestamps + // of loaded plugins have been updated already) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c387847dd27..2163fd81f78 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11695,6 +11695,8 @@ let keepass = callPackage ../applications/misc/keepass { }; + keepass-keefox = callPackage ../applications/misc/keepass-plugins/keefox { }; + exrdisplay = callPackage ../applications/graphics/exrdisplay { fltk = fltk20; }; From 5b10c116169666eb3c648e45d577df39cbe5d61d Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 23 Dec 2015 02:23:23 +0100 Subject: [PATCH 282/289] fira-code: 1.100 -> 1.101, fixes #11892 --- pkgs/data/fonts/fira-code/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/data/fonts/fira-code/default.nix b/pkgs/data/fonts/fira-code/default.nix index 625794d9d3b..92caf866eec 100644 --- a/pkgs/data/fonts/fira-code/default.nix +++ b/pkgs/data/fonts/fira-code/default.nix @@ -2,16 +2,15 @@ stdenv.mkDerivation rec { name = "fira-code-${version}"; - version = "1.100"; + version = "1.101"; src = fetchurl { url = "https://github.com/tonsky/FiraCode/releases/download/${version}/FiraCode_${version}.zip"; - sha256 = "1fprryfy8b79ncya1jzbzbxs75kvr1zwinflr8sl3d2m1r5kl03x"; + sha256 = "0wbjk4cyibyjp7kjvwnm7as1ch312zwjbi469v26sl41svf53s5v"; }; buildInputs = [ unzip ]; phases = [ "unpackPhase" "installPhase" ]; - sourceRoot = "."; installPhase = '' mkdir -p $out/share/fonts/opentype From 3af583d9767fbaf02308abfce133185cd9c67341 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 23 Dec 2015 00:09:40 +0100 Subject: [PATCH 283/289] pdf2svg: add autoreconf hook (close #11888) This fixes builds that may fail due to all files in the archive having the same timestamp. --- pkgs/tools/graphics/pdf2svg/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/pdf2svg/default.nix b/pkgs/tools/graphics/pdf2svg/default.nix index 10758d09bc7..52ca99b9764 100644 --- a/pkgs/tools/graphics/pdf2svg/default.nix +++ b/pkgs/tools/graphics/pdf2svg/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchFromGitHub, pkgconfig, cairo, gtk, poppler }: +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig +, cairo, gtk, poppler }: stdenv.mkDerivation rec { name = "pdf2svg-${version}"; @@ -11,7 +12,7 @@ stdenv.mkDerivation rec { sha256 = "14ffdm4y26imq99wjhkrhy9lp33165xci1l5ndwfia8hz53bl02k"; }; - buildInputs = [ cairo pkgconfig poppler gtk ]; + buildInputs = [ autoreconfHook cairo pkgconfig poppler gtk ]; meta = with stdenv.lib; { description = "PDF converter to SVG format"; From fdf3aa99235b5497770bf7d1ba1d7d5e56ca44b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 23 Dec 2015 09:02:13 +0100 Subject: [PATCH 284/289] buildRubyGem: use a saner default version to fix #11805 Previously the gems defaulted to "ruby" as the name and "${ruby-version}-${gem-name}-${gem-version}" as the version, which was just insane. https://github.com/NixOS/nixpkgs/issues/9771#issuecomment-141041414 Noone is reacting so it's high time to take at least some action. /cc @cstrahan. --- pkgs/development/interpreters/ruby/gem.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/ruby/gem.nix b/pkgs/development/interpreters/ruby/gem.nix index dd6338cd813..bbc38226266 100644 --- a/pkgs/development/interpreters/ruby/gem.nix +++ b/pkgs/development/interpreters/ruby/gem.nix @@ -6,7 +6,7 @@ lib.makeOverridable ( , ruby ? defs.ruby , rubygems ? (rubygemsFun ruby) , stdenv ? ruby.stdenv -, namePrefix ? "${ruby.name}" + "-" +, namePrefix ? "${lib.replaceStrings ["-"] ["_"] ruby.name}" + "-" , buildInputs ? [] , doCheck ? false , dontBuild ? true From bf9c16d4ace2ea853586c627660953d6a6ccb3dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 23 Dec 2015 09:18:22 +0100 Subject: [PATCH 285/289] texinfo6: remove meta.branch and refactor meta It was wrong ("5.2") and seemed unused in nixpkgs. --- pkgs/development/tools/misc/texinfo/6.0.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/misc/texinfo/6.0.nix b/pkgs/development/tools/misc/texinfo/6.0.nix index 11e822291e8..670c7182150 100644 --- a/pkgs/development/tools/misc/texinfo/6.0.nix +++ b/pkgs/development/tools/misc/texinfo/6.0.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { doCheck = !stdenv.isDarwin && !interactive && !stdenv.isSunOS/*flaky*/; - meta = { + meta = with stdenv.lib; { homepage = "http://www.gnu.org/software/texinfo/"; description = "The GNU documentation system"; - license = stdenv.lib.licenses.gpl3Plus; - platforms = stdenv.lib.platforms.all; + license = licenses.gpl3Plus; + platforms = platforms.all; longDescription = '' Texinfo is the official documentation format of the GNU project. @@ -42,6 +42,5 @@ stdenv.mkDerivation rec { need revise only that one document. The Texinfo system is well-integrated with GNU Emacs. ''; - branch = "5.2"; }; } From 44ea18499710049e165b475a98e04d02252d7533 Mon Sep 17 00:00:00 2001 From: Augustin Borsu Date: Wed, 23 Dec 2015 09:19:18 +0100 Subject: [PATCH 286/289] jenkins ci enhancement: add port and prefix option As named these options enable to specify a bind host and url prefix to be used by jenkins. Adding these options in the config rather than using extra arguments allows us to re-use those information in other services using jenkins such as jenkins-job-builder or a reverse proxy. --- .../jenkins/default.nix | 35 ++++++++++++++++--- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index 9bd511ad3ae..3b76ada72bb 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -48,11 +48,33 @@ in { ''; }; + host = mkOption { + default = "0.0.0.0"; + example = "localhost"; + type = types.str; + description = '' + Specifies the bind adress on which the jenkins HTTP interface listens. + The default is the wildcard adress. + ''; + }; + port = mkOption { default = 8080; type = types.int; description = '' - Specifies port number on which the jenkins HTTP interface listens. The default is 8080. + Specifies port number on which the jenkins HTTP interface listens. + The default is 8080. + ''; + }; + + prefix = mkOption { + default = ""; + example = "/jenkins"; + type = types.str; + description = '' + Specifies a urlPrefix to use with jenkins. + If the example /jenkins is given, the jenkins server will be + accessible using localhost:8080/jenkins. ''; }; @@ -80,7 +102,7 @@ in { extraOptions = mkOption { type = types.listOf types.str; default = [ ]; - example = [ "--debug=9" "--httpListenAddress=localhost" ]; + example = [ "--debug=9" ]; description = '' Additional command line arguments to pass to Jenkins. ''; @@ -134,15 +156,18 @@ in { ''; script = '' - ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpPort=${toString cfg.port} ${concatStringsSep " " cfg.extraOptions} + ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpListenAddress=${cfg.host} \ + --httpPort=${toString cfg.port} \ + --prefix=${cfg.prefix} \ + ${concatStringsSep " " cfg.extraOptions} ''; postStart = '' - until ${pkgs.curl}/bin/curl -s -L localhost:${toString cfg.port} ; do + until ${pkgs.curl}/bin/curl -s -L ${cfg.host}:${toString cfg.port}${cfg.prefix} ; do sleep 10 done while true ; do - index=`${pkgs.curl}/bin/curl -s -L localhost:${toString cfg.port}` + index=`${pkgs.curl}/bin/curl -s -L ${cfg.host}:${toString cfg.port}${cfg.prefix}` if [[ !("$index" =~ 'Please wait while Jenkins is restarting' || "$index" =~ 'Please wait while Jenkins is getting ready to work') ]]; then exit 0 From 1c120c55fbf2f034b4d3bfff87af85bf7bb11812 Mon Sep 17 00:00:00 2001 From: Augustin Borsu Date: Wed, 23 Dec 2015 09:26:24 +0100 Subject: [PATCH 287/289] jenkins-job-builder fix: use prefix and host from jenkins cfg, fixes #11897 --- .../services/continuous-integration/jenkins/job-builder.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/continuous-integration/jenkins/job-builder.nix b/nixos/modules/services/continuous-integration/jenkins/job-builder.nix index ec15a6a3d70..1f65db4ce95 100644 --- a/nixos/modules/services/continuous-integration/jenkins/job-builder.nix +++ b/nixos/modules/services/continuous-integration/jenkins/job-builder.nix @@ -144,7 +144,7 @@ in { done echo "Asking Jenkins to reload config" - curl --silent -X POST http://localhost:${toString jenkinsCfg.port}/reload + curl --silent -X POST http://${jenkinsCfg.host}:${toString jenkinsCfg.port}${jenkinsCfg.prefix}/reload ''; serviceConfig = { User = jenkinsCfg.user; From 077a3102cc49b1ab702c8d70de065f5be91725bf Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 23 Dec 2015 08:36:50 -0600 Subject: [PATCH 288/289] dropbox: 3.12.5 -> 3.12.6 --- pkgs/applications/networking/dropbox/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix index 6b3034424f5..8030ab313a8 100644 --- a/pkgs/applications/networking/dropbox/default.nix +++ b/pkgs/applications/networking/dropbox/default.nix @@ -20,11 +20,11 @@ let # NOTE: When updating, please also update in current stable, as older versions stop working - version = "3.12.5"; + version = "3.12.6"; sha256 = { - "x86_64-linux" = "1agy20b8vrvdfyzjf7wr2z6vradvvg49wn31vzrl38f0m1l3gb7s"; - "i686-linux" = "0a68m2i5lyyadf12g82rvzryw9b1v6sfq5szx94jsc4qhyl7mcaj"; + "x86_64-linux" = "16d0g9bygvaixv4r42p72z6a6wqhkf5qzb058lijih93zjr8zjlj"; + "i686-linux" = "1pgqz6axzzyaahql01g0l80an39hd9j4dnq0vfavwvb2qkb27dph"; }."${stdenv.system}" or (throw "system ${stdenv.system} not supported"); arch = From cbada77b0b2acaf85d3ad8dd8462b1b2daa93a0d Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 23 Dec 2015 18:28:22 +0100 Subject: [PATCH 289/289] clawsMail: 3.13.0 -> 3.13.1 (CVE-2015-8614) Fixes a remotely triggerable buffer overflow. http://www.thewildbeast.co.uk/claws-mail/bugzilla/show_bug.cgi?id=3557 Close #11910. --- .../networking/mailreaders/claws-mail/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix index bbe3c6b4427..5b3eb2326c5 100644 --- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix +++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix @@ -30,7 +30,7 @@ with stdenv.lib; -let version = "3.13.0"; in +let version = "3.13.1"; in stdenv.mkDerivation { name = "claws-mail-${version}"; @@ -45,7 +45,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://www.claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz"; - sha256 = "0fpr9gdgrs5yggm61a6135ca06x0cflddsh8dwfqmpb3dj07cl1n"; + sha256 = "049av7r0xhjjjm1p93l2ns3xisvn125v3ncqar23cqjzgcichg5d"; }; patches = [ ./mime.patch ];